@charset "utf-8";

:root {
    --black: #151a17;
    --white: #fff;
    --gray: #555c58;
    --white-75: rgba(255, 255, 255, 0.75);
    --green: #203429;
    --gold: #c9a569;
    --second-family: "Akrobat", sans-serif;


    --blue: #262e4a;
}
/* #262e4a */

body {
    font-family: "Onest", sans-serif;
    font-weight: normal;
    overflow-x: hidden;
    color: var(--black);
    background: #f7f7f7;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    text-rendering: optimizeSpeed;
    min-width: 320px;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
}
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
h1 {
    font-family: 'Akrobat';
    font-weight: normal;
    font-size: 60px;
    line-height: 130%;
    margin: 0 0 40px;
}
h2 {
    font-family: 'Akrobat';
    font-weight: normal;
    font-size: 60px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 110%;
    margin: 0 0 32px;
}
.h2__sub {
    margin: -22px 0 32px;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--gray);
}
/* bc */
.breadcrumb {
    position: relative;
    background: transparent;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 18px;
    display: flex;
    align-items: center;
}
.breadcrumb li {
    list-style: none;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    color: var(--gold);
}
.breadcrumb li:after {
    display: inline-block;
    content: '\2014';
    color: #fff;
    top: 0px;
    margin: 0 10px;
    position: relative;
}
.breadcrumb li a {
    font-size: 14px;
    color: #fff;
}
.breadcrumb li:last-child:after {
    content: none;
}
/* .bc */

.btn {
    display: inline-block;
    text-align: center;
    padding: 0 24px;
    background: var(--gold);
    border-radius: 6px;
    height: 56px;
    line-height: 56px;

     font-family: "Akrobat";
    
    font-weight: normal;
    font-size: 22px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);

    white-space: nowrap;
    -webkit-transition: .5s;
    transition: .5s;
}

.btn:hover,
.btn:active,
.btn:focus {
    background: #a37f42;
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s;
}

.btn_green {
    background: var(--blue);
}

.btn-ghost {
    display: inline-block;
    text-align: center;
    padding: 0 18px;
    background: transparent;
    border-radius: 6px;
    height: 46px;
    line-height: 44px;

    font-family: "Akrobat";

    border: 1px solid #f5f0ed;
    border-radius: 4px;
    
    font-weight: normal;
    font-size: 20px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #f5f0ed;

    white-space: nowrap;
    -webkit-transition: .5s;
    transition: .5s;
}

.btn-ghost:hover,
.btn-ghost:active,
.btn-ghost:focus {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s;
}

.m-120 {
    margin: 0 0 120px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    transition: .3s;
    background: var(--blue);
}

header.bg {
    background: var(--blue);
    transition: .3s;
}

.header__in {
    display: flex;
    align-items: center;
    height: 86px;
}
.header__logo img {
    max-width: 225px;
}
.header__nav {
    margin-left: 50px;
}
.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header__nav > li > a {
    line-height: 130%;
    color: var(--white);
    white-space: nowrap;
    transition: .3s;
}
.header__nav > li > a:hover {
    color: var(--gold);
    transition: .3s;
}
/* sub menu */
/* nav sub */
@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header__nav > li {
    padding: 20px 0;
}
.header__nav > li.menu-item-has-children > a:after {
    position: relative;
    top: -2px;
    content: '';
    position: relative;
    display: inline-block;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.25L5 4.75L8.5 1.25' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
    width: 10px;
    height: 6px;
}
.header__nav > .menu-item-has-children {
    position: relative;
}
.header__nav > .menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: 49px;
    left: 0;
    width: 320px;
    background: #fff;
    list-style: none;
    z-index: 3;
    -webkit-box-shadow: 0 4px 40px 0 rgba(6,0,44,.1);
            box-shadow: 0 4px 40px 0 rgba(6,0,44,.1);
    opacity: 0;
    border-radius: 0;
    -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
            transform: translateY(20px);
}
.header__nav > .menu-item-has-children:hover > .sub-menu {
    display: block;
    text-align: left;
    -webkit-animation: slideUp 0.3s ease forwards;
            animation: slideUp 0.3s ease forwards;
}
.header__nav > .menu-item-has-children > .sub-menu > li {
    position: relative;
}
.header__nav > .menu-item-has-children > .sub-menu > li > a {
    display: block;
    padding: 14px 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--gray);
}
.header__nav > .menu-item-has-children > .sub-menu > li.menu-item-has-children > a:after {
    content: '';
    position: absolute;
    top: 18px;
    right: 11px;
    width: 9px;
    height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 24 24' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cpath d='M12 18a1 1 0 0 1-.71-.29l-10-10a1 1 0 0 1 1.42-1.42l9.29 9.3 9.29-9.3a1 1 0 1 1 1.42 1.42l-10 10A1 1 0 0 1 12 18z' fill='%23222' opacity='1' data-original='%23000000' class=''%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-size: 9px;
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
}
.header__nav > .menu-item-has-children > .sub-menu > li:last-child > a {
    border-bottom: none;
}
.header__nav > .menu-item-has-children > .sub-menu > li > .sub-menu {
    display: none;
    position: absolute;
    top: -1px;
    left: 318px;
    background: #e1e1e1;
    width: 320px;
    list-style: none;
}
.header__nav > .menu-item-has-children > .sub-menu > li:hover > .sub-menu {
    display: block;
}
.header__nav > .menu-item-has-children > .sub-menu > li:hover {
    background: var(--bg-gray-2);
}
.header__nav > .menu-item-has-children > .sub-menu > li > .sub-menu > li > a {
    display: block;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    line-height: 24px;
}
.header__nav > .menu-item-has-children > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
    display: block;
    padding: 6px 10px;
    font-size: 14px;
}
.header__nav > .menu-item-has-children > .sub-menu > li > .sub-menu > li:last-child > a {
    border-bottom: none;
}


