html,
body {
    scroll-behavior: initial;
}

html,
body {
    width: 100%;
    min-height: 100%;
    height: auto;
}

body {
    font-family: 'MabryPro';
    font-weight: normal;
    font-style: normal;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    line-height: normal;
    min-width: 320px;
    background: #ffffff;
    overflow-x: hidden;
}


* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 1;
    outline: 0 !important;
}

p {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.6px;
    /* color: #FFF; */
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
}

h1 {
    font-weight: 500;
    font-size: 72px;
    letter-spacing: -1px;
    /* text-transform: uppercase; */
    font-size: 110px;
    font-size: clamp(80px, 5.7vw, 110px);
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 110px */
    letter-spacing: -5.5px;
}

h2 {
    font-weight: 500;
    font-size: 54px;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 96%;
}

h3 {
    font-weight: normal;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -0.72px;
    /* text-transform: uppercase; */
}

::-moz-selection {
    background: rgb(2 2 2);
    color: #F60C0B;
}

::selection {
    background: rgb(2 2 2);
    color: #F60C0B;
}

::-moz-selection {
    background: rgb(2 2 2);
    color: #F60C0B;
}

a {
    -webkit-user-select: none;
    text-decoration: none;
    outline: none;
    color: #000000;
    opacity: 1;
    will-change: transform;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

a.no-transition {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}

a:hover {
    text-decoration: none;
    /* color: #F60C0B; */
}

a:active {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

input,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
}


body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px transparent;
    -webkit-box-shadow: inset 0 0 6px transparent;
    background-color: #F5F5F5;

}

body::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
    -webkit-transition: cubic-bezier(0.09, 0.83, 0.31, 0.99) 1s;
    transition: cubic-bezier(0.09, 0.83, 0.31, 0.99) 1s;
}

body::-webkit-scrollbar-thumb {
    background: #020202;
}

input,
select,
textarea {
    width: 100%;
    /* padding: 30px 0; */
    background: transparent;
    /* height: 92px; */
    line-height: 1.4;
    border: 0;
    font-style: normal;
    border: 0;
    font-weight: 500;
    font-size: 22px;
    font-weight: 400;
    font-family: 'MabryPro';
}



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

img {
    display: block;
    max-width: 100%;
}


h1 {}

header.header {
    height: 70px;
    /* padding-top: 12px; */
    position: fixed;
    width: 100%;
    z-index: 24;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}

header.header .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: relative;
    width: 100%;
}

