@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", serif;
}

body {
    color: #000;
    font-family: Manrope, sans-serif;
    font-size: 14px;
}

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

.row {
    display: flex;
    flex-wrap: wrap;

}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    padding-top: 24px;
    padding-bottom: 24px;
    transition: .3s all;
    display: flex;
    flex-direction: row;
    align-items: center;

}

header.white-back {
    background-color: #fcfaf8f2;
    padding: 14px 0;
}

header.white-back .logo-col a,
header.white-back .logo-col a:hover,
header.white-back .logo-col a:active,
header.white-back .logo-col a:focus,
header.white-back .logo-col a:visited {
    color: #0f1729
}

header .logo-col {
    width: 30%;
}

header.white-back .main-menu-list li .main-menu-link {
    color: #0f1729
}

header.white-back a.btn {
    background: #0f1729
}
header.white-back .logo-col a img {
    filter:none;
}
header .logo-col {

    text-align: left;
}

header .logo-col a {
    letter-spacing: -.025em;
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    font-family: Cormorant Garamond, serif;
}

header .logo-col a:hover,
header .logo-col:active {
    color: #fff;
}

header .logo-col a img {
    width: 130px;
    filter: invert(1);
}

.menu-col {
    width: 70%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.main-menu-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
}



.main-menu-list li .main-menu-link {
    color: #ffffffe6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px;
}

.main-menu-list li .main-menu-link:hover {
    color: 9e8861;
    transition: .3s;
}

.main-menu-list li .main-menu-link:active {
    color: #ffffffe6;
}

.mobile-menu-btn {
    display: none;
}

.btn {
    color: #fff;
    text-transform: none;
    background-color: #9f8860;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 24px;
    padding-right: 24px;
    border: none;
    transition: .3s all;

}

.btn.big-btn {
    padding: 0 32px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    min-height: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.btn:hover {
    background-color: #9f8860cc;
}

.btn.white-btn {
    color: rgb(15 23 41);
    background: #fff;
}


.btn.white-btn:hover {
    background-color: #ffffffe6;
}

.btn.transporent-btn {
    background-color: transparent;
    color: #fff;
    border: solid 1px #fff;
}

.btn.transporent-btn:hover {

    background-color: #ffffff1a;
}

section {
    padding: 100px 0;
    width: 100%;
    position: relative;
    z-index: 0;
}

section.hero {
    background-image: url(/img/hero-back.jpeg);
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 220px;
    padding-bottom: 0;

}

section.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .6;
}

section.hero .container {
    position: relative;
    z-index: 2;
}

.title-section {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 16px;
}

.sub-title {
    font-size: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-weight: 700;
    margin-bottom: 32px;
}



.sub-title>span:nth-child(2) {
    color: #ffffffe6;
    font-weight: 300;
    font-style: italic;
}

.description-section {
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 670px;
    color: #e3e5e8;
}

.hero .title-section {
    color: rgb(159 136 96);
}

.btns-wrapper .btn {
    margin-right: 15px;
}

.counter-row-wrapper {
    background-color: #0f1729;
    padding: 64px 0;
    margin-top: 220px;
}

.counter-item {
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    border-right: solid 1px #ffffff1a;
    width: 25%;
    text-align: center;

}

.counter-item:last-child {
    border-right: none;
}

.count-wrapper {
    font-size: 48px;
    font-weight: 700;
    font-family: Cormorant Garamond, serif;
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
    color: #9f8860;
}

.counter-item p {
    letter-spacing: 1.4px;
    color: #ffffffb3;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    font-size: 14px;
}



.about-us-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.about-us-image-decorative-wrapper {
    width: 50%;
    position: relative;
    padding-left: 15px;
    padding-top: 15px;
}

.about-us-image-decorative-wrapper::before {
    content: '';
    border-left: solid 4px #9f8860;
    border-top: solid 4px #9f8860;
    width: 96px;
    height: 96px;
    left: -15px;
    top: -15px;
    position: absolute;
    z-index: 0;
}

.about-us-image-decorative-wrapper img {
    position: relative;
    z-index: 2;
    animation-duration: .7s;
    transition-duration: .7s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    filter: grayscale(100%);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px #00000040;
    border-radius: calc(.25rem - 4px);
    height: 600px;
    width: auto;
}

section.about-us:hover .about-us-image-decorative-wrapper img {
    filter: grayscale(0);
}

section.about-us .right-col {
    width: 50%;
    padding-top: 30px;
}