.header__phone {
    margin-left: auto;
}
.header__phone a {
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    color: var(--white);
    white-space: nowrap;
    transition: .3s;
}
.header__phone a:hover {
    transition: .3s;
    color: var(--gold);
}
.header__social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 32px;
}
.wa-icon svg {
    width: 22px;
    height: 22px;
}

.header__social a:hover svg path {
    fill: var(--gold);
    transition: .3s;
}
.header__lead {
    margin-left: 32px;
}
.hero {
    position: relative;
    padding: 180px 0 170px;
    background: #262e4a;
}
.hero__content:before {
    content: '';
    width: 524px;
    height: calc(100% + 350px);
    position: absolute;
    top: -180px;
    bottom: -170px;
    right: 324px;
    background: transparent;
}
.hero__content {
    position: relative;
    z-index: 2;
}
.hero__title {
    position: relative;
    z-index: 2;
    font-weight: normal;
    font-size: 50px;
    line-height: 110%;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f5f0ed;
    margin-bottom: 12px;
}
.hero-page__sub.text-block {
    color: #fff;
}
.hero__sub {
    position: relative;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: rgba(245, 240, 237, 0.7);
    max-width: 600px;
    margin-bottom: 24px;
}
.hero-page .hero__sub {
    max-width: 100%;
    margin-top: 20px;
}
.hero__img {
    position: absolute;
    bottom: -170px;
    right: 220px;
    z-index: 1;
    pointer-events: none;
}
.hero__img img {
    max-width: 450px;
}
.hero__features {
    position: absolute;
    top: 50px;
    right: 0;
    width: 324px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero__features li {
    padding: 16px 16px 12px 16px;
    background: #1e2744;
    font-weight: 400;
    font-size: 20px;
    color: #f5f0ed;
    font-family: 'Akrobat';
    text-transform: uppercase;
}
.hero__title-sub {
    font-family: 'Akrobat';
    position: relative;
    font-weight: normal;
    font-size: 30px;
    line-height: 110%;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f5f0ed;
    margin-bottom: 12px;
    color: #c8a568;
}
footer {
    color: var(--white);
    background: var(--blue);
    padding: 74px 0 32px;
}
.footer__in {
    display: flex;
    margin-bottom: 60px;
}
.footer__brand {
    margin-bottom: 40px;
}
.footer__brand img {
    width: 100%;
    max-width: 280px;
    height: auto;
}
.footer__col-main {
    margin-left: 92px;
}
.footer__col-services {
    margin-left: 124px;
}
.footer__col-contacts {
    margin-left: auto;
}
.footer__title {
    font-family: 'Akrobat';
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 12px;
}
.footer__nav li {
    margin-bottom: 10px;
}
footer .header__social {
    margin: 0 0 12px;
}
.footer__col-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer__nav li a {
    font-size: 18px;
    line-height: 130%;
    color: var(--white);
    transition: .3s;
}
.footer__nav li a:hover {
    transition: .3s;
    color: var(--gold);
}
.footer__phone {
    margin-bottom: 8px;
}
.footer__phone a {
    font-family: 'Akrobat';
    font-size: 36px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
}
.footer__email a {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    text-align: right;
    color: var(--white-75);
}
.footer__bottom {
    display: flex;
    gap: 32px;
    font-size: 16px;
    line-height: 120%;
    color: var(--white-75);
}
.footer-bottom__list {
    display: flex;
    align-items: center;
    gap: 32px;
}
.footer-bottom__list a {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--white-75);
    transition: .3s;
}
.footer-bottom__list a:hover {
    color: var(--gold);
    transition: .3s;
}
.footer__col-main {
    width: 200px;
}
.footer__col-services {
    width: 308px;
}
.hero-features {
    background: #fff;
}
.hero-feature {
    padding: 48px 16px;
}
.hero-feature__icon {
    margin-bottom: 16px;
}
.hero-feature__text {
    font-size: 18px;
    line-height: 130%;
    color: var(--gray);
}
.hero-feature__text b {
    font-weight: 600;
    color: var(--black);
}
.services__header {
    text-align: center;
}
.service-item {
    position: relative;
    margin-bottom: 16px;
    background: var(--blue);
}
.service-item__content {
    position: relative;
    width: 100%;
    height: 416px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}
