/* USER VARIABLES SECTION */
:root {
    --accent: #a6977e;
    --black: #000;
    --regular-text: 16rem;
    --gap: 15rem;
    --section-padding: 50rem;
    --lineheight: normal;
    --userfont: 'montserrat', sans-serif;
    --heading: 40rem;
    --heading2: 40rem;
    --heading3: 24rem;
    --heading4: 20rem;
    --heading5: 18rem;
}

/* FONTS LOAD SECTION */
@font-face {
    src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
    font-family: "montserrat";
}

@font-face {
    src: url("../fonts/georgia.woff2") format("woff2");
    font-family: "georgia";
}

@font-face {
    src: url("../fonts/helveticaneuecyr-italic.woff2") format("woff2");
    font-family: "helveticaneuecyr";
}

/* GENERAL CSS SETTINGS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #eee;
}

*::-webkit-scrollbar {
    height: 6rem;
    width: 6rem;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 5rem;
}

::placeholder {
    color: var(--gray_text);
}

::selection {
    background-color: var(--accent);
    color: #fff;
}

button {
    border: none;
    font-family: var(--userfont);
    font-size: var(--regular-text);
}

input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    display: none;
}

input,
textarea {
    width: 100%;
    outline: none;
    background-color: transparent;
    border-radius: 0;
    color: var(--black);
    height: 50rem;
    font-size: var(--regular-text);
    border: 1rem solid var(--accent);
    border-left: none;
    border-right: none;
    box-shadow: none;
    padding: 10rem 0;
    transition: border .4s ease;
    font-family: 'helveticaneuecyr', sans-serif;
}

textarea {
    height: 180rem;
    resize: none;
}

html {
    font-size: calc(1vw / 18);
}

body {
    font-family: var(--userfont);
    font-size: var(--regular-text);
    line-height: var(--lineheight);
    color: var(--black);
    position: relative;
    overflow-x: hidden;
    background-color: #fff;
    background-image: url('../images/section-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
}

body.overflow {
    overflow: hidden;
    position: relative;
}

body:has(.cookies) {
    overflow: hidden;
}

body:has(.cookies) .preloader {
    top: 89rem;
    height: calc(100vh - 89rem);
}

body:has(.preloader.active) .wrapper {
    padding-top: 89rem;
}

img {
    max-width: 100%;
    pointer-events: none;
    user-select: none;
    object-fit: cover;
    object-position: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading,
.heading2,
.heading3,
.heading4,
.heading5,
.heading6 {
    font-family: "georgia", sans-serif;
    font-weight: normal;
    font-style: normal;
}

h1,
.heading {
    font-size: var(--heading);
}

h2,
.heading2 {
    font-size: var(--heading2);
}

h3,
.heading3 {
    font-size: var(--heading3);
}

h4,
.heading4 {
    font-size: var(--heading4);
}

h5,
.heading5 {
    font-size: var(--heading5);
}

h6,
.heading6 {
    font-size: var(--regular-text);
}

a {
    color: var(--black);
    display: inline-block;
    transition: color .4s ease;
    text-decoration: none;
}

p:not(:last-child) {
    margin-bottom: 20rem;
}

/* USER STYLES */
.container {
    max-width: 1140rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 15rem;
}

.content {
    position: relative;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 49;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10rem);
    transition: opacity .4s ease, visibility .4s ease;
}

body.overflow .wrapper::before {
    opacity: .7;
    visibility: visible;
}

body.overflow.z-index .wrapper::before {
    z-index: 55;
}

.wrapper.overflow-hidden {
    overflow-x: hidden;
}

.description {
    font-size: 20rem;
    font-family: 'helveticaneuecyr', sans-serif;
}

.heading-wrap {
    display: flex;
    align-items: flex-end;
    gap: var(--gap);
    margin-bottom: 40rem;
}

.heading-wrap h2 span {
    color: var(--accent);
}

.heading-wrap p {
    font-size: var(--heading4);
    color: var(--accent);
    font-family: 'helveticaneuecyr', sans-serif;
    margin: 0;
}