section.about-us .title-section {
    letter-spacing: 1.4px;
    color: #9f8860;
    font-weight: 700;
    font-size: 14px;
}

section.about-us .sub-title-section {
    display: flex;
    flex-direction: column;
    font-size: 48px;
    color: #0f1729;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 32px;
}



section.about-us .sub-title-section span:nth-child(2) {
    color: #9f8860;
    font-style: italic;
}

section.about-us .block-text-wrapper {
    color: #676f7e;
    font-size: 18px;
}

section.about-us p {
    margin-bottom: 24px;
}

.about-us-items-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 60px;
    margin-bottom: 60px;
}

.about-us-item {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}

.about-us-item svg {
    color: #9f8860;
    width: 20px;
    margin-right: 20px;
    min-width: 20px;
}

.about-us-item span {
    color: #252b37;
    font-weight: 500;
    font-size: 16px;
}

section.about-us .transporent-btn {
    color: #0f1729;
    border: solid 1px #0f1729;
}

section.about-us .transporent-btn:hover {
    background-color: #0f1729;
    color: #fff;
}

section.advantages {
    background-color: #f2f0ed80;
}

section.advantages .title-section {
    color: #9f8860;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

section.advantages .sub-title {
    font-size: 36px;
    color: #0f1729;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 32px;
    text-align: center;
}

section.advantages .description-section {
    color: #676f7e;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    margin: 0 auto;
}

.advantages-items-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 64px;
    justify-content: space-between;
}

.advantages-item-wrapper {
    width: calc(25% - 20px);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 0 0 #0000,
        0 0 #0000,
        0 10px 15px -3px #0000001a,
        0 4px 6px -4px #0000001a;
    transition-duration: .15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
    animation-duration: .3s;
    background-color: #fff;
    border-radius: 12px;
}

.advantages-item-svg-wrapper {
    transition-duration: .15s;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    background-color: #0f17290d;
    border-radius: 9999px;
    width: 55px;
    height: 55px;
    display: flex;
    flex-direction: row;
    margin-right: auto;
    margin-bottom: 16px;
    align-items: center;
    justify-content: center;
}

.advantages-item svg {
    transition-duration: .15s;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    color: #0f1729;
    width: 28px;
}

.advantage-title {
    font-size: 20px;
    line-height: 28px;
    color: #0f1729;
    margin-bottom: 24px;
    width: 100%;
    text-align: left;
}

.advantage-description {
    color: #676f7e;
    font-size: 16px;
    text-align: left;
    width: 100%;
    text-align: left;
}

.advantages-item-wrapper:hover {
    box-shadow: 0 0 #0000,
        0 0 #0000,
        0 10px 15px -3px #0000001a,
        0 4px 6px -4px #0000001a;
    transform: translateY(-10px);
}

.advantages-item-wrapper:hover .advantages-item-svg-wrapper {
    background-color: #9f886033;
}

.advantages-item-wrapper:hover .advantages-item-svg-wrapper svg {
    color: #9f8860;
}

section.question {
    background-image: url("/img/question-back.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
}

section.question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0f1729e6;
}

section.question .container {
    position: relative;
    z-index: 2;
}

section.question .title-section {
    font-size: 48px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
    color: #fff;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 24px;
}

section.question .description-section {
    font-size: 18px;
    line-height: 28px;
    margin-left: auto;
    margin-right: auto;
    max-width: 670px;
    margin-bottom: 40px;
    color: #fffc;
}

section.question .btn {
    margin: auto;
    padding: 0 32px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    min-height: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 245px;
    text-align: center;
}

section.contact-us {
    background-color: #fcfaf8;
}

section.contact-us a {
    color: #676f7e;
    font-weight: 500;
}

section.contact-us .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

section.contact-us .left {
    width: calc(50% - 30px);
}

section.contact-us .right {
    width: calc(50% - 30px);
    background-color: #f2f0ed4d;
    border: solid 1px #e3e5e8;
    padding: 48px;
    height: fit-content;
}

section.contact-us .title-section {
    color: #9f8860;
    margin-bottom: 16px;
}

section.contact-us .sub-title {
    font-size: 48px;
    color: #0f1729;
    margin-bottom: 32px;
}

section.contact-us .description-section {
    color: #676f7e;
    font-size: 18px;
}

.contacts-items {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 32px;
}

.contact-item svg {
    color: #9f8860;
    width: 24px;
}

.contact-item svg path {
    stroke: #0f1729;
    stroke-width: 1px;
}