.service-item__img {
    position: absolute;
    top: 28px;
    left: 28px;
    width: 54px;
    height: 54px;
}
.service-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-item__title {
    font-family: var(--second-family);
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
}
.service-item__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--white-75);
}
.service-item__action {
    margin-top: 28px;
    display: none;
}
.service-item:hover .service-item__action {
    display: flex;
}
.service-item__action .btn {
    width: 100%;
}
.process__header {
    text-align: center;
}
.process-item__numb {
    font-family: var(--second-family);
    font-weight: normal;
    font-size: 46px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.process-item__content {
    padding: 28px;
    background: #fff;
}
.process-item__title {
    font-family: var(--second-family);
    font-size: 36px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
}
.process-item__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--gray);
}
.swiper-arrow {
    background: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-arrow.swiper-button-disabled {
    opacity: 0.4;
}
.swiper-arrow svg {
    flex-shrink: 0;
}
.process-slider__nav {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.process-item__numb {
    position: relative;
}
.process-item__numb span {
    position: relative;
    display: block;
    width: fit-content;
    background: #f7f7f7;
    padding: 10px;
}
.process-item__numb:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    background: url(/img/line.svg);
    background-size: cover;
}
.exp-features__list {
    background: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 26px;
}
.exp-feature {
    max-width: 200px;
}
.exp-feature__title {
    font-family: var(--second-family);
    font-size: 46px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--gold);
}
.exp-feature__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--gray);
}
.exp__img-block {
    width: 100%;
    position: relative;
    height: 680px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.exp h2 {
    color: #fff;
    margin-bottom: 0;
}
.exp__header {
    position: relative;
    z-index: 2;
    text-align: center;
}
.exp__subtitle {
    background: var(--gray);
    padding: 12px 16px;
    position: relative;
    width: fit-content;
    margin: -16px auto 16px;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--second-family);
}
.exp .h2__sub {
    margin: 0;
    color: var(--white-75);
}
.exp__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.exp__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.green-wrapp {
    padding: 120px 0;
    background: var(--blue);
}
.cases__header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}
.cases__header h2 {
    color: #fff;
    margin: 0;
}
.cases__logo {
    flex-shrink: 0;
}
.cases__logo img {
    max-width: 79px;
}
.case-item {
    display: flex;
    background: var(--white);
}
.case-item__left {
    width: 308px;
    flex-shrink: 0;
    height: auto;
    background: var(--gold);
    padding: 40px;
    color: #fff;
}
.case-item__title {
    margin-bottom: 8px;
    font-size: 36px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--second-family);
}
.case-item__name {
    font-family: var(--second-family);
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white);
}
.case-item__right {
    flex: 1;
    width: 100%;
    padding: 40px;
}
.case-item__label {
    font-family: var(--second-family);
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--black);
}
.case-item__text {
    font-size: 18px;
    line-height: 130%;
    color: var(--gray);
}
.case-item__text li {

}
.case-item__right .col-12 {
    margin-top: 32px;
}
.review-item {
    background: #fff;
    position: relative;
    padding: 24px;
}
.review-item__author {
    font-family: var(--second-family);
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--black);
}
.review-item__position {
    font-family: var(--second-family);
    font-size: 20px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.review-item__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--gray);
}
.reviews__header {
    text-align: center;
}
.reviews__header h2 {
    margin: 0;
    color: #fff;
}
.reviews__subtitle {
    background: #C9A569;
    padding: 12px 16px;
    position: relative;
    width: fit-content;
    margin: -16px auto 32px;
    color: #F5F0ED;
    font-family: 'Akrobat', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 20px;
    display: block;
}
.cases-slider__inner {
    position: relative;
}
.cases-slider__nav {
    display: flex;
    position: absolute;
    bottom: 40px;
    left: 40px;
    gap: 16px;
}
.cases-slider__nav .swiper-arrow {
    width: 106px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 96px;
}
.client-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.client-item img {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    max-width: 188px;
    max-height: 64px;
    object-fit: contain;
}
h2.clients__h2 {
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
}
.clients__list {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* faq */
.faq-item {
    background: #fff;
    margin-bottom: 8px;
}
.faq-list .faq-item:last-child {
    margin-bottom: 0;
}
.faq-item.active {
    background: var(--gold);
    color: #fff;
}
.faq-question {
    position: relative;
    cursor: pointer;
    font-family: var(--second-family);
    font-size: 28px;
    line-height: 160%;
    color: var(--black);
    padding: 20px 50px 20px 20px;
}
.faq-item.active .faq-question {
    color: #fff;
}

.faq-item__arrow {
    position: absolute;
    top: 40px;
    right: 36px;
    -webkit-transition: .3s;
    transition: .3s;
}
.faq-item .faq-item__arrow svg {
    -webkit-transition: .5s;
    transition: .5s;
}
.faq-item.active .faq-item__arrow svg {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: .5s;
    transition: .5s;
}
.faq-item.active .faq-item__arrow svg path {
    stroke: #fff;
}

.faq-answer {
    font-size: 18px;
    line-height: 130%;
    color: var(--white-75);
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease-out;
    transition: max-height 0.4s ease-out;
}
.faq-answer__in {
    margin: 0 20px 30px;
}
.cta-form__block {
    display: flex;
    gap: 52px;
    background: var(--blue);
}
.cta-form {
    width: 600px;
    padding: 32px;
    height: auto;
}
.cta-form__l img {
    width: 200px;
}
.cta-form__img {
    position: relative;
    background: #1e2744;
    flex: 1;
    flex-shrink: 0;
    height: auto;
    padding: 32px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cta .cta-form__img h2 {
    color: var(--gold);
}
.cta-form__img .h2__sub {
    color: #fff;
}
.cta-form__img img {
    position: absolute;
    bottom: 32px;
    right: 32px;
    max-width: 320px;
    object-fit: contain;
}
.cta-form__title {
    font-family: var(--second-family);
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
}
.cta-form__sub {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--white-75);
    margin-bottom: 32px;
}
.form label {
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    color: var(--gray-dark);
    margin-bottom: 8px;
    display: inline-block;
}
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"] {
    width: 100%;
    padding: 0 16px;
    border-radius: 0;
    height: 56px;
    line-height: 56px;
    font-size: 18px;
    background: #fff;
    background: #fff;
    border: 1px solid #fff;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form textarea {
    width: 100%;
    border-radius: 12px;
    font-size: 18px;
    padding: 16px;
    background: #fff;
    border: 1px solid #fff;
    background: #fff;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form input[type="text"]:focus,
.form input[type="tel"]:focus,
.form input[type="email"]:focus,
.form textarea:focus {
    background: #fff;
    border: 1px solid var(--gold);
    -webkit-transition: .4s;
    transition: .4s;
}
.form .btn {
    width: 100%;
}
.seo-text h2 {
    font-size: 46px;
}
.hero_service {
    height: auto;
    padding: 86px 0 0;
}
.hero_service .hero-content {
    display: flex;
    flex-direction: column;
    height: 420px;
    padding-bottom: 52px;
}

.hero_service .hero__title {
    font-size: 46px;
}
.hero_service .hero__sub {
    font-size: 18px;
    color: #fff;
    margin: 0;
}
.hero__bens {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-ben {
    padding: 24px 0;
}
.hero-ben__icon {
    margin-bottom: 16px;
}
.hero-ben__icon img {
    max-height: 32px;
}
.hero-ben__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--white-75);
}
.hero__title-btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}
.hero__btn-text {
    font-size: 13px;
    line-height: 120%;
    color: var(--white-75);
    text-align: left;
    margin-bottom: 8px;
}
.h2__badge {
    background: #C9A569;
    padding: 12px 16px;
    position: relative;
    width: fit-content;
    margin: -16px auto 32px;
    color: #F5F0ED;
    font-family: 'Akrobat', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 20px;
    display: block;
}
.h2__badge-gray {
    background: var(--gray);
}
.personal-features h2 {
    text-align: center;
    margin: 0;
}
.personal__list {
    margin-bottom: 24px;
}
.personal__action {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}
.personal-action__sub {
    font-size: 13px;
    line-height: 120%;
    text-align: center;
    color: var(--gray);
}
.personal-item {
    position: relative;
    width: 100%;
    height: 360px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 16px;
}
.personal-item__title {
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--second-family);
}
.personal-item__text {
    font-size: 18px;
    line-height: 130%;
    color: var(--white-75);
}
.personal__action a {
    width: fit-content;
}
.security-section {
    overflow: hidden;
}

