@font-face {
    font-family: "Barlow";
    src: url(../fonts/Barlow-Regular.ttf) format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Barlow";
    src: url(../fonts/Barlow-Medium.ttf) format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Barlow";
    src: url(../fonts/Barlow-SemiBold.ttf) format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Lora";
    src: url(../fonts/Lora-Regular.ttf) format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Lora";
    src: url(../fonts/Lora-Medium.ttf) format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Lora";
    src: url(../fonts/Lora-SemiBold.ttf) format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

* {
    padding: 0;
    margin: 0;
    border: 0
}

*,
*:before,
*:after {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    width: 100%;
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

nav,
footer,
header,
aside {
    display: block
}

input,
button,
textarea {
    font-family: inherit
}

input::-ms-clear {
    display: none
}

img,
video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block
}

button {
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer
}

button[disabled] {
    cursor: default
}

sup {
    font-size: 60%;
    line-height: 0
}

picture {
    display: block
}

html {
    font-family: "Barlow", sans-serif;
    font-weight: 400
}

body {
    background-color: #fff;
    color: #3d3d3d;
    display: flex;
    flex-direction: column
}

body.overflow-hidden {
    overflow: hidden
}

main {
    flex: 1
}

section h2 {
    font-family: "Lora";
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 24px
}

section+section {
    margin-top: 80px
}

.content {
    min-width: 360px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px
}

.content--small {
    max-width: 1000px;
}

@media(min-width: 1024px) {
    section h2 {
        font-size: 48px;
        line-height: 60px
    }

    section+section {
        margin-top: 0
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.position-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

@keyframes lds-ring {
    0% {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

.btn {
    align-items: center;
    color: inherit;
    display: flex;
    justify-content: center;
    padding: 24px 12px;
    position: relative
}

.btn:disabled {
    opacity: .7
}

.btn--accent {
    background-color: #679570;
    color: #fff;
    font-family: "Lora";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.4px;
    text-transform: uppercase
}

.btn__loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    display: none
}

.btn__loading img {
    animation: lds-ring 1.2s linear infinite;
    width: 35px;
    height: 35px;
}

.btn--loading .btn__loading {
    display: block
}

.btn--loading span {
    opacity: 0
}

a.btn {
    display: inline-flex;
    text-decoration: none
}

.form-input {
    padding: 24px 12px;
    border: 1px solid #679570;
    width: 100%;
    font-family: "Lora";
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.5px
}

.form-input--error {
    border-color: red
}

.form-policy {
    color: #cbc8c3;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px
}


/* .header */

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    height: 70px;
    transition: top 300ms ease-in-out;
}

.header .content {
    height: 100%;
}

.header--hidden {
    top: -70px;
}

.header-logo {
    width: 88px;
    display: block;
    position: relative;
    top: -4px;
}

.header-main--scrolled .header-logo {
    display: none;
}

.header-phone {
    text-align: right;
    flex: 1;
    display: block;
}

.header-phone a {
    color: inherit;
    text-decoration: none;
    font-family: 'Lora';
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-phone a:hover {
    text-decoration: underline;
}

/* .header-main */

.header-main {
    color: #fff;
    height: 100%;
}

.header-main--scrolled {
    background-color: #908a86;
}

.header-main__content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.header-main__menu-open {
    color: inherit;
    width: 31px;
    flex: 0 0 31px;
}

.header-main__menu-open span {
    display: none;
}

/* .header-nav */

.header-nav {
    color: #3d3d3d;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none
}

.header-nav--show {
    display: flex;
    flex-direction: column;
}

.header-nav__menu-close {
    width: 31px;
    flex: 0 0 31px;
}

.header-nav__menu-close .header-menu__close-icon--desk {
    display: none;
}

.header-nav__top, .header-nav__body {
    background-color: #fff;
}

.header-nav__top {
    height: 70px;
    flex: 0 0 70px;
    position: relative;
    z-index: 5;
}

.header-nav__top .content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.header-nav__body {
    flex: 1;
    position: relative;
    z-index: 4;
}

.header-nav__body .content {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: top 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
}

.header-nav__body ul {
    list-style: none
}

.header-nav__body a {
    color: inherit;
    font-family: "Lora";
    font-size: 32px;
    font-weight: 500;
    line-height: 50px;
    text-decoration: none
}

.header-nav__body a:hover {
    text-decoration: underline
}

.header-nav__body li+li {
    margin-top: 18px
}

@media (min-width: 500px) {
    .header-main--scrolled .header-logo {
        display: block;
    }
}

@media (min-width: 1024px) {
    .header-main {
        background-color: #908a86;
    }

    .header-main__content {
        gap: 20px;
    }

    .header-logo {
        width: 143px;
        position: static;
    }

    .header-main__menu-open {
        flex: initial;
        width: initial;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-main__menu-open span {
        display: block;
        font-family: "Lora";
        font-size: 16px;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 3.2px;
        text-transform: uppercase;
    }

    .header-main__menu-open img {
        width: 31px;
    }

    .header-nav__body li+li {
        margin-top: 24px;
    }

    .header-nav__body a {
        font-size: 40px;
    }

    .header-nav__menu-close .header-menu__close-icon--mobile {
        display: none;
    }

    .header-nav__menu-close .header-menu__close-icon--desk {
        display: block;
    }
}


.hero-bg {
    margin: 0 -16px
}

.hero-content {
    padding: 45px 0 80px;
}

.hero-content__header {
    font-family: "Lora";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    text-align: right
}

.hero-content__title {
    font-family: "Lora";
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    position: relative;
    margin-top: 12px
}

.hero-content__title span {
    display: block;
    position: relative;
    z-index: 2
}

.hero-content__title::before {
    background-color: #f4f2ee;
    content: "";
    position: absolute;
    bottom: 0;
    left: -16px;
    width: 73px;
    height: 232px;
    z-index: 1
}

.hero-content__body {
    margin-top: 24px;
    margin-bottom: 40px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding-left: 24px
}

.hero-content__body p + p {
    margin-top: 10px;
}

.hero-content__links {
    align-items: center;
    max-width: 470px;
    display: flex;
    margin: -1px;
}

.hero-content-link {
    color: #fff;
    flex: 0 0 50%;
    padding: 1px;
}

.hero-content-link__wrapper {
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 6px;
    position: relative;
}

.hero-content-link--active .hero-content-link__wrapper {
    border-color: #000;
}

.hero-content-link__picture img {
    border-radius: 16px;
}

.hero-content-link__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
    left: 6px;
    padding: 0 0 8px 12px;
    z-index: 4;
}

.hero-content-link__content p {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.hero-content-link__content img {
    width: 54px;
}

.hero-content-link--active .hero-content-link__content img {
    opacity: 0;
}

.hero-content-link__wrapper a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.hero-content-link--active .hero-content-link__wrapper a {
    display: none;
}

@media(min-width: 768px) {
    .hero {
        overflow: hidden;
        position: relative;
        padding: 100px 0 50px
    }

    .hero__body {
        display: flex;
        justify-content: space-between
    }

    .hero__content,
    .hero__calc {
        position: relative;
        z-index: 5
    }

    .hero__content {
        flex: 1
    }

    .hero__calc {
        flex: 0 0 464px
    }

    .hero-bg {
        margin: 0
    }

    .hero-bg,
    .hero-bg__picture,
    .hero-bg__shadow {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0
    }

    .hero-bg__picture {
        overflow: hidden;
        z-index: 3
    }

    .hero-bg__picture img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    .hero-bg__shadow {
        background-image: linear-gradient(164deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
        z-index: 4
    }

    .hero-content {
        color: #fff;
        padding: 80px 20px 80px 0;
        max-width: 517px
    }

    .hero-content__header {
        text-align: left;
        padding-left: 60px
    }

    .hero-content__title::before {
        background-color: #bcb7ac
    }

    .hero-content__body {
        padding-left: 0
    }

    .hero-content__links {
        margin: -4px;
    }

    .hero-content-link {
        padding: 4px;
    }

    .hero-content-link:hover .hero-content-link__wrapper {
        border-color: rgba(255, 255, 255, 0.20);
    }    

    .hero-content-link.hero-content-link--active:hover .hero-content-link__wrapper,
    .hero-content-link--active .hero-content-link__wrapper {
        border-color: #fff;
    }
}

@media(min-width: 1024px) {
    .hero {
        padding: 154px 0 30px
    }

    .hero-content {
        padding: 72px 20px 80px 19px
    }

    .hero-content__header {
        padding-left: 86px;
        margin-bottom: -8px
    }

    .hero-content__title {
        font-size: 60px;
        line-height: 70px;
        margin: 0
    }

    .hero-content__title::before {
        width: 101px;
        height: 253px;
        left: -19px;
        bottom: -9px
    }

    .hero-content__body {
        font-size: 24px;
        line-height: 36px
    }
}

.hero-calc {
    margin: 0 -16px;
    background-color: #f5f1ee
}

.hero-calc__wrapper {
    padding: 40px 16px
}

.hero-calc h2 {
    font-family: "Lora";
    font-size: 32px;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 32px
}

.hero-calc__fieldset legend {
    margin-bottom: 20px
}

.hero-calc__fieldset+.hero-calc__fieldset {
    margin-top: 32px
}

.hero-calc__radios {
    display: flex
}

.hero-calc__radios--house-type {
    flex-wrap: wrap;
    margin: -8px
}

.hero-calc__radios .cust-radio-1 {
    flex: 0 0 50%;
    padding: 8px
}

.hero-calc__radios--optionally {
    flex-direction: column;
    gap: 16px
}

.hero-calc__radios--area .hero-area-range {
    flex: 1
}

.hero-calc__radios--area .hero-area-input {
    flex: 0 0 71px
}

.hero-calc .btn {
    margin-top: 32px;
    width: 100%
}

.cust-radio-1 input {
    opacity: 0;
    position: absolute;
    z-index: -1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none
}

.cust-radio-1 label {
    border: 1px solid #927971;
    cursor: pointer;
    padding: 16px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.cust-radio-1 label span {
    font-size: 16px;
    line-height: 20px
}

.cust-radio-1 label img {
    width: 20px;
    height: 20px;
    display: none
}

.cust-radio-1 input:checked+label {
    background-color: #927971;
    border-color: #927971;
    color: #fff;
    cursor: default;
}

.cust-radio-1 input:checked+label img {
    display: block
}

.hero-area-input {
    align-items: center;
    border-bottom: 1px solid #927971;
    padding: 8px;
    width: 71px;
    display: flex;
    justify-content: space-between;
    margin-left: 15px
}

.hero-area-input input {
    background-color: rgba(0, 0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: #927971;
    width: 30px;
    outline: none;
    -moz-appearance: textfield
}

.hero-area-input input::-webkit-outer-spin-button,
.hero-area-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.hero-area-input label {
    color: #927971;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px
}

input[type=range].hero-area-range {
    -webkit-appearance: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 25px;
    width: 100%;
    height: 8px;
    margin: 11px 0
}

input[type=range].hero-area-range:focus {
    outline: none
}

input[type=range].hero-area-range::-webkit-slider-runnable-track {
    border: 0px solid rgba(1, 1, 1, 0);
    border: 0;
    border-radius: 25px;
    width: 100%;
    height: 8px;
    cursor: pointer
}

input[type=range].hero-area-range::-webkit-slider-thumb {
    box-shadow: 0px 1px 4px 0px rgba(158, 109, 56, .1490196078);
    margin-top: -11px;
    width: 30px;
    height: 30px;
    background: #faf4ed;
    border-radius: 50px;
    cursor: pointer;
    -webkit-appearance: none
}

input[type=range].hero-area-range::-moz-range-track {
    border: 0px solid rgba(1, 1, 1, 0);
    border: 0;
    border-radius: 25px;
    width: 100%;
    height: 8px;
    cursor: pointer
}

input[type=range].hero-area-range::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: #faf4ed;
    border: 1.6px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    cursor: pointer
}

.cust-checkbox-1 {
    align-items: center;
    display: flex
}

.cust-checkbox-1 input {
    opacity: 0;
    position: absolute;
    z-index: -1
}

.cust-checkbox-1 label {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    padding-left: 28px;
    margin-right: 8px;
    position: relative;
    -webkit-user-select: none;
    user-select: none
}

.cust-checkbox-1 label::before,
.cust-checkbox-1 label::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.cust-checkbox-1 label::before {
    border: 1px solid #927971;
    border-radius: 4px;
    width: 16px;
    height: 16px;
    left: 0
}

.cust-checkbox-1 label::after {
    left: 4px;
    width: 8px;
    height: 6px
}

.cust-checkbox-1 input:checked+label::before {
    background-color: #927971
}

.cust-checkbox-1 input:checked+label::after {
    background-image: url("data:image/svg+xml,%3Csvg width=%278%27 height=%276%27 viewBox=%270 0 8 6%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.69471 2.28071C1.50611 2.09855 1.25351 1.99776 0.991311 2.00004C0.729114 2.00232 0.478302 2.10749 0.292894 2.29289C0.107485 2.4783 0.00231622 2.72911 3.78025e-05 2.99131C-0.00224062 3.25351 0.0985542 3.50611 0.280712 3.69471L2.28071 5.69471C2.46824 5.88218 2.72255 5.9875 2.98771 5.9875C3.25288 5.9875 3.50718 5.88218 3.69471 5.69471L7.69471 1.69471C7.87687 1.50611 7.97767 1.25351 7.97539 0.991311C7.97311 0.729114 7.86794 0.478302 7.68253 0.292894C7.49712 0.107485 7.24631 0.00231622 6.98411 3.78025e-05C6.72192 -0.00224062 6.46932 0.0985542 6.28071 0.280712L2.98771 3.57371L1.69471 2.28071Z%27 fill=%27white%27/%3E%3C/svg%3E%0A")
}

.cust-checkbox-1 input:active+label::before {
    background-color: #927971
}

.calc-helptip {
    width: 15px;
    height: 15px;
    cursor: help;
    position: relative
}

.calc-helptip__text {
    background-color: #fff;
    border-radius: 12px;
    padding: 10px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-75%);
    width: 200px;
    display: none
}

.calc-helptip__text::before {
    background-color: #fff;
    content: "";
    position: absolute;
    bottom: -7px;
    right: 43px;
    width: 16px;
    height: 15px;
    transform: rotate(45deg);
    z-index: 1
}

@media(max-width: 374px) {
    .calc-helptip--1 .calc-helptip__text {
        transform: translateX(-82%);
    }

    .calc-helptip--1 .calc-helptip__text::before {
        right: 30px;
    }
}

.calc-helptip__text span {
    position: relative;
    z-index: 2
}

.calc-helptip:hover .calc-helptip__text {
    display: block
}

@media(min-width: 768px) {
    .hero-calc {
        max-width: 375px;
        margin: 0
    }
}

@media(min-width: 1024px) {
    .hero-calc {
        max-width: 464px;
        flex: 0 0 464px
    }

    .hero-calc__wrapper {
        padding: 32px
    }
}

.portfolio__body {
    margin: 0 -16px;
    display: flex;
    flex-wrap: wrap
}

.portfolio__body .portfolio-item {
    flex: 0 0 50%
}

@media(max-width: 767px) {
    .portfolio__body .portfolio-item:nth-child(7) {
        flex: 0 0 100%
    }

    .portfolio__body .portfolio-item:nth-child(7) .portfolio-item__content {
        align-items: center;
        height: 38px;
        padding: 18px 16px 0 15px
    }

    .portfolio__body .portfolio-item:nth-child(n+8) {
        display: none
    }
}

.portfolio-item__wrapper {
    cursor: pointer;
    position: relative
}

.portfolio-item__picture {
    position: relative;
    z-index: 2
}

.portfolio-item__picture picture {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.portfolio-item__shadow,
.portfolio-item__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3
}

.portfolio-item__shadow {
    background: linear-gradient(180deg, #31302C 0%, rgba(49, 48, 44, 0) 70%), linear-gradient(0deg, #31302C 0%, rgba(49, 48, 44, 0) 80%)
}

.portfolio-item__content {
    color: #fff;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    line-height: 28px;
    padding: 6px 0 0 7.5px
}

.portfolio-item__content img {
    width: 63px;
    height: 38px
}

@media(min-width: 768px) {
    .portfolio__body {
        margin: -8px
    }

    .portfolio__body .portfolio-item {
        flex: 0 0 33.3333333333%;
        padding: 8px
    }

    .portfolio-item__content {
        padding: 18px 16px 0 15px;
        font-size: 24px;
        line-height: 36px
    }
}

@media(min-width: 1024px) {
    .portfolio {
        padding: 72px 0 121px
    }

    .portfolio h2 {
        margin-bottom: 49px
    }
}

.panoramas {
    overflow-x: hidden;
    overflow-y: hidden
}

.panoramas__text {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
}

.panoramas .swiper {
    overflow: visible
}

.panoramas__carousel {
    margin: -8px
}

@media(min-width: 1024px) {
    .panoramas {
        background-color: #f5f1ee;
        padding: 100px 0
    }

    /* .panoramas h2 {
        margin-bottom: 50px
    } */

    .panoramas__text {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 40px;
    }
}

.panorama-slide__title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 15px;
    display: none
}

.panorama-slide__wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-auto-rows: 33.3333333333%;
    height: 100%
}

.panorama-slide__wrapper--grid-5 .panorama-item:first-child {
    grid-column-start: span 2
}

.panorama-slide__wrapper--grid-4 .panorama-item:first-child,
.panorama-slide__wrapper--grid-4 .panorama-item:last-child {
    grid-column-start: span 2
}

.panorama-slide__wrapper--grid-3 .panorama-item {
    grid-column-start: span 2
}

.panorama-slide__wrapper--grid-2 {
    grid-auto-rows: 50%
}

.panorama-slide__wrapper--grid-2 .panorama-item:first-child,
.panorama-slide__wrapper--grid-2 .panorama-item:last-child {
    grid-column-start: span 2
}

.panorama-slide__wrapper--grid-1 .panorama-item {
    grid-column-start: span 2;
    grid-row-start: span 3
}

@media(min-width: 768px) {
    .panorama-slide__wrapper {
        grid-template-columns: 33.3333333333% 33.3333333333% 33.3333333333%;
        grid-auto-rows: 50%
    }

    .panorama-slide__wrapper--grid-5 {
        grid-template-columns: repeat(6, 16.6666666667%)
    }

    .panorama-slide__wrapper--grid-5 .panorama-item:nth-child(-n+3) {
        grid-column-start: span 2
    }

    .panorama-slide__wrapper--grid-5 .panorama-item:nth-child(n+4) {
        grid-column-start: span 3
    }

    .panorama-slide__wrapper--grid-4 {
        grid-template-columns: 50% 50%
    }

    .panorama-slide__wrapper--grid-4 .panorama-item {
        grid-column-start: span 1
    }

    .panorama-slide__wrapper--grid-4 .panorama-item:first-child,
    .panorama-slide__wrapper--grid-4 .panorama-item:last-child {
        grid-column-start: span 1
    }

    .panorama-slide__wrapper--grid-3 {
        grid-template-columns: 50% 50%
    }

    .panorama-slide__wrapper--grid-3 .panorama-item,
    .panorama-slide__wrapper--grid-3 .panorama-item:first-child {
        grid-column-start: span 1;
        grid-row-start: span 1
    }

    .panorama-slide__wrapper--grid-3 .panorama-item:last-child {
        grid-column-start: span 2
    }

    .panorama-slide__wrapper--grid-2 {
        grid-template-columns: 50% 50%
    }

    .panorama-slide__wrapper--grid-2 .panorama-item:first-child,
    .panorama-slide__wrapper--grid-2 .panorama-item:last-child {
        grid-column-start: span 1;
        grid-row-start: span 2
    }

    .panorama-slide__wrapper--grid-1 .panorama-item {
        grid-column-start: span 3;
        grid-row-start: span 2
    }
}

.panoramas-pag {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-top: 24px;
    padding: 0 8px
}

.panoramas-pag__item {
    background-color: #e0dcd9;
    max-width: 65px;
    height: 2px;
    flex: 1
}

.panoramas-pag__item--active {
    background-color: #927971
}

.panoramas-nav {
    align-items: center;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 43px 0 16px;
    padding: 0 8px
}

.panoramas-nav__item {
    flex: 1;
    max-width: 278px
}

.panorama-item {
    display: block;
    padding: 8px
}

.panorama-item__wrapper {
    cursor: zoom-in;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    position: relative;
    height: 100%
}

.panorama-item__picture {
    height: 100%
}

.panorama-item__picture img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.panorama-item__shadow,
.panorama-item__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.panorama-item__shadow {
    background: linear-gradient(181deg, #31302C 3.25%, rgba(49, 48, 44, 0) 73.82%);
    z-index: 5
}

.panorama-item__content {
    z-index: 7;
    padding: 8px 14px 0
}

.panorama-item__content p {
    font-size: 24px;
    line-height: 36px
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: border-box
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0)
}

.swiper-pointer-events {
    touch-action: pan-y
}

.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-centered>.swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

[dir="ltr"] .swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-left: var(--swiper-centered-offset-before)
}

[dir="rtl"] .swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-right: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
    height: 100%;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-top: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
    width: 100%;
    height: var(--swiper-centered-offset-after)
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center
}

:root {
    --swiper-scrollbar-border-radius: 10px;
    --swiper-scrollbar-top: auto;
    --swiper-scrollbar-bottom: 4px;
    --swiper-scrollbar-left: auto;
    --swiper-scrollbar-right: 4px;
    --swiper-scrollbar-sides-offset: 1%;
    --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
    --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
    --swiper-scrollbar-size: 4px
}

.swiper-scrollbar {
    border-radius: 10px;
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1))
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: 1%;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: 4px;
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: auto;
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: 4px;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2*1%);
    width: calc(100% - 2*var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-vertical>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
    position: absolute;
    left: auto;
    left: var(--swiper-scrollbar-left, auto);
    right: 4px;
    right: var(--swiper-scrollbar-right, 4px);
    top: 1%;
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: 4px;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2*1%);
    height: calc(100% - 2*var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
    border-radius: 10px;
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.comfort {
    overflow: hidden
}

.comfort .swiper {
    overflow: visible
}

.comfort h2 {
    margin-bottom: 24px
}

.comfort__description {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px
}

.comfort__carousel {
    position: relative;
    margin: 0 -16px
}

.comfort-slide {
    position: relative
}

.comfort-slide__picture {
    position: relative;
    z-index: 1
}

.comfort-slide__shadow,
.comfort-slide__content {
    position: absolute;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.comfort-slide__shadow {
    background: linear-gradient(180deg, #31302C 0%, rgba(49, 48, 44, 0) 40%), linear-gradient(0deg, #31302C -1%, rgba(49, 48, 44, 0) 27%);
    z-index: 2
}

.comfort-slide__content {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    padding: 20px 32px 0 15px;
    z-index: 3
}

.comfort-nav__item {
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .6);
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, .12);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateZ(1px);
    width: 44px;
    height: 44px;
    z-index: 5
}

.comfort-nav__item:disabled {
    background-color: rgba(255, 255, 255, .4)
}

.comfort-nav__item img {
    width: 20px;
    height: 20px
}

.comfort-nav__item--prev {
    left: 8px
}

.comfort-nav__item--next {
    right: 8px
}

.comfort-pag {
    position: absolute;
    right: 15px;
    bottom: 12px;
    left: 15px;
    display: flex;
    justify-content: space-between;
    gap: 4px;
    z-index: 20;
    transform: translateZ(1px)
}

.comfort-pag__item {
    background-color: #f5f1ee;
    height: 2px;
    flex: 1
}

.comfort-pag__item--active {
    background-color: #679570
}

@media(min-width: 768px) {
    .comfort__carousel {
        margin: 0
    }

    /* .comfort__description {
        max-width: 805px;
    } */

    .comfort-pag {
        display: none
    }
}

@media(min-width: 1024px) {
    .comfort {
        padding: 100px 0
    }

    .comfort__description {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 60px
    }
}

@media(min-width: 1300px) {
    .comfort-nav {
        display: none
    }
}

.materials {
    background-color: #f5f1ee;
    padding: 40px 0 80px
}

.materials .content>*+* {
    margin-top: 40px
}

.materials h2 {
    font-size: 38px;
    margin-bottom: 0
}

.materials p {
    font-size: 16px;
    line-height: 26px;
    max-width: 673px
}

.materials__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 450px
}

.materials__item {
    width: 70px;
    height: 70px
}

.materials__item img {
    border-radius: 50%;
    border-radius: 100px;
    box-shadow: 0px 10px 20px 0px rgba(158, 109, 56, .1);
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none
}

@media(min-width: 768px) {
    .materials p {
        font-size: 24px;
        line-height: 36px
    }

    .materials__list {
        max-width: 673px
    }

    .materials__item {
        width: 100px;
        height: 100px
    }
}

@media(min-width: 1024px) {
    .materials {
        padding: 95px 0 146px
    }

    .materials h2 {
        font-size: 48px;
        line-height: 60px
    }
}

.materials+.quiz {
    margin-top: 0
}

.quiz {
    background-color: #908a86;
    color: #fff;
    padding: 60px 0
}

.quiz__head {
    margin-bottom: 24px
}

.quiz__head h2 span {
    display: block
}

.quiz__head,
.quiz__body,
.quiz__result {
    display: none
}

.quiz__head--show,
.quiz__body--show,
.quiz__result--show {
    display: block
}

.quiz--show-result {
    overflow: hidden
}

.quiz--show-result .swiper {
    overflow: visible
}

@media(min-width: 1024px) {
    .quiz {
        padding: 100px 0
    }

    .quiz h2 {
        margin-bottom: 40px
    }
}

.quiz-step {
    display: none
}

.quiz-step--show {
    display: block
}

.quiz-step__number {
    color: #cebdb7;
    font-size: 20px;
    line-height: 28px
}

.quiz-step__title {
    font-family: "Lora";
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 24px
}

.quiz-step__body {
    margin: -8px
}

.quiz-step__body--favorite {
    display: flex;
    flex-wrap: wrap
}

.quiz-step__body--favorite .quiz-card-2 {
    flex: 0 0 50%
}

.quiz-step__body--form {
    margin: 0;
    max-width: 771px
}

.quiz-step__form>*+* {
    margin-top: 24px
}

.quiz-step__form .btn {
    width: 100%
}

@media(min-width: 768px) {

    .quiz-step__body--material,
    .quiz-step__body--decor,
    .quiz-step__body--details,
    .quiz-step__body--couch {
        display: flex;
        flex-wrap: wrap
    }

    .quiz-step__body--material .quiz-card-1,
    .quiz-step__body--material .quiz-card-2,
    .quiz-step__body--decor .quiz-card-1,
    .quiz-step__body--decor .quiz-card-2,
    .quiz-step__body--details .quiz-card-1,
    .quiz-step__body--details .quiz-card-2,
    .quiz-step__body--couch .quiz-card-1,
    .quiz-step__body--couch .quiz-card-2 {
        flex: 0 0 50%
    }

    .quiz-step__body--discount {
        display: flex
    }

    .quiz-step__body--discount .quiz-discount {
        flex: 0 0 40%
    }
}

@media(min-width: 1024px) {
    .quiz-step__number {
        font-size: 24px;
        line-height: 28px
    }

    .quiz-step__title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 40px
    }

    .quiz-step__body--favorite .quiz-card-2 {
        flex: 0 0 25%
    }

    .quiz-step__body--couch .quiz-card-2 {
        flex: 0 0 33.3333333333%
    }

    .quiz-step__body--discount .quiz-discount {
        flex: 0 0 33.3333333333%
    }
}