.contact-item-text-wrapper {
    margin-left: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.contact-item-title {
    color: #0f1729;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: Cormorant Garamond, serif;
    width: 100%;

}

.contact-item-link {
    color: #676f7e;
    transition: .3s all;
}

.contact-item-link:hover,
.contact-item-link:visited {
    color: #0f1729;
}

.contact-item iframe {
    width: 100%;
    height: 800px;
}

section.contact-us .right .title-col {
    color: #0f1729;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 24px;
}

.main-back-info-form {
    width: 100%;
}

.main-back-info-form>input {
    display: none;
}

.main-back-info-form .row {
    justify-content: space-between;
    margin-bottom: 24px;
}

.main-back-form-item-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.main-back-info-form .row .main-back-form-item-wrapper {
    width: calc(50% - 5px);
}

.main-back-info-form .row:nth-child(3) .main-back-form-item-wrapper,
.main-back-info-form .row:nth-child(4) .main-back-form-item-wrapper {
    width: 100%;
}

form label {
    color: #252b37cc;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}

form input,
form textarea {
    font-size: 14px;
    box-shadow: 0 0 #0000,
        0 0 #0000,
        0 1px 2px 0 #0000000d;
    padding: 5px 12px;
    background-color: #fcfaf8;
    min-height: 48px;
    border: none;
}

form textarea {
    height: 150px;
    width: 100%;
}

form button[type="submit"] {
    margin-top: 15px;
    color: #fcfaf8;
    padding: 0 32px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    min-height: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #0f1729;
    text-align: center;
    justify-content: center;
    width: 100%;
}

form button[type="submit"]:hover,
form button[type="submit"]:active {
    background-color: #0f1729e6;
}

footer {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 45px;
    background: #0f1729;
}

.footer-desccription-col {
    width: 50%;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    font-family: Cormorant Garamond, serif;
    margin-bottom: 24px;
}

.footer-description-text {
    color: #fff9;
    font-size: 18px;
    max-width: 450px;
    margin-bottom: 32px;
}



.row-social-links a {
    transition-duration: .15s;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    background-color: #ffffff0d;
    border-radius: 9999px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.row-social-links a:hover,
.row-social-links a:active {
    background-color: #9f8860;
}

.row-social-links a svg {
    width: 16px;
    color: #e3e5e8;
}

.row-social-links a svg path {
    fill: #9f8860;
    transition: 0.3s all
}

.row-social-links a:hover svg path {
    fill: #0f1729;
}

.footer-col {
    width: 25%;
}

.title-col {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    font-family: Cormorant Garamond, serif;
    margin-bottom: 24px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 16px;
}

.footer-menu li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: #fff9;
    transition: .3s all;

    font-size: 16px;
}

.footer-menu li a:hover,
.footer-menu li a:active {
    color: #9f8860;
}

.footer-menu li a svg {
    width: 12px;
    margin-right: 5px;
}

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

.contact-item-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: #fff9;
    transition: .3s all;
    font-size: 16px;
    max-width: 160px;
    margin-bottom: 16px;
}

.contact-item-link:hover,
.contact-item-link:active {
    color: #9f8860;
    margin-bottom: 16px;
}

.footer-bottom-row {
    font-size: 16px;
    padding-top: 32px;
    border-top: solid 1px #ffffff1a;
    color: #ffffff66;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}

.legal-links {
    display: flex;
    flex-direction: row;
}

.legal-links a {
    color: #ffffff66;
    margin-left: 30px;
}

html.open-popup {
    overflow: hidden;

}

.popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 22;
    animation-delay: 3s;
    left: -200%;

}

.popup-wrapper input {
    margin-bottom: 10px;
}

.popup-wrapper.active {
    left: 0;

}

.popup-wrapper .overlay,
.overlay-menu-popup {
    background-color: transparent;
    background-image: linear-gradient(90deg, #000000D9 30%, #25282357 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    cursor: pointer;

}

.popup-wrapper.active .overlay {
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.popup-window-wrapper {
    position: relative;
    background-color: #232323;
    box-shadow: 3px 4px 40px 0 rgba(0, 0, 0, .4);
    padding: 30px;
    left: -200%;
    transition: .3s all;
    animation-delay: 3s;
    width: 90%;
    max-width: 400px;
}

#popup-video .popup-window-wrapper {
    padding: 0;
}

.popup-wrapper.active .popup-window-wrapper {
    left: 0;
}

.popup-window-wrapper .section-title {
    color: #fff;
    margin: 20px 0 0;
    text-align: center;
    justify-content: center;

}

.popup-window-wrapper .section-title::before {
    background-color: #fff;

}

.title-popup-window {
    color: #aceb2f;
    margin: 0 0 40px;
    font-size: 20px;
    font-family: Montserrat, cursive;
}

.close-popup-btn {
    position: absolute;
    right: -50px;
    top: 0px;
    background: none;
    border: solid 2px #aceb2f;
    color: #aceb2f;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: .3s all;
    border-radius: 0;
    padding: 5px;
}


.close-popup-btn:hover {
    color: #fff;
    border-color: #aceb2f;
    -webkit-transform-origin: top center;
    transform-origin: top center;


}

.close-popup-btn svg {
    fill: #fff;
}

.popup-window-wrapper .form__inner_row .form-col {
    width: 100%;
}

.popup-window-wrapper .wpcf7-response-output {
    color: #fff;
}

.popup-window-wrapper .wpcf7-not-valid-tip {
    font-size: 14px;
    font-weight: 900;
    background: rgba(255, 255, 255, .6);
    padding: 5px;
}




.popup-menu-window-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 22;
    display: none;
}

.popup-menu-window-wrapper.active .overlay-menu-popup {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.popup-menu-window-wrapper.active {
    display: block;
}

.popup-menu-all-content-wrapper {
    position: absolute;
    width: 400px;
    height: 100%;
    right: -100%;
    background-color: #232323;
    box-shadow: 3px 4px 40px 0 rgba(0, 0, 0, .4);
    overflow-x: auto;
    padding: 50px;
}

.popup-menu-all-content-wrapper::-webkit-scrollbar {
    width: 4px;
    /* С€РёСЂРёРЅР° РІСЃРµР№ РїРѕР»РѕСЃС‹ РїСЂРѕРєСЂСѓС‚РєРё */
}

.popup-menu-all-content-wrapper::-webkit-scrollbar-track {
    background: #051367;
    /* С†РІРµС‚ Р·РѕРЅС‹ РѕС‚СЃР»РµР¶РёРІР°РЅРёСЏ */
}

.popup-menu-all-content-wrapper::-webkit-scrollbar-thumb {
    background-color: blue;
    /* С†РІРµС‚ Р±РµРіСѓРЅРєР° */
    border-radius: 20px;
    /* РѕРєСЂСѓРіР»РѕСЃСЊ Р±РµРіСѓРЅРєР° */
    border: 3px solid #fff;
    /* РѕС‚СЃС‚СѓРї РІРѕРєСЂСѓРі Р±РµРіСѓРЅРєР° */
}


.close-menu-popup-btn {
    position: absolute;
    right: -100%;
    top: 0px;
    background: none;
    border: solid 2px #333;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: .3s all;
}

.close-popup-btn:hover {
    color: #fff;
    border-color: #aceb2f;
    -webkit-transform-origin: top center;
    transform-origin: top center;
}

.close-menu-popup-btn i {
    transform: rotate(45deg);
}

.popup-menu-wrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
}



.popup-menu-wrapper ul li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.popup-menu-wrapper ul li ul {
    padding-left: 20px;
    display: none;
}

.popup-menu-wrapper li.current_page_item a {
    font-weight: 700;
}



.popup-menu-wrapper li.current_page_item::before {
    content: '';
    background: #fff;
    height: 3px;
    width: 40px;
    display: block;
    margin-right: 10px;
}

.popup-menu-wrapper ul li a {
    color: #fff;
}

.popup-menu-wrapper li.menu-item-has-children>.toggle-btn {
    background: none;
    border: solid 2px #fff;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    padding: 2px;
    transition: .3s all;
}



.popup-menu-wrapper li.menu-item-has-children.active>.toggle-btn {
    transform: rotate(180deg);
}

.popup-menu-wrapper li.menu-item-has-children.active>ul {
    display: block;
    width: 100%;
    padding-top: 10px;
    border-top: solid 1px #fff;
    margin-top: 20px;
    border-bottom: solid 1px #fff
}


.popup-menu-window-wrapper.show-panel .popup-menu-all-content-wrapper {
    right: 0;
}

.popup-menu-window-wrapper.show-panel .close-menu-popup-btn {
    right: 400px;
}

.popup-wrapper.active .popup-window-wrapper {
    left: 0;
}

.popup-window-wrapper .section-title {
    color: #fff;
    margin: 20px 0 0;
    text-align: center;
    justify-content: center;

}

.popup-window-wrapper .section-title::before {
    background-color: #fff;

}

.title-popup-window {
    color: #aceb2f;
    margin: 0 0 40px;
    font-size: 20px;
    font-family: Montserrat, cursive;
}

.close-popup-btn {
    position: absolute;
    right: -50px;
    top: 0px;
    background: none;
    border: solid 2px #aceb2f;
    color: #aceb2f;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: .3s all;
    border-radius: 0;
    padding: 5px;
}


.close-popup-btn:hover {
    color: #fff;
    border-color: #aceb2f;
    -webkit-transform-origin: top center;
    transform-origin: top center;


}

.close-popup-btn svg {
    fill: #fff;
}

.popup-window-wrapper .form__inner_row .form-col {
    width: 100%;
}

.popup-window-wrapper .wpcf7-response-output {
    color: #fff;
}

.popup-window-wrapper .wpcf7-not-valid-tip {
    font-size: 14px;
    font-weight: 900;
    background: rgba(255, 255, 255, .6);
    padding: 5px;
}


.popup-menu-window-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 22;
    display: none;
}

