/* header */

.header {
    background: linear-gradient(180deg, #0B3869 0%, #092646 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    height: 83px;
}

.header .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header .header__logo img {
    height: 38px;
    width: auto;
}

.header .header__icon img {
    width: 22px;
    height: 22px;
}

.header .header__menu {
    gap: 40px;
}

.header .header__menu--list {
    gap: 40px;
}

.header .header__menu--link {
    display: flex;
    align-items: self-end;
    gap: 8px;
}

.header .header__menu--label {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
}

.header .header__signup {
    background: linear-gradient(180deg, #FFC546 0%, #E7AB2A 14.41%, #AE8120 100%);
    border-radius: 4px;
    text-transform: uppercase;
    padding: 12px 32px;
    cursor: pointer;

    color: var(--color-primary);

    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    transition: all 0.3s linear;
}

.header .header__signup:hover {
    /* background: linear-gradient(180deg, #AE8120  0%, #E7AB2A 14.41%, #FFC546 100%);
    color: #fff; */
    transform: scale(1.02);
    transition: all 0.3s linear;
}

.menu-mobile {
    display: none;
}

@media screen and (max-width: 1400px) {
    .header .header__logo img {
        height: 32px;
    }

    .header .header__menu--list,
    .header .header__menu {
        gap: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .header .header__menu--label {
        font-size: 14px;
    }

    .header .header__signup {
        padding: 8px 18px;
        font-size: 14px;
    }

    .header .header__logo img {
        height: 28px;
    }
}

@media screen and (max-width: 991px) {
    .header .header__menu--list {
        display: none;
    }

    .menu-mobile {
        display: block;
        position: absolute;
        z-index: 99;
        top: 100%;
        /* right: 0; */
        right: -100%;
        background: #fff;
        height: 100vh;
        width: fit-content;
        transition: all 0.3s;
    }

    .menu-mobile.active {
        right: 0%;
        transition: all 0.3s;
    }

    .menu-mobile--list {
        padding: 12px 0px 12px 12px;
    }

    .menu-mobile--item {
        padding: 16px 24px 16px 0px;
        border-bottom: 1px solid #09264699;
    }

    .menu-mobile--link,
    .menu-mobile--link:visited {
        color: #092646;
        font-weight: 500;
        font-size: 16px;
        padding-left: 12px;
    }

    .btn-mobile {
        background-color: transparent;
        outline: none;
        border: 0;
    }

    .btn-mobile img {
        width: 24px;
        height: auto;
        filter: invert(50%) sepia(2%) saturate(245%) hue-rotate(260deg) brightness(210%) contrast(100%);
    }
}

@media screen and (max-width: 576px) {

    .header {
        height: fit-content;
    }

    .header .header__logo img {
        height: 22px;
    }

    .header .header__menu--list, .header .header__menu {
        gap: 10px;
    }

    .header .header__signup {
        padding: 4px 10px;
        font-size: 10px;
    }

    .menu-mobile--link, .menu-mobile--link:visited {
        width: 100%;
        font-size: 12px;
    }

    .menu-mobile {
        width: 100%;
    }
}