body {
    background-color: var(--main-color) !important;
}

header .container-fluid {
    width: calc(100% - 30px);
}

.header-top {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100vw;
    background: linear-gradient(var(--main-color) 77%, var(--main0-color) 100%);
}

.header-top .header_burgerMenu {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 5;
    width: 100%;
    height: 100vh;
    background: var(--main70-color);
    overflow: hidden;
    transition: left 0.5s ease-in;
}

.header-top .header_burgerMenu div.menu {
    position: absolute;
    top: 0;
    left: -50%;
    z-index: 5;
    width: 50%;
    height: 100%;
    background-color: var(--main-color);
    /* overflow: hidden; */
    transition: left 0.5s ease-in;
}

.header-top .header_burgerMenu.active {
    top: 0;
    left: 0;
    transition: left 0.5s ease-out;
}

.header-top .header_burgerMenu.active div.menu.active {
    top: 0;
    left: 0;
    transition: left 0.5s ease-out;
}

.header-topInner, .header-bottom {
    margin-left: auto;
    margin-right: auto;
}

.header-top .header_burgerMenu div.menu nav a.header-phone_number {
    display: inline-block;
    font-size: var(--middle-size);
    color: var(--second-color);
    text-indent: 0;
    margin-bottom: 20px;
    vertical-align: middle;
}

.header-top .header_burgerMenu div.menu nav a.header-phone_number i.icon-phone {
    display: inline-flex;
    color: var(--second-color);
    margin-right: 20px;
}

.header-top .header_burgerMenu div.menu i.icon-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: var(--middle-size);
    color: var(--second-color);
}

.header-top .header_burgerMenu div.menu a.logo {
    margin-top: 30px;
}

.header-top .header_burgerMenu div.menu a.logo p.header-brand {
    margin-top: 10px;
}

.header-top .header_burgerMenu div.menu a.logo p.header-brand i {
    color: var(--second-color);
}

.header-top .header_burgerMenu div.menu nav {
    width: 80%;
    margin: 50px auto 0 auto;
}

.header-top .header_burgerMenu div.menu nav ul {
    list-style-type: none;
}

.header-top .header_burgerMenu div.menu nav ul li {
    margin: 20px 0;
}

.header-top .header_burgerMenu div.menu nav ul li a {
    color: var(--second-color);
}

/* .header-top.scrolled {
    position: fixed;
    top: 0;
    z-index: 100;
} */

.header-topInner {
    padding: 40px 0 63px 0;
}

.header-top .header-settings i.icon-burger {
    color: var(--second-color);
    font-size: var(--small-size);
    margin-top: 10px;
}

.header-top .header-settings a .header-logo {
    width: auto;
    height: 50px;
    transition: height 0.5s ease-out;
}

.header-top .header-settings a .header-brand {
    color: var(--second-color);
    font-size: calc(var(--big-size)/2);
    margin-top: 10px;
    transition: font-size 0.5s ease-out;
}

.header-top.scrolled .header-settings a .header-logo {
    height: 25px;
    transition: height 0.5s ease-out;
}

.header-top.scrolled .header-settings a .header-brand {
    width: auto;
    font-size: 0;
    transition: font-size 0.5s ease-out;
}

