.header {
    width: 100%;
    padding: 40px 0 60px;
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 75px;
    padding: 0 15px;
    background: #111B31;
}

.nav-mobile {
    display: none;
}

.logo {
    width: 150px !important;
}

.logo img {
    height: 49px;
    display: block;
    cursor: pointer;
    width: 100%;
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.nav a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.nav a:hover {
    opacity: 0.8;
}

.lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    color: #fff;
}

.lang span {
    cursor: pointer;
}

.active {
    border-bottom: 1px solid #fff;
}


.call-button {
    background: #fff;
    color: #050F27;
    width: 156px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.2s, -webkit-transform 0.2s;
    transition: background 0.2s, -webkit-transform 0.2s;
    -o-transition: background 0.2s, transform 0.2s;
    transition: background 0.2s, transform 0.2s;
    transition: background 0.2s, transform 0.2s, -webkit-transform 0.2s;
}

.call-button:hover {
    background: #e5e5e5;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.burger {
    display: none;
}

@media (max-width: 992px) {

    .nav-container {
        height: 100px;
    }

    .nav {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .call-button {
        width: auto;
        padding: 10px 16px;
        font-size: 14px;
    }
}


@media (max-width: 768px) {
    body.lock {
        overflow: hidden;
    }

    .logo img {
        width: 100px;
        height: 33px;
    }

    .nav {
        display: none;

    }

    .nav-mobile.active-menu {
        display: block;
        position: absolute;
        overflow-y: scroll;
        top: 0;
        right: 0;
        bottom: 0;
        color: #f1f1f1;
        background: #050F27;
        width: 80%;
        z-index: 99;
        padding-top: 15px;
        padding-right: 25px;
        height: 100%;

        .lang {
            justify-content: end;
        }

        .nav-title {
            font-size: 20px;
            font-weight: 700;
            line-height: 20px;
            margin-bottom: 10px;
        }

        .links {
            display: flex;
            flex-direction: column;
        }

        .links a {
            padding: 23px 0 23px 30px;
        }

    }

    .burger {
        display: block;
        width: 24px;
        height: 24px;
        cursor: pointer;
        position: relative;
        background-image: url("../images/burger.png");
        background-repeat: no-repeat;
        background-size: contain;
    }
}