.quiz-card-1 {
    padding: 8px
}

.quiz-card-1__wrapper {
    align-items: stretch;
    border: 1px solid #cebdb7;
    color: inherit;
    display: flex;
    position: relative;
    width: 100%
}

.quiz-card-1__picture {
    flex: 0 0 145px
}

.quiz-card-1__content {
    font-size: 16px;
    line-height: 20px;
    padding: 12px 10px 0;
    text-align: left;
    position: relative;
    z-index: 5;
    flex: 1
}

.quiz-card-1__content img {
    width: 52px;
    height: 32px;
    position: absolute;
    right: 0;
    bottom: 12px
}

.quiz-card-1__hover-backdrop {
    background: rgba(116, 104, 99, .5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    display: none
}

.quiz-card-1__wrapper:hover .quiz-card-1__hover-backdrop {
    display: block
}

@media(min-width: 1024px) {
    .quiz-card-1__picture {
        flex: 0 0 223px
    }

    .quiz-card-1__content {
        font-size: 24px;
        line-height: 36px;
        padding: 12px 12px 12px 22px
    }

    .quiz-card-1__content img {
        right: 12px
    }
}

.quiz-card-2 {
    padding: 8px
}

.quiz-card-2__wrapper {
    border: 1px solid #cebdb7;
    display: flex;
    position: relative
}

.quiz-card-2__picture-desk {
    display: none
}

.quiz-card-2__hover-backdrop {
    background: rgba(116, 104, 99, .5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    display: none
}

.quiz-card-2__wrapper:hover .quiz-card-2__hover-backdrop {
    display: block
}

.quiz-card-2__icon {
    width: 52px;
    height: 32px;
    position: absolute;
    right: 1px;
    bottom: 13px;
    z-index: 5
}

@media(min-width: 768px) {
    .quiz-card-2--favorite .quiz-card-2__picture-desk {
        display: block
    }

    .quiz-card-2--favorite .quiz-card-2__picture {
        display: none
    }
}

.quiz-discount {
    padding: 8px
}

.quiz-discount__body {
    position: relative;
    border: 1px solid #cebdb7;
    margin-bottom: 16px;
    width: 100%
}

.quiz-discount__hover-backdrop {
    background: rgba(116, 104, 99, .5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    display: none
}

.quiz-discount__body:hover .quiz-discount__hover-backdrop {
    display: block
}

.quiz-discount__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px
}

.quiz-discount__content p {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal
}

.quiz-discount--20 .quiz-discount__content p {
    background-color: #e23737;
    color: #fff
}

.quiz-discount--10 .quiz-discount__content p {
    background-color: #fade8b
}

.quiz-result {
    display: none
}

.quiz-result--show {
    display: block
}

.quiz-result__content {
    margin-bottom: 24px
}

.quiz-result__content ul {
    font-family: "Lora";
    font-size: 20px;
    font-weight: 500;
    line-height: 32px
}

.quiz-result__content li {
    margin-left: 22px
}

.quiz-result__carousel .swiper-slide--desk {
    display: none
}

.quiz-result__carousel .quiz-pags {
    margin-top: 24px
}

@media(min-width: 768px) {
    .quiz-result__carousel .swiper-slide--mobile {
        display: none
    }

    .quiz-result__carousel .swiper-slide--desk {
        display: block
    }

    .quiz-result__carousel .quiz-pags {
        display: none
    }
}

@media(min-width: 1024px) {
    .quiz-result__content {
        margin-bottom: 40px
    }

    .quiz-result__content ul {
        font-size: 24px;
        row-gap: 10px;
        -moz-column-count: 2;
        column-count: 2
    }

    .quiz-result__content li+li {
        margin-top: 12px
    }
}

.quiz-pags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.quiz-pags__elem {
    background-color: #e0dcd9;
    flex: 1;
    max-width: 65px;
    height: 2px
}

.quiz-pags__elem--active {
    background-color: #927971
}

.help-tips {
    overflow: hidden
}

.help-tips__text--desk {
    display: none
}

.help-tips__text p {
    font-size: 20px;
    line-height: 28px
}

.help-tips__text--mobile p+p {
    margin-top: 24px
}

.help-tips__body {
    margin: 40px -16px 0;
    position: relative
}

.help-tips__hints {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.hint {
    width: 18px;
    height: 18px;
    position: absolute
}

.hint__button {
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    width: 18px;
    height: 18px;
    cursor: pointer
}

.hint__button::before {
    background-color: #fade8b;
    border-radius: 50%;
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.hint__text {
    border-radius: 12px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 6px;
    font-size: 10px;
    line-height: normal;
    display: none
}

.hint__text span {
    font-weight: 600
}

.hint--active .hint__button {
    display: none
}

.hint--active .hint__text {
    display: block
}

.hint--1 {
    top: 15%;
    left: 24%
}

.hint--1 .hint__text {
    width: 130px
}

.hint--2 {
    top: 12%;
    right: 38%
}

.hint--2 .hint__text {
    width: 130px
}

.hint--3 {
    top: 34%;
    right: 45%
}

.hint--3 .hint__text {
    width: 130px
}

.hint--4 {
    top: 39%;
    right: 18%
}

.hint--4 .hint__text {
    width: 105px
}

.hint--5 {
    top: 46%;
    left: 31%
}

.hint--5 .hint__text {
    width: 130px
}

.hint--6 {
    top: 60%;
    left: 13%
}

.hint--6 .hint__text {
    width: 130px;
    left: 125%
}

.hint--7 {
    top: 62%;
    right: 41%
}

.hint--7 .hint__text {
    width: 130px
}

.hint--8 {
    top: 71%;
    left: 40%
}

.hint--8 .hint__text {
    width: 130px
}

.hint--9 {
    top: 77%;
    left: 1%
}

.hint--9 .hint__text {
    width: 130px;
    left: 400%
}

.hint--10 {
    top: 79%;
    right: 10%
}

.hint--10 .hint__text {
    width: 105px;
    left: -80%
}

.hint--11 {
    top: 88%;
    left: 17%
}

.hint--11 .hint__text {
    width: 60px
}

@media(min-width: 768px) {
    .help-tips__text p {
        display: inline
    }

    .help-tips__text--mobile {
        display: none
    }

    .help-tips__text--desk {
        display: block
    }

    .help-tips__body {
        margin: 40px 0 0
    }

    .hint {
        width: 25px;
        height: 25px
    }

    .hint__button {
        width: 25px;
        height: 25px
    }

    .hint__button::before {
        width: 16px;
        height: 16px
    }

    .hint__text {
        font-size: 16px;
        line-height: 22px
    }

    .hint--1 .hint__text {
        width: 203px
    }

    .hint--2 .hint__text {
        width: 173px
    }

    .hint--3 .hint__text {
        width: 195px
    }

    .hint--4 .hint__text {
        width: 155px
    }

    .hint--5 {
        top: 48%
    }

    .hint--5 .hint__text {
        width: 205px
    }

    .hint--6 {
        top: 63%
    }

    .hint--6 .hint__text {
        width: 204px;
        left: 125%
    }

    .hint--7 .hint__text {
        width: 190px
    }

    .hint--9 .hint__text {
        width: 205px
    }

    .hint--10 .hint__text {
        width: 160px
    }

    .hint--11 .hint__text {
        width: 90px
    }
}

@media(min-width: 1024px) {
    .help-tips {
        padding: 100px 0 150px
    }

    .help-tips__text p {
        font-size: 24px;
        line-height: 36px
    }

    .help-tips__body {
        margin: 60px 0 0
    }

    .hint__button {
        display: none
    }

    .hint__text {
        background-color: rgba(255, 255, 255, .6);
        display: block;
        padding: 12px;
        font-size: 22px;
        line-height: 28px;
    }

    .hint--1 {
        top: 11%
    }

    .hint--1 .hint__text {
        width: 451px
    }

    .hint--2 {
        top: 12%;
        right: 29%
    }

    .hint--2 .hint__text {
        width: 261px
    }

    .hint--3 .hint__text {
        width: 300px
    }

    .hint--4 {
        right: 13%
    }

    .hint--4 .hint__text {
        width: 221px
    }

    .hint--5 {
        top: 46%
    }

    .hint--5 .hint__text {
        width: 314px
    }

    .hint--6 {
        top: 60%;
        left: 16%
    }

    .hint--6 .hint__text {
        width: 306px;
        left: 125%
    }

    .hint--7 .hint__text {
        width: 285px
    }

    .hint--9 {
        top: 77%;
        left: 22%
    }

    .hint--9 .hint__text {
        width: 435px;
        left: 50%
    }

    .hint--10 {
        right: 20%
    }

    .hint--10 .hint__text {
        width: 240px;
        left: 50%
    }

    .hint--11 {
        top: 91%;
        left: 17%
    }

    .hint--11 .hint__text {
        width: 135px
    }
}

.equipment {
    background-color: #f5f1ee;
    padding: 40px 0 0
}

.equipment__text {
    font-size: 20px;
    line-height: 28px
}

.equipment__text--desk {
    display: none
}

.equipment__text--mobile p+p {
    margin-top: 24px
}

.equipment__slides {
    margin: 40px -16px 0;
    position: relative;
}

.equipment__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    /* transition: opacity 0.2s ease; */
}

.equipment__slide:first-child {
    position: relative;
}

.equipment__slide--show {
    opacity: 1;
}

@media(min-width: 1024px) {
    .equipment {
        padding: 100px 0 130px
    }

    .equipment__text {
        font-size: 24px;
        line-height: 36px
    }

    .equipment__text--mobile {
        display: none
    }

    .equipment__text--desk {
        display: block
    }

    .equipment__slides {
        margin: 60px 0 0;
        /* max-width: 600px; */
    }
}

.design-project {
    background-color: #8F8A86;
    color: #fff;
    overflow: hidden;
    padding: 60px 0;
}

.design-project .swiper {
    overflow: visible
}

.design-project h2 span {
    display: block
}

.design-project__footer {
    margin-top: 24px
}

.design-project__footer .btn {
    width: 100%
}

@media(min-width: 768px) {
    .design-project h2 {
        margin-bottom: 60px
    }

    .design-project__footer {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 60px
    }

    .design-project__footer .btn {
        max-width: 376px
    }
}

@media(min-width: 1024px) {
    .design-project {
        padding: 100px 0 86px
    }
}


.design-project-slide__picture {
    color: inherit;
    display: block;
    text-decoration: none;
    margin-bottom: 24px;
}

.design-project-slide__picture img {
    -webkit-user-select: none;
    user-select: none
}

.design-project-slide__text {
    font-size: 24px;
    line-height: 36px;
    -webkit-user-select: none;
    user-select: none
}

.prices {
    overflow: hidden
}

.prices .swiper {
    overflow: visible
}

.prices__carousel {
    max-width: 93%
}

.prices .swiper-slide {
    height: auto
}

@media(min-width: 1024px) {
    .prices {
        background-color: #f5f1ee;
        padding: 100px 0 50px
    }

    .prices h2 {
        margin-bottom: 60px
    }
}

@media(min-width: 1300px) {
    .prices__carousel {
        max-width: none;
        max-width: initial
    }
    
    .prices__carousel .swiper-wrapper {
        margin: -6px;
        flex-wrap: wrap;
    }
}

.price-item {
    color: #fff;
    height: 100%
}

.price-item__wrapper {
    position: relative;
    height: 100%
}

.price-item__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.price-item__background--picture {
    z-index: 1
}

.price-item__background--picture img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.price-item__background--shadow {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2
}

.price-item__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 3;
    padding: 0 16px 15px
}

.price-item__head {
    background-color: rgba(103, 149, 112, .6);
    padding: 24px 0;
    font-family: "Lora";
    font-size: 28px;
    line-height: 28px;
    text-align: center;
    margin: 0 -16px 24px
}

.price-item__head--express {
    background-color: rgba(146, 121, 113, 0.40);
}

.price-item__head--express span {
    display: none;
}

.price-item__description {
    font-family: "Lora";
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    margin-bottom: 24px
}

.price-item__text {
    flex: 1;
    margin-bottom: 24px
}

.price-item__text strong {
    font-family: "Lora";
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    display: block
}

.price-item__text ul,
.price-item__text p {
    font-size: 16px;
    line-height: 28px
}

.price-item__text ul {
    padding-left: 16px
}

.price-item__text>*+* {
    margin-top: 12px
}

.price-item__price {
    font-family: "Lora";
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    margin-bottom: 24px
}

@media (min-width: 0px) and (max-width: 1299px) {
    .price-item__content-body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .price-item__content-top {
        flex: 1;
    }

    .price-item__content-footer .btn--price {
        width: 100%;
    }
}

@media(min-width: 1300px) {
    .price-item__text {
        margin-bottom: 75px
    }

    .prices__carousel .swiper-slide {
        flex: 0 0 25%;
        padding: 6px;
    }

    .prices__carousel .swiper-slide--express {
        flex: 0 0 100%;
    }

    .price-item__content-top {
        flex: 1;
        padding-right: 20px;
    }

    .price-item__content-body {
        display: flex;
    }

    .price-item__content-footer {
        flex: 0 0 251px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .price-item--express .price-item__description {
        text-align: left;
        margin-bottom: 8px;
    }

    .price-item--express .price-item__text {
        margin-bottom: 0;
    }

    .price-item--express .price-item__price {
        text-align: right;
    }
}

.prices-pag {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.prices-pag__item {
    background-color: #e0dcd9;
    height: 2px;
    width: 65px
}

.prices-pag__item--active {
    background-color: #679570
}

@media(min-width: 1300px) {
    .prices-pag {
        display: none
    }
}

.team__body {
    margin: -8px -6.5px;
    display: flex;
    flex-wrap: wrap
}

.team-item {
    flex: 0 0 50%;
    padding: 8px 6.5px
}

.team-item__picture {
    margin-bottom: 8px
}

.team-item__name {
    font-family: "Lora";
    font-size: 18px;
    font-weight: 500;
    line-height: 28px
}

.team-item__post {
    font-family: "Lora";
    font-size: 14px;
    font-weight: 500;
    line-height: 28px
}

@media(min-width: 768px) {
    .team-item {
        flex: 0 0 33.3333333333%
    }
}

@media(min-width: 1024px) {
    .team {
        padding: 100px 0 126px
    }

    .team h2 {
        margin-bottom: 60px
    }

    .team__body {
        margin: -12px -10px
    }

    .team-item {
        padding: 12px 10px
    }
}

.apartment-photo {
    /* display: none; */
    overflow: hidden;
}

.apartment-photo__text {
    font-size: 20px;
    line-height: 28px;
    max-width: 873px;
}

.apartment-photo__body {
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    margin: 40px -16px 0;
    padding: 0 16px;
    gap: 12px;
    scroll-snap-type: x mandatory;
    scroll-padding: 16px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.apartment-photo__body::-webkit-scrollbar {
    display: none;
}

.apartment-photo__item {
    flex: 0 0 165px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.apartment-photo__item picture {
    border: 1px solid #927971;
    padding: 10px;
}

.apartment-photo__item img {
    border: 1px solid #927971;
}

.apartment-photo__item p {
    font-family: 'Lora';
    font-size: 12px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 12px;
}

.apartment-photo__icon {
    display: none;
}

.apartment-photo .btn {
    margin: 40px auto 0;
    max-width: 251px;
    width: 100%;
}

@media (min-width: 768px) {
    .apartment-photo__body {
        gap: 11px;
    }

    .apartment-photo__item {
        flex: 1;
    }

    .apartment-photo__icon {
        display: block;
        width: 70px;
        flex: 0 0 70px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1024px) {
    .apartment-photo {
        padding: 100px 0 80px;
    }

    .apartment-photo__body {
        margin: 50px 0 0;
    }

    .apartment-photo__text {
        font-size: 24px;
        line-height: 36px;
    }

    .apartment-photo__item p {
        font-size: 24px;
        line-height: 28px;
    }

    .apartment-photo__icon {
        width: 100px;
    }

    .apartment-photo .btn {
        margin-top: 60px;
    }
}

@media (min-width: 1200px) {
    .apartment-photo__item p {
        font-size: 28px;
        line-height: 40px;
    }

    .apartment-photo__icon {
        width: 100px;
    }
}

.contacts {
    padding-bottom: 30px
}

.contacts__map {
    margin-bottom: 24px
}

.contacts__contnet {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.contacts__address {
    font-size: 14px;
    line-height: 150%
}

.contacts__phone {
    color: #3d3d3d;
    font-size: 14px;
    line-height: 150%;
    text-decoration: none
}

.contacts__phone:hover {
    text-decoration: underline
}

.contacts__logo {
    max-width: 93px;
    display: block;
    margin-bottom: 18px
}

.contacts__policy {
    color: #a0a0a0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.contacts-map {
    position: relative
}

.contacts-map__iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.contacts-map__iframe iframe {
    width: 100%;
    height: 100%
}

.social {
    display: flex;
    align-items: center;
    gap: 20px
}

.social__item {
    width: 28px;
    height: 28px
}

@media(min-width: 768px) {
    .contacts__body {
        display: flex
    }

    .contacts__map,
    .contacts__contnet {
        flex: 0 0 50%
    }

    .contacts__contnet {
        padding-right: 10px
    }

    .contacts__map {
        order: 1;
        margin: 0;
        max-width: 500px
    }

    .contacts__address {
        max-width: 469px
    }

    .contacts__footer {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end
    }
}

@media(min-width: 1024px) {
    .contacts {
        padding: 100px 0 161px
    }

    .contacts__contnet {
        flex: 1;
        gap: 30px
    }

    .contacts__map {
        flex: 0 0 500px
    }

    .contacts__address {
        font-size: 20px;
        padding-top: 20px
    }

    .contacts__phone {
        font-size: 20px
    }
}

.dialog {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 150;
    padding: 0 16px
}

.dialog--open {
    display: flex
}

.dialog,
.dialog__backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.dialog__backdrop {
    background-color: rgba(32, 18, 2, .4)
}

.dialog__content {
    position: relative;
    z-index: 2;
    overflow: auto;
    padding: 16px 0
}

.dialog__close {
    position: absolute;
    top: 25px;
    right: 10px;
    width: 30px;
    height: 30px
}

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

.dialog-callback, .dialog-success {
    background-color: #fff;
    padding: 40px 16px;
    max-width: 400px
}

.dialog-success {
    width: 360px;
}

.dialog-callback * + *, .dialog-success * + * {
    margin-top: 24px
}

.dialog-callback__express-list + * {
    margin-top: 0;
}

.dialog-callback__express-list {
    display: none;
    background-color: #F5F1EE;
    margin: 10px 0 24px;
    list-style: none;
    padding: 16px 12px;
}

.dialog--tariff-express .dialog-callback__express-list {
    display: block;
}

.dialog-callback__express-list li + li {
    margin-top: 12px;
}

.dialog-callback__express-list li {
    align-items: center;
    display: flex;
    gap: 12px;
}

.dialog-callback__express-list li:first-child {
    align-items: flex-start;
}

.dialog-callback__express-list li picture {
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 10px 20px 0px rgba(158, 109, 56, 0.10);
    flex: 0 0 40px;
    height: 40px;
    position: relative;
}

.dialog-callback__express-list li img {
    width: 50%;
}

.dialog-callback__express-list li p {
    flex: 1;
    margin-top: 0;
}

.dialog-callback__express-list li p * + * {
    margin-top: 5px;
}

.dialog-callback__express-list li strong {
    display: block;
    margin-top: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.dialog-callback__express-list li span {
    display: block;
    font-size: 12px;
    line-height: 20px;
}

.dialog-callback__title, .dialog-success__title {
    text-align: center;
    font-family: "Lora";
    font-size: 30px;
    font-weight: 500;
    line-height: 50px;
    text-transform: uppercase
}

.dialog-callback__text, .dialog-success__text {
    text-align: center;
    font-size: 16px;
    line-height: 26px
}

.dialog-callback .form-input {
    margin-top: 0
}

.dialog-callback .btn, .dialog-success .btn {
    width: 100%
}

.dialog-callback .btn span {
    margin-top: 0
}

@media(min-width: 1024px) {
    .dialog-callback, .dialog-success {
        max-width: 642px;
        padding: 40px 39px 20px
    }

    .dialog-callback__title, .dialog-success__title {
        font-size: 40px;
        line-height: 50px
    }

    .dialog-callback__text, .dialog-success__text {
        font-size: 24px;
        line-height: 36px
    }

    .dialog-callback__express-list li strong {
        font-size: 20px;
        line-height: 28px;
    }
    
    .dialog-callback__express-list li span {
        font-size: 16px;
        line-height: 28px;
    }
}

.dialog-photo {
    background-color: #FFFFFF;
    padding: 40px 16px 42px;
    max-width: 525px;
}

.dialog-photo * + * {
    margin-top: 24px;
}

.dialog-photo .btn span {
    margin-top: 0;
}

.dialog-photo__title {
    font-family: 'Lora';
    font-size: 30px;
    font-weight: 500;
    line-height: 50px;
    text-transform: uppercase;
    text-align: center;
}

.dialog-photo__text {
    text-align: center;
    font-size: 16px;
    line-height: 26px;
}

.dialog--tariff-express .dialog-photo__text {
    display: none;
}

.dialog-photo-upload {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
}

.dialog-photo-upload__text {
    font-size: 16px;
    line-height: 36px;
    white-space: nowrap;
}

.dialog-photo-upload__input {
    position: absolute;
    width: 0px;
    height: 0px;
    opacity: 0;
}

.dialog-photo-upload-btn {
    background-color: #927971;
    color: #ffffff;
    margin-top: 0;
    padding: 13px 11px;
    flex: 1;
}

.dialog-photo-upload-btn * + * {
    margin-top: 0;
}

.dialog-photo-upload-btn p {
    font-family: 'Lora';
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.dialog-photo-upload-btn__main, .dialog-photo-upload-btn__done {
    align-items: center;
    display: flex;
    justify-content: center;
}

.dialog-photo-upload-btn__done {
    display: none;
}

.dialog-photo-upload-btn--done .dialog-photo-upload-btn__main {
    display: none;
}

.dialog-photo-upload-btn--done .dialog-photo-upload-btn__done {
    display: flex;
}

.dialog-photo-upload-btn img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-right: 10px;
}

.dialog-photo .btn {
    width: 100%;
}

@media (min-width: 1024px) {
    .dialog-photo {
        padding: 32px 40px;
    }

    .dialog-photo__title {
        font-size: 40px;
    }

    .dialog-photo__text {
        font-size: 24px;
        line-height: 36px;
    }

    .dialog-photo-upload {
        gap: 24px;
    }
}

.dialog-panorama {
    width: 90vw;
    height: 80vh;
    position: relative
}

.dialog-panorama__close-area {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5
}

.dialog-panorama .dialog__close {
    z-index: 7
}

.dialog-panorama__content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 6
}

.dialog-panorama__content .psv-container {
    width: 100%;
    height: 100%
}

.dialog-panorama__loader {
    width: 100px;
    height: 100px
}

.dialog-panorama__loader svg {
    animation: lds-ring 1.2s linear infinite;
    width: 100%;
    height: 100%
}