@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNova-Regular.woff");
    font-weight: 400;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNova-Light.woff");
    font-weight: 300;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNova-Bold.woff");
    font-weight: 700;
}

*, 
*::after, 
*::before {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --font-primary: "Proxima Nova", sans-serif;
    --color-black: #212121;
    --color-white: #FFFFFF;
    --color-grey: #A4A4A4;
    --color-desc: #999999;
    --color-red: #A3222E;
    --color-paceholder: #E89AA2;
    --color-border: rgba(217, 217, 217, .5);
}

html, body {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary), Arial, Helvetica, sans-serif;
    background-color: var(--color-white);
    color: var(--color-black);
}

body.disable--scroll {
    overflow: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    background-color: var(--color-white);
    z-index: 33;
    width: 100%;
    padding: 20px 0;
    height: 84px;
}
.header.bordered {
    border-bottom: 1px solid var(--color-desc);
}

.header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 44px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin-left: 80px;
}

.navigation__item a {
    font-size: 16px;
    color: var(--color-black);
    text-transform: uppercase;
    text-decoration: none;
}

.header-info {
    margin-left: auto;
    padding-left: 93px;
}

.header-info  .tel {
    color: var(--color-red);
    text-decoration: none;
    font-size: 16px;
}

.header-desc {
    font-size: 14px;
    color: var(--color-desc);
}
.burger-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.main {
    padding: 84px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.main-swiper {
    width: 100vw;
}

.main-swiper .swiper-slide {
    display: grid;
    grid-template-columns: 1fr 740px;
    grid-template-rows: 1fr 220px;
    position: relative;
    min-height: calc(100vh - 162px);
    width: 80vw;
}
.main-swiper .swiper-slide.triple {
    grid-template-columns: 1fr 720px 1fr;
}
.main-swiper.bottom .swiper-slide {
    grid-template-columns: 1fr 70%;
    grid-template-rows: 1fr 250px;
    min-height: calc(100vh - 130px);
}
.main-swiper.solos .swiper-slide {
    grid-template-columns: 1fr 760px;
    grid-template-rows: 1fr 270px;
    min-height: calc(100vh - 100px);
}
.main-swiper .swiper-slide.center-slide {
    width: 60vw;
}
.main-swiper.bottom {
    margin-bottom: 120px;
}
.swiper-button-next::after, .swiper-button-prev::after {
    display: none;
}

.swiper-button-prev {
    left: calc(20vw - 15px);
    transition: 300ms ease;
}

.swiper-button-next {
    left: auto;
    right: calc(20vw - 15px);
    transition: 300ms ease;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.main-swiper .swiper-slide .silde-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-swiper .swiper-slide .grid-shadow {
    background-color: rgba(0, 0, 0, .25);
    backdrop-filter: grayscale(100%);
}
.main-swiper .swiper-slide .grid-link {
    border-left: 12px solid rgba(163, 34, 46, .75);
    background-color: rgba(0, 0, 0, .25);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    opacity: 0;
    transition: 200ms ease-in-out;
}
.main-swiper .swiper-slide.swiper-slide-active .grid-link {
    opacity: 1;
}
.projects__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.projects__items .projects__item .silde-bg {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}
.projects__items .projects__item {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}
.projects__items .projects__item .grid-link {
    border-left: 12px solid rgba(163, 34, 46, .75);
    background-color: rgba(0, 0, 0, .25);
    backdrop-filter: blur(5px);
    padding: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 27px;
    line-height: 32px;
    color: var(--color-white);
    text-transform: uppercase;
    width: 80%;
    flex-direction: column;
    row-gap: 20px;
}
.projects__items .projects__item .grid-link .red-button {
    max-width: 220px;
    width: 100%;
    text-decoration: none;
    margin-top: 10px;
}


.main-swiper .swiper-slide .grid-link .name {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
    color: var(--color-white);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.main-swiper .swiper-slide .grid-link .name::after {
    content: '';
    display: block;
    width: 300px;
    height: 1px;
    background-color: var(--color-border);
}
.main-swiper .swiper-slide .grid-link .link {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-swiper .swiper-slide .grid-link .desc {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 24px;
    color: var(--color-white);
}
.main-swiper .swiper-slide .grid-link .link::after {
    content: "";
    display: block;
    width: 10px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L1 13' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer-desc {
    font-size: 13px;
    color: var(--color-grey);
    font-family: var(--font-primary);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background-color: var(--color-white);
}
.sclmedia-links-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sclmedia-links-row a {
    text-decoration: none;
    transition: 300ms ease-in-out;
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 120px;
}
.contacts-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3F3F3;
    padding: 40px;
    min-height: 450px;
}

.title {
    font-family: var(--font-primary);
    font-size: 40px;
    line-height: 56px;
    font-weight: 300;
    color: var(--color-black);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

h1.title {
    margin-top: 50px;
}


.title.title-separate {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.title.title-separate::after {
    content: '';
    display: block;
    width: 164px;
    border-top: 1px solid #D9D9D9;
}

.text--large {
    font-family: var(--font-primary);
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 50px;
    color: var(--color-black);
}

.fw--light {
    font-weight: 300;
}
.text--medium {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
    color: var(--color-black);   
}
ol.list {
    padding-left: 20px;
}

.list li {
    margin: 8px 0;
}
ul.list {
    list-style: none;
    list-style-position: inside;
    padding-left: 6px;
}
ul.list li {
    display: flex;
    gap: 10px;
}
ul.list li::before {
    content: '';
    display: block;
    width: 4px;
    min-width: 4px;
    height: 4px;
    background-color: var(--color-black);
    border-radius: 100%;
    margin-top: 8px;
}
.text-space {
    margin-bottom: 24px;
    margin-top: 40px;
}
.text--small {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 18px;
    color: var(--color-white);    
}
.text--small a {
    color: var(--color-white);
    transition: 300ms ease-in-out;
    text-decoration-skip-ink: none;
}
.text--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    max-width: 1000px;
    margin: 40px auto 120px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    counter-reset: step;
    padding: 20px 0;
}

.projects__items {
    margin-bottom: 80px;
}
.step-item {
    width: 303px;
    height: 303px;
    min-width: 303px;
    position: relative;
    border: 2px solid var(--color-red);
    border-radius: 300px;
}
.step-item::before {
    counter-increment: step;
    content: counter(step);
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-red);
    background-color: var(--color-white);
    z-index: 1;
    position: absolute;
    top: 51px;
    left: 0;
    font-size: 14px;
    color: var(--color-red);
    line-height: 40px;
    text-align: center;
    font-weight: 700;
    border-radius: 40px;
}
.step-item.top-arrow::after {
    content: '';
    position: absolute;
    top: -20px;
    display: block;
    left: calc(100% - 70px);
    width: 150px;
    height: 34px;
    background-image: url(../img/arrow-top.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.step-item.bottom-arrow::after {
    content: '';
    position: absolute;
    bottom: -20px;
    display: block;
    left: calc(100% - 70px);
    width: 150px;
    height: 34px;
    background-image: url(../img/arrow-bottom.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.feedback-banner {
    background-color: var(--color-red);
    display: grid;
    grid-template-columns: 580px 1fr;
    margin-bottom: 120px;
    overflow: hidden;
}
.feedback-banner .side-image {
    height: 100%;
}
.feedback-form {
    display: flex;
    flex-direction: column;
    padding: 38px 40px;
    gap: 24px;
}
.feedback-form form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.subtitle {
    font-family: var(--font-primary);
    font-size: 32px;
    line-height: 40px;
    text-transform: uppercase;
}
.feedback-form .subtitle {
    color: var(--color-white);
    margin-bottom: 16px;
    font-weight: 300;
}
.feedback-form input {
    border: none;
    border-bottom: 1px solid var(--color-border);
    background-color: transparent;
    padding: 0 16px 16px 0;
    outline: none;
    color: var(--color-white);
}

.feedback-form input::placeholder {
    color: var(--color-white);
    opacity: 1;
}

.feedback-form input:focus::placeholder {
    opacity: 0;
}
.video-container {
    margin-bottom: 120px;
}
.video-block {
    display: block;
    text-decoration: none;
    float: right;
    margin-left: 30px;
    position: relative;
    cursor: pointer;
    transition: 300ms ease-in-out;
    overflow: hidden;
    height: auto;
}
.video-block img {
    width: 100%;
    max-width: 580px;
    height: auto;
}
.video-block::after {
    content: '';
    width: 67px;
    height: 67px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    background-image: url(../img/play-button.svg);
    background-position: center center;
    background-repeat: no-repeat;
    transition: 300ms ease-in-out;
    opacity: 0.8;
}

table.contacts {
    border-collapse: collapse;
}
table.contacts td.cell-title {
    color: var(--color-desc);
    vertical-align: top;
    line-height: 100%;
}
table.contacts td {
    border: none;
    border-bottom: 1px solid #D9D9D9;
    padding: 16px 40px 16px 0;
    font-size: 16px;
    line-height: 24px;
}
table.contacts td a {
    color: var(--color-black);
    text-decoration: none;
}
table.contacts td .col {
    display: flex;
    flex-direction: column;
}
table.contacts tr:last-child td {
    border-bottom: none;
}
.light-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    background-color: transparent;
    width: 100%;
    height: 45px;
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 18px;
    transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
    cursor: pointer;
}
.red-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border: 1px solid var(--color-red);
    background-color: var(--color-red);
    width: 100%;
    height: 45px;
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 18px;
    transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
    cursor: pointer;
    width: fit-content;
    padding: 0 10px;
}
.red-button:hover {
    background-color: var(--color-red);
}

.progress-bar {
    width: 100%;
    height: 5px;
    display: flex;
    position: absolute;
    bottom: 0;
    z-index: 2;
    left: 0;
}
.progress-bar.hidden {
    display: none;
}
.progress-bar .item {
    width: 100%;
    height: 5px;
}

.progress-bar .item:nth-child(1) {
    background-color: #DDDDDD;
}
.progress-bar .item:nth-child(2) {
    background-color: #B8B8B8;
}
.progress-bar .item:nth-child(3) {
    background-color: #908F8F;
}
.progress-bar .item:nth-child(4) {
    background-color: #5E5E5E;
}
.progress-bar .item span {
    width: 0;
    display: block;
    height: 5px;
    background-color: var(--color-red);
}
.burger-button {
    display: none;
}

.map .ymap {
    height: 100%;
    width: 100%;
}

.icon-marker {
    cursor: pointer;  
    width: 30px;
    height: 30px;
    border-radius: 100%;  
    position: relative;
    transform: translate(-50%, -50%);
}

.hintWindow {
    position: absolute;
    transform: translate(7px, -100%);
    padding: 4px;
    background: white;
    border: 1px solid black;
    opacity: 0.9;
    white-space: nowrap;
}

/* Partners */

.gap-bottom-80 {
    padding-bottom: clamp(2.5rem, 0.455rem + 5.68vw, 5rem);
}

.gap-80 {
    padding: clamp(2.5rem, 0.455rem + 5.68vw, 5rem) 0;
}

.gap-120 {
    padding: clamp(2.5rem, -1.591rem + 11.36vw, 7.5rem) 0;
}

.editor-content {
    font-family: var(--font-primary);
    font-size: 24px;
    line-height: 32px;
    color: var(--color-black);
}

.faq-item:not(.faq-item--active) .faq-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    color: inherit;
    transition: .3s;   
}

.opportunity {
    position: relative;
    overflow: hidden;
    min-height: 663px;
    padding: 30px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.opportunity::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.51) 0%, rgba(0, 0, 0, 0) 90%);
}

.opportunity-title {
    font-size: clamp(1.5rem, 0.682rem + 2.27vw, 2.5rem);
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: clamp(0.625rem, -0.5rem + 3.13vw, 2rem);
    line-height: 120%;
    margin-bottom: clamp(0.625rem, -0.5rem + 3.13vw, 2rem);
    position: relative;
}

.opportunity-title::after {
    content: "";
    position: absolute;
    width: 182px;
    height: 1px;
    background: rgba(217, 217, 217, 0.5);
    bottom: 0;
    left: 0;
}

.opportunity-content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(1.25rem, 0.227rem + 2.84vw, 2.5rem);
    background-color: rgba(0, 0, 0, 0.5);
    font-size: clamp(1rem, 0.795rem + 0.57vw, 1.25rem);
    line-height: 140%;
    border-left: clamp(0.5rem, 0.295rem + 0.57vw, 0.75rem) solid rgba(163, 34, 46, 0.75);
}

.opportunity-texts {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.opportunity-button {
    margin-top: clamp(1.25rem, 0.227rem + 2.84vw, 2.5rem);
    width: 100%;
    max-width: 303px;
}

.about-items {
    display: flex;
    flex-direction: column;
    row-gap: clamp(1.875rem, -0.682rem + 7.1vw, 5rem);
}

.about-item {
    display: grid;
    grid-template-columns: 560px 1fr;
    font-size: clamp(1rem, 0.591rem + 1.14vw, 1.5rem);
    column-gap: 40px;
    row-gap: 20px;
    line-height: 133%;
}

.about-item.reverse img {
    order: 2;
}

.about-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.features-items {
    display: flex;
    flex-direction: column;
    row-gap: clamp(1.875rem, -0.682rem + 7.1vw, 5rem);
    margin-top: clamp(2.5rem, -1.182rem + 10.23vw, 7rem);
}

.feature-item {
    display: flex;
    column-gap: 45px;
    row-gap: 20px;
}

.feature-item-icon {
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60px;
    flex-shrink: 0;
}

.feature-item-title {
    text-transform: uppercase;
    font-size: clamp(1.25rem, 0.636rem + 1.7vw, 2rem);
    line-height: clamp(2rem, 0.773rem + 3.41vw, 3.5rem);
    font-weight: 300;
    padding-bottom: clamp(0.625rem, -0.5rem + 3.13vw, 2rem);
    position: relative;
}

.feature-item-title::after {
    content: "";
    position: absolute;
    width: clamp(6.25rem, 2.977rem + 9.09vw, 10.25rem);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #D9D9D9;
}

.feature-item-info {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    font-size: clamp(1rem, 0.591rem + 1.14vw, 1.5rem);
}

.feature-item-button {
    max-width: 303px;
    width: 100%;
    margin-top: clamp(0.625rem, -0.398rem + 2.84vw, 1.875rem);
}

.welcome {
    color: var(--color-white);
    text-align: center;
}

.welcome-content {
    background-color: var(--color-red);
    padding: clamp(5rem, 3.466rem + 4.26vw, 6.875rem) clamp(1.25rem, -5.5rem + 18.75vw, 9.5rem);
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../img/welcome-bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.welcome .title {
    color: var(--color-white);
}

.welcome .text--large {
    color: var(--color-white);
}

.contacts-header {
    margin-bottom: clamp(1.25rem, 0.227rem + 2.84vw, 2.5rem);
}

.contacts-description {
    text-align: center;
    max-width: 522px;
    margin: 0 auto;
}

.contacts-phone {
    padding-bottom: 16px;
    border-bottom: 1px solid #D9D9D9;
    width: 100%;
}

.contacts-phone .contacts-line-value {
    text-align: right;
}

.contacts-content {
    width: 100%;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    background-color: #F3F3F3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contacts-list {
    padding: clamp(1.875rem, 1.364rem + 1.42vw, 2.5rem) clamp(1.25rem, 0.227rem + 2.84vw, 2.5rem);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contacts-item-content {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.contacts-item-content .contacts-line:first-child {
    padding-top: 16px;
}

.contacts-line {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: clamp(0.875rem, 0.773rem + 0.28vw, 1rem);
}

.contacts-line-title {
    color: var(--color-desc);
    flex-grow: 1;
}

.contacts-line-title:not(.full) {
    max-width: 192px;
    flex-shrink: 0;
    width: 100%;
}

.contacts-line-value {
    max-width: 299px;
    display: inline-block;
    color: #000;
    flex-grow: 1;
}

.contacts-line > a {
    text-decoration: none;
    color: var(--color-black);
}

.contacts-line > a:hover {
    text-decoration: underline;
    color: var(--color-red);
}

.contacts-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.contacts-address-route {
    display: flex;
    align-items: center;
    column-gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-red);
}

.contacts-address-route::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzIxOF81MjUpIj4KPHBhdGggZD0iTTYgMjFDNy4xMDQ1NyAyMSA4IDIwLjEwNDYgOCAxOUM4IDE3Ljg5NTQgNy4xMDQ1NyAxNyA2IDE3QzQuODk1NDMgMTcgNCAxNy44OTU0IDQgMTlDNCAyMC4xMDQ2IDQuODk1NDMgMjEgNiAyMVoiIHN0cm9rZT0iI0EzMjIyRSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xOCA3QzE5LjEwNDYgNyAyMCA2LjEwNDU3IDIwIDVDMjAgMy44OTU0MyAxOS4xMDQ2IDMgMTggM0MxNi44OTU0IDMgMTYgMy44OTU0MyAxNiA1QzE2IDYuMTA0NTcgMTYuODk1NCA3IDE4IDdaIiBzdHJva2U9IiNBMzIyMkUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTIgMTlIMTYuNUMxNy40MjgzIDE5IDE4LjMxODUgMTguNjMxMyAxOC45NzQ5IDE3Ljk3NDlDMTkuNjMxMyAxNy4zMTg1IDIwIDE2LjQyODMgMjAgMTUuNUMyMCAxNC41NzE3IDE5LjYzMTMgMTMuNjgxNSAxOC45NzQ5IDEzLjAyNTFDMTguMzE4NSAxMi4zNjg3IDE3LjQyODMgMTIgMTYuNSAxMkg4LjVDNy41NzE3NCAxMiA2LjY4MTUgMTEuNjMxMyA2LjAyNTEzIDEwLjk3NDlDNS4zNjg3NSAxMC4zMTg1IDUgOS40MjgyNiA1IDguNUM1IDcuNTcxNzQgNS4zNjg3NSA2LjY4MTUgNi4wMjUxMyA2LjAyNTEzQzYuNjgxNSA1LjM2ODc1IDcuNTcxNzQgNSA4LjUgNUgxMiIgc3Ryb2tlPSIjQTMyMjJFIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8yMThfNTI1Ij4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=");
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.contacts-address-route:hover {
    text-decoration: none;
}

.contacts-content .ymap {
    width: 100%;
    height: 100%;
}

.contacts-content .ymaps3x0--map {
   width: 100% !important;
   height: 660px !important;
}

.contacts-item {
    border-bottom: 1px solid #D9D9D9;
    padding: 16px 0;
}

.contacts-item-title {
    cursor: pointer;
    background: none;
    text-align: left;
    width: 100%;
    border: none;
    color: #000;
    font-size: clamp(1rem, 0.795rem + 0.57vw, 1.25rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contacts-item-title svg {
    transition: .3s;
}

.contacts-item.faq-item--active .contacts-item-title {
    color: var(--color-red);
}

.contacts-item.faq-item--active .contacts-item-title svg {
    transform: rotate(-90deg);
}

.contacts-item.faq-item--active .contacts-item-title svg path {
    fill: var(--color-red);
}

.projects-container {
    max-width: 1920px;
    margin: 0 auto;
}

.projects-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.project-item {
    position: relative;
    min-height: clamp(25.25rem, 7.946rem + 27.91vw, 41.438rem);
    overflow: hidden;
    display: grid;
    grid-template-columns: clamp(18.75rem, -1.284rem + 23.47vw, 26.875rem) 1fr;
    grid-template-rows: 1fr auto;
}

.project-item-img {
    width: 100%;
    height: 100%;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    object-fit: cover;
}

.project-item-info {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: clamp(1.25rem, -3.056rem + 6.94vw, 2.5rem);
    padding-left: clamp(1.25rem, -2.194rem + 5.56vw, 2.25rem);
    padding-right: clamp(1.125rem, -1.243rem + 3.82vw, 1.813rem);
    padding-bottom: clamp(1.25rem, -0.903rem + 3.47vw, 1.875rem);
    background-color: rgba(0, 0, 0, 0.5);
    font-size: clamp(1rem, 0.795rem + 0.57vw, 1.25rem);
    line-height: clamp(1rem, 0.795rem + 0.57vw, 1.25rem);
    border-left: clamp(0.5rem, 0.295rem + 0.57vw, 0.75rem) solid rgba(163, 34, 46, 0.75);
    color: var(--color-white);
    grid-area: 2 / 1 / 3 / 2;
}

.project-item .grid-empty {
    grid-area: 1 / 2 / 2 / 3;
    background-color: rgba(0, 0, 0, 0.25);
    position: relative;
}

.project-item .grid-empty.white {
    background-color: rgba(255, 255, 255, 0.25);
}

.project-item-title {
    font-size: clamp(1.5rem, 1.67vw, 2rem);
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: clamp(0.625rem, -2.604rem + 5.21vw, 1.563rem);
    line-height: 120%;
    margin-bottom: clamp(0.625rem, -0.5rem + 3.13vw, 2rem);
    position: relative;
}

.project-item-title::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 1px;
    background: rgba(217, 217, 217, .5);
    bottom: 0;
    left: 0;
}

.project-item-description {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    font-size: clamp(1rem, 0.795rem + 0.57vw, 1.25rem);
    font-weight: 400;
    line-height: 120%;
}

.project-item.right {
    grid-template-columns: 1fr clamp(18.75rem, -1.284rem + 23.47vw, 26.875rem);
}

.project-item.right .grid-empty {
    grid-area: 1 / 1 / 2 / 2;
}

.project-item.right .project-item-info {
    grid-area: 2 / 2 / 3 / 2;
}

.project-item.top-right {
    grid-template-columns: 1fr clamp(18.75rem, -1.284rem + 23.47vw, 26.875rem);
    grid-template-rows: auto 1fr;
}

.project-item.top-right .grid-empty {
    grid-area: 2 / 1 / 3 / 2;
}

.project-item.top-right .project-item-info {
    grid-area: 1 / 2 / 2 / 3;
}

.project-item.bottom-right {
    grid-template-columns: 1fr clamp(18.75rem, -1.284rem + 23.47vw, 26.875rem);
}

.project-item.bottom-right .grid-empty {
    grid-area: 1 / 1 / 2 / 2;
}

.project-item.bottom-right .project-item-info {
    grid-area: 2 / 2 / 3 / 2;
}

.project-item.top-left {
    grid-template-rows: auto 1fr;
}

.project-item.top-left .grid-empty {
    grid-area: 2 / 2 / 3 / 2;
}

.project-item.top-left .project-item-info {
    grid-area: 1 / 1 / 2 / 2;
}

.modal {
    position: fixed;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.3);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.modal-inner {
    position: relative;
    z-index: 1;
    transform: scale(.7);
    transition: .3s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal.active .modal-inner {
    transform: scale(1);
}

.modal-close {
    top: 15px;
    right: 15px;
    position: absolute;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    z-index: 2;
}

.modal-close::before,
.modal-close::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background-color: var(--color-white);
}

.modal-close::before {
    transform: rotate(-45deg)
}

.modal-close::after {
    transform: rotate(45deg)
}

.modal-close:hover::before,
.modal-close:hover::after,
.modal-close:focus::before, 
.modal-close:focus::after {
    background-color: var(--color-black);
}

.consulatation .feedback-banner {
    display: flex;
}

.consulatation .modal-inner {
    max-width: 580px;
}

.consulatation form button {
    background-color: var(--color-white);
    color: var(--color-black);
}

.consulatation form button:hover {
    background-color: transparent;
    color: var(--color-white);
}

.intro {
    overflow: hidden;
}

.intro-content {
    display: grid;
    grid-template-columns: minmax(200px, 800px) minmax(400px, 739px) minmax(200px, 1fr);
    height: 417px;
}

.intro-title {
    font-size: clamp(1.25rem, 0.227rem + 2.84vw, 2.5rem);

}

.intro-item {
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    height: 100%;
    align-items: flex-end;
}

.intro-item img {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-info {
    border-left: clamp(0.5rem, 0.295rem + 0.57vw, 0.75rem) solid rgba(163, 34, 46, .75);
    background-color: rgba(0, 0, 0, .5);
    padding: clamp(1.25rem, 0.227rem + 2.84vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: var(--color-white);
    transition: 200ms ease-in-out;
    width: 100%;
}

.intro-title {
    font-weight: 300;
    max-width: 600px;
    text-transform: uppercase;
}

.nearsalon {
    padding: 40px 0;
}

.nearsalon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.nearsalon-title {
    text-align: center;
    color: #b1b1b1;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0.8em;
    text-transform: uppercase;
}

.nearsalon-address {
    font-style: normal;
    display: block;
    margin: 0;
    min-height: 110px;
    text-align: center;
    font-size: clamp(1.5rem, 1.091rem + 1.14vw, 2rem);
    font-weight: 300;
}


/* Partners end */

.main-swiper.kitchen-detail .swiper-slide .grid-link .name::after {
    content: none;
}

.main-swiper.kitchen-detail .swiper-slide.swiper-slide-active .grid-link {
  backdrop-filter: blur(25px);
  justify-content: center;
}

.main-swiper.kitchen-detail .swiper-slide {
    grid-template-rows: 1fr 130px;
}

.product-about-inner {
    background: #f3f3f3;
    padding: clamp(1.25rem, 0.417rem + 2.31vw, 2.5rem);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(1.875rem, 0.625rem + 2.6vw, 3.75rem);
    row-gap: 30px;
    position: relative;
    font-size: clamp(1rem, 0.667rem + 0.69vw, 1.5rem);
}


@media (max-width: 1250px) {
    .main-swiper.bottom .swiper-slide {
        grid-template-columns: 1fr 90%;
    }
}
@media (max-width: 1070px) {
    .container {
        padding: 0 20px;
    }
    .main-swiper .swiper-slide .grid-link {
        gap: 16px;
        padding: 20px 18px;
    }
    .main-swiper .swiper-slide .grid-link .name {
        font-size: 18px;
        line-height: 22px;
        gap: 16px;
    }
    .main-swiper .swiper-slide .grid-link .link,
    .main-swiper .swiper-slide .grid-link .desc {
        font-size: 14px;
    }
    .main-swiper .swiper-slide {
        grid-template-columns: 1fr 80%;
        grid-template-rows: 1fr 150px;
    }
    .main-swiper .swiper-slide.triple {
        grid-template-columns: 1fr 80% 1fr;        
    }
    .main-swiper.bottom .swiper-slide {
        grid-template-columns: 1fr 80%;
        grid-template-rows: 1fr 150px;
    }
    .about-item {
        grid-template-columns: 1fr 1fr;
    }
    .projects-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 967px) {
    .container {
        padding: 0 20px;
    }
    .steps-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .step-item.bottom-arrow::after {
        transform: rotateZ(-70deg) rotateY(180deg);
        left: 110px;
        bottom: -80px;
    }
    .title {
        font-size: 32px;
        line-height: 40px;
    }
    .editor-content {
        font-size: 20px;
        line-height: 28px;
    }
    .text--large {
        font-size: 20px;
        line-height: 28px;
    }
    .subtitle {
        font-size: 26px;
        line-height: 34px;
    }

    .feedback-banner {
        display: flex;
        flex-direction: column-reverse;
    }
    .feedback-banner .side-image {
        width: 100%;
    }
    .text--large {
        margin-bottom: 30px;
    }
    .main-swiper.bottom {
        margin-bottom: 60px;
    }
    .contacts-wrapper {
        padding-bottom: 60px;
    }
    .steps-grid {
        margin: 30px auto 60px;
    }
    .feedback-banner {
        margin-bottom: 60px;
    }
    .video-container {
        margin-bottom: 60px;
    }
    .project-item {
        grid-template-columns: 80% 1fr;
    }

    .project-item.bottom-right,
    .project-item.right,
    .project-item.top-right {
        grid-template-columns: 1fr 80%;
    }
    
}
@media (max-width: 878px) {
    .video-block {
        width: 60vw;
    }
    .contacts-wrapper {
        grid-template-columns: 1fr;
    }
    nav {
        position: relative;
        z-index: -3;
    }
    .header {
        height: 60px;
        padding: 8px 0;
    }
    .header-inner {
        height: 44px;
    }
    .main-swiper .swiper-slide {
        min-height: calc(100vh - 128px);
    }
    .progress-bar .item.active {
        display: block;
    }
    .progress-bar .item {
        display: none;
    }
    .main {
        padding: 60px 0 0;
    }
    .navigation {
        margin-left: 0;
        position: fixed;
        left: -100%;
        top: 60px;
        transition: 400ms;
        opacity: 0;
        flex-direction: column;
        padding: 40px;
        align-items: center;
        border-top: 1px solid var(--color-desc);
        pointer-events: none;
        background-color: var(--color-white);
        height: 100%;
        width: 100%;
        z-index: 333;
    }
    .navigation__item a {
        font-size: 20px;
    }
    .navigation.active {
        left: 0;
        opacity: 1;
        pointer-events: all;
    }
    .burger-button {
        margin-left: auto;
        display: block;
    }
    .projects__items {
        grid-template-columns: 1fr;
    }
    .projects__items .projects__item .grid-link {
        width: 80%;
    }
    .projects__items .projects__item .grid-link {
        font-size: 24px;
        padding: 16px 24px;
        border-left: 8px solid rgba(163, 34, 46, .75);
    }
    .main-swiper .swiper-slide .grid-link .link::after {
        width: 8px;
        height: 12px;
    }
    .about-item {
        grid-template-columns: 1fr;
    }
    .about-item img {
        max-height: 311px;
    }
    .about-item.reverse img {
        order: unset;
    }
    .feature-item {
        flex-direction: column;
        align-items: center;
    }
    .feature-item-info {
        align-items: center;
    }
    .feature-item-title::after {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .contacts-content {
        grid-template-columns: 1fr;
    }
    .contacts-content .ymaps3x0--map {
        height: 456px !important;
    }
    .projects-items {
        grid-template-columns: 1fr;
    }
    .product-about-inner {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 687px) {
    .container {
        padding: 0 20px;
    }
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    .editor-content {
        font-size: 16px;
        line-height: 21px;
    }
    .text--large {
        margin-bottom: 16px;
    }
    .step-item.top-arrow::after {
        transform: rotateZ(80deg) rotateY(0deg);
        top: auto;
        left: auto;
        right: -70px;
        bottom: -30px;
    }
    .step-item.bottom-arrow::after {
        transform: rotateZ(86deg);
        left: -70px;
        bottom: -8px;
    }
    .title {
        font-size: 24px;
        line-height: 32px;
    }
    .text--large {
        font-size: 16px;
        line-height: 21px;
    }
    .swiper-button-prev,
    .swiper-button-next {
        transform: scale(0.6);
    }
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        transform: scale(0.6);
    }
    .swiper-button-prev {
        left: 3%;
    }
    .swiper-button-next {
        right: 3%;
    }
    .main-swiper .swiper-slide {
        width: 95vw;
        grid-template-columns: 0 100%;
        grid-template-rows: 1fr 150px;
    }
    .main-swiper .swiper-slide.triple {
        grid-template-columns: 0 100% 0;
    }
    .main-swiper .swiper-slide .grid-link {        
        border-left: 8px solid rgba(163, 34, 46, .75);
        justify-content: center;
    }
    .main-swiper .swiper-slide.center-slide {
        width: 90vw;
    }
    .subtitle {
        font-size: 21px;
        line-height: 28px;
        font-weight: 300;
    }
    .feedback-form {
        padding: 30px 20px;
    }
    .contacts-inner {
        padding: 30px 20px;
        min-height: auto;
    }
    .video-block {
        width: 100%;
        float: none;
        margin-left: 0;
        margin-bottom: 30px;
    }
    .main-swiper.bottom {
        margin-bottom: 30px;
    }
    .contacts-wrapper {
        padding-bottom: 30px;
    }
    .steps-grid {
        margin: 30px auto;
    }
    .footer-desc {
        font-size: 12px;
    }
    .sclmedia-links-row a img,
    .sclmedia-links-row a {
        width: 26px;
        height: 26px;
    }
    .feedback-banner {
        margin-bottom: 30px;
    }
    .video-container {
        margin-bottom: 30px;
    }
    .map .ymap {
        height: 350px;
    }
    .logo img {
        width: 134px;
    }
    .header-info {
        padding-left: 34px;
    }
    .projects__items .projects__item .grid-link {
        width: 100%;
    }
    .projects__items .projects__item .grid-link .red-button {
        max-width: 150px;
        height: 40px;
    }
    table.contacts td {
        padding: 12px 20px 12px 0;
    }
    table.contacts td {
        font-size: 14px;
    }
    table.contacts {
        width: 100%;
    }
    .projects__items .projects__item .grid-link {
        padding: 8px 16px;
        border-left: 6px solid rgba(163, 34, 46, .75);
    }
    .contacts-line-title:not(.full) {
        max-width: 127px;
    }
    .intro-content {
        grid-template-columns: 1fr;
        height: unset;
    }
    .intro-info {
        margin: 0 20px;
    }
    .intro-item {
        min-height: 203px;
    }
    .intro-item.with-text {
        min-height: 310px;
    }
    .project-item {
        display: flex;
        align-items: flex-end;
    }

    .project-item .grid-empty {
        display: none;
    }

}
@media (max-width: 420px) {
    .header-info {
        padding-left: 0;
    }
    table.contacts .row {
        display: flex;
        flex-direction: column;
    }
    table.contacts td {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .projects__items .projects__item .grid-link {
        font-size: 20px;
        padding: 15px;
    }
    .main-swiper.bottom .swiper-slide {
        grid-template-columns: 1fr 90%;
        grid-template-rows: 1fr 170px;
    }
}

@media (hover: hover) {
    .light-button:hover {
        background-color: var(--color-white);
        color: var(--color-black);
    }
    
    .light-button:active {
        border: 1px solid var(--color-black);
    }
    .text--small a:hover {
        color: var(--color-black);
    }
    .video-block:hover::after {
        opacity: 1;
        transform: translateX(-50%) translateY(-50%) scale(1.4);
    }
    .sclmedia-links-row a:hover {
        transform: scale(1.2);
    }
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        transform: scale(1.1);
    }
}

@media (hover: none) {
    .light-button:active {
        background-color: var(--color-white);
        color: var(--color-black);
    }
    .text--small a:active {
        color: var(--color-black);
    }
    .video-block:active::after {
        opacity: 1;
        transform: translateX(-50%) translateY(-50%) scale(1.4);
    }
    .sclmedia-links-row a:active {
        transform: scale(1.2);
    }
    .text--small a:active {
        color: var(--color-black);
    }
}