/* Заголовок секции */
.security-section__header {
    position: relative;
    text-align: center;
}
.security-section__header h2 {
    margin-bottom: 0;
}

.security-section__subtitle {
    background: #C9A569;
    padding: 12px 16px;
    position: relative;
    width: fit-content;
    margin: -16px auto 32px;
}

.security-section__subtitle span {
    color: #F5F0ED;
    font-family: 'Akrobat', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 20px;
    display: block;
}

/* Контент секции */
.security-section__content {
    margin-top: 60px;
}

/* Блок с негативным опытом */
.security-section__negative-experience {
    width: 308px;
    margin-right: 16px;
}

.security-section__experience-title {
    font-family: var(--second-family);
    font-size: 36px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 16px;
}

.security-section__experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-section__experience-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.security-section__experience-icon {
    width: 32px;
    height: 32px;
    position: relative;
    margin-right: 12px;
}

.security-section__experience-item span {
    color: #545B57;
    font-weight: 400;
    font-size: 18px;
}

.security-section__approach-title {
    width: 100%;
    font-family: 'Akrobat', sans-serif;
    margin: 28px 0 0;
    font-size: 46px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--black);
}

/* Блок с решениями */
.security-section__solutions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.security-section__solution-card {
    width: 100%;
    background: #FFFFFF;
    padding: 24px;
    display: flex;
}

.security-section__problem {
    width: 268px;
    height: 100%;
    flex-shrink: 0;
    background: #f5f0ed;
    padding: 16px 18px;
    margin-right: 16px;
    position: relative;
}

.security-section__problem::after {
    content: "";
    background: #F5F0ED;
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 24px;
    height: 24px;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    transform: rotate(180deg);
}

.security-section__problem span {
    color: #141916;
    font-weight: 400;
    font-size: 18px;
    display: block;
}

.security-section__solution {
    width: 100%;
    flex: 1;
    height: auto;
    background: var(--blue);
    padding: 16px 18px;
    position: relative;
}

.security-section__solution::after {
    content: "";
    width: 24px;
    height: 24px;
    background: #203429;
    position: absolute;
    bottom: 0;
    left: -23px;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.security-section__solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-section__solution-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.security-section__solution-dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    background: var(--gold);
    margin-right: 10px;
    margin-top: 2px;
}

.security-section__solution-item span {
    color: #FFFFFF;
    font-size: 18px;
}
.chat-item {
    background: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.chat-item .security-section__problem {
    margin-right: 24px;
    width: calc(100% - 24px);
}
.chat-item .security-section__solution {
    color: #fff;
    margin-left: 24px;
    width: calc(100% - 24px);
}
.chat h2 {
    margin: 0;
    text-align: center;
}
.chat-slider__nav {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.chat-item .security-section__problem:after {
    transform: rotate(0);
    bottom: 0;
    left: -23px;
}
.chat-item .security-section__solution::after {
    transform: rotate(90deg);
    bottom: 0;
    right: -23px;
    left: inherit;
}
.personal-exp .exp__img-block {
    justify-content: flex-start;
}
.advantages__card {
    padding: 28px;
    height: 100%;
    display: flex;
    gap: 14px;
    position: relative;
    background: #fff;
}

.advantages__card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}
.advantages__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advantages__card-title {
    font-family: 'Akrobat', sans-serif;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 12px;
    padding: 0;
}

.advantages__card-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--gray);
}
.advantages__list {
    display: flex;
    flex-wrap: wrap;
}
.adv__col {
    width: 50%;
}

.adv__col:nth-child(2) {
    border: 1px solid rgba(21, 26, 23, 0.12);
    border-bottom: none;
}
.adv__col:nth-child(3) {
    border: 1px solid rgba(21, 26, 23, 0.12);
    border-right: none;
}
.adv__col:nth-child(4) {
    border: 1px solid rgba(21, 26, 23, 0.12);
}
.adv__col:nth-child(5) {
    border: 1px solid rgba(21, 26, 23, 0.12);
    border-top: none;
    border-right: none;
}
.adv__col:nth-child(6) {
    border-left: 1px solid rgba(21, 26, 23, 0.12);
    border-right: 1px solid rgba(21, 26, 23, 0.12);
}
.adv__col:nth-child(7) {
    border-left: 1px solid rgba(21, 26, 23, 0.12);
    border-bottom: 1px solid rgba(21, 26, 23, 0.12);
}