.nav-item {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 24px */
    letter-spacing: -1.2px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

nav.nav {
    display: flex;
    gap: 24px;
}

.header__right {
    display: flex;
    gap: 50px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}

.header__email {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 24px */
    letter-spacing: -1.2px;
    color: #fe0000;
}

.btn {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 24px */
    letter-spacing: -1.2px;
    display: inline-flex;
    gap: 12px;
    padding: 12px 17px;
    border-radius: 6px;
    background: #FE0000;
    cursor: pointer;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #fff;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}



.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    #DB0000 10%,
    transparent 10%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-out;
}
.btn:hover::after {
  transform: translate(-50%, -50%) scale(5);
}


.btn-circle {
    width: 6px;
    height: 6px;
    display: flex;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.section.section_hero {
    padding-top: 370px;
    padding-bottom: 100px;
}

.section.section_hero h1 {
    display: block;
    max-width: 950px;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 32px */
    letter-spacing: -1.28px;
    text-transform: lowercase;
    font-size: clamp(28px, 1.7vw, 32px);
}

.serv-item {
    padding: 80px 80px;
    border-top: 1px solid #E3E3E3;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
}

.section.section_services .container {
    padding: 0;
}

.serv-item-title--idx {
    font-size: 22px;
    font-size: clamp(18px, 1.2vw, 22px);
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 35.2px */
    letter-spacing: -0.88px;
    text-transform: lowercase;
    width: 20%;
}

.serv-item-titlebox {
    font-size: 22px;
    font-size: clamp(18px, 1.2vw, 22px);
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 35.2px */
    letter-spacing: -0.88px;
    text-transform: lowercase;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10vh;
}

.serv-item-title--time {
    color: #9F9F9F;
    width: 30%;
    text-align: right;
}

.serv-item-titlebox h2 {
    font-size: 22px;
    font-size: clamp(18px, 1.2vw, 22px);
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.88px;
    text-transform: lowercase;
    width: 50%;
}

.serv-item-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.serv-item-right {
    width: 60%;
    padding-left: 60px;
}

.serv-item-description {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 137%; /* 57.6px */
    letter-spacing: -1.8px;
    text-transform: lowercase;
    /* margin-bottom: 50px; */
    padding-left: 20%;
    font-size: clamp(26px, 2vw, 36px);
}

.serv-item-description ul li {
    position: relative;
    padding-left: 30px;
}
.serv-item-description ul li:before {
    content: ' ';
    display: block;
    width: 6px;
    height: 6px;
    background: #000;
    position: absolute;
    top: 23px;
    left: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.serv-item-button {
    margin-top: 50px;
}

.btn.btn-serv {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 28.8px */
    letter-spacing: -0.9px;
    text-transform: lowercase;
    gap: 20px;
    padding: 12px 30px;
}

span.btn.btn-serv img {
    width: 15px;
}

.serv-cases.swiper {
    width: 100%;
    height: 100%;
}

.serv-cases .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.serv-cases .swiper-slide {
    width: 100%;
    height: 100%;
}

.serv-cases .swiper-slide img {
    width: 100%;
    height: 100%;
}

.section-title {
    font-size: 22px;
    font-size: clamp(18px, 1.2vw, 22px);
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 35.2px */
    letter-spacing: -1.1px;
    text-transform: lowercase;
}

.section-text {
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 64px */
    letter-spacing: -3.2px;
    width: 80%;
    margin-bottom: 66px;
    font-size: clamp(48px, 4.1vw, 64px);
}

.section.section_awards .section-title {
    margin-bottom: 88px;
}

.award-item-place {
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 64px */
    letter-spacing: -3.2px;
    /* margin-left: 20px; */
    margin-bottom: 80px;
    font-size: clamp(32px, 2.2vw, 44px);
}

span.award-item-place--sup {
    font-size: 18px;
    font-size: clamp(14px, 1vw, 18px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 21.6px */
    letter-spacing: -0.9px;
    text-transform: lowercase;
    transform: translateY(-19px);
    display: inline-flex;
    margin-left: 7px;
}

.award-item-text {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 26.4px */
    letter-spacing: -1.1px;
    text-transform: capitalize;
    font-size: clamp(18px, 1.2vw, 22px);
}

.award-item-img {
    position: absolute;
    top: 20px;
    right: 41px;
}

.award-item {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 25%;
    border-right: 1px solid rgba(0, 0, 0, 0.10);
    padding-left: 25px;
}

.award-list {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding-top: 28px;
    width: 60%;
    /* padding-left: 60px; */
    position: relative;
    gap: 70px 0px;
    margin-bottom: 70px;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
    /* padding-left: 32px; */
}

.section-awards {
    /* padding-left: 43%; */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.award-list:before {
    content: ' ';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.10);
    position: absolute;
    top: 0;
    right: 0;
}

.award-item:nth-child(4n + 4) {
    border-right: 0;
}

::before {}

.award-list:after {
    content: ' ';
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    top: 53.2%;
    right: 0;
    background: rgba(0, 0, 0, 0.10);
}

.recognitions-list-head {
    color: rgba(0, 0, 0, 0.28);
    /* font-family: "Mabry Pro"; */
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.72px;
    text-transform: lowercase;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid #EAEAEA;
}

.recognitions-list {
    display: flex;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    padding-top: 28px;
    width: 60%;
    /* padding-left: 60px; */
    position: relative;
}

.recognitions-list-item {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.72px;
    text-transform: capitalize;
    border-bottom: 1px solid #EAEAEA;
    padding: 11px 0;
}

.rl-image {
    position: absolute;
    left: -340px;
    width: 250px;
    height: 190px;
    transform: rotate(-9deg);
    opacity: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.rl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recognitions-list-item:hover .rl-image {
    opacity: 1;
    transform: translateY(-40px) rotate(-9deg);
}

.rl-project {
    width: 30%;
}

.rl-award {
    width: 50%;
}

.rl-year {
    width: 15%;
}

.rl-link {
    width: 5%;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.rl-link img {
    width: 20px;
    height: 20px;
}

.recognitions-list.recognitions-list_sp {
    padding-top: 0;
    display: none;
}


.recognitions-list-button {
    width: 60%;
    /* padding-left: 60px; */
    position: relative;
    display: flex;
    margin-top: 37px;
}

.recognitions-list-button .btn {
    width: 100%;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 35.2px */
    letter-spacing: -1.1px;
    text-transform: lowercase;
}

.section.section_awards {
    border-top: 1px solid #E3E3E3;
    padding-top: 44px;
    padding-bottom: 180px;
}

.section.section_reviews {
    border-top: 1px solid #E3E3E3;
    padding-top: 44px;
}

.pers-texts {
    font-size: 24px;
    font-size: clamp(20px, 1.2vw, 22px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 28.8px */
    letter-spacing: -1.2px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: calc(100% - 80px);
    padding-left: 20px;
}

.pers-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.pers-func {
    color: #FE0000;
}

.pers-func a {
    color: #FE0000;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.review-person {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 66px;
}

.pers-text {
    font-size: 36px;
    font-size: clamp(28px, 1.9vw, 36px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 43.2px */
    letter-spacing: -1.8px;
}

.reviews-list-count {
    font-size: 40px;
    font-size: clamp(32px, 2.1vw, 40px);
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 40px */
    letter-spacing: -2px;
    display: flex;
    white-space: nowrap;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-bottom: 90px;
    align-items: flex-end;
}

.reviews-container-inner {
    width: 60%;
    /* padding-left: 60px; */
    position: relative;
    margin-bottom: 90px;
}

.reviews-container-meta {
    width: 60%;
    /* padding-left: 60px; */
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}


.reviews-list-nav {
    width: 60px;
    height: 60px;
    background: #F6F6F6;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.reviews-list-nav-wrap {
    display: flex;
    gap: 22px;
}
.section.section_prices {
    border-top: 1px solid #E3E3E3;
    padding-top: 44px;
    padding-bottom: 120px;
}

.prices-title {
    font-size: 64px;
    font-size: clamp(48px, 3.4vw, 64px);
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 64px */
    letter-spacing: -3.2px;
    margin-bottom: 100px;
}

.section.section_prices .section-title {
    margin-bottom: 90px;
}

.pack-title {
    font-size: 32px;
    font-size: clamp(24px, 1.7vw, 32px);
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 32px */
    letter-spacing: -1.6px;
    text-transform: capitalize;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 36px;
}

.pack-item {
    border-radius: 6px;
    border: 1px solid #E3E3E3;
    padding: 42px 35px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 25%;
}

.packs-list {
    display: flex;
    gap: 22px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
}

.pack-text {
    color: rgba(0, 0, 0, 0.44);
    /* font-family: "Mabry Pro"; */
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 19.8px */
    letter-spacing: -0.36px;
    margin-bottom: 24px;
}

.pack-time {
    font-size: 24px;
    font-size: clamp(18px, 1.1vw, 24px);
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 26.4px */
    letter-spacing: -0.96px;
    text-transform: lowercase;
    margin-bottom: 26px;
}

.pack-btn .btn {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 127%; /* 27.94px */
    letter-spacing: -0.44px;
    width: 100%;
    background: #000;
    color: #fff;
}

.pack-more {
    border-radius: 6px;
    background: rgba(226, 226, 226, 0.24);
    padding: 21px 24px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 134%; /* 24.12px */
    letter-spacing: -0.36px;
}

.pack-more-title {
    color: rgba(0, 0, 0, 0.44);
    /* font-family: "Mabry Pro"; */
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 19.8px */
    letter-spacing: -0.36px;
    margin-bottom: 24px;
}

.pack-more-text ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
}
.pack-more-text ul li:before {
    content: ' ';
    display: block;
    width: 3px;
    height: 3px;
    background: #000;
    position: absolute;
    top: 9px;
    left: 0;
}

.pack-btn {
    margin-bottom: 16px;
}


.pack-item.pack-item_more {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.pack-item.pack-item_more .pack-btn {
    margin-bottom: 0px;
}



.faq-question-item {
    /* background: #FFFFFF; */
    /* border-radius: 24px; */
    /* padding: 28px 32px; */
    position: relative;
    /* margin-bottom: 18px; */
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}



.faq-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.faq-sticky {
    position: sticky;
    top: 10px; /* Safari */
    position: sticky;
    top: 100px;
    -ms-flex-item-align: start;
        align-self: flex-start;
}

.faq-question-item {
    /* background: #FFFFFF; */
    /* border-radius: 24px; */
    /* padding: 28px 32px; */
    position: relative;
    /* margin-bottom: 18px; */
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    border-bottom: 1px solid #ccc;
}

.faq-section {
    margin-bottom: 72px;
}

.plus-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 32px;
    height: 32px;
    /* border-radius: 50%; */
    /* background: #FFF1CE; */
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.plus-icon-lane:nth-child(1) {
    height: 2px;
    width: 50%;
    background: #000000;
    display: block;
    border-radius: 0;
}

.plus-icon-lane:nth-child(2) {
    height: 50%;
    width: 2px;
    background: #000000;
    display: block;
    border-radius: 0;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.faq-question-item.active .plus-icon-lane:nth-child(2) {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}
.faq-question-item-head {
    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;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 11px 0px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.faq-question-spoiler {
    padding: 21px 0px 38px 0;
    display: none;
}

.faq-question-item-head:hover {
    color: #FE0000;
}

.faq-question-item-head:hover .plus-icon {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.faq-question-item_active .faq-question-item-head {
    color: #FF8E24;
}
.faq-question-item_active .plus-icon {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}


.section.section_faq {
    border-top: 1px solid #E3E3E3;
    padding-top: 44px;
}

.faq-list {
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: flex-end; */
    width: 60%;
    /* padding-left: 60px; */
    position: relative;
}

.faq-question-item {
    /* width: 60%; */
    /* padding-left: 60px; */
    /* position: relative; */
}

.faq-question-item-head-title {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 24.2px */
    letter-spacing: -0.44px;
}

.faq-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cta-title {
    font-size: 110px;
    font-size: clamp(80px, 5.8vw, 110px);
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 110px */
    letter-spacing: -5.5px;
    margin-bottom: 50px;
}

.cta-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    width: 40%;
    text-align: center;
    margin: 0 auto;
}

.btn.btn-cta {
    border-radius: 13px;
    background: #000;
    color: #FFF;
    text-align: center;
    /* font-family: "Mabry Pro"; */
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 32px */
    letter-spacing: -1.6px;
    /* width: 100%; */
    padding: 18px 114px;
}

.cta-button {
    width: 100%;
}

.section.section_cta {
    padding: 120px 0;
}

.section.section_who {
    border-bottom: 1px solid #E3E3E3;
    border-top: 1px solid #E3E3E3;
    /* padding-top: 44px; */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
}

.who-item {
    padding: 40px 80px;
    width: 50%;
}


.who-item:nth-child(1) {
    border-right: 1px solid #e3e3e3;
}

.who-head {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 86px;
}

.who-where {
    font-size: 36px;
    font-size: clamp(22px, 1.9vw, 36px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 43.2px */
    letter-spacing: -1.8px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.who-text {
    font-size: 20px;
    font-style: normal;
    /* font-weight: 500; */
    line-height: 140%; /* 28px */
    letter-spacing: -0.6px;
    margin-bottom: 70px;
}

.who-link {
    color: #FE0000;
    text-align: center;
    /* font-family: "Mabry Pro"; */
    font-size: 24.861px;
    font-size: clamp(18px, 1.3vw, 24px);
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 24.861px */
    letter-spacing: -1.243px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: lowercase;
}

.who-link a {
    color: #FE0000;
}

.who-pers-contact-i-l {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
}

.who-pers-contact-i-l img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-pers-contact-name {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.96px;
    margin-bottom: 3px;
}

.who-pers-contact-func {
    color: rgba(0, 0, 0, 0.37);
    /* text-align: center; */
    /* font-family: "Mabry Pro"; */
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 21.6px */
    letter-spacing: -0.72px;
    margin-bottom: 8px;
}

.who-pers-contact-contacts {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.96px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
}



.who-pers {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.who-pers-contact-i {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.who-pers-contact-contacts a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
}

.who-pers-contact-i-r {
    width: calc(100% - 96px);
    padding-left: 22px;
}

a.who-pers-email {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.96px;
}

.who-person {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: space-between;
}
  .js-lines-reveal {
    overflow: visible;
  }
  
  .js-lines-reveal .line-mask {
    display: block;
    overflow: hidden;
  }
  
  .js-lines-reveal .line {
    display: block;
    will-change: transform, opacity;
  }
  
  .hero__title .line,
  .hero__text .line {
    color: inherit;
  }
  
  .js-chars-reveal {
    overflow: hidden;
  }
  .js-words-reveal {
    overflow: hidden;
  }
  
  .js-chars-reveal .word {
    display: inline-block;
    overflow: hidden;
  }
  
  .js-chars-reveal .char {
    display: inline-block;
    will-change: transform, opacity;
  }
  
  
  .js-words-reveal .word {
    display: inline-block;
    overflow: hidden;
  }
  
  
  .js-lines-reveal-auto .line-mask {
    display: block;
    overflow: hidden;
  }
  
  .js-lines-reveal-auto .line {
    display: block;
    will-change: transform, opacity;
  }
  .js-words-reveal .word {
    display: inline-block;
    will-change: transform, opacity;
  }



.btn-circle {
    width: 6px;
    height: 6px;
    display: block;
    background: #ffffff;
}

.btn:hover .btn-circle {
    animation: btnOnlinePulse 1s infinite ease-in-out;
}

@keyframes btnOnlinePulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.55);
        opacity: 1;
    }
}


.btn.btn-grey {
    color: #000000;
    background: #F4F4F4;
}


.serv-cases {
    width: 100%;
    height: 100%;
    display: flex;
}


.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
}

.btn:hover {
    /* background: #DB0000; */
}

.nav-item:hover {
    color: #fe0000;
}

.header__email:hover {
    opacity: .6;
}

.btn.btn-grey.btn::after {
    background: #DADADA;
    background: radial-gradient(circle, #DADADA 10%, transparent 10%);
}

.btn:hover .btn-icon {
    transform: translateX(6px);
}

.btn-icon {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    position: relative;
    z-index: 2;
}

.recognitions-list-item:hover {
    color: #FE0000;
}

.recognitions-list-item:hover .rl-link {
    transform: translateX(10px);
}

.recognitions-list-item:hover .rl-link svg path {
    stroke: #fe0000;
}

.reviews-list-nav:hover {
    background: #fe0000;
}

.reviews-list-nav:hover svg path {
    fill: #fff;
}

.reviews-list-nav svg path {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.reviews-list-nav svg {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.reviews-list-nav:hover svg {
    transform: translateX(3px);
}

.reviews-list-nav.reviews-list-nav-l:hover svg {
    transform: translateX(-3px);
}

.faq-question-spoiler-content {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 134%; /* 29.48px */
    letter-spacing: -0.44px;
}

.faq-question-item.active .faq-question-item-head {
    color: #fe0000;
}

.who-pers-email:hover {
    opacity: .6;
}

.who-pers-contact-contacts a:hover {
    opacity: .6;
}

.footer {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
    letter-spacing: -0.6px;
    display: flex;
    padding: 35px 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.f-copyrs {
    color: #c4c4c4;
}

.f-love {
    color: #c4c4c4;
}

.f-up {
    display: flex;
    cursor: pointer;
    gap: 10px;
    align-items: flex-end;
}

.f-up:hover svg {
    transform: translateY(-5px);
}

.f-up svg {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.time-colon {
    display: inline-block;
    animation: colonFade 1s infinite ease-in-out;
    transform-origin: center;
    will-change: opacity, transform;
}

@keyframes colonFade {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(0.96);
    }
}




.button-anim__letter {
    display: inline-block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.button-anim:hover {
    /* color: #ffffff; */
}

.button-anim:hover .button-anim__letter {
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.button-anim .button-anim__letter:nth-child(1) {
    -webkit-transition-delay: 29.09090909090909ms;
    -o-transition-delay: 29.09090909090909ms;
    transition-delay: 29.09090909090909ms;
}
.button-anim .button-anim__letter:nth-child(2) {
    -webkit-transition-delay: 58.18181818181818ms;
    -o-transition-delay: 58.18181818181818ms;
    transition-delay: 58.18181818181818ms;
}
.button-anim .button-anim__letter:nth-child(3) {
    -webkit-transition-delay: 87.27272727272727ms;
    -o-transition-delay: 87.27272727272727ms;
    transition-delay: 87.27272727272727ms;
}
.button-anim .button-anim__letter:nth-child(4) {
    -webkit-transition-delay: 116.36363636363636ms;
    -o-transition-delay: 116.36363636363636ms;
    transition-delay: 116.36363636363636ms;
}
.button-anim .button-anim__letter:nth-child(5) {
    -webkit-transition-delay: 116.36363636363636ms;
    -o-transition-delay: 116.36363636363636ms;
    transition-delay: 116.36363636363636ms;
}
.button-anim .button-anim__letter:nth-child(6) {
    -webkit-transition-delay: 145.45454545454544ms;
    -o-transition-delay: 145.45454545454544ms;
    transition-delay: 145.45454545454544ms;
}
.button-anim .button-anim__letter:nth-child(7) {
    -webkit-transition-delay: 174.54545454545453ms;
    -o-transition-delay: 174.54545454545453ms;
    transition-delay: 174.54545454545453ms;
}
.button-anim .button-anim__letter:nth-child(8) {
    -webkit-transition-delay: 203.63636363636363ms;
    -o-transition-delay: 203.63636363636363ms;
    transition-delay: 203.63636363636363ms;
}
.button-anim .button-anim__letter:nth-child(9) {
    -webkit-transition-delay: 232.72727272727272ms;
    -o-transition-delay: 232.72727272727272ms;
    transition-delay: 232.72727272727272ms;
}
.button-anim .button-anim__letter:nth-child(10) {
    -webkit-transition-delay: 290.9090909090909ms;
    -o-transition-delay: 290.9090909090909ms;
    transition-delay: 290.9090909090909ms;
}
.button-anim .button-anim__letter:nth-child(11) {
    -webkit-transition-delay: 320ms;
    -o-transition-delay: 320ms;
    transition-delay: 320ms;
}
.button-anim .button-anim__letter:nth-child(12) {
    -webkit-transition-delay: 350ms;
    -o-transition-delay: 350ms;
    transition-delay: 350ms;
}
.button-anim .button-anim__letter:nth-child(13) {
    -webkit-transition-delay: 380ms;
    -o-transition-delay: 380ms;
    transition-delay: 380ms;
}
.button-anim .button-anim__letter:nth-child(14) {
    -webkit-transition-delay: 410ms;
    -o-transition-delay: 410ms;
    transition-delay: 410ms;
}
.button-anim .button-anim__letter:nth-child(15) {
    -webkit-transition-delay: 440ms;
    -o-transition-delay: 440ms;
    transition-delay: 440ms;
}
.button-anim .button-anim__letter:nth-child(16) {
    -webkit-transition-delay: 470ms;
    -o-transition-delay: 470ms;
    transition-delay: 470ms;
}
.button-anim .button-anim__letter:nth-child(17) {
    -webkit-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}
.button-anim .button-anim__letter:nth-child(18) {
    -webkit-transition-delay: 530ms;
    -o-transition-delay: 530ms;
    transition-delay: 530ms;
}
.button-anim .button-anim__letter:nth-child(19) {
    -webkit-transition-delay: 560ms;
    -o-transition-delay: 560ms;
    transition-delay: 560ms;
}
.button-anim .button-anim__letter:nth-child(20) {
    -webkit-transition-delay: 590ms;
    -o-transition-delay: 590ms;
    transition-delay: 590ms;
}
.button-anim .button-anim__letter:nth-child(21) {
    -webkit-transition-delay: 620ms;
    -o-transition-delay: 620ms;
    transition-delay: 620ms;
}
.button-anim .button-anim__letter:nth-child(22) {
    -webkit-transition-delay: 650ms;
    -o-transition-delay: 650ms;
    transition-delay: 650ms;
}
.button-anim .button-anim__letter:nth-child(23) {
    -webkit-transition-delay: 680ms;
    -o-transition-delay: 680ms;
    transition-delay: 680ms;
}
.button-anim .button-anim__letter:nth-child(24) {
    -webkit-transition-delay: 710ms;
    -o-transition-delay: 710ms;
    transition-delay: 710ms;
}
.button-anim .button-anim__letter:nth-child(25) {
    -webkit-transition-delay: 740ms;
    -o-transition-delay: 740ms;
    transition-delay: 740ms;
}
.button-anim .button-anim__letter:nth-child(26) {
    -webkit-transition-delay: 770ms;
    -o-transition-delay: 770ms;
    transition-delay: 770ms;
}
.button-anim .button-anim__letter:nth-child(27) {
    -webkit-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms;
}
.button-anim .button-anim__letter:nth-child(28) {
    -webkit-transition-delay: 830ms;
    -o-transition-delay: 830ms;
    transition-delay: 830ms;
}
.button-anim .button-anim__letter:nth-child(29) {
    -webkit-transition-delay: 860ms;
    -o-transition-delay: 860ms;
    transition-delay: 860ms;
}

.button-anim__letter:after {
    content: '';
    display: block;
}

.button-anim__letter span {
    display: block;
    position: absolute;
    top: 150%;
}

.button-anim__inner {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.btn-text {
    position: relative;
    z-index: 2;
}

.btn.btn-dark::after {
    background: radial-gradient(circle, #313131 10%, transparent 10%);
}

.js-time {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
}
.serv-item-description ul li:before {
    transform: scale(0);
}
.serv-item-description ul li.is-revealed:before {
    transform: scale(1);
    transition-delay: .4s;
    opacity: 1;
}



.section_services {
    overflow: visible;
    padding-bottom: 100px;
}

.section_services .container {
    position: relative;
}

.serv-item {
    position: sticky;
    top: 0;
    min-height: 100vh;
    overflow: hidden;
    background: #fff;
}

.serv-item + .serv-item {
    margin-top: 16vh;
}

.serv-item-overlay {
    position: absolute;
    inset: 0;
    z-index: 30;
    pointer-events: none;
    opacity: 0;
    background: #000000;
}

.serv-item-left,
.serv-item-right {
    position: relative;
    z-index: 2;
    will-change: filter;
}

.hl-text {
    color: #fe0000;
}

.section.section_reviews .section-title {
    margin-bottom: 70px;
}



/*Sidebars*/

.sidebar-back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000001f;
    z-index: 22;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.sidebar {
    position: fixed;
    z-index: 223;
    top: 0;
    right: 0;
    width: 1110px;
    height: 100vh;
    -webkit-transform: translateX(130%);
    -ms-transform: translateX(130%);
    transform: translateX(130%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background: #fff;
}

.sidebar-wrapper {
    background: #fff;
    /* color: #ccc; */
    height: 100%;
    /* background: url(../img/form-back.svg) no-repeat bottom right #fff; */
    /* background-size: contain; */
    position: relative;
}

.sidebar-top {
    position: relative;
    height: 50px;
    border-bottom: 2px solid #dddddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 58px;
}

.pp-close-text {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
}

.sidebar-top .pp__close {
    bottom: 0;
    top: 0;
    margin: auto;
    left: 30px;
    right: unset;
    width: 20px;
    height: 20px;
}

.sidebar-top .close__lane {
    background-color: #0e0d0d;
    height: 3px;
}

.sidebar-cart .sidebar-content {
    max-height: calc(100vh - 170px);
    overflow: auto;
    height: 100%;
}


.sidebar-content::-webkit-scrollbar {
    width: 8px;
    background-color: #f0f0ef;
}

.sidebar-content::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #645D50;
}

.sidebar-back.show {
    opacity: 1;
    pointer-events: all;
}

.sidebar.show {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.sidebar {
    -webkit-box-shadow: -10px 0px 40px rgba(0, 0, 0, 0.2);
    box-shadow: -10px 0px 40px rgba(0, 0, 0, 0.2);
}

.sidebar.sidebar-cart {
    width: 520px;
}

.sb-title {
    color: #A7A439;
    /* padding: 0 80px; */
    font-weight: 700;
    font-size: 32px;
    /* text-transform: uppercase; */
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
    line-height: 1.2;
    position: relative;
    padding-top: 30px;
}




/*Sidebars end*/

.sidebar-inner {
    height: 100%;
}

.sidebar-content {
    height: 100%;
    padding: 60px 230px 50px 160px;
}

.sidebar-form {
    height: 100%;
}

.sidebar-form-wrapper {
    height: 100%;
    /* display: flex; */
    /* flex-direction: column; */
    /* flex-wrap: nowrap; */
    /* align-items: stretch; */
    /* justify-content: space-between; */
}

.text-scratch.text-scratch_red {}

.sidebar-form-title {
    font-size: 64px;
    font-size: clamp(48px, 3.4vw, 64px);
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 64px */
    letter-spacing: -2.56px;
    margin-bottom: 11px;
}

.sidebar-form-text {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 26.4px */
    letter-spacing: -1.1px;
    text-transform: lowercase;
    width: 60%;
    font-size: clamp(18px, 1.2vw, 22px);
}

.txt-i {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 24px */
    letter-spacing: -0.4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    padding: 16px 0;
}

.f-item {
    margin-bottom: 31px;
}

.js-request-form {
    margin-top: 30px;
}

.txt-a {
    border: 1px solid rgba(0, 0, 0, 0.20);
    resize: none;
    height: 165.688px;
    padding: 16px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.3px;
}

button.btn {
    border: none;
    font-family: 'MabryPro';
}

.f-item.f-item_button .btn {
    min-width: 200px;
}

.f-item.f-item_button {
    display: flex;
    gap: 24px;
}

.f-warn {
    color: rgba(0, 0, 0, 0.40);
    /* font-family: "Mabry Pro"; */
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 19.8px */
    letter-spacing: -0.36px;
}

.f-warn a {
    color: rgba(0, 0, 0, 0.40);
    border-bottom: 1px solid;
}


.pp__close {
    width: 26px;
    height: 26px;
    top: 20px;
    right: 20px;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-item-align: end;
    align-self: flex-end;
    will-change: transform;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 10;
}

.pp__close:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.close__lane {
    height: 2px;
    background-color: #121111;
    width: 100%;
    -webkit-transform: rotate(45deg);
    will-change: transform;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
}

.close__lane:last-child {
    will-change: transform;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


.sidebar-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100%;
    /* overflow: auto; */
}

.sidebar-content {
    max-height: 100%;
    overflow: auto;
    height: 100%;
    width: auto;
    width: 100%;
    font-size: 18px;
    font-style: normal;
    /* font-weight: 700; */
    /* line-height: 120%; */ /* 21.6px */
    letter-spacing: -0.9px;
    /* text-transform: lowercase; */
}


.sidebar-fixed-button {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 20px 80px 20px 160px;
    z-index: 2;
}

.sidebar-fixed-button .btn {
    width: 100%;
}

.sidebar-content.sidebar-content_process {
    padding: 60px 80px 50px 160px;
}

.process-covering-title {
    font-size: 22px;
    font-size: clamp(18px, 1.2vw, 22px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 26.4px */
    letter-spacing: -1.1px;
    width: 280px;
}

.process-item-title {
    color: #AEADAD;
    leading-trim: both;
    text-edge: cap;
    /* font-family: "Mabry Pro"; */
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 28.8px */
    letter-spacing: -0.9px;
    text-transform: lowercase;
    margin-bottom: 60px;
}

.process-item {
    border-top: 1px solid #E3E3E3;
    padding: 20px 0;
    margin-bottom: 70px;
}

.process-list {
    margin-top: 40px;
}

.sidebar-form-text.sidebar-form-text_fw {
    width: 100%;
}

.process-covering-text {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 25.875px */
    letter-spacing: -0.809px;
    text-transform: lowercase;
    display: flex;
    flex-direction: row;
    gap: 37px;
    flex-wrap: wrap;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 24px;
    width: calc(100% - 280px);
}

.process-covering {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 0px 0 24px 0;
}

.covering-item:before {}

.covering-item:before {
    content: ' ';
    display: block;
    width: 4px;
    height: 4px;
    background: #000;
    position: absolute;
    top: 13px;
    left: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.covering-item {
    padding-left: 16px;
    position: relative;
}

.process-covering:last-child .process-covering-text {
    border: none;
}

.processing-item-title {
    padding-left: 24px;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 26.4px */
    letter-spacing: -1.1px;
    text-transform: lowercase;
    width: 280px;
    position: relative;
}

.processing-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    /* padding: 53px 0; */
}

.processing-item-text {
    width: calc(100% - 280px);
    /* font-size: 18px; */
    /* font-style: normal; */
    /* font-weight: 700; */
    /* line-height: 120%; */ /* 21.6px */
    /* letter-spacing: -0.9px; */
    /* text-transform: lowercase; */
    padding-bottom: 83px;
}

.processing-item-title:before {
    content: ' ';
    width: 7px;
    height: 7px;
    display: block;
    position: absolute;
    background: #000;
    top: 9px;
    left: 0;
}

.processing-item-title:after {
    content: ' ';
    display: block;
    width: 1px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 9px;
    left: 3px;
}

.processing-item-text.css-content {}

.processing-item-text p {
    font-size: 18px;
    font-style: normal;
    /* font-weight: 700; */
    line-height: 1.4;
    letter-spacing: -0.9px;
    text-transform: lowercase;
}

.processing-item:last-child .processing-item-title:after {
    display: none;
}
.sidebar-content-titlebox {
    margin-bottom: 40px;
}


header.header:after {
        background: rgb(255 255 255 / 80%);
        backdrop-filter: blur(4.3px);
        content: ' ';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
}


.rl-project-award {
    display: none;
}


.burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* display: none; */
    /* transform: translateX(100%); */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    position: relative;
    /* margin-left: 12px; */
    cursor: pointer;
    background: none;
    border: initial;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* position: relative; *96* */
    /*96* margin-left: auto; */
    /* position: absolute; */
    /* margin-right: 0; *96* */
    left: 0;
    top: 0;
    /* width: 60px; */
    /* height: 46px; */
    width: 40px;
    height: 32px;
    border-radius: 6px;
    background: var(--efefef, #EFEFEF);
    /* border-left: 1px solid var(--colorMainWhite); */
    /* border-top: 1px solid var(--colorMainWhite); */
    /* border-bottom: 1px solid var(--colorMainWhite); */
    z-index: 6;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    /* border: 2px solid #121111; */
    /* border-radius: 50%; */
    /* border-radius: 14px; */
}

.burger-cont {
    position: relative;
    width: 24px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /* align-items: center; */
    /* border-radius: 15px; */
}

.burger-cont span {
    display: block;
    width: 100%;
    height: 2px;
    /* margin-bottom: 6px; */
    /* transition: opacity 0.3s cubic-bezier(0.38, 0.005, 0.215, 1), transform 0.3s cubic-bezier(0.38, 0.005, 0.215, 1); */
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: #121111;
    position: absolute;
    /* border-radius: 80px; */
    border-radius: 15px;
}

.burger-cont span:nth-last-child(1) {
    margin-bottom: 0;
}



.burger .burger-cont span:nth-child(1) {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.burger .burger-cont span:nth-child(2) {}

.burger .burger-cont span:nth-child(3) {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
}

.burger.active .burger-cont span {
    position: absolute;
    margin-bottom: 0;
}

.burger.active .burger-cont span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.burger.active .burger-cont span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.burger.active .burger-cont span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.header-burger {
    display: none;
}



  
  html.show-site-loader,
html.show-site-loader body {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__logo {
    --logo-url: url(../img/logo.svg);
    position: relative;
    width: 80%;
    height: 20vh;
}

.site-loader__logo-base,
.site-loader__logo-fill {
  position: absolute;
  inset: 0;
  -webkit-mask-image: var(--logo-url);
  mask-image: var(--logo-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.site-loader__logo-base {
  background: rgba(255, 255, 255, 0.16);
}

.site-loader__logo-fill {
  background: #fff;
  clip-path: inset(100% 0 0 0);
  animation: logoFillUp 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.site-loader__logo-fill {
  background: #fff;
  clip-path: inset(100% 0 0 0);
  animation: logoFillUpFake 1.9s linear forwards;
}

@keyframes logoFillUpFake {
  0% {
    clip-path: inset(100% 0 0 0);
  }

  20% {
    clip-path: inset(72% 0 0 0);
  }

  45% {
    clip-path: inset(52% 0 0 0);
  }

  60% {
    clip-path: inset(40% 0 0 0); /* 60% заполнения */
  }

  78% {
    clip-path: inset(40% 0 0 0); /* подвис */
  }

  88% {
    clip-path: inset(18% 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}
  
  
  
  
  
  
  
  
  
@media only screen and (max-width: 1699px) {
.nav-item {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 20px */
    letter-spacing: -1px;
}

.logo {
    height: 30px;
}

.logo img {
    height: 100%;
}

.header__email {
    font-size: 20px;
}

.btn {
    font-size: 20px;
    padding: 10px 12px;
}

.header__right {
    gap: 32px;
}

.container {
    padding: 0 50px;
}

.serv-item {
    padding: 50px;
}

.section.section_awards .section-title {
    margin-bottom: 58px;
}

.serv-item-right {
    padding-left: 32px;
}

.award-list {
    /* padding-left: 32px; */
    position: relative;
    gap: 39px 0px;
    margin-bottom: 70px;
}

.award-list:before {
    width: 100%;
}

.award-list:after {
    width: 100%;
    top: 53.2%;
}

.section.section_reviews .section-title {
    margin-bottom: 32px;
}

.reviews-container-inner {
    margin-bottom: 50px;
}

.review-person {
    margin-bottom: 36px;
}

.reviews-list-nav {
    width: 48px;
    height: 48px;
}

.reviews-list-nav svg {
    width: 19px;
}

.reviews-container-meta {}

.reviews-list-nav-wrap {
    gap: 12px;
}

.reviews-container {
    margin-bottom: 60px;
}

.section.section_reviews {
    padding-top: 32px;
}

.prices-title {
    margin-bottom: 70px;
}

.pack-item {
    padding: 26px 24px;
}

.pack-time {}

.pack-more {
    font-size: 16px;
    padding: 16px 16px;
}

.pack-btn .btn {
    font-size: 16px;
}

.packs-list {
    gap: 15px;
}

.btn.btn-cta {
    font-size: 24px;
}

.cta-button {
    width: 300px;
}

.cta-button .btn {
    padding: 15px;
    width: 100%;
}

.who-item {
    padding: 32px 50px;
}

.who-logo {
    height: 30px;
}

.who-logo img {
    height: 100%;
}

.who-head {
    margin-bottom: 50px;
}

.who-text {
    font-size: 18px;
    margin-bottom: 40px;
}

.who-pers-contact-name {
    font-size: 18px;
}

.who-pers-contact-func {
    font-size: 14px;
}

.who-pers-contact-contacts {
    font-size: 16px;
}

a.who-pers-email {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    letter-spacing: -0.64px;
}

.who-pers-contact-i-l {
    width: 76px;
    height: 76px;
}

.footer {
    font-size: 14px;
    padding: 24px 0;
}

.f-up.js-goto-top svg {
    width: 10px;
}

.sidebar-form-title {}

.sidebar {
    width: 960px;
}

.sidebar-content {
    padding: 50px 150px 50px 80px;
}

.f-warn {
    font-size: 14px;
}

.txt-i {
    font-size: 18px;
    padding: 12px 0;
}

.f-item {
    margin-bottom: 19px;
}

.txt-a {
    height: 115.688px;
    padding: 12px;
    font-size: 18px;
}

.f-item.f-item_button .btn {
    min-width: 160px;
}

.sidebar-content-titlebox {
    margin-bottom: 20px;
}

.sidebar-content.sidebar-content_process {
    padding: 50px 80px 50px 80px;
}

.process-covering-text {
    font-size: 16px;
}

.process-item {
    margin-bottom: 20px;
    padding: 16px 0;
}

.process-item-title {
    font-size: 16px;
    margin-bottom: 40px;
}

.processing-item-title {
    font-size: 18px;
}

.processing-item-text p {
    font-size: 16px;
}

.processing-item-title:before {
    top: 6px;
}

.processing-item-text {
    padding-bottom: 63px;
}

.sidebar-fixed-button {
    padding: 16px 80px 16px 80px;
}

.section.section_hero h1 {
    width: 660px;
}

.section.section_hero {
    padding-top: 250px;
    padding-bottom: 60px;
}

.serv-item-description ul li {
    padding-left: 19px;
}

.recognitions-list-item .rl-image {
    left: -270px;
    width: 220px;
    height: 150px;
}

.recognitions-list-item:hover .rl-image {
    transform: translateY(0px) rotate(-6deg);
}

.recognitions-title {
    color: rgba(0, 0, 0, 0.28);
    /* font-family: "Mabry Pro"; */
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.72px;
    text-transform: lowercase;
}

.recognitions-list-head {
    display: none;
}

.rl-award {
    display: none;
}

.rl-project {
    width: 80%;
}

.rl-year {
    text-align: center;
}

span.rl-project-award {
    display: block;
    /* color: #ccc; */
    color: rgba(0, 0, 0, 0.28);
    color: #9F9F9F;
    /* font-family: "Mabry Pro"; */
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.72px;
    text-transform: capitalize;
}



}


@media only screen and (max-width: 1279px) {
.container {
    padding: 0 24px;
}

.logo {
    height: 24px;
}

.nav-item {
    font-size: 18px;
}

.header__email {
    font-size: 18px;
}

.btn {
    font-size: 18px;
    gap: 3px;
}

header.header {
    height: 55px;
}

.serv-item-title--idx {
    display: none;
}

.serv-item-description {
    padding: 0;
}

.serv-item {
    padding: 24px;
}

.serv-item-title--time {
    width: 50%;
}

.section-text {
    width: 100%;
}

.award-list {
    width: 100%;
}

.recognitions-list {
    width: 100%;
}

.recognitions-list-button {
    width: 100%;
}

.section.section_awards {
    padding-bottom: 60px;
}

.reviews-container-inner {
    width: 100%;
}

.reviews-container-meta {
    width: 100%;
}

.packs-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
}

.pack-item {
    width: calc(100% / 2 - 8px);
}

.section.section_prices .section-title {
    margin-bottom: 60px;
}

.prices-title {
    margin-bottom: 40px;
}

.faq-list {
    width: 100%;
}

.cta-wrap {
    width: 50%;
}

.who-item {
    padding: 24px;
}

.who-head {
    margin-bottom: 30px;
}

.who-where {
    margin-bottom: 27px;
}

.who-text {
    font-size: 16px;
    margin-bottom: 25px;
}

.sidebar {
    width: 80%;
}

.sidebar-content {
    padding: 50px 80px 50px 80px;
}

.process-covering-title {
    width: 30%;
}

.process-covering-text {
    width: 70%;
    gap: 26px;
}

.processing-item-title {
    width: 30%;
}

.processing-item-text {
    width: 70%;
    padding-bottom: 48px;
}

.section_services {
    padding-bottom: 60px;
}



}






@media only screen and (max-width: 1024px) {

.section.section_hero {
    padding-top: 120px;
}

.serv-item-title--idx {
    display: flex;
    width: 20%;
}

.serv-item {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    position: relative;
    min-height: unset;
}

nav.nav {
    display: none;
}

.header__right {
    gap: 8px;
    /* padding-right: 51px; */
}

.btn.btn-header .btn-text {
    display: none;
}

.btn.btn-header {
    width: 40px;
    height: 32px;
}

.logo {
    height: 30px;
}

header.header {
    height: 64px;
}

.serv-item-description {
    padding-left: 20%;
}

.serv-item-left, .serv-item-right {
    width: 100%;
    padding: 0;
}

.serv-item-titlebox h2 {}

.serv-item-title--time {
    width: 20%;
}

.btn.btn-serv {
    padding: 8px 20px;
}

.serv-item-left {
    margin-bottom: 32px;
}

.cta-wrap {
    width: 80%;
}

.section.section_cta {
    padding: 80px 0;
}

.who-person {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.who-pers {
    width: 100%;
}

a.who-pers-email {
    padding-left: 100px;
}

.who-pers-contact-contacts {
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: flex-start; */
    /* gap: 7px; */
}

.who-pers-contact-i {
    width: 100%;
}




.header-burger {
    /* position: fixed; */
    /* right: 24px; */
    /* top: 16px; */
}

.sidebar {
    width: 100%;
}

.sidebar.mobile-sidebar {
    z-index: 23;
}

.mm-menu-wrap {
    padding: 44px 24px 50px;
    border-top: 1px solid #D3D3D3;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
}

.nav-item {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 30.8px */
    letter-spacing: -0.84px;
}

.mm-menu-navigation {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 18px;
}

.mm-menu-button a {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 22px */
    letter-spacing: -0.6px;
    margin-bottom: 24px;
}

.mm-menu-button {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.mm-menu-button .btn.btn-header {
    width: 50%;
    min-width: 320px;
    height: unset;
    gap: 18px;
    font-size: 20px;
}

.mm-menu-button .btn.btn-header .btn-text {
    display: flex;
}

.sidebar.mobile-sidebar .sidebar-content {
    padding: 0;
    padding-top: 64px;
}
.header-burger {
    display: flex;
}

.serv-item + .serv-item {
    margin-top: unset;
}












}



@media only screen and (max-width: 767px) {
.header__email {
    display: none;
}

.logo {
    height: 27px;
}

.container {
    padding: 0 10px;
}

.header-burger {
    /* right: 24px; */
    /* top: 16px; */
}

.section.section_hero h1 {
    width: 100%;
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 38px */
    letter-spacing: -1.9px;
    margin-bottom: 13px;
}

.hero-desc {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 18px */
    letter-spacing: -0.72px;
    text-transform: lowercase;
}

.section.section_hero {
    padding-top: 300px;
    padding-bottom: 48px;
}

.serv-item {
    padding: 10px;
}

.serv-item-description {
    padding: 0;
}

.serv-item-titlebox {
    font-size: 16px;
    width: 100%;
    margin-bottom: 48px;
}

.serv-item-title--idx {
    font-size: 16px;
    width: 15%;
}

.serv-item-titlebox h2 {
    font-size: 16px;
    width: 50%;
}

.serv-item-title--time {
    width: 35%;
}

.section-text {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 30.8px */
    letter-spacing: -1.4px;
}

.section.section_awards {
    padding-top: 32px;
}

.section.section_awards .section-title {
    margin-bottom: 48px;
}

.award-item {
    width: 50%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding-left: 0;
    padding-bottom: 20px;
    border-right: 0;
    position: relative;
}

.award-item:nth-child(2n+2) {
    border-right: 0px;
    padding-left: 18px;
}

.award-item-img {
    top: 20px;
    right: 17px;
}

.award-item-text {
    font-size: 16px;
}

.award-item:after {
    content: ' ';
    display: flex;
    width: 1px;
    height: 80%;
    top: 5%;
    right: 0;
    background: rgba(0, 0, 0, 0.10);
    position: absolute;
}

.award-list {
    gap: 20px 0px;
    margin-bottom: 70px;
    padding-top: 18px;
}

.award-item:nth-child(2n+2):after {
    display: none;
}

.award-list:after {
    display: none;
}

span.rl-project-award {
    font-size: 16px;
}

.recognitions-list-item {
    font-size: 16px;
    gap: 0px;
}

.rl-project {
    width: 70%;
}

.recognitions-list-item .rl-image {
    display: none;
}

.rl-link {
    width: 10%;
}

.rl-year {
    text-align: right;
}

.recognitions-list-button .btn {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.8px;
    text-transform: lowercase;
}

.pers-texts {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 21.6px */
    letter-spacing: -0.9px;
    padding-left: 10px;
    width: calc(100% - 65px);
}

.pers-image {
    width: 64px;
    height: 64px;
}

.pers-texts {}

.pers-text {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 28.8px */
    letter-spacing: -1.2px;
}

.reviews-list-count {
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 22px */
    letter-spacing: -1.1px;
}

.reviews-list-nav {
    width: 40px;
    height: 42px;
}

.prices-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 30.8px */
    letter-spacing: -1.4px;
}

.pack-title {
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 26px */
    letter-spacing: -1.3px;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.pack-item {
    width: 100%;
    border-radius: 12px;
    padding: 20px;
}

.pack-text {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 19.8px */
    letter-spacing: -0.36px;
}

.pack-time {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 19.8px */
    letter-spacing: -0.72px;
    text-transform: lowercase;
}

.pack-more-title {
    margin-bottom: 13px;
}

.faq-question-item-head-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 19.8px */
    letter-spacing: -0.36px;
}

.faq-question-spoiler-content.css-content {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 19.8px */
    letter-spacing: -0.36px;
}

.faq-box {
    margin-top: 20px;
}

.cta-title {
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 38px */
    letter-spacing: -1.9px;
    margin-bottom: 23px;
}

.btn.btn-dark.btn-cta {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 20px */
    letter-spacing: -1px;
}

.cta-button {
    width: 200px;
}

.who-item {
    width: 100%;
    padding: 32px 10px;
}

.section.section_who {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
}

.who-item:nth-child(1) {
    border-right: none;
    border-bottom: 1px solid #e3e3e3;
}

.footer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.f-up.js-goto-top {
    display: none;
}

.sidebar-content {
    padding: 24px 10px 24px 10px;
}

.sidebar-form-title {
    font-size: 28px;
}

.sidebar-form-text {
    font-size: 16px;
    width: 100%;
}

.f-item.f-item_button {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
}

.sidebar-content.sidebar-content_process {
    padding: 24px 10px 24px 10px;
}

.process-covering-text {
    gap: 10px;
    width: 60%;
}

.process-covering-title {
    width: 40%;
}

.process-item {
    padding-bottom: 0px;
}

.process-covering {
}

.process-covering:last-child .process-covering-text {
    padding-bottom: 0px;
}

.processing-item {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    position: relative;
}

.processing-item-title {
    width: 100%;
}

.processing-item-text.css-content {
    width: 100%;
    padding-left: 24px;
}

.processing-item-title:after {
    display: none;
}

.processing-item:after {
    content: ' ';
    display: block;
    width: 1px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 6px;
    left: 3px;
}

.processing-item:last-child:after {
    display: none;
}

.process-list {
    margin-top: 18px;
}

.sidebar-fixed-button {
    padding: 16px 10px 16px 10px;
}

}