* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}

/* remove highlight color on mobile */
* {
    -webkit-tap-highlight-color: transparent;
}

input.telephone::-webkit-outer-spin-button,
input.telephone::-webkit-inner-spin-button,
input#contact_telephone::-webkit-outer-spin-button,
input#contact_telephone::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

@-webkit-keyframes bounceright {
    from {
        -webkit-transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(3px);
    }
}

body {
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

button {
    &:focus {
        outline: none;
    }
}

/* width */
.flip_box_back p::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.flip_box_back p::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
.flip_box_back p::-webkit-scrollbar-thumb {
    background: #0b2766;
}

/* Handle on hover */
.flip_box_back p::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

/* recaptcha badge */
.grecaptcha-badge {
    display: none;
}

.container {
    max-width: 1155px;
    margin: 0 auto;
    width: 100%;
    padding: 0 50px;
}

.heading {
    font-weight: 800;
    font-size: 56px;
    line-height: 100%;
    color: #0b2766;
}

.heading_main {
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    color: #0b2766;
    word-break: break-word;

    span {
        color: #fff100;
    }
}

.btn_block {
    background: #fff100;
    padding: 16px 20px;
    border-radius: 55px;
    border: none;
    font-weight: 800;
    font-size: 14px;
    line-height: 17px;
    cursor: pointer;
    color: #0b2766;
    transition-property: color;
    transition: all 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    text-align: center;

    &:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #f0dc00;
        border-radius: 100%;
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-timing-function: in-ease-out;
        transition-timing-function: ease-out;
    }

    &:hover {
        /*color: #fff;*/
        &:before {
            -webkit-transform: scale(2);
            transform: scale(2);
        }
    }
}

.center {
    text-align: center;
}

.logo_img {
    cursor: pointer;
}

body {
    overflow-x: hidden;

    &.noscroll {
        overflow: hidden;
    }

    &.menu_open {
        overflow: hidden;
    }
}

.side_bar_scroll {
    background: #fff100;
    border-radius: 40px 0px 0px 40px;
    max-width: 178px;
    position: fixed;
    // right: -100%;
    right: 0;
    transition: all 0.5s ease-in-out;
    width: 100%;
    text-align: center;
    padding: 20px 20px;
    z-index: 2;
    top: 50%;
    cursor: pointer;
    overflow: hidden;
    display: none;

    // &.active {
    //     right: 0;
    // }
    p {
        font-size: 14px;
        line-height: 140%;
        color: #1f4496;
        font-weight: 800;
    }

    &:after {
        background: #cfc40f;
        content: "";
        height: 155px;
        left: -75px;
        opacity: 0.2;
        position: absolute;
        top: -50px;
        transform: rotate(35deg);
        transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
        width: 50px;
        z-index: -10;
    }

    &:hover {
        background: #f0dc00;

        &:after {
            left: 120%;
            transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
        }
    }
}

.popup_video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    display: none;
    max-width: 900px;
    height: 100%;
    width: 100%;
    max-height: 500px;
    padding: 0 20px;

    &.valuation {
        max-width: 1050px;
        max-height: 570px;
    }

    &.active {
        display: block;
    }

    .close_popup {
        position: absolute;
        background: #fff100;
        width: 40px;
        height: 40px;
        border-radius: 10rem;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: -50px;
        cursor: pointer;

        &:before,
        &:after {
            content: "";
            position: absolute;
            width: 1px;
            height: 20px;
            background: #0b2766;
            left: 19px;
            top: 10px;
        }

        &:after {
            transform: rotate(45deg);
        }

        &:before {
            transform: rotate(-45deg);
        }
    }

    .video_box {
        position: relative;
        padding-bottom: 56.25%;

        iframe {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            right: 0;
            margin: 0 auto;
        }
    }
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #eaeaea;
    display: none;
    z-index: 999;

    &.active {
        display: block;
    }

    &.estimate {
        z-index: 1000;
        background-color: #0a2c71;
    }
}