.heading-wrap>*:not(:first-child):last-child {
    text-align: right;
    margin-left: auto;
}

.heading-wrap:has(p) h2 {
    width: 46%;
}

.heading-wrap h2 {
    width: 100%;
}

.heading-wrap h2 img {
    width: 60rem;
}

.section {
    padding: var(--section-padding) 0;
}

.section.full {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section.full>* {
    width: 100%;
}

.section.bg {
    position: relative;
    z-index: 1;
}

.section.bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../images/section-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
}

.numbering {
    counter-reset: item-counter;
}

.numbering>*::after {
    content: counter(item-counter, decimal-leading-zero);
    counter-increment: item-counter;
}

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.preloader-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    overflow: hidden;
}

.preloader-img img {
    width: 100%;
    height: 100%;
    animation: scale-img 60s ease infinite;
}

.preloader-bottom {
    position: absolute;
    bottom: 80rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: .5;
    z-index: -1;
}

.preloader::after {
    content: '';
    position: absolute;
    bottom: 50rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2rem;
    background-color: #fff;
}

.preloader-logo img {
    filter: brightness(0) invert(1);
    width: 135rem;
}

.preloader-title {
    text-transform: uppercase;
    margin-top: 10rem;
    color: #fff;
}

/* cookies */
.cookies {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20rem 0;
    background-color: #fff;
    font-family: 'helveticaneuecyr', sans-serif;
    z-index: 111;
    border-bottom: 1rem solid var(--accent);
}

.cookies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: .5;
    z-index: -1;
}

.cookies a {
    color: var(--accent);
}

.cookies .btn {
    min-width: 150rem;
}

.cookies-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
    margin: 0 auto;
}

/* btn */
.btn {
    background-color: #fff;
    color: var(--black);
    padding: 10rem 20rem;
    min-height: 48rem;
    border: 1rem solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    transition: color .4s ease, background-color .4s ease, border-color .4s ease;
    font-size: var(--regular-text);
    font-family: var(--userfont);
}

/* scroll-down */
.scroll-down {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: top 1.5s ease;
    opacity: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14rem;
    font-family: 'helveticaneuecyr', sans-serif;
}

.scroll-down.show {
    top: 90%;
    opacity: 1;
}

.scroll-down img {
    transform: rotate(135deg);
    height: 30rem;
    margin-bottom: 15rem;
    filter: brightness(0) invert(1);
}

/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: transform .4s ease, opacity .4s ease;
    transform: translateY(-100%);
    opacity: 0;
}

.header.show {
    transform: translateY(0);
    opacity: 1;
}

.header.fixed .header__bottom,
.header.active .header__bottom {
    background-color: #fff;
    border-bottom: 1rem solid var(--accent);
    position: relative;
    z-index: 1;
}

.header.fixed .header__bottom::before,
.header.active .header__bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.5;
    z-index: -1;
}

.header.fixed .header__list a,
.header.active .header__list a {
    color: var(--black);
}

.header.fixed .header__logo img,
.header.active .header__logo img {
    filter: brightness(0) invert(0);
}

.header.hidden,
.header.fixed {
    transform: translateY(-38rem);
}

.header__top {
    padding: 10rem 0;
    background-color: #fff;
    font-size: 14rem;
    position: relative;
    z-index: 1;
}

.header__top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: .5;
    z-index: -1;
}

.header__top-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.header__phone-icon {
    display: flex;
    flex: 0 0 auto;
}

.header__phone-icon img {
    width: 14rem;
}

.header__phone-wrap>*:last-child {
    font-family: 'helveticaneuecyr', sans-serif;
}

.header__contact {
    text-align: right;
    position: relative;
}

.header__contact-title {
    cursor: pointer;
}

.header__contact-title span {
    font-family: 'helveticaneuecyr', sans-serif;
}

.header__contact-block {
    position: absolute;
    right: 0;
    top: 22rem;
    width: 280rem;
    padding: 20rem 30rem;
    background-color: #fff;
    font-size: 14rem;
    text-align: center;
    display: none;
    z-index: 1;
}