.adv__col:nth-child(6) {
    border-bottom: 1px solid rgba(21, 26, 23, 0.12);
}
.adv__col:nth-child(8) {
    border-left: 1px solid rgba(21, 26, 23, 0.12);
    border-right: 1px solid rgba(21, 26, 23, 0.12);
}
.adv__col:nth-child(9) {
    border-left: 1px solid rgba(21, 26, 23, 0.12);
    border-bottom: 1px solid rgba(21, 26, 23, 0.12);
}
.advantages__img {
    height: 100%;
}

.advantages__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.advantages__list-pers .adv__col:nth-child(1) {
    border-left: 1px solid rgba(21, 26, 23, 0.12);
}
.advantages__card_green {
    padding-right: 180px;
    background: var(--blue);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.advantages__card_green .advantages__card-title {
    color: #fff;
}
.advantages__card_green .advantages__card-text {
    color: #fff;
}
.advantages__card_green .advantages__card-img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}
.advantages__card_green .advantages__card-img img {
    max-width: 145px;
    height: 100%;
    object-fit: cover;
}
.cta-banner__decor {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}
.cta-banner__decor img {
    max-width: 580px;
}
.cta-banner__inner {
    position: relative;
    background: var(--gold);
    padding: 60px 40px;
}
.cta-banner__title {
    font-family: var(--second-family);
    font-size: 46px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.cta-banner__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--white-75);
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}
.cta-banner__form {
    max-width: 840px;
    position: relative;
    z-index: 2;
}
.hero_contacts {
    height: auto;
    padding: 86px 0 0;
    background: var(--blue);
}
.hero_contacts .hero-content {
    height: 442px;
}
.hero-title__in {
    width: fit-content;
    position: relative;
    margin-top: 40px;
}
.hero-title__social {
    position: absolute;
    bottom: 12px;
    right: 38px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
    transition: .3s;
}
.hero-title__social a {
    width: 75px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}
.hero-title__social a:hover {
    transition: .3s;
    border-color: var(--gold);
    background: var(--gold);
}
.hero-title__social a svg {
    flex-shrink: 0;
}
.hero__contacts .hero__title {
    margin-bottom: 32px;
}
.hero__email {
    margin-bottom: 4px;
}
.hero__email a {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--second-family);
}
.hero__phone {
    margin-bottom: 16px;
}
.hero__phone a {
    font-family: var(--second-family);
    font-size: 46px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #f5f0ed;
}
.hero__address {
    font-family: var(--second-family);
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white-75);
}
.company-info__title {
    font-family: var(--second-family);
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 2px;
}
.company-info__subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--gray);
    margin-bottom: 20px;
}
.company-info__block {
    margin-bottom: 20px;
}
.company-info__item {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}
.company-info__label {
    width: 200px;
}
.company-info__value {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: var(--black);
}
.company-info__financial-block .company-info__item {
    flex-direction: column;
    gap: 0;
}
.cta-form__gr {
    background: var(--blue);
}
.cta-form__gr .cta-form__title {
    margin-bottom: 27px;
}
.personal-features h2.h2_marg {
    margin-bottom: 32px;
}
.easy h2 {
    text-align: center;
    margin: 0;
}
.easy__list .process-item__content {
    height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.process-item__title {
    margin-top: auto;
}
.easy__list .process-item__numb span {
    margin: 0 auto;
}
.mobile-banner {
    position: relative;
    background: var(--blue);
    padding: 60px 40px;
    margin-top: 24px;
}
.mobile-banner__content {
    max-width: 800px;
}
.mobile-banner__title {
    margin-bottom: 12px;
    font-family: var(--second-family);
    font-size: 60px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
}
.mobile-banner__text {
    font-family: var(--second-family);
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white-75);
}
.mobile-banner__img {
    position: absolute;
    bottom: 0;
    right: 0;
}
.mobile-banner__img img {
    max-width: 490px;
    height: auto;
}
.select-item {
    background: #fff;
    display: flex;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--gray);
    font-family: var(--second-family);
    margin-bottom: 16px;
}
.select-item:last-child {
    margin-bottom: 0;
}
.select-left,
.select-right {
    width: 50%;
    height: auto;
    display: flex;
    gap: 8px;
    padding: 16px 18px;
}
.select-right {
    color: #fff;
    background: var(--blue);
}
.select-left .select-icon {
    position: relative;
    top: 6px;
}
.select-block .h2__sub {
    font-family: var(--second-family);
    font-size: 36px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--gray);
    margin: -20px 0 0;
}
.sticky-header {
    position: sticky;
    top: 100px;
}
.system {
    padding-top: 120px;
    background: var(--blue);
}
.system__header {
    color: #fff;
    text-align: center;
}
.system__header h2 {
    color: #fff;
}
.system__header .h2__sub {
    color: var(--white-75);
}
.system-item {
    position: relative;
    background: #162a1f;
    padding: 24px;
}
.system-item__icon {
    margin-bottom: 24px;
}
.system-item__title {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2px;
    font-family: var(--second-family);
}
.system-item__text {
    font-size: 18px;
    line-height: 130%;
    color: var(--white-75);
}
.system__video img {
    max-width: 100%;
}
.hero__map iframe {
    height: 320px;
    width: 100%;
    padding: 0;
    border: none;
    margin: 0;
    max-width: 100%;
}
.hero__rait {
    width: fit-content;
    position: absolute;
    bottom: -170px;
    left: 0;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
}
.hero-rait {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--second-family);
    color: var(--blue);
}
.hero-rait__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.hero-rait__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hero-rait__val {
    display: flex;
    align-items: center;
    gap: 4px;
}
.hero-rait__val svg {
    flex-shrink: 0;
}
.quiz__wrapper {
    background: var(--blue);
    padding: 120px 0;
}
h2.quiz__title {
    color: #fff;
    text-align: center;
}