.cookies_bar {
    background: #fff100;
    padding: 15px 20px;
    transition: all 0.5s ease-in-out;
    position: fixed;
    width: 100%;
    z-index: 13;
    top: 0;

    &.hide {
        top: -80px;
    }

    &.active {
        z-index: 0;
    }

    p {
        font-size: 14px;
        line-height: 160%;
        color: #0b2766;

        span {
            font-weight: 800;
            position: relative;
            display: inline-block;
            margin: 0 0 0 25px;
            z-index: 1;
            padding: 0 2px;
            color: #0b2766;
            cursor: pointer;

            &:before {
                content: "";
                position: absolute;
                width: 100%;
                height: 37%;
                background: #fff;
                bottom: 3px;
                z-index: -1;
                left: 0;
            }

            &:active {
                color: #0b2766;
            }
        }
    }

    .close {
        position: absolute;
        right: 22px;
        top: 16px;
        cursor: pointer;
        width: 20px;
        height: 20px;

        &:before,
        &:after {
            content: "";
            position: absolute;
            width: 2px;
            height: 10px;
            background: #bfb60b;
            left: 9px;
            top: 6px;
        }

        &:before {
            transform: rotate(45deg);
        }

        &:after {
            transform: rotate(-45deg);
        }
    }

    &.hide {
        display: none;
    }
}

.banner_cookies {
    position: fixed;
    bottom: 30px;
    right: 30px;
    margin: 0 auto;
    max-width: 410px;
    width: 100%;
    z-index: 12;
    display: none;

    .inner_ckooies {
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        padding: 12px 12px 12px 35px;
        background: #ffffff;
        box-shadow: 0px 8px 34px rgb(32 32 50 / 30%);
        border-radius: 60px;
        justify-content: space-between;

        p {
            display: inline-table;
            max-width: 270px;
            text-align: left;
            font-size: 14px;
            line-height: 135%;
            color: #5673b1;

            a {
                color: #0b2766;
            }
        }

        .grid {
            width: 71px;
            height: 71px;
            display: flex;
            background: #e7eaf3;
            align-items: center;
            justify-content: center;
            border-radius: 10rem;
            cursor: pointer;

            img {
                width: 30px;
                height: 10px;
            }
        }
    }
}