.header__contact-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: .5;
    z-index: -1;
}

.header__contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.header__contact-item span {
    font-family: var(--userfont);
    text-transform: uppercase;
    color: var(--accent);
}

.header__contact-item a {
    font-family: 'helveticaneuecyr', sans-serif;
}

.header__contact-btns {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    margin: 10rem 0;
}

.header__contact-btns .btn {
    font-size: 15rem;
}

.header__contact-socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
}

.header__contact-socials img {
    width: 40rem;
}

.header__bottom {
    padding: 15rem 0;
    background-color: transparent;
    transition: background-image .4s ease, border-bottom .4s ease;
}

.header__bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    display: flex;
    flex: 0 0 auto;
}

.header__logo img {
    width: 50rem;
    filter: brightness(0) invert(1);
}

.header__list ul {
    list-style-type: none;
    font-family: 'helveticaneuecyr', sans-serif;
    text-transform: lowercase;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 35rem;
}

.header__list a {
    color: #fff;
}

/* hero */
.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
    padding: calc(var(--section-padding)*2) 0;
    gap: var(--gap);
    position: relative;
    overflow: hidden;
    color: #fff;
    z-index: 1;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero__bg img {
    animation: scale-img 60s ease infinite;
}

.hero__content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    z-index: 0;
    background: #493C30;
    background: linear-gradient(180deg, rgba(73, 60, 48, 0) 0%, rgba(73, 60, 48, 1) 100%);
    z-index: -1;
    opacity: 0.6;
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    justify-content: space-between;
}

.hero__grid>* {
    width: 76%;
    opacity: 0;
    transform: translateX(0);
    transition: transform 1s ease, opacity 1s ease;
}

.hero__grid>*.show {
    opacity: 1;
    transform: translateX(0);
}

.hero__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: calc(var(--section-padding)*2);
    transform: translateX(-150rem);
}

.hero__desc {
    font-size: var(--heading3);
    font-family: 'helveticaneuecyr', sans-serif;
}

.hero__right {
    margin-left: auto;
    transform: translateX(150rem);
}

.hero__quote {
    text-align: right;
    text-transform: uppercase;
    font-size: var(--heading3);
    margin-bottom: 150rem;
}

/* process */
.process__item {
    position: relative;
    z-index: 1;
}

.process__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: 0;
    z-index: -1;
    transition: opacity .4s ease;
}

.process__item.active::before {
    opacity: .3;
}

.process__item-wrap {
    position: relative;
    padding: 40rem 0;
    border-bottom: 2rem solid #d9d1ca;
    cursor: pointer;
    padding-left: 45%;
    padding-right: 40rem;
}

.process__item-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(90deg);
    background-image: url('../images/str.svg');
    background-repeat: no-repeat;
    background-size: 20rem;
    width: 20rem;
    height: 20rem;
    transition: transform .4s ease;
}

.process__item.active .process__item-wrap::before {
    transform: translateY(-50%) rotate(0deg);
}

.process__list.numbering>*::after {
    content: '';
    display: none;
}

.process__list.numbering .process__item-wrap::after {
    content: counter(item-counter, decimal-leading-zero);
    counter-increment: item-counter;
    font-family: 'helveticaneuecyr', sans-serif;
    color: var(--accent);
    position: absolute;
    top: 40rem;
    left: 0;
}

.process__item.active .process__item-wrap::after {
    color: var(--black);
}

.process__name {
    text-transform: uppercase;
    font-size: var(--heading3);
}

.process__text {
    padding-top: 10rem;
    font-family: 'helveticaneuecyr', sans-serif;
    display: none;
}

.process-work__wrap {
    display: flex;
    gap: var(--gap);
}

.process-work__icon img {
    width: 60rem;
    margin-bottom: 30rem;
}

.process-work__left {
    width: 36%;
    flex: 0 0 auto;
}

.process-work__right {
    width: 100%;
    position: relative;
    padding: 0 calc(var(--section-padding)/2) var(--section-padding);
    z-index: 1;
}