.quiz__subtitle {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: var(--white-75);
    margin-bottom: 27px;
}

.quiz__content {
    background: #f5f0ed;
    border-radius: 0;
    padding: 40px;
    position: relative;
}
.quiz {
    position: relative;
}
.quiz__icon {
    position: absolute;
    top: -50px;
    right: 164px;
    width: 100px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}
.quiz__icon img {
    width: 320px;
}

.quiz__step-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--gray);
    margin-bottom: 40px;
}

.quiz__step-icon {
    margin-right: 10px;
}

.quiz__question {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 32px;
    text-align: left;
}

.quiz__options {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.quiz__option {
    position: relative;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 16px 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.quiz__option:hover {
    border-color: #FF7E2E;
}

.quiz__option-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.quiz__option-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.quiz__option-radio {
    flex-shrink: 0;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.quiz__option-input:checked + .quiz__option-label .quiz__option-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background-color: var(--gold);
    border-radius: 50%;
}

.quiz__option-input[type="checkbox"] + .quiz__option-label .quiz__option-radio {
    border-radius: 50%;
}

.quiz__option-input[type="checkbox"]:checked + .quiz__option-label .quiz__option-radio::after {
    border-radius: 50%;
}

.quiz__option-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: var(--black);
}

.quiz__option-input:checked + .quiz__option-label {
    color: var(--blue);
    font-weight: 500;
}

.quiz__option-input:checked + .quiz__option-label {
    border-color: var(--gold);
}
.quiz__option-input:checked + .quiz__option-label .quiz__option-text {
    color: var(--gold);
}

.quiz__option--selected {
    border-color: var(--blue);
    background-color: #fff;
}

.quiz__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
}

.quiz__back {
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 15px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.quiz__back--visible {
    visibility: visible;
    opacity: 1;
}

.quiz__next {
    border: none;
    color: white;
    padding: 0 28px;
    border-radius: 12px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    white-space: nowrap;
    font-weight: 600;
    font-size: 18px;
    height: 56px;
    line-height: 56px;
    letter-spacing: -0.03em;
    color: var(--white);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.quiz__next:after {
    content: '';
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.3335 4.99992L14.6668 4.99992M14.6668 4.99992L10.5002 9.16659M14.6668 4.99992L10.5002 0.833252' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
    width: 16px;
    height: 10px;
    background-size: 16px;
    margin-left: 15px;
}

.quiz__next:hover {
    background-color: #e86a1e;
}

.quiz__next-icon {
    display: none;
    margin-left: 8px;
}

.quiz__next-hint {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--gray);
    margin-right: 10px;
}
.quiz__next-hint span {
    font-weight: 700;
    color: var(--black);
}

.quiz__progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 25px;
}

.quiz__progress-text {
    font-size: 14px;
    color: #666;
    margin-right: 15px;
    min-width: 70px;
}

.quiz__progress-bar {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 6px;
    background-color: #c9a56942;
    border-radius: 0;
    overflow: hidden;
}

.quiz__progress-fill {
    height: 100%;
    background-color: var(--gold);
    width: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.quiz__slide {
    display: none;
}

.quiz__slide--active {
    display: block;
}

.quiz__final-form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
}

.quiz__form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.quiz__form-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.quiz__form-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.quiz__form-input:focus {
    outline: none;
    border-color: #FF7E2E;
}