.header-top .header-settings .selectLang {
    position: relative;
    right: 0;
    margin-right: 30px;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.header-top.scrolled .header-settings .selectLang {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.header-top .header-settings a {
    margin-left: auto;
    margin-right: auto;
}

.selectLang a.top {
    position: absolute;
    top: 0 !important;
    transition: top .3s ease-in;
}

/* .selectLang a.top:not(.active) {
    position: absolute;
    top: 0 !important;
    transition: top .3s ease-in;
} */

.selectLang a:not(.active) {
    position: absolute;
    opacity: 1;
    order: 1;
    /* margin: 5px 0; */
    transition: top .3s ease-in;
}

.selectLang a.active {
    position: absolute;
    top: 0;
    z-index: 3;
    opacity: 1;
    order: 0;
    /* margin: 0 0 5px 0; */
}

.selectLang a img {
    width: 28px;
    height: 18px;
}

.header-phone_number {
    font-weight: 300;
    color: var(--second-color);
    font-size: var(--extraSmall-size);
    text-indent: 20px;
    line-height: 48px;
}

.header-menu nav {
    width: 100%;
}

.header-menu nav ul {
    display: flex;
    justify-content: space-between;
    align-items: start;
    list-style: none;
}

.header-menu nav ul li a {
    font-size: var(--extraSmall-size);
    font-weight: 600;
    color: var(--second-color);
    transition: color .6s;
    width: 100%;
}

.header-menu nav ul li a:hover {
    font-size: var(--extraSmall-size);
    font-weight: 600;
    color: var(--alertFont-color);
    transition: color .6s;
}

.header-menu nav ul li:not(.order-call) {
    max-width: 105px;
}

.header-menu nav ul li.order-call a {
    display: inline-block;
    width: auto;
    height: 100%;
    font-weight: 500;
    text-align: center;
    background: var(--alertFont-color);
    border: 1px solid transparent;
    border-radius: 5px;
    transition: border .3s ease-out;
    padding: 8px 38px;
}

.header-menu nav ul li.order-call a:hover {
    display: inline-block;
    width: auto;
    height: 100%;
    font-weight: 500;
    text-align: center;
    background: var(--alertFont-color);
    border: 1px solid var(--second-color);
    color: var(--second-color);
    transition: border .3s ease-out;
}

.header-menu nav ul li.order-call a span {
    display: inline-block;
    max-width: 131px;
    text-align: center;
}

.header-bottom {
    margin-top: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 550px;
    width: 1304px;
}

.header-bottom h3 {
    color: var(--second70-color);
    font-weight: 500;
    line-height: 45px;
    margin-left: 8.333%;
}

.header-bottom h1 {
    color: var(--second-color);
    line-height: 70px;
    margin: 12px 0;
    margin-left: 8.333%;
}

.header-bottom a {
    color: var(--second-color);
    text-align: center;
    margin-top: 12px;
    margin-left: 8.333%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    height: 50px;
    font-weight: 500;
    text-align: center;
    background: var(--alertFont-color);
    border: 1px solid transparent;
    border-radius: 5px;
    transition: border .3s ease-out;
}

.header-bottom a:hover {
    display: inline-flex;
    font-weight: 500;
    text-align: center;
    background: var(--alertFont-color);
    border: 1px solid var(--second-color);
    color: var(--second-color);
    transition: border .3s ease-out;
}

.header-bottom a span {
    width: auto;
    height: auto;
    text-align: center;
}

@media screen and (max-width: 1399px) {
    .header-topInner {
        padding: 20px 0 50px 0;
    }
}

@media screen and (max-width: 1199px) {
    .header-topInner {
        padding: 20px 0 50px 0;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .header-top .header-settings a.header-logo img {
        transform: scale(0.8);
    }

    .header-top .header-settings a .header-brand {
        font-size: var(--small-size);
        margin-top: 7px;
    }

    .header-menu nav ul li:not(.order-call) {
        max-width: 99px;
    }

    .header-menu nav ul li a {
        font-size: var(--extraSmall-size);
    }

    .header-menu nav ul li.order-call a span {
        max-width: 105px;
    }

    .header-bottom {
        margin-top: 180px;
    }

    .header-bottom h1 {
        margin: 8px 0;
        margin-left: 8.333%;
    }

    .header-bottom a {
        margin-top: 8px;
        max-width: 220px;
        height: 45px;
    }
}

@media screen and (max-width: 991px) {
    .header-top .header-settings {
        align-items: center;
    }

    .header-top .header-settings i.icon-burger {
        display: inline-block;
        margin-top: 15px;
    }

    .header-top .header-settings .selectLang {
        margin-top: -15px;
    }

    .header-topInner .header-menu {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .header-top .header-settings i.icon-burger {
        display: inline-block;
    }

    .header-top .header-settings a img.header-logo {
        transform: scale(0.7);
    }

    .header-top .header-settings a .header-brand {
        font-size: var(--overSmall-size);
        margin-top: 5px;
    }

    .header-menu nav ul li:not(.order-call) {
        max-width: 99px;
    }

    .header-menu nav ul li a {
        font-size: var(--extraSmall-size);
    }

    .header-menu nav ul li.order-call a span {
        max-width: 105px;
    }

    .header-bottom {
        margin-top: 100px;
        background-size: cover;
        background-position-x: -250px;
        background-position-y: center;
        background-repeat: no-repeat;
        height: 550px;
    }

    .header-bottom h1 {
        margin: 10px 0;
        margin-left: 0;
    }

    .header-bottom h3 {
        margin-left: 0;
    }

    .header-bottom a {
        margin-top: 10px;
        max-width: 220px;
        margin-left: 0;
        height: 45px;
    }

    .header-topInner .header-menu {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .header-top .header-settings a img.header-logo {
        scale: 0.7;
    }

    .header-top .header-settings a .header-brand {
        font-size: var(--smallest-size);
        margin-top: 5px;
    }

    .header-top .header_burgerMenu div.menu {
        width: 100%;
    }
    
    .header-bottom {
        margin-top: 50px;
        background-size: cover;
        background-position-x: clamp(-23.75rem, -48.083rem + 67.708vw, -15.625rem);
        background-position-y: center;
        background-repeat: no-repeat;
        width: calc(100vw - 30px) !important;
        height: 550px;
    }

    .header-bottom h1 {
        line-height: 40px;
        margin: 10px 0;
        margin-left: 0;
    }

    .header-bottom h3 {
        font-size: 20px;
        margin-left: 0;
    }

    .header-bottom a {
        margin-top: 20px;
        margin-left: 0;
        max-width: 200px;
        height: 45px;
    }
}

@media screen and (max-width: 575px) {
    .header-bottom {
        position: relative;
        margin-top: 50px;
        background-size: cover;
        background-position-x: -550px;
        background-position-y: center;
        background-repeat: no-repeat;
        height: 550px;
    }

    .header-bottom .black {
        background: var(--main31-color);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 0;
    }

    .header-bottom h1 {
        position: relative;
        line-height: 40px;
        margin: 10px auto;
        /* margin-left: 0; */
    }

    .header-bottom h3 {
        position: relative;
        font-size: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .header-bottom a {
        position: relative;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        width: 250px;
        height: 45px;
    }

    .header-top .header_burgerMenu div.menu nav ul li {
        margin: 30px 0;
    }
}

@media screen and (max-width: 575px) {
    .header-top .header_burgerMenu div.menu {
        left: 0;
    }
}