.process-work__right::before {
    content: '';
    position: absolute;
    top: calc(var(--section-padding)*2*-1);
    left: 0;
    width: 150%;
    height: calc(100% + calc(var(--section-padding)*2));
    background-color: #ded9cf;
    z-index: -1;
    opacity: 0.5;
}

.process-work__info {
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
    margin-bottom: 30rem;
}

.process-work__title {
    font-size: var(--heading3);
    color: var(--accent);
    text-transform: uppercase;
    font-weight: lighter;
    width: 40%;
    flex: 0 0 auto;
}

.process-work__text {
    font-family: 'helveticaneuecyr', sans-serif;
    width: 60%;
}

.process-work__item {
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
    border-bottom: 2rem solid #d9d1ca;
    padding: 30rem 0;
}

.process-work__item:first-child {
    border-top: 2rem solid #D9D1CA;
}

.process-work__item::after {
    order: -1;
    width: 40%;
    color: var(--accent);
}

.process-work__item-wrap {
    width: 60%;
}

.process-work__item-title {
    text-transform: uppercase;
    font-size: var(--heading3);
}

.process-work__item-text {
    font-family: 'helveticaneuecyr', sans-serif;
    position: relative;
    padding-top: 30rem;
    margin-top: 30rem;
}

.process-work__item-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 170%;
    height: 2rem;
    background-color: #D9D1CA;
}

/* projects */
.projects__gallery {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap);
}

.projects__item {
    height: 262rem;
    transform: translateX(100%);
}

.projects__item:nth-child(1),
.projects__item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 2;
    height: calc(262rem*2 + var(--gap));
    transform: translateX(-100%);
}

.projects__item:nth-child(3) {
    grid-column: span 3;
}

.projects__footer {
    margin-top: 40rem;
    text-align: right;
}

.projects__footer.center {
    text-align: center;
    padding-right: 0;
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--gap)*2) var(--gap);
}

.project-item {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    padding-bottom: 10rem;
    border-bottom: 1rem solid var(--accent);
}

.project-item__img {
    height: 390rem;
}

.project-item__bottom {
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
    font-size: var(--heading4);
}

.project-item__title {
    font-weight: lighter;
    text-transform: uppercase;
}

h1.project-item__title {
    font-family: var(--userfont);
    font-size: var(--heading3);
}

.project-item__place {
    font-family: 'helveticaneuecyr', sans-serif;
    color: var(--accent);
    max-width: 50%;
    flex: 0 0 auto;
}

.project .project-item__img {
    height: 574rem;
}

.project__content {
    overflow: hidden;
}

.project__content .description {
    margin-top: var(--section-padding);
}

.project__wrapper {
    display: flex;
    gap: var(--gap);
}

.project__img {
    width: 100%;
    height: calc(100% + 40rem);
    margin-left: -27%;
}

.project__wrapper:has(.project__img) .project-item {
    width: 66.6667%;
}

.project__content .project-item {
    width: 100%;
    margin-left: auto;
    flex: 0 0 auto;
    height: max-content;
}

.project-process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.project-process__img {
    height: 530rem;
}

/* gallery */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--section-padding)*2) var(--gap);
}

.gallery__item {
    height: 510rem;
}

.gallery__item:nth-child(4n+1) {
    grid-column: span 3;
    height: 830rem;
}

/* steps */
.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

.steps__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column: span 3;
    gap: var(--gap);
}

.steps__item {
    background-color: #fff;
    padding: 20rem;
    display: flex;
    flex-direction: column;
    gap: 10rem;
    transition: background-color .4s ease, color .4s ease;
    position: relative;
    z-index: 1;
}

.steps__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: .3;
    z-index: -1;
}

.steps__item::after {
    order: -1;
    font-size: 20rem;
    font-family: 'helveticaneuecyr', sans-serif;
    color: var(--accent);
    transition: color .4s ease;
}

.steps__name {
    margin-top: auto;
    font-size: var(--heading4);
    text-transform: uppercase;
}