@media (max-width: 768px) {
    
    .quiz__content {
        padding: 20px;
    }
    
    .quiz__options {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    
    .quiz__icon {
        top: -30px;
        right: 20px;
    }
}
.prices__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.prices__title {
    font-family: 'Akrobat', sans-serif;
    font-size: 60px;
    text-align: center;
    margin: 0 0 20px;
    color: #141916;
}

.prices__subtitle {
    font-size: 18px;
    text-align: center;
    max-width: 640px;
    margin: 0;
    color: #545B57;
}

.h2_sub {
    font-size: 18px;
}

/* Таблица с ценами */
.prices__table {
    width: 100%;
    background-color: #FFFFFF;
    overflow: hidden;
}

.prices__table-header {
    display: flex;
    width: 100%;
    background-color: #1e2744;
}

.prices__table-cell {
    padding: 16px;
}

.prices__table-cell--service {
    width: 288px;
}

.prices__table-cell--includes {
    width: 584px;
}

.prices__table-cell--price {
    width: 192px;
}

.prices__table-title {
    font-family: 'Akrobat', sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.prices__table-row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #F0F0F0;
}

.prices__table-row:last-child {
    border-bottom: none;
}

.prices__service-name {
    font-weight: 400;
    font-size: 16px;
    color: #141916;
    display: block;
}

.prices__service-desc {
    font-weight: 400;
    font-size: 16px;
    color: #545B57;
    display: block;
}

.prices__service-price {
    font-family: 'Akrobat', sans-serif;
    font-size: 20px;
    color: #C9A569;
    display: block;
}

.prices__note {
    font-size: 16px;
    color: #545B57;
    text-align: center;
    margin-top: 20px;
    padding: 0 15px;
}

/* Адаптивность */
@media (max-width: 992px) {
    
    .prices__title {
        font-size: 48px;
    }
    
    .prices__table-cell--service {
        width: 25%;
    }
    
    .prices__table-cell--includes {
        width: 50%;
    }
    
    .prices__table-cell--price {
        width: 25%;
    }
}

@media (max-width: 768px) {
    
    .prices__title {
        font-size: 36px;
    }
    
    .prices__subtitle {
        font-size: 16px;
    }
    
    .prices__table-row,
    .prices__table-header {
        flex-direction: column;
    }
    
    .prices__table-cell {
        width: 100% !important;
    }
    
    .prices__table-cell--service,
    .prices__table-cell--includes,
    .prices__table-cell--price {
        width: 100%;
    }
    
    .prices__table-cell--price {
        padding-bottom: 24px;
        margin-bottom: 8px;
    }
    
    .prices__table-row:last-child .prices__table-cell--price {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .prices__title {
        font-size: 32px;
    }
}
.modal-text {
    text-align: center;
}
.hero-page {
    background: var(--blue);
    height: auto;
    padding: 86px 0 40px;
    background: var(--blue);
}
.hero-page h1 {
    margin: 40px 0 0;
}

.reviews {
    position: relative;
    overflow: hidden;
}

.reviews__slider {
    overflow: visible;
    padding-bottom: 50px;
}

.reviews__item {
    position: relative;
    padding: 32px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reviews__item-title {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 16px;
}

.reviews__item-text {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--gray);
    flex-grow: 1;
    margin-bottom: 24px;
}

.reviews__item-text p {
    margin-bottom: 12px;
}

.reviews__item-text p:last-child {
    margin-bottom: 0;
}

.reviews__item-author {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #C9A569;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #F0F0F0;
}
.reviews__slider .swiper-slide {
    height: auto;
}
.service-item__action {
    display: none;
    flex-direction: column;
    gap: 10px;
}
.service-item__action .btn.btn_ghost {
    background: transparent;
    border: 1px solid #fff;
}
/* Стили для уведомления о cookies */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999999999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notification p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    max-width: 80%;
}

.cookie-notification a {
    color: var(--blue);
}

.cookie-notification button {
    background-color: var(--gold);
    color: white;
    border-radius: 4px;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.cookie-notification button:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    .cookie-notification {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notification p {
        max-width: 100%;
        margin-bottom: 10px;
    }
}
.lic__imgs {
    display: flex;
    gap: 20px;
}
.lic__img {
    width: calc(50% - 10px);
}
.lic__img img {
    width: 100%;
    height: auto;
}
.form-group__terms {
    color: #fff;
}
.form-group__terms a {
    color: #fff;
}
.modal .form-group__terms a {
    color: #222;
    text-decoration: underline;
}
.quiz .form-group__terms,
.quiz .form-group__term a {
    color: #222;
}
.services-price__action {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}
.services-price__action .btn {
    width: fit-content;
}
.prices__groups .prices__table {
    margin-bottom: 60px;
}
.prices-groups__text {
    margin-bottom: 40px;
}
.green-wrapp-top {
    margin-top: -120px;
}
.elem h2 {
    color: #fff;
    margin-bottom: 0;
}
.elem__header.exp__header {
    margin-bottom: 60px;
}
.elem__in {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.elem__col {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 308px;
}
.elem__item {
    display: flex;
    gap: 12px;
}
.elem__item-img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.elem__item-title {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2px;
}
.elem__item-text {
    font-size: 18px;
    line-height: 130%;
    color: var(--white-75);
}
.elem__col.elem__right .elem__item-img {
    order: 1;
}
.elem__right .elem__item-title-text {
    text-align: right;
}
.elem__img {
    pointer-events: none;
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.elem__img img {
    display: block;
    margin: 0 auto;
}
.elem__img-text {
    position: absolute;
    bottom: 51px;
    left: 0;
    right: 0;
    width: fit-content;
    margin: 0 auto;
    max-width: 443px;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: var(--white);
}
.author-block {
    margin-top: 32px;
}
.author-block__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.author-block__avatar {
    flex-shrink: 0;
    position: relative;
}
.author-block__icon {
    position: absolute;
    top: -10px;
    left: 0;
}
.author-block__avatar img {
    width: 92px;
    height: 92px;
    object-fit: cover;
}
.author-block__name {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 36px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--black);
}
.author-block__position {
    font-size: 16px;
    line-height: 120%;
    color: var(--gray);
}
.author-block__quote {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: var(--gray);
}
.prices-block__row {
    display: flex;
    gap: 16px;
}
.prices__table-note {
    flex: 1;
    max-width: calc(100% - 416px);
}
.prices__default {
    flex-shrink: 0;
    width: 416px;
}
.prices__default-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.prices__default-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.prices__default-icon {
    flex-shrink: 0;
}
.prices__default-title {
    font-size: 16px;
    line-height: 120%;
    color: var(--gray);
}
.prices__default h2 {
    font-size: 36px;
    margin-bottom: 24px;
}
.hero__title-wrap {
    margin-bottom: 12px;
}
.hero__title-wrap h1 {
    margin-bottom: 0;
}
.hero__title-wrap span {
    font-family: 'Akrobat';
    position: relative;
    z-index: 2;
    font-weight: normal;
    font-size: 46px;
    line-height: 110%;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #dac9ab;
}


/* mega menu */
.header__nav .sub-menu .sub-menu .sub-menu .sub-menu li a {
    display: block;
    padding: 6px 12px;
    font-size: 13px;
}
.header__in {
    position: relative;
}
.menu-item-has-children.mega-menu {
    position: static;
}
.header__nav > .menu-item-has-children.mega-menu > .sub-menu {
    top: 66px;
    left: 0;
    right: 0;
    width: 100%;
    height: 560px;
}
.header__nav > .menu-item-has-children.mega-menu > .sub-menu > li > a {
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__nav > .menu-item-has-children.mega-menu > .sub-menu > li:hover {
    background: #f5f0ed;
}
.header__nav > .menu-item-has-children.mega-menu > .sub-menu > li > a:hover {
    background: #f5f0ed;
}
.header__nav > .menu-item-has-children.mega-menu > .sub-menu > li > .sub-menu {
    left: 350px;
    columns: 3;
    top: 0;
    right: 0;
    width: calc(100% - 350px);
    height: 560px;
    overflow: hidden;
    overflow-y: auto;
    padding: 20px 40px;
    background: #f5f0ed;
}
.header__nav > .menu-item-has-children.mega-menu > .sub-menu > li {
    position: static;
}
.header__nav > .menu-item-has-children > .sub-menu > li.menu-item-has-children > a:after {
    position: relative;
    top: 0;
    right: inherit;
    display: inline-block;
}
.header__nav > .menu-item-has-children > .sub-menu > li > .sub-menu > li > .sub-menu > li.li-bold > a {
    font-weight: 500;
    font-size: 16px;
    margin-top: 20px;
}
.doc-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    height: 400px;
}
.doc-item img {
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.lic-block {
    overflow: hidden;
}

.cta h2 {
    font-size: 40px;
}
.green-wrapp h2 {
    color: #fff;
}
.reviews-slider .swiper-slide {
    height: auto;
}
.reviews-slider .review-item {
    height: 100%;
}
.lic-block h2 {
    text-align: center;
}
.process-slider .swiper-slide {
    height: auto;
}
.process-slider .swiper-slide .process-item {
    height: 100%;
    background: #fff;
}
.process-item__numb span {
    background: #fff;
}
.post-item__img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.post-item__date {
    margin-top: 12px;
    color: gray;
    font-size: 16px;
}
.post-item__title {
    margin: 8px 0;
    font-weight: 500;
    font-size: 18px;
}
.contact-item {
    margin-bottom: 40px;
}
.contact-item__value {
    font-size: 18px;
    font-weight: 500;
}
/* 33524 */

/* text block */
.content {
    min-height: calc(100vh - 672px);
}
.text-block {
    color: #222;
    font-size: 18px;
    line-height: 1.3;
}
.text-block h2 {
    text-align: left;
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    color: var(--black);
    margin-bottom: 20px;
}
.text-block h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: var(--black);
    margin: 0 0 10px;
}
.text-block p + h3,
.text-block ol + h3,
.text-block ul + h3 {
    margin-top: 40px;
}
.text-block p {
    margin-bottom: 10px;
}
.text-block ol li {
    position: relative;
    margin-bottom: 8px;
}
.text-block ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}
.text-block ul li:before {
    position: absolute;
    width: 7px;
    height: 7px;
    content: '';
    top: 8px;
    left: 0;
    background: var(--gold);
    transform: rotate(45deg);
}
.text-block ul, .text-block ol {
    padding-left: 20px;
    margin-bottom: 20px;
}
.text-block img {
    max-width: 100%;
}
.blue-bold {
    color: var(--dark-blue);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 125% */
}
.blue-bold-sm {
    color: var(--dark-blue);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 125% */
}
.about__img img {
    width: 100%;
}
.text-block .bold-red {
    color: var(--main-red);
}
.text-half {
    max-width: 850px;
}
/* .text block */


.modal {
    display: none; 
    -webkit-box-align: center; 
    -ms-flex-align: center; 
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed; 
    z-index: 999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background: rgba(0, 0, 0, 0.50);
    padding: 20px;
}
.modal-content {
    position: relative;
    width: 640px;
    max-height: 100%;
    margin: 0 auto;
    overflow-y: auto;
    background: #f5f0ed;
    padding: 40px;
    border-radius: 0;
    -webkit-animation: slideIn .3s;
    animation: slideIn .3s;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
}
.modal-sub {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--gray);
    margin-bottom: 32px;
}
.modal .btn {
    width: 100%;
}
.modal .form {
    max-width: 424px;
    margin: 0 auto;
}
.modal-content h2 {
    color: #007568;
}
.modal-title {
    font-family: var(--second-family);
    font-size: 34px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--blue);

    margin: 0 0 8px;
    text-align: center;
}
.modal .form label, 
.modal .form__terms, 
.modal .form__terms a {
    color: #222;
}
.modal .form__terms {
    margin-left: 0;
}
.modal .btn-main {
    width: 100%;
}
.modal .close {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
.modal .close::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    width: 22px;
    height: 2px;
    background: #222;
}
.modal .close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 22px;
    height: 2px;
    background: #222;
}
.form-group {
    margin-bottom: 16px;
}


.modal .form input[type="text"],
.modal .form input[type="email"],
.modal .form .btn_red {
    width: 100%;
}
.header-mobile__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    margin: 16px 12px 24px;
}
.header-mobile__actions a {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@-webkit-keyframes slideIn {
  0% {
    opacity: .7;
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes slideIn {
  0% {
    opacity: .7;
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.top-btn {
    position: fixed;
    font-size: 1.5em;
    width: 50px;
    height: 50px;
    padding-top: 7px;
    background-color: var(--e60002);
    color: #fff;
    border-radius: 50%;
    margin-left: 0.4em;
    cursor: pointer;
    right: 3.8%;
    bottom: 3.8%;
    z-index: 99;
    text-align: center;
    display: none;
}
.top-btn svg {
    display: inline-block;
    color: var(--black);
}