@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root {
    --body-font: 'Source Sans 3', sans-serif;
    --code-font: 'Source Code Pro', monospace;
    --header-height: 70px;
}

* {
    box-sizing: border-box;
    font-family: var(--body-font);
}

html,
body {
    height: auto;
    width: 100%;
}

nav {
    padding: 50px 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    position: relative;
    height: 70px;

}

.logo {
    color: #000000;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
}

.menu-icon {
    display: none;
}

.menu-icon i {
    color: #000000;
    font-size: 30px;
}

.logo {
    font-size: 24px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.logo img {
    width: 160px;
    height: 70px;
}

@media (max-width: 1024px) {

    nav {
        padding: 50px 50px;
    }

    .logo img {
        width: 140px;
        height: 60px;
    }

    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: #ffffff;
        gap: 0;
        overflow: hidden;
    }

    nav ul li {
        padding: 20px;
        padding-top: 0;
    }

    .menu-icon {
        display: block;
    }

    #menuList {
        transition: all 0.5s;
    }

    #menuList.hidden {
        height: 0;
        overflow: hidden;
    }

    .contact-info {
        display: none;
    }
}

@media (max-width: 768px) {

    nav {
        padding: 50px 50px;
    }

    .logo img {
        width: 140px;
        height: 60px;
    }

    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: #ffffff;
        gap: 0;
        overflow: hidden;
    }

    nav ul li {
        padding: 20px;
        padding-top: 0;
    }

    .menu-icon {
        display: block;
    }

    #menuList {
        transition: all 0.5s;
    }

    #menuList.hidden {
        height: 0;
        overflow: hidden;
    }

    .contact-info {
        display: none;
    }
}

@media (max-width: 640px) {

    nav {
        padding: 50px 30px;
    }

    .logo img {
        width: 120px;
        height: 55px;
    }

    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: #ffffff;
        gap: 0;
        overflow: hidden;
    }

    nav ul li {
        padding: 20px;
        padding-top: 0;
    }

    .menu-icon {
        display: block;
    }

    #menuList {
        transition: all 0.5s;
    }

    #menuList.hidden {
        height: 0;
        overflow: hidden;
    }

    .contact-info {
        display: none;
    }

}