.steps__desc {
    color: var(--accent);
    font-family: 'helveticaneuecyr', sans-serif;
    width: 90%;
    transition: color .4s ease;
}

/* preview */
.preview__content {
    min-height: 700rem;
    position: relative;
    z-index: 1;
    color: #fff;
    padding: var(--section-padding) 0;
    display: flex;
    align-items: stretch;
}

.preview__content .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.preview__content::after,
.preview__content::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -1;
    background: #493C30;
}

.preview__content::after {
    bottom: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(73, 60, 48, 0) 0%, rgba(73, 60, 48, 1) 100%);
}

.preview__content::before {
    top: 0;
    height: 70%;
    background: linear-gradient(0deg, rgba(73, 60, 48, 0) 0%, rgba(73, 60, 48, 1) 100%);
}

.preview__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.preview__link {
    margin-left: auto;
}

/* contact */
.contact {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact__form {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    background-color: #fff;
    z-index: 1;
    padding: var(--section-padding);
    transform: translateX(100%);
    transition: transform .4s ease;
}

.contact__form.open {
    transform: translateX(0);
}

.contact__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.5;
    z-index: -1;
}

.contact__form-wrap {
    width: 65%;
}

.contact__form-title {
    margin-bottom: 40rem;
}

.contact__form-tags {
    margin-bottom: 60rem;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap) 60rem;
}

.contact__form-tag {
    text-transform: uppercase;
    font-size: var(--heading4);
    color: var(--accent);
    transition: color .4s ease;
    cursor: pointer;
}

.contact__form-tag.active {
    color: var(--black);
    pointer-events: none;
}

.contact__wrapper {
    display: flex;
    gap: 40rem;
}

.contact__left {
    width: 100%;
    display: flex;
    gap: var(--gap);
}

.contact__wrap {
    width: 100%;
}

.contact__info {
    width: 39%;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--section-padding);
}

.contact__right {
    width: 53%;
    flex: 0 0 auto;
    display: flex;
    gap: 40rem;
}

.contact__image {
    width: 100%;
}

.contact__subtitle {
    font-size: var(--heading5);
    font-weight: lighter;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10rem;
}

.contact__line a {
    font-family: 'helveticaneuecyr', sans-serif;
}

.contact__line-social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16rem 32rem;
}

.contact__line-email a {
    text-decoration: underline;
}

/* footer */
.footer {
    margin-top: auto;
}

.footer__logo img {
    width: 80rem;
}

.footer__top {
    padding: var(--section-padding) 0;
}

.footer__top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.footer__bottom {
    padding: 20rem 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.footer__bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: .5;
    z-index: -1;
}

.footer__bottom-wrap {
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
}

.footer__bottom-item:first-child,
.footer__bottom-item:last-child {
    font-family: 'helveticaneuecyr', sans-serif;
    color: var(--accent);
}

.footer__list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--gap);
    margin-left: 37%;
    width: 100%;
}

.footer__list a {
    text-transform: uppercase;
}

/* form */
.form-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20rem 30rem;
}

.form__item input,
.form__item textarea {
    border-top: none;
}

.form__item-input {
    position: relative;
}

.form__item-input.disabled {
    cursor: no-drop;
    opacity: .6;
}

.form__item-input.disabled>* {
    pointer-events: none;
}

.form__item-input.full {
    grid-column: 1 / span 2;
}

.form__item-input.select::after,
.form__item-input.select::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20rem;
    width: 8rem;
    height: 2rem;
    background-color: var(--black);
    transition: transform .4s ease;
}

.form__item-input.select::after {
    transform: translate(-20%, 0%) rotate(-45deg);
}

.form__item-input.select::before {
    transform: translate(-80%, 0%) rotate(45deg);
}

.form__item-input.select.active::after {
    transform: translate(-20%, -50%) rotate(45deg);
}

.form__item-input.select.active::before {
    transform: translate(-80%, -50%) rotate(-45deg);
}

.form__item-input input::placeholder,
.form__item-input textarea::placeholder {
    color: transparent;
}

.form__item-input input,
.form__item-input textarea {
    padding-top: 28rem;
}