.popup-menu-window-wrapper.active .overlay-menu-popup {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.popup-menu-window-wrapper.active {
    display: block;
}

.popup-menu-all-content-wrapper {
    position: absolute;
    width: 400px;
    height: 100%;
    right: -100%;
    background-color: #232323;
    box-shadow: 3px 4px 40px 0 rgba(0, 0, 0, .4);
    overflow-x: auto;
    padding: 50px;
}

.popup-menu-all-content-wrapper::-webkit-scrollbar {
    width: 4px;
    /* С€РёСЂРёРЅР° РІСЃРµР№ РїРѕР»РѕСЃС‹ РїСЂРѕРєСЂСѓС‚РєРё */
}

.popup-menu-all-content-wrapper::-webkit-scrollbar-track {
    background: #051367;
    /* С†РІРµС‚ Р·РѕРЅС‹ РѕС‚СЃР»РµР¶РёРІР°РЅРёСЏ */
}

.popup-menu-all-content-wrapper::-webkit-scrollbar-thumb {
    background-color: blue;
    /* С†РІРµС‚ Р±РµРіСѓРЅРєР° */
    border-radius: 20px;
    /* РѕРєСЂСѓРіР»РѕСЃСЊ Р±РµРіСѓРЅРєР° */
    border: 3px solid #fff;
    /* РѕС‚СЃС‚СѓРї РІРѕРєСЂСѓРі Р±РµРіСѓРЅРєР° */
}



.close-menu-popup-btn {
    position: absolute;
    right: -100%;
    top: 0px;
    background: none;
    border: solid 2px #333;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: .3s all;
}

.close-popup-btn:hover {
    color: #fff;
    border-color: #aceb2f;
    -webkit-transform-origin: top center;
    transform-origin: top center;
}

.close-menu-popup-btn i {
    transform: rotate(45deg);
}

.popup-menu-wrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
}



