/* ----------------------------------- navbar ----------------------------------- */
nav#navbar {
    width: 100%;
    height: 6rem !important;
    padding: 0.5rem 3rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    left: 0;
    top: 0;

    z-index: 10000;
}

nav#navbar > a {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar__logo {
    height: 55%;
    width: auto;
}

.navbar__logo>img {
    height: 100%;
    width: auto;
}

.navbar__list-container>ul {
    list-style: none;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0rem !important;

    display: flex;
    align-items: center;
}

.navbar__list-container>ul>li {
    margin-left: 1.5rem;
    letter-spacing: 0.05rem;
    cursor: pointer;
    color: white;
    transition: all 0.4s ease;

    position: relative;
}

.navbar__list-container>ul>li:hover {
    transform: scale(1.11);
}

.navbar__list-container>ul>li:not(:last-child):hover::after {
    content: '';
    position: absolute;
    left: 0;
    /* bottom: -1rem;
    height: 3px;
    width: 100%;
    background-color: white; */
    transform: scale(1.5);
}

.navbar__list-container>ul>li>a {
    text-decoration: none;
    color: var(--color-dark);
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    line-height: 0 !important;
}

.hamburger,
.hamburger-menu {
    display: none;
}

.cta__btn-li {
    cursor: pointer;

    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cta__btn-li:hover>img {
    transform: rotate(-45deg);
}

.cta__btn-li>img {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.4rem;
    transition: all 0.3s ease;
}








@media only screen and (max-width:1050px) {

    nav#navbar {
        padding: 0.5rem 1rem;
    }

    .navbar__list-container>ul {
        display: none;
    }

    .hamburger {
        width: 2.5rem;
        height: 2.5rem;
        /* background-color: #6CC9CF; */
        background-color: #1C1E50;
        border-radius: 50%;
        padding: 0.7rem;
        cursor: pointer;

        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;

        z-index: 100;
    }

    .hamburger>div {
        width: 1.4rem;
        height: 0.2rem;
        /* background-color: #1C1E50; */
        background-color: white;
        border-radius: 3px;
        transition: all 0.6s cubic-bezier(1, 0, 0, 1);

        z-index: 99;
    }

    .clicked .line-1 {
        transform-origin: center;
        /* transform: rotate(45deg); */
        transform: rotate(405deg);
        position: relative;
        top: 25%;

    }

    .clicked .line-2 {
        display: none;
        opacity: 0;
    }

    .clicked .line-3 {
        transform-origin: center;
        /* transform: rotate(305deg); */
        transform: rotate(665deg);
        position: relative;
        bottom: 25%;
    }

    .hamburger-menu {
        display: flex;
        justify-content: center;
        align-items: center;

        width: 50vw;
        height: 100vh;
        background-color: white;
        transition: all 0.5s ease;
        visibility: hidden;

        position: fixed;
        top: 0;
        right: 0;
        /* to be changed later */

        z-index: 99;
    }

    .hamburger-menu>ul {
        list-style: none;
        font-size: 1rem;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hamburger-menu>ul>li {
        color: #1C1E50;
        margin: 1rem;
    }

    .hamburger-menu>ul>li>a {
        color: #1C1E50;
        text-decoration: none;
    }
}