.form__item-input label {
    position: absolute;
    top: 20rem;
    left: 0;
    color: var(--black);
    pointer-events: none;
}

.form__item-input input:focus,
.form__item-input textarea:focus {
    border-bottom-color: var(--accent);
}

.form__item-input input:focus~label,
.form__item-input input:not(:placeholder-shown)+label,
.form__item-input textarea:focus~label,
.form__item-input textarea:not(:placeholder-shown)+label {
    top: 8rem;
    font-size: 12rem;
    color: var(--accent);
}

.form__item-input input:required,
.form__item-input input:invalid,
.form__item-input textarea:required,
.form__item-input textarea:invalid {
    box-shadow: none;
}

.form .form-buttons {
    margin-top: 20rem;
}

.form-buttons .all__link {
    width: 100%;
}

/* all__link */
.all__link {
    text-transform: uppercase;
    font-size: var(--heading3);
    position: relative;
    width: max-content;
    cursor: pointer;
    transition: color .4s ease;
    background-color: transparent;
}

.all__link::after {
    content: '';
    position: absolute;
    bottom: -5rem;
    left: 0;
    width: 100%;
    height: 1rem;
    background-color: var(--accent);
    transition: transform .4s ease, background-color .4s ease;
}

.all__link img {
    margin-left: 15rem;
    transform: rotate(45deg);
    width: 22rem;
}

.all__link.white {
    color: #fff;
}

.all__link.white::after {
    background-color: #fff;
}

.all__link.white img {
    filter: brightness(0) invert(1);
}





/* interactive-room */

.interactive-room {
    position: relative;
    color: #fff;
}

.interactive-room__content {
    position: absolute;
    padding: var(--section-padding) 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.interactive-room__content>* {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: inherit;
}

.interactive-room__content .all__link {
    margin-left: auto;
}

.room-base {
    display: block;
    width: 100%;
    height: auto;
}

.room-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: none;
    pointer-events: none;
}

.hotspot {
    position: absolute;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
    border: 2rem solid transparent;
    transition: background-color 0.2s, border 0.2s;
    border-radius: 10%;
    z-index: 1;
}

.hotspot:hover {
    border-color: rgba(255, 255, 255, .6);
    background-color: rgba(255, 255, 255, .2);
}

/* str */
.str-elem {
    padding-right: 20rem;
}

.str-elem::after,
.str-elem::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 8rem;
    height: 2rem;
    background-color: var(--black);
    transition: transform .4s ease;
}

.str-elem::before {
    transform: translate(-80%, 0%) rotate(45deg);
}

.str-elem::after {
    transform: translate(-20%, 0%) rotate(-45deg);
}

.toggle.active .str-elem::before,
.str-elem.active::before {
    transform: translate(-80%, -50%) rotate(-45deg);
}

.toggle.active .str-elem::after,
.str-elem.active::after {
    transform: translate(-20%, -50%) rotate(45deg);
}

.load {
    border: 6rem solid #EAF0F6;
    border-top: 6rem solid var(--accent);
    border-radius: 50%;
    width: 40rem;
    height: 40rem;
    animation: spinner 1s linear infinite;
    padding: 0;
}

.load.min {
    width: 20rem;
    height: 20rem;
    border: 3rem solid #EAF0F6;
    border-top: 3rem solid var(--accent);
}

.load.center {
    margin-left: auto;
    margin-right: auto;
}

.load:not(.load-lazy)>* {
    display: none;
}

.load-lazy {
    background-color: rgba(166, 151, 126, .3);
}

.load-lazy>* {
    opacity: 0;
    visibility: hidden;
}

img.lazy {
    width: 100%;
    height: 100%;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

[data-animation] {
    opacity: 0;
    transition: opacity 2.4s ease, transform 1.4s ease;
}

[data-animation="left"] {
    transform: translateX(-100%);
}

[data-animation="right"] {
    transform: translateX(100%);
}

[data-animation].show {
    opacity: 1;
    transform: translate(0);
}

@keyframes scale-img {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}