.popup-menu-wrapper ul li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.popup-menu-wrapper ul li ul {
    padding-left: 20px;
    display: none;
}

.popup-menu-wrapper li.current_page_item a {
    font-weight: 700;
}



.popup-menu-wrapper li.current_page_item::before {
    content: '';
    background: #fff;
    height: 3px;
    width: 40px;
    display: block;
    margin-right: 10px;
}

.popup-menu-wrapper ul li a {
    color: #fff;
}

.popup-menu-wrapper li.menu-item-has-children>.toggle-btn {
    background: none;
    border: solid 2px #fff;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    padding: 2px;
    transition: .3s all;
}


.popup-menu-wrapper li.menu-item-has-children.active>.toggle-btn {
    transform: rotate(180deg);
}

.popup-menu-wrapper li.menu-item-has-children.active>ul {
    display: block;
    width: 100%;
    padding-top: 10px;
    border-top: solid 1px #fff;
    margin-top: 20px;
    border-bottom: solid 1px #fff
}


.popup-menu-window-wrapper.show-panel .popup-menu-all-content-wrapper {
    right: 0;
}

.popup-menu-window-wrapper.show-panel .close-menu-popup-btn {
    right: 400px;
}

form>input {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 90%;
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-btn {
    background: #4b4df3;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.cookie-btn:hover {
    background: #3a3ccf;
}

section.breadcrumbs {
    background-image: url('/img/breadcrumbs.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

section.breadcrumbs::before {
    content: '';
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 1;
}

section.breadcrumbs .container {
    position: relative;
    z-index: 2;
}

section.breadcrumbs h1.page-title {
    text-align: center;
    color: #fff;
}