.maisonpage {
    header {
        .header {
            &.sticky {
                background-color: transparent;
                border-bottom: none;

                &.nav-up,
                &.nav-down {
                    background-color: #fff;

                    .logo_block {
                        .dropdown-sec {
                            .lang_block {
                                span {
                                    @media (max-width: 767px) {
                                        color: #0b2766;
                                    }
                                }
                            }
                        }
                    }
                }
            }

            .logo_block {
                .dropdown-sec {
                    .lang_block {
                        span {
                            @media (max-width: 767px) {
                                color: #fff;
                            }
                        }
                    }
                }
            }

            .navigation_bar {
                nav {
                    ul {
                        li {
                            a {
                                &.active {
                                    color: #fff;
                                }

                                &:after {
                                    background: #fff;
                                }

                                &:hover {
                                    color: #fff;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.homepage {
    header {
        .header {
            .navigation_bar {
                nav {
                    ul {
                        li {
                            a {
                                color: #0b2766;
                            }
                        }
                    }
                }
            }
        }
    }
}

.listPage {
    header {
        background: #fafaff;
    }
}

header {
    position: relative;
    z-index: 12;

    &.cookies_active {
        padding: 52px 0 0;
    }

    .top_bar {
        background: #fafaff;
        display: flex;
        justify-content: space-between;
        padding: 15px 40px;
        flex-wrap: wrap;

        .left_bar {
            ul {
                display: flex;

                li {
                    padding: 0 20px 0 0;

                    .lang_block {
                        position: relative;

                        span {
                            color: #0b2766;
                            font-weight: bold;
                            font-size: 14px;
                            line-height: 22px;
                            position: relative;
                            display: inline-block;
                            padding: 0 15px 0 0;
                            cursor: pointer;
                            text-transform: uppercase;

                            &:before {
                                content: "";
                                position: absolute;
                                width: 0px;
                                height: 0px;
                                border-left: 5px solid transparent;
                                border-right: 5px solid transparent;
                                border-top: 6px solid #c5d0e8;
                                right: 0;
                                top: 8px;
                            }
                        }

                        .dropdown_lang {
                            position: absolute;
                            min-width: 60px;
                            background: #fafaff;
                            border-radius: 2px;
                            box-shadow: 0px 8px 13px rgb(31 68 150 / 8%);
                            display: none;
                            overflow: hidden;

                            ul {
                                flex-direction: column;

                                li {
                                    padding: 0;

                                    a {
                                        padding: 2px 10px 2px 10px;
                                        display: inline-block;
                                        width: 100%;
                                        font-size: 12px;
                                        font-weight: bold;
                                        text-transform: uppercase;
                                        transition: all 0.5s ease-in-out;

                                        &:hover {
                                            background: #f4f4f5;
                                        }
                                    }
                                }
                            }
                        }

                        &:hover {
                            .dropdown_lang {
                                display: block;
                            }
                        }
                    }

                    a {
                        font-size: 14px;
                        line-height: 22px;
                        color: #5673b1;
                    }
                }
            }
        }

        .right_bar {
            ul {
                display: flex;
                align-items: center;

                li {
                    padding: 0 0 0 10px;

                    a,
                    span {
                        font-size: 14px;
                        line-height: 22px;
                        display: flex;
                        color: #5673b1;
                    }
                }
            }
        }
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 40px;

        // position: relative;
        &.sticky {
            position: fixed;
            transition: top 0.6s;
            width: 100%;
            background-color: #fff;
            border-bottom: 2px solid #fff;

            &.nav-down {
                box-shadow: 0 0px 10px -1px rgba(0, 0, 0, 0.1);
                animation: slideDown 0.5s ease-in-out;
            }

            &.cookies {
                top: 47px;
            }

            &.nav-up {
                top: -100px;
            }
        }

        .logo_block {
            a {
                img {
                    display: flex;
                }
            }

            .dropdown-sec {
                display: none;

                @media (max-width: 767px) {
                    display: block;
                    padding-left: 20px;
                }

                .lang_block {
                    position: relative;

                    span {
                        color: #0b2766;
                        font-weight: bold;
                        font-size: 14px;
                        line-height: 22px;
                        position: relative;
                        display: inline-block;
                        padding: 0 15px 0 0;
                        cursor: pointer;
                        text-transform: uppercase;

                        &:before {
                            content: "";
                            position: absolute;
                            width: 0px;
                            height: 0px;
                            border-left: 5px solid transparent;
                            border-right: 5px solid transparent;
                            border-top: 6px solid #c5d0e8;
                            right: 0;
                            top: 8px;
                        }
                    }

                    .dropdown_lang {
                        position: absolute;
                        min-width: 60px;
                        background: #fafaff;
                        border-radius: 2px;
                        box-shadow: 0px 8px 13px rgb(31 68 150 / 8%);
                        display: none;
                        overflow: hidden;

                        ul {
                            flex-direction: column;

                            li {
                                padding: 0;

                                a {
                                    padding: 2px 10px 2px 10px;
                                    display: inline-block;
                                    width: 100%;
                                    font-size: 12px;
                                    font-weight: bold;
                                    text-transform: uppercase;
                                    transition: all 0.5s ease-in-out;
                                    color: #5673b1;

                                    &:hover {
                                        background: #f4f4f5;
                                    }
                                }
                            }
                        }
                    }

                    &:hover {
                        .dropdown_lang {
                            display: block;
                        }
                    }
                }
            }
        }

        .navigation_bar {
            width: calc(100% - 175px);
            display: flex;
            align-items: center;
            justify-content: space-between;

            nav {
                ul {
                    display: flex;

                    li {
                        &.mobile {
                            @media (min-width: 1199px) {
                                display: none;
                            }
                        }

                        &.desktop {
                            @media (max-width: 1199px) {
                                display: none;
                            }
                        }

                        padding: 0 20px 0 0;

                        a {
                            font-weight: 700;
                            font-size: 14px;
                            line-height: 22px;
                            color: #6a6a6a;
                            transition: all 0.5s ease-in-out;
                            position: relative;

                            &:after {
                                content: "";
                                position: absolute;
                                bottom: -2px;
                                left: 0;
                                right: 0;
                                margin: auto;
                                width: 0%;
                                content: ".";
                                color: transparent;
                                background: #0b2766;
                                height: 1px;
                                transition: all 0.5s;
                            }

                            &:hover {
                                color: #0b2766;

                                &:after {
                                    width: 100%;
                                }
                            }

                            &.active {
                                color: #6a6a6a;
                            }
                        }
                    }
                }
            }
        }
    }

    .mobile-right-sec {
        display: none;
    }

    .header_menu {
        display: none;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }
}

footer {
    .agencies_title {
        h3 {
            font-size: 16px;
            font-weight: 600;
            color: #1e3a5f;
            margin: 0;
        }
    }

    .upper_footer {
        background: #f8f9fd;
        padding: 100px 0 115px;

        .footer_logo_block {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0 0 100px;

            .left {
                display: flex;
                align-items: center;
                width: 75%;

                p {
                    padding: 0 0 0 25px;
                    font-size: 20px;
                    line-height: 170%;
                    color: #5673b1;
                }
            }

            .right {
                width: 25%;
                text-align: right;

                .btn_block {
                    background: #f0f0f9;

                    &:before {
                        background: #e0e0ec;
                    }
                }
            }
        }

        .footer_contact_block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;

            @media (min-width: 992px) and (max-width: 1199.5px) {
                gap: 20px;
            }

            .heading {
                font-weight: 800;
                font-size: 12px;
                line-height: 13px;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: #0b2766;
                width: 100%;
                padding: 0 0 15px;
            }

            .left {
                .view-address {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 5px;

                    @media (min-width: 992px) and (max-width: 1199.5px) {
                        gap: 10px;
                    }
                }

                .menu_block {
                    .contact_wrap {
                        h3 {
                            font-weight: bold;
                            font-size: 16px;
                            line-height: 170%;
                            color: #5673b1;
                            padding: 0 0 10px;
                        }

                        ul {
                            li {
                                display: flex;
                                align-items: baseline;

                                img {
                                    width: 16px;
                                    line-height: 16px;
                                    position: relative;
                                    top: 4px;
                                }

                                a,
                                span {
                                    display: inline-block;
                                    font-size: 16px;
                                    line-height: 170%;
                                    color: #0b2766;
                                    padding: 0 0 0 10px;
                                }
                            }
                        }
                    }

                    // &:last-child {
                    //     padding: 0 0 0 15px;
                    // }
                }
            }

            .right-addresses {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 5px;

                @media (min-width: 992px) and (max-width: 1199.5px) {
                    gap: 10px;
                }

                .middle {
                    // width: 25%;
                    .menu_block {
                        .contact_wrap {
                            h3 {
                                font-weight: bold;
                                font-size: 16px;
                                line-height: 170%;
                                color: #5673b1;
                                padding: 0 0 10px;
                            }

                            ul {
                                li {
                                    display: flex;
                                    align-items: baseline;

                                    img {
                                        width: 16px;
                                        line-height: 16px;
                                    }

                                    a,
                                    span {
                                        display: inline-block;
                                        font-size: 16px;
                                        line-height: 170%;
                                        color: #0b2766;
                                        padding: 0 0 0 10px;
                                    }
                                }
                            }
                        }
                    }
                }

                .right {
                    // width: 25%;
                    .menu_block {
                        .contact_wrap {
                            h3 {
                                font-weight: bold;
                                font-size: 16px;
                                line-height: 170%;
                                color: #5673b1;
                                padding: 0 0 10px;
                            }

                            ul {
                                li {
                                    display: flex;
                                    align-items: baseline;

                                    img {
                                        width: 16px;
                                        line-height: 16px;
                                    }

                                    a,
                                    span {
                                        display: inline-block;
                                        font-size: 16px;
                                        line-height: 170%;
                                        color: #0b2766;
                                        padding: 0 0 0 10px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .center_footer {
        background: linear-gradient(
            180deg,
            rgba(56, 45, 255, 0.05) 0%,
            rgb(248 249 253 / 34%) 100%
        );
        padding: 85px 0 70px;

        .center_footer_inner {
            display: flex;
            align-items: flex-end;
            flex-wrap: wrap;

            .left {
                width: 45%;

                .social {
                    display: flex;

                    li {
                        padding: 0 10px 0 0;

                        a {
                            display: flex;
                        }
                    }
                }

                .contact_list {
                    margin: 13px 0 0;

                    a {
                        font-weight: 800;
                        font-size: 22px;
                        line-height: 170%;
                        color: #0b2766;
                        margin: 0 40px 0 0;
                    }
                }

                .next_page_link {
                    margin: 30px 0 0;

                    a {
                        font-weight: bold;
                        font-size: 16px;
                        line-height: 170%;
                        color: #0b2766;
                        display: inline-flex;
                        margin: 0 0 0 70px;

                        &:first-child {
                            margin: 0;
                        }

                        img {
                            padding: 0 0 0 12px;
                            transition: 0.2s;
                            transform-origin: 50% 60%;
                        }

                        &:hover {
                            img {
                                -webkit-animation: bounceright 0.3s alternate
                                    ease infinite;
                                animation: bounceright 0.3s alternate ease
                                    infinite;
                            }
                        }
                    }
                }
            }

            .right {
                width: 55%;

                .footer__menu {
                    ul {
                        display: flex;
                        justify-content: flex-end;

                        li {
                            padding: 0 15px;

                            a {
                                font-weight: 800;
                                font-size: 14px;
                                line-height: 160%;
                                text-align: right;
                                color: #0b2766;
                            }

                            &:last-child {
                                padding-right: 0;
                            }
                        }
                    }
                }

                .serach_box {
                    text-align: right;
                    margin: 18px 0 0;
                    position: relative;

                    input {
                        background: #f8f9fd;
                        border: 1px solid #e0e4ef;
                        border-radius: 100px;
                        font-size: 14px;
                        line-height: 150%;
                        color: #5673b1;
                        padding: 14px 45px 14px 16px;
                        width: 253px;
                        -webkit-appearance: none;

                        &:focus {
                            outline: none;
                        }

                        &::placeholder {
                            color: #5673b1;
                        }

                        &::-webkit-inner-spin-button,
                        &::-webkit-outer-spin-button {
                            -webkit-appearance: none;
                            -moz-appearance: none;
                            appearance: none;
                        }
                    }

                    span {
                        width: 37px;
                        height: 37px;
                        background: #f0f0f9;
                        display: inline-block;
                        border-radius: 10rem;
                        position: absolute;
                        right: 6px;
                        top: 7px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        cursor: pointer;
                    }
                }
            }
        }
    }

    .fotter_bottom {
        padding: 79px 0 121px;

        .footer_grid {
            h4 {
                font-size: 12px;
                line-height: 160%;
                color: #0b2766;
                font-weight: normal;

                a {
                    color: #0b2766;
                }
            }

            p {
                font-size: 12px;
                line-height: 160%;
                color: #5673b1;
                padding: 0 10px 0 0;

                a {
                    color: #0b2766;
                }
            }
        }

        .copyright {
            display: flex;
            justify-content: space-between;
            padding: 32px 0 0;

            .copyright_left {
                width: 49%;

                p {
                    font-weight: 800;
                    font-size: 14px;
                    line-height: 22px;
                    color: #5673b1;
                }
            }

            .copyright_right {
                width: 49%;

                p {
                    font-weight: 800;
                    font-size: 14px;
                    line-height: 22px;
                    color: #5673b1;
                    text-align: right;

                    a {
                        color: #0b2766;
                    }
                }
            }
        }
    }
}

.singlepage {
    .overlay {
        background: rgba(255, 255, 255, 0.95);
    }
}

@media (max-width: 479px) {
    .banner_cookies {
        max-width: 300px;
        right: 0;
        left: 0;
        margin: 0 auto;
        bottom: 70px;

        .inner_ckooies {
            padding: 12px 12px 12px 25px;

            p {
                max-width: 200px;
                font-size: 12px;
            }

            .grid {
                width: 60px;
                height: 60px;
            }
        }
    }

    .popup_video {
        /*max-height: 300px;*/
    }
}

@media (min-width: 480px) and (max-width: 767.5px) {
    .banner_cookies {
        max-width: 300px;

        .inner_ckooies {
            padding: 12px 12px 12px 25px;

            p {
                max-width: 200px;
                font-size: 12px;
            }

            .grid {
                width: 60px;
                height: 60px;
            }
        }
    }

    .popup_video {
        /*max-height: 310px;*/
    }
}

@media (max-width: 767.5px) {
    main {
        padding-top: 95px;
    }

    .container {
        padding: 0 20px;
    }

    .heading {
        font-size: 35px;
    }

    .popup_video {
        max-height: initial;
        height: initial;

        .close_popup {
            top: 10px;
            z-index: 1;
        }

        .video_box {
            /*-webkit-overflow-scrolling: touch;
			overflow-y: scroll;
			display: contents;*/
            iframe {
                height: 100%;
                width: 100%;
            }
        }
    }

    .homepage {
        header {
            .header {
                .navigation_bar {
                    nav {
                        ul {
                            li {
                                a {
                                    color: #fff;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    header {
        .top_bar {
            padding: 15px 15px;
            justify-content: center;
            display: none;

            .left_bar {
                ul {
                    justify-content: center;

                    li {
                        padding: 0 5px;

                        a {
                            font-size: 12px;
                        }
                    }
                }
            }

            .right_bar {
                width: 100%;

                ul {
                    justify-content: center;
                    margin: 10px 0 0;

                    li {
                        padding: 0 5px;
                    }
                }
            }
        }

        .header {
            padding: 16px 15px;

            .logo_block {
                display: flex;
                align-items: center;

                a {
                    img {
                        max-width: 80px;
                    }
                }
            }

            .navigation_bar {
                background: #0b2766;
                position: fixed;
                height: 100%;
                width: 100%;
                left: -100%;
                top: 0;
                bottom: 0;
                z-index: 99;
                transition: all 0.5s ease-in-out;
                flex-wrap: wrap;
                align-content: center;
                justify-content: center;

                &.active {
                    left: 0;

                    .close_menu {
                        background: #fff100;
                        width: 30px;
                        height: 30px;
                        position: absolute;
                        top: 20px;
                        right: 20px;
                        border-radius: 10rem;
                        display: block;
                        cursor: pointer;

                        &:before,
                        &:after {
                            content: "";
                            position: absolute;
                            width: 1px;
                            height: 15px;
                            background: #0b2766;
                            left: 14px;
                            top: 7px;
                        }

                        &:before {
                            transform: rotate(-45deg);
                        }

                        &:after {
                            transform: rotate(45deg);
                        }
                    }

                    nav {
                        ul {
                            li {
                                a {
                                    &:hover {
                                        color: #fff100;
                                    }
                                }
                            }
                        }
                    }
                }

                .close_menu {
                    display: none;
                }

                nav {
                    margin: 0 0 10px;
                    width: 100%;

                    ul {
                        flex-wrap: wrap;

                        li {
                            padding: 0;
                            width: 100%;
                            text-align: center;

                            a {
                                padding: 5px 0;
                                display: inline-block;
                                color: #fff;

                                &.active {
                                    color: #fff100;
                                }
                            }
                        }
                    }
                }
            }

            .mobile-right-sec {
                display: flex;
                align-items: center;

                .call-icon {
                    width: 32px;
                    height: 32px;
                    background: #fff100;
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 100px;
                    position: relative;

                    img {
                        width: 18px;
                        margin-top: 3px;
                    }
                }

                .header_menu {
                    width: 35px;
                    height: 30px;
                    background: #fff100;
                    border-radius: 3px;
                    position: relative;
                    display: flex;
                    align-items: center;
                    flex-direction: column;
                    justify-content: center;
                    cursor: pointer;
                    margin-left: 20px;

                    span {
                        width: 20px;
                        height: 2px;
                        background: #0a2c71;
                        display: block;
                        margin: 2px 0;
                    }
                }
            }
        }
    }

    footer {
        .upper_footer {
            padding: 50px 0 50px;

            .footer_logo_block {
                padding: 0 0 50px;

                .left {
                    justify-content: center;
                    width: 100%;
                    flex-wrap: wrap;

                    p {
                        padding: 15px 0 15px;
                        font-size: 16px;
                        line-height: 140%;
                        width: 100%;
                        text-align: center;
                    }
                }

                .right {
                    width: 100%;
                    text-align: center;
                }
            }

            .footer_contact_block {
                grid-template-columns: 1fr;
                gap: 15px;

                .left {
                    width: 100%;
                    padding: 0;
                    text-align: center;

                    .view-address {
                        grid-template-columns: 1fr;
                        gap: 15px;
                    }

                    .menu_block {
                        width: 100%;

                        &:last-child {
                            padding: 0 0 20px;
                        }

                        .contact_wrap {
                            ul {
                                li {
                                    justify-content: center;
                                    padding: 5px 0;

                                    a,
                                    span {
                                        font-size: 13px;
                                    }
                                }
                            }
                        }
                    }
                }

                .right-addresses {
                    grid-template-columns: 1fr;
                    gap: 15px;

                    .right,
                    .middle {
                        width: 100%;
                        text-align: center;
                        padding: 0 0 20px 0;

                        .menu_block {
                            width: 100%;

                            .contact_wrap {
                                ul {
                                    li {
                                        justify-content: center;
                                        padding: 5px 0;

                                        a,
                                        span {
                                            font-size: 13px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        .center_footer {
            padding: 50px 0 50px;

            .center_footer_inner {
                .left {
                    width: 100%;
                    text-align: center;

                    .social {
                        justify-content: center;

                        li {
                            padding: 0 10px;
                        }
                    }

                    .contact_list {
                        a {
                            font-size: 18px;
                            margin: 0 10px;
                        }
                    }

                    .next_page_link {
                        a {
                            font-size: 12px;
                            margin: 0 0 0 20px;

                            img {
                                padding: 0 0 0 8px;
                                max-width: 22px;
                            }
                        }
                    }
                }

                .right {
                    width: 100%;

                    .footer__menu {
                        ul {
                            margin: 20px 0 0;
                            justify-content: center;
                            flex-wrap: wrap;

                            li {
                                width: 100%;
                                text-align: center;
                                padding: 10px 15px;

                                &:last-child {
                                    padding-right: 15px;
                                }
                            }
                        }
                    }

                    .serach_box {
                        text-align: center;
                        max-width: 253px;
                        margin: 18px auto 0;
                    }
                }
            }
        }

        .fotter_bottom {
            padding: 40px 0 50px;
            text-align: center;

            .copyright {
                flex-wrap: wrap;

                .copyright_left,
                .copyright_right {
                    width: 100%;
                    text-align: center;

                    p {
                        text-align: center;
                    }
                }
            }
        }
    }

    .singlepage {
        .fotter_bottom {
            margin-bottom: 80px;
        }
    }
}

@media (max-width: 554px) {
    .cookies_bar {
        padding: 15px 30px 15px 10px;

        p {
            font-size: 11px;

            a {
                margin: 0 0 0 10px;
            }
        }

        .close {
            right: 5px;
            top: 20px;
        }
    }

    header {
        &.cookies_active {
            padding: 67px 0 0;
        }
    }
}

@media (min-width: 555px) and (max-width: 767.5px) {
    .cookies_bar {
        p {
            font-size: 11px;

            a {
                margin: 0 0 0 10px;
            }
        }
    }

    header {
        &.cookies_active {
            padding: 47px 0 0;
        }
    }
}

@media (min-width: 768px) {
    header {
        .header {
            .navigation_bar {
                .close_menu {
                    display: none;
                }
            }
        }
    }
}

@media (max-width: 991.5px) {
    .heading_main {
        font-size: 28px;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {
    .container {
        padding: 0 30px;
    }

    .btn_block {
        background: #fff100;
        padding: 12px 15px;
        border-radius: 55px;
        border: none;
        font-weight: 800;
        font-size: 12px;
        line-height: 17px;
        cursor: pointer;
    }

    .heading {
        font-size: 30px;
    }

    .banner_cookies {
        /*right: 10px;*/
        max-width: 280px;

        .inner_ckooies {
            padding: 12px 12px 12px 25px;

            p {
                max-width: 200px;
                font-size: 12px;
            }

            .grid {
                width: 40px;
                height: 40px;
            }
        }
    }

    header {
        .top_bar {
            .left_bar {
                ul {
                    li {
                        a {
                            font-size: 12px;
                        }
                    }
                }
            }

            .right_bar {
                ul {
                    li {
                        a,
                        span {
                            font-size: 12px;
                        }
                    }
                }
            }
        }

        .header {
            .logo_block {
                a {
                    img {
                        width: 80px;
                    }
                }
            }

            .navigation_bar {
                width: calc(100% - 100px);

                nav {
                    ul {
                        li {
                            padding: 0 15px 0 0;

                            a {
                                font-size: 10px;
                            }
                        }
                    }
                }
            }
        }
    }

    footer {
        .upper_footer {
            padding: 50px 0 65px;

            .footer_logo_block {
                padding: 0 0 50px;

                .left {
                    p {
                        font-size: 15px;
                    }
                }
            }

            .footer_contact_block {
                grid-template-columns: 1fr;
                gap: 40px;

                .left {
                    .menu_block {
                        .contact_wrap {
                            ul {
                                li {
                                    a,
                                    span {
                                        font-size: 13px;
                                    }
                                }
                            }
                        }
                    }
                }

                .right-addresses {
                    .right,
                    .middle {
                        .menu_block {
                            .contact_wrap {
                                ul {
                                    li {
                                        img {
                                            position: relative;
                                            top: 5px;
                                        }

                                        a,
                                        span {
                                            font-size: 13px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        .center_footer {
            padding: 50px 0 50px;

            .center_footer_inner {
                .left {
                    .next_page_link {
                        a {
                            font-size: 12px;
                            margin: 0 0 0 30px;

                            img {
                                padding: 0 0 0 9px;
                                width: 20px;
                            }
                        }
                    }
                }

                .right {
                    .footer__menu {
                        ul {
                            li {
                                padding: 0 10px;

                                a {
                                    font-size: 12px;
                                }
                            }
                        }
                    }
                }
            }
        }

        .fotter_bottom {
            padding: 50px 0 60px;
        }
    }
}

@media (min-width: 992px) and (max-width: 1199.5px) {
    .heading {
        font-size: 40px;
    }

    .banner_cookies {
        /*right: 20px;*/
        max-width: 300px;

        .inner_ckooies {
            padding: 12px 12px 12px 25px;

            p {
                font-size: 12px;
                padding: 0 10px 0 0;
                max-width: 200px;
            }

            .grid {
                width: 60px;
                height: 60px;
            }
        }
    }

    header {
        .header {
            .navigation_bar {
                nav {
                    ul {
                        li {
                            padding: 0 15px 0 0;

                            a {
                                font-size: 13px;
                            }
                        }
                    }
                }
            }
        }
    }

    footer {
        .center_footer {
            .center_footer_inner {
                .left {
                    .contact_list {
                        a {
                            font-size: 18px;
                            margin: 0 30px 0 0;
                        }
                    }

                    .next_page_link {
                        a {
                            margin: 0 0 0 40px;
                        }
                    }
                }

                .right {
                    .footer__menu {
                        ul {
                            li {
                                padding: 0 10px;
                            }
                        }
                    }
                }
            }
        }

        .fotter_bottom {
            padding: 80px 0 80px;
        }
    }
}

@media (min-width: 1200px) and (max-width: 1365.5px) {
    .banner_cookies {
        /*right: 20px;*/
        max-width: 350px;

        .inner_ckooies {
            padding: 12px 12px 12px 20px;

            p {
                max-width: 240px;
                font-size: 12px;
            }
        }
    }
}

@media (min-width: 1921px) {
    header {
        .header {
            padding: 16px 100px;
            max-width: 1600px;
            margin: 0 auto;
        }
    }
}

/*@media (max-height: 320px) {
	.popup_video {
	    max-height: 200px;
	}
}
@media (min-height: 321px) and (max-height: 360px) {
	.popup_video {
	    max-height: 250px;
	}
}
@media (min-height: 361px) and (max-height: 375px) {
	.popup_video {
	    max-height: 260px;
	}
}
@media (min-height: 376px) and (max-height: 411px) {
	.popup_video {
	    max-height: 300px;
	}
}*/
