/* #region fonts */
@font-face {
    font-family: "Montserrat";
    src: url('../fonts/Montserrat-Light.ttf') format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

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

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

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

/* #region reset css */
* {
    padding: 0;
    margin: 0;
    border: 0
}

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

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

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

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

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

button {
    background-color: transparent;
    cursor: pointer;
    color: inherit;
}

button[disabled] {
    cursor: default
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/* #endregion reset css */

/* #region base */
html {
    font-family: "Montserrat", sans-serif;
    color: #282532;
}

.overflow-hidden {
    overflow: hidden;
}

.container {
    margin: 0 auto;
    min-width: 360px;
    max-width: 1217px;
    padding: 0 16px;
}

h2 {
    font-size: 26px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

@media (min-width: 400px) {
    h2 {
        font-size: 32px;
        line-height: 35px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 25px;
    }
}
/* #endregion base */

/* #region elements */
.position-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn {
    border-radius: 8px;
    padding: 0 20px;
    height: 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.5px;
    text-transform: uppercase;
    position: relative;
    width: 100%;
}

a.btn {
    align-items: center;
    justify-content: center;
    display: flex;
}

a.btn:hover {
    text-decoration: none;
}


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

.btn__loading img,
.btn__success img {
	width: 100%;
}

.btn__loading {
	width: 35px;
	height: 35px;
}

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

.btn__loading img {
	animation: lds-ring 1.2s linear infinite;
}

.btn__success {
	width: 30px;
	height: 30px;
}

.btn--success .btn__success {
	display: block;
}

.btn--success span,
.btn--loading span {
	opacity: 0;
}

.btn--accent {
    background-color: #665C83;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
    color: #fff;
}

.btn--second {
    background-color: #9388AF;
    color: #fff;
}

.btn--black {
    background-color: #282532;
    border-radius: 0;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.btn--black:hover {
    background-color: #1E1A2A;
}

.nav-arrow {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
    width: 44px;
    height: 44px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.nav-arrow:disabled {
    opacity: 0.6;
}

.nav-arrow img {
    width: 20px;
}

.nav-arrow--next img {
    transform: translate(-50%, -50%) rotate(180deg);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field__label {
    font-weight: 500;
    font-size: 16px;
}

.form-field__input {
    background-color: #F8F6FF;
    border: 1px solid #F8F6FF;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    height: 60px;
    padding: 0 16px;
}

.form-field--error .form-field__input {
    border-color: #F13131;
}

.form-field--success .form-field__input {
    border-color: #29e12f;
}

.form-field__error {
    color: #F13131;
    display: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    margin-top: 4px;
}

.form-field--error .form-field__error {
    display: block;
}


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

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

    /* #region .form-method */
    .form-method {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .form-method-call__title {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 8px;
    }

    .form-method-call__btns {
        display: flex;
        gap: 8px;
    }

    .form-method-call__item {
        align-items: center;
        border-radius: 8px;
        background-color: #F8F6FF;
        border: 1px solid #F8F6FF;
        color: inherit;
        display: flex;
        flex-direction: column;
        font-size: 12px;
        padding: 5px;
        gap: 5px;
        text-align: center;
        line-height: 1.2;
        flex: 0 1 33%;
    }

    .form-method-call__item--phone p {
        max-width: 90px;
    }

    .form-method-call__item--active {
        border-color: #665C83;
    }

    .form-method-call__item img {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }

    .form-method__form {
        display: none;
    }

    .form-method__form--show {
        display: block;
    }

    .form-method__fields {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    @media (min-width: 1024px) {
        .form-method-call__item {
            font-size: 16px;
            line-height: 22px;
        }
    }
    /* #endregion .form-method */

    /* #region .time-select */
    .time-select {
        display: none;
        flex-direction: column;
        gap: 8px;
    }

    .time-select--show {
        display: flex;
    }

    .time-select__radios {
        display: flex;
        gap: 8px;
    }

    .time-select__radio {
        flex: 0 1 calc(50% - 4px);
        position: relative;
    }

    .time-select__radio input {
        position: absolute;
        opacity: 0;
        z-index: -100;
    }

    .time-select__radio p {
        border: 1px solid #F8F6FF;
        background-color: #F8F6FF;
        border-radius: 8px;
        cursor: pointer;
        height: 52px;
        display: block;
        text-align: center;
        line-height: 52px;
        font-size: 14px;
        font-weight: 500;
    }

    .time-select__radio input:checked + p {
        border-color: #665C83;
        cursor: default;
    }

    .time-select__select {
        display: none;
        position: relative;
    }

    .time-select__select select {
        background-color: #F8F6FF;
        border: 1px solid #F8F6FF;
        border-radius: 8px;
        font-size: 14px;
        padding: 0 16px;
        height: 52px;
        width: 100%;
        appearance: none;
    }

    .time-select__select svg {
        position: absolute;
        width: 20px;
        height: 20px;
        top: 50%;
        transform: translateY(-50%);
        right: 16px;
    }
    
    .time-select--show-select .time-select__select {
        display: block;
    }
    /* #endregion .time-select */
/* #endregion elements */

/* #region .header */
.header {
    background-color: #FFFFFF;
    position: sticky;
    top: 0;
    height: 56px;
    transition: top 300ms ease-in-out;
    z-index: 100;
}

.header--hide {
    top: -56px;
}

.header .container {
    align-items: center;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.header__logo {
    width: 88px;
    display: block;
}

.header__phone {
    color: #282532;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: 0.04em;
}

@media (min-width: 768px) {
    .header {
        box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1);
        height: 58px;
    }

    .header--hide {
        top: -58px;
    }

    .header__logo {
        width: 139px;
    }
}
/* #endregion .header */

/* #region .fs */
.fs {
    padding: 40px 0 16px;
    position: relative;
}

.fs__bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
}

.fs__bg picture {
    height: 560px;
}

@media (min-width: 370px) {
    .fs__bg picture {
        height: 530px;
    }
}

@media (min-width: 515px) {
    .fs__bg picture {
        height: 490px;
    }
}

.fs__bg img {
    height: 100%;
    object-fit: cover;
}

.fs__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 11;
}

.fs__content {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fs__head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.fs__head h1 {
    font-weight: 300;
    font-size: 46px;
    line-height: 90%;
    max-width: 350px;
}

.fs__head p {
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
}

.fs__benefits {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fs__benefits li {
    align-items: center;
    background: linear-gradient(111.18deg, rgba(255, 255, 255, 0.4) 2.95%, rgba(255, 255, 255, 0.1) 76.8%);
    backdrop-filter: blur(100px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 12px 0;
}

.fs__benefits li strong {
    font-size: 16px;
    line-height: 110.00000000000001%;
    text-transform: uppercase;
    font-weight: 400;
}

.fs__benefits li p {
    font-weight: 200;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .fs__bg {
        bottom: 0;
    }

    .fs__bg picture {
        height: 100%;
    }

    .fs__body {
        flex-direction: row;
    }

    .fs__content {
        flex: 1;
    }

    .fs__head {
        align-items: initial;
        text-align: left;
    }
    
    .fs__benefits {
        max-width: 324px;
    }

    .fs__benefits li {
        align-items: initial;
        text-align: left;
        padding: 12px 16px;
    }

    .fs__benefits li p {
        text-align: left;
    }

    .fs__calc {
        flex: 0 1 400px;
    }
}

@media (min-width: 1024px) {
    .fs {
        padding: 27px 0 20px;
    }

    .fs__content {
        padding: 45px 0 0;
        gap: 40px;
    }

    .fs__head h1 {
        font-size: 60px;
        line-height: 100%;
        max-width: 376px;
    }

    .fs__benefits {
        gap: 12px;
    }

    .fs__calc {
        flex: 0 1 546px;
    }
}
/* #endregion .fs */

/* #region .fs-calc */
.fs-calc {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0 0;
}

.fs-calc h2 {
    font-weight: 300;
    font-size: 32px;
    line-height: 110.00000000000001%;
    text-align: center;
    text-transform: uppercase;
    max-width: 590px;
    margin: 0 auto;
}

.fs-calc__fieldset {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fs-calc__fieldset--fs-house-type {
    gap: 14px;
}

.fs-calc__legend {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.fs-calc__addons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media (min-width: 768px) {
    .fs-calc {
        padding: 16px;
    }
}

@media (min-width: 1024px) {
    .fs-calc {
        padding: 24px;
    }
}
/* #endregion .fs-calc */

/* #region .fs-calc-radios */
.fs-calc-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fs-calc-radios__item:nth-child(1),
.fs-calc-radios__item:nth-child(2) {
    flex: 0 1 calc(50% - 4px);
}

.fs-calc-radios__item:nth-child(3) {
    flex: 0 1 100%;
}

.fs-calc-radios__input {
    opacity: 0;
    position: absolute;
    z-index: -1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none
}

.fs-calc-radios__label {
    border: 1px solid #665C83;
    cursor: pointer;
    padding: 16px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.fs-calc-radios__label span {
    font-size: 16px;
    line-height: 20px
}

.fs-calc-radios__label img {
    width: 20px;
    height: 20px;
    display: none
}

.fs-calc-radios__input:checked+label {
    background-color: #9388AF;
    border-color: #9388AF;
    color: #fff;
    cursor: default;
}

.fs-calc-radios__input:checked+label img {
    display: block
}
/* #endregion .fs-calc-radios */

/* #region .fs-area */
.fs-area {
    display: flex;
}

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

.fs-area-number input {
    background-color: rgba(0, 0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: #665C83;
    width: 45px;
    outline: none;
    -moz-appearance: textfield
}

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

.fs-area-number label {
    color: #665C83;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px
}

input[type=range].fs-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].fs-area-range:focus {
    outline: none
}

input[type=range].fs-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].fs-area-range::-webkit-slider-thumb {
    box-shadow: 0px 1px 4px 0px rgba(158, 109, 56, .1);
    margin-top: -11px;
    width: 30px;
    height: 30px;
    background: #9388AF;
    border: 1px solid #665C83;
    border-radius: 50px;
    cursor: pointer;
    -webkit-appearance: none
}


input[type=range].fs-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].fs-area-range::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: #9388AF;
    border: 1px solid #665C83;
    border-radius: 50px;
    cursor: pointer
}
/* #endregion .fs-area */

/* #region .fs-cust-checkbox */
.fs-cust-checkbox {
    align-items: center;
    display: flex
}

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

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

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

.fs-cust-checkbox label::before {
    border: 1px solid #665C83;
    width: 16px;
    height: 16px;
    left: 0
}

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

.fs-cust-checkbox input:checked+label::before {
    background-color: #665C83
}

.fs-cust-checkbox 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")
}

.fs-cust-checkbox input:active+label::before {
    background-color: #665C83
}
/* #endregion .fs-cust-checkbox */

/* #region .fs-helptip */
.fs-helptip {
    width: 15px;
    height: 15px;
    cursor: help;
    position: relative
}

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

.fs-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) {
    .fs-helptip--1 .fs-helptip__text {
        transform: translateX(-82%);
    }

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

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

.fs-helptip:hover .fs-helptip__text {
    display: block
}
/* #endregion .calc-helptip */

/* #region .estimates */
.estimates {
    margin-top: 28px;
    overflow: hidden;
}

.estimates h2 {
    margin-bottom: 24px;
}

.estimates__body {
    margin: 0 -16px;
}

.estimates__swiper.swiper {
    overflow: visible;
    margin: 0 27px 0 0;
}

@media (min-width: 768px) {
    .estimates {
        margin-top: 60px;
    }

    .estimates__body {
        margin: 0;
    }

    .estimates__swiper.swiper {
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .estimates {
        margin-top: 100px;
    }

    .estimates h2 {
        margin-bottom: 28px;
    }
}
/* #endregion .estimates */

/* #region .estimate-item */
.swiper-slide.estimate__slide {
    margin-right: 10px;
    /* width: auto; */
}

.ei-carousel__main {
    position: relative;
}

.estimate-item {
    border: 1px solid #D0CBDD;
}

.ei-picture {
    display: none;
}

.ei-picture:first-child {
    display: block;
}

.ei-picture__wrapper {
    position: relative;
}

.ei-picture__picture img {
    height: 100%;
    max-height: 218px;
    object-fit: cover;
}

@supports (aspect-ratio: 366 / 219) {
    .ei-picture__picture img {
        aspect-ratio: 366 / 219;
        max-height: 100%;
    }
}

.ei-picture__show-full {
    background-color: rgba(40, 37, 50, 0.6);
    border: 1px solid #FFFFFF;
    box-shadow: 0px 0px 2.52px 0px rgba(0, 0, 0, 0.12);
    padding: 16px 24px;
    display: inline-block;
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.ei-picture__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.ei-carousel__main .nav-arrow {
    display: none;
    z-index: 10;
}

@media (max-width: 1023px) {
    .ei-carousel__main .nav-arrow {
        width: 30px;
        height: 30px;
    }

    .ei-carousel__main .nav-arrow img {
        width: 14px;
    }
}

.ei-carousel__main .nav-arrow--prev {
    left: 16px;
}

.ei-carousel__main .nav-arrow--next {
    right: 16px;
}

.ei-carousel__thumbs {
    background-color: #F6F4FF;
    padding: 7px;
    margin-top: 16px;
    display: none;
    overflow: hidden;
}

.ei-carousel__thumbs .swiper {
    overflow: visible;
}

.ei-carousel__thumb.swiper-slide {
    flex: 0 0 calc(20% - 2.4px);
    margin-right: 3px;
    height: auto;
}

.ei-carousel__thumb picture {
    border: 2px solid transparent;
    padding: 3px;
    height: 100%;
}

.ei-carousel__thumb.swiper-slide-thumb-active picture {
    border-color: #665C83;
}

.ei-carousel__thumb picture img {
    height: 100%;
    max-height: 55px;
    object-fit: cover;
}

@supports (aspect-ratio: 1 / 1) {
    .ei-carousel__thumb picture img {
        aspect-ratio: 1 / 1;
        max-height: initial;
    }
}

.estimate-item__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.estimate-item__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.estimate-item__head p {
    font-weight: 500;
    font-size: 17px;
    line-height: 110.00000000000001%;
    text-transform: uppercase;
}

.estimate-item__head span {
    border: 0.5px solid #282532;
    white-space: nowrap;
    padding: 4px;
    font-weight: 400;
    font-size: 12px;
    line-height: 110.00000000000001%;
}

.estimate-item__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.estimate-item__service {
    display: flex;
    list-style-type: none;
    gap: 10px;
    justify-content: space-between;
    font-weight: 400;
    font-size: 14px;
    line-height: 110.00000000000001%;
}

.estimate-item__service--total {
    padding-top: 6px;
}

.estimate-item__service p {
    color: #75727E;
}

.estimate-item__service span {
    color: #282532;
}

.estimate-item__service--total p,
.estimate-item__service--total span {
    color: #282532;
    font-size: 17px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .swiper-slide.estimate__slide {
        margin-right: 16px;
    }
    
    .estimate-item {
        display: flex;
        gap: 10px;
        border: 0;
    }

    .ei-picture {
        display: block;
    }

    .ei-picture__show-full {
        display: none;
    }

    .ei-carousel {
        flex: 0 0 420px;
        max-width: 420px;
    }

    .ei-carousel__main .nav-arrow {
        display: block;
    }

    .ei-carousel__thumbs {
        display: block;
    }

    .estimate-item__content {
        border: 1px solid #D0CBDD;
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .estimate-item {
        gap: 20px;
    }

    .ei-carousel {
        flex: 0 0 540px;
        max-width: 540px;
    }

    .ei-carousel__thumb.swiper-slide {
        flex: 0 0 calc(12.5% - 2.625px);
    }

    .estimate-item__head {
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
    }

    .estimate-item__content {
        padding: 32px 16px;
    }
}

@media (min-width: 1200px) {
    .swiper-slide.estimate__slide {
        margin-right: 32px;
    }

    .ei-carousel {
        flex: 0 0 660px;
        max-width: 660px;
    }

    .estimate-item__content {
        padding: 70px 32px;
        gap: 24px;
    }

    .estimate-item__head p {
        font-size: 24px;
    }

    .estimate-item__head span {
        font-size: 16px;
        padding: 6px 5px 4px 5px;
    }

    .estimate-item__list {
        flex: 1;
    }

    .estimate-item__service--total {
        align-items: flex-end;
        flex: 1;
    }

    .estimate-item__service--total p,
    .estimate-item__service--total span {
        font-size: 24px;
    }
}
/* #endregion .estimate-item */

/* #region .estimates-nav */
.estimates-nav {
    display: flex;
    gap: 1px;
    margin-top: 9px;
}

.estimates-nav__item {
    background-color: #282532;
    color: #ffffff;
    display: flex;
    gap: 4px;
    flex-direction: column;
    padding: 12px;
    text-transform: uppercase;
    font-size: 12px;
    flex: 1;
}

.estimates-nav__item--prev {
    align-items: flex-start;
}

.estimates-nav__item--next {
    align-items: flex-end;
}

.estimates-nav__item img {
    width: 16px;
    height: 16px;
    flex: 0 16px;
}

.estimates-nav__item--next img {
    transform: rotate(180deg);
}

@media (min-width: 768px) {
    .estimates-nav {
        justify-content: center;
        margin-top: 32px;
        gap: 8px;
    }

    .estimates-nav__item {
        flex: initial;
        flex-direction: row;
        padding: 12px 16px;
    }
}
/* #endregion .estimates-nav */

/* #region .works */
.works {
    margin-top: 28px;
}

.works__line {
    background-color:#E2DDEF;
    height: 1px;
    width: 100%;
    margin-top: 28px;
}

.works__tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 28px;
    gap: 8px;
}

.works-tab {
    border: 1px solid #9388AF;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.63px;
    padding: 12px;
    flex-grow: 1;
}

.works-tab:hover {
    background-color: #9388AF;
    color: #fff;
}

.works-tab--active {
    border: 1px solid #665C83;
    background-color: #665C83;
    color: #fff;
    cursor: default;
}

.works-tab--active:hover {
    background-color: #665C83;
}

.works__title {
    margin-bottom: 28px;
}

.works__subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    margin-bottom: 28px;
}

.works__carousel, .works__single {
    position: relative;
    display: none;
}

.works__carousel--show, .works__single--show {
    display: block;
}

.works-slide {
    position: relative;
}

.works-slide__link, .works__single-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 7;
}

.works-pags {
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0 10px 12px;
    display: flex;
    justify-content: center;
    z-index: 10;
    gap: 4px;
}

.works-pags__item {
    background-color: #F5F1EE;
    flex-grow: 1;
    height: 2px;
    max-width: 65px;
}

.works-pags__item--active {
    background-color: #665C83;
}

.works__carousel .nav-arrow {
    z-index: 10;
}

.works__carousel .nav-arrow--prev {
    left: 10px;
}

.works__carousel .nav-arrow--next {
    right: 10px;
}

@media (min-width: 768px) {
    .works {
        margin-top: 60px;
    }

    .works-tab {
        flex-grow: initial;
        padding: 12px 25px;
    }

    .works__carousel .swiper-slide {
        width: calc(50% - 8px);
        margin-right: 16px;
    }

    .works-pags, .works__line {
        display: none;
    }
}

@media (min-width: 1024px) {
    .works {
        margin-top: 100px;
    }

    .works__title {
        margin-bottom: 24px;
    }

    .works__carousel .swiper-slide {
        width: calc(33% - 10px);
        margin-right: 20px;
    }

    .works__carousel .nav-arrow--prev {
        left: -20px;
    }
    
    .works__carousel .nav-arrow--next {
        right: -20px;
    }
}
/* #endregion .works */

/* #region .team */
.team {
    margin-top: 28px;
}

.team h2 {
    margin-bottom: 128px;
}

.team__body {
    position: relative;
}

.team__content {
    margin-top: 32px;
    font-weight: 500;
    line-height: 28px;
}

.team__content h3 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 8px;
}

.team__post {
    font-size: 16px;
    line-height: 28px;
}

.team__line {
    background-color: #E2DDEF;
    width: 95px;
    height: 1px;
    margin: 24px 0;
}

.team__description + .team__description {
    margin-top: 24px;
}

.team__description--hide {
    display: none;
}

.team__description h4 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
    font-weight: 400;
}

.team__description--accordion h4 {
    cursor: pointer;
    align-items: center;
    display: inline-flex;
    gap: 10px;
}

.team__description--accordion h4 span {
    user-select: none;
}

.team__description--accordion h4 img {
    width: 24px;
    height: 24px;
    user-select: none;
}

.team__description--accordion-show h4 img {
    transform: rotate(180deg);
}

.team__description p {
    font-size: 16px;
    line-height: 28px;
}

.team__description--accordion p {
    display: none;
}

.team__description--accordion-show p {
    display: block;
}

.team-tabs {
    position: absolute;
    top: -104px;
    left: -16px;
    right: -16px;
    display: flex;
    overflow: auto;
    gap: 8px;
    scroll-snap-type: x mandatory;
    padding: 0 16px 10px;
    scroll-padding: 0 16px;
    scrollbar-width: none;
}

.team-tabs::-webkit-scrollbar {
    display: none;
}

.team-tab {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    scroll-snap-align: start;
}

.team-tab__wrapper {
    border: 2px solid transparent;
    display: block;
}

.team-tab--active .team-tab__wrapper {
    border-color: #8F72E6;
}


@media (min-width: 768px) {
    .team h2 {
        margin-bottom: 32px;
    }

    .team-tabs {
        overflow: visible;
        position: static;
        padding: 0;
        flex-wrap: wrap;
        gap: 0;
        margin: -5px;
        max-width: 372px;
    }

    .team-tab {
        flex: 0 0 33.3333333333%; /*33.3333333333%;*/
        height: auto;
        padding: 5px;
    }

    .team__body {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        /*max-width: 1090px;*/
        margin: 0 auto;
    }

    .team__picture {
        flex: 1;
    }

    .team__content {
        flex: 0 0 45%;
        margin: 0;
    }

    .team__description {
        margin-bottom: 24px;
    }
}

@media (min-width: 1024px) {
    .team {
        margin-top: 100px;
    }

    .team h2 {
        margin-bottom: 40px;
    }

    .team__picture {
        flex: 0 0 540px;
    }

    .team__content {
        flex: 0 0 393px;
    }
}
/* #endregion .team */

/* #region .footer */
.footer {
    padding: 180px 0 28px;
}

.footer__logo {
    display: block;
    width: 139px;
    height: 38px;
    user-select: none;
}

.footer__text {
    color: #D0CBDD;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.02em;
    user-select: none;
}

@media (min-width: 1024px) {
    .footer {
        padding: 200px 0 50px;
    }
}
/* #endregion .footer */

/* #region .time-choose */
.time-choose {}

.time-choose__radios {
    display: flex;
    gap: 8px;
}

.time-choose__radio {
    flex-grow: 1;
    flex-basis: 0;
}

.time-choose__radio input {
    position: absolute;
    opacity: 0;
    z-index: -100;
}

.time-choose__radio label {
    border: 1px solid #F8F6FF;
    background-color: #F8F6FF;
    border-radius: 8px;
    cursor: pointer;
    height: 52px;
    display: block;
    text-align: center;
    line-height: 52px;
    font-size: 14px;
    font-weight: 500;
}

.time-choose__radio input:checked + label {
    border-color: #665C83;
    cursor: default;
}

.time-choose__select {
    margin-top: 8px;
    display: none;
}

.time-choose__select--show {
    display: block;
}

.cust-select {
    position: relative;
}

.cust-select__head {
    background-color: #F8F6FF;
    border: 1px solid #F8F6FF;
    border-radius: 8px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    height: 52px;
}

.cust-select--open .cust-select__head {
    border-color: #665C83;
}

.cust-select__head p {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
}

.cust-select__head img {
    width: 20px;
    height: 20px;
}

.cust-select--open .cust-select__head img {
    transform: rotate(180deg);
}

.cust-select__list {
    background-color: #fff;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    margin-top: 8px;
    padding: 4px;
    display: none;
}

.cust-select--open .cust-select__list {
    display: block;
}

.cust-select__item {
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    height: 49px;
    padding: 0 16px;
}

.cust-select__item:hover {
    background-color: #9388AF;
    text-decoration: none;
    color: #fff;
}

.cust-select__item--selected {
    background-color: #665C83;
    color: #fff;
    cursor: default;
}

.cust-select__item img {
    width: 16px;
    height: 16px;
    opacity: 0;
}

.cust-select__item--selected img {
    opacity: 1;
}
/* #endregion .time-choose */

/* #region .dialog */
.dialog {
    background-color: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    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);
    display: none;
}

.dialog__content {
    background-color: #fff;
    position: relative;
    z-index: 2;
    overflow: auto;
    padding: 16px;
    width: 100%;
}

.dialog__head {
    padding-bottom: 12px;
}

.dialog__back {
    align-items: center;
    display: flex;
    gap: 8px;
    line-height: 24px;
}

.dialog__close {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
}

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

.dialog__fieldset legend {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.5px;
    margin-bottom: 8px;
}

.dialog__fieldset--time,
.dialog__fieldset--form, 
.dialog__fieldset--telegram {
    display: none;
}

.dialog__fieldset--show {
    display: block;
}

@media (min-width: 768px) {
    .dialog {
        background-color: transparent;
        justify-content: center;
    }

    .dialog__backdrop {
        display: block;
    }

    .dialog__content {
        background-color: transparent;
        padding: 24px;
        width: initial;
    }

    .dialog__head {
        padding: 0;
    }

    .dialog__back {
        display: none;
    }

    .dialog__close {
        display: block;
    }
}
/* #endregion .dialog */

/* #region .dialog-success */
.dialog-success {
    background-color: #fff;
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dialog-success img {
    width: 36px;
    height: 36px;
}

.dialog-success__text {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.5px;
}

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

@media (min-width: 768px) {
    .dialog-success {
        border-radius: 16px;
        padding: 32px 16px;
        width: 390px;
    }
}
/* #endregion .dialog-success */

/* #region .dialog-call */
.dialog-call {
    background-color: #fff;
    max-width: 100%;
}

@media (min-width: 768px) {
    .dialog-call {
        max-width: 500px;
        border-radius: 16px;
        padding: 24px;
    }
}
/* #endregion .dialog-call */

/* #region .dialog-message */
.dialog-message {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.dialog-message__pic {
    flex: 0 0 73px;
    margin-bottom: 9px;
}

.dialog-message__pic img {
    border-radius: 50%;
}

.dialog-message__body {
    background-color: #F8F6FF;
    position: relative;
    padding: 16px;
    border-radius: 24px 24px 24px 0px;
    max-width: 283px;
}

.dialog-message__corner {
    width: 25px;
    height: 32px;
    position: absolute;
    bottom: 0;
    left: -24.5px;
}

.dialog-message__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
}

.dialog-message__text ul {
    padding-left: 18px;
}

.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%
}
/* #endregion .dialog-message */




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

.portfolio .content, 
.panoramas .content, 
.contacts .content,
.prices .content,
.estimates .content {
    min-width: 360px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px
}

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

.c-nav {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
    width: 44px;
    height: 44px;
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
}

.c-nav:disabled {
    background-color: rgba(255, 255, 255, .4)
}

.c-nav img {
    width: 20px;
    height: 20px;
}

.c-nav--prev {
    left: 0;
}

.c-nav--next {
    right: 0;
}


/* #region .swiper */
.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
}
/* #endregion .swiper */

/* #region .portfolio */
.portfolio {
    padding-top: 24px;
    padding-bottom: 24px;
}
.portfolio h2 {
    margin-bottom: 28px;
}

.portfolio__carousel {
    position: relative;
}

.portfolio__carousel .swiper {
    margin: 0 -16px;
}

@media (max-width: 767px) {
    .portfolio__carousel .c-nav {
        top: 40%;
    }
}

.portfolio-item__footer {
    max-width: 392px;
    margin: 24px auto 0;
    padding: 0 16px;
}

.portfolio-item__btn {
    width: 100%;
}

.portfolio-item__list {
    display: none;
}

@media (min-width: 768px) {
    .portfolio {
        overflow: hidden;
    }

    .portfolio__carousel .swiper {
        margin: 0;
        overflow: visible;
    }

    .portfolio__carousel .c-nav--prev {
        left: 14px;
    }

    .portfolio__carousel .c-nav--next {
        right: 14px;
    }

    .portfolio-item__footer {
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .portfolio {
        padding-top: 50px;
        padding: 80px 0 130px;
    }

    .portfolio h2 {
        margin-bottom: 40px;
    }
}

@media (min-width: 1300px) {
    .portfolio__carousel .c-nav--prev {
        left: -60px;
    }

    .portfolio__carousel .c-nav--next {
        right: -60px;
    }
}

@media (min-width: 1350px) {
    .portfolio__carousel .c-nav--prev {
        left: -75px;
    }

    .portfolio__carousel .c-nav--next {
        right: -75px;
    }
}
/* #endregion .portfolio */

/* #region .contacts */
.contacts__title {
    font-family: 'Lora';
    font-size: 34px;
    font-weight: 500;
    line-height: 50px; /* 147.059% */
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contacts__map {
    margin-bottom: 24px
}

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

.contacts__contnet h2 {
    display: none;
}

.contacts__address {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.contacts__phone {
    color: inherit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    text-decoration: none;
    margin-bottom: 36px;
}

.contacts__phone:hover {
    text-decoration: underline;
}

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

.contacts__policy {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
}

.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__title {
        display: none;
    }

    .contacts__contnet h2 {
        display: block;
        margin: 0;
    }

    .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
    }
}
/* #endregion .contacts */

/* #region .panoramas */
.panoramas {
    overflow-x: hidden;
    overflow-y: hidden;
    padding-top: 0;
}

.panoramas h2 {
    display: none;
}

.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: #B9B1AF;
        color: #fff;
        padding: 100px 0;
    }

    .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%; */
    grid-template-rows: repeat(6, 16.6666666667%);
    height: 100%
}

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

.panorama-slide__wrapper--grid-5 .panorama-item:first-child {
    grid-column-start: span 2;
    grid-row-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;
    grid-row-start: span 2;
}

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

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

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

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

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

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

    .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;
        grid-row-start: span 3;
    }

    .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 !important;
        grid-row-start: span 3 !important;
    }

    .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 {
        grid-template-columns: 100%;
        grid-template-rows: 100%;
    }

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

.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 {
    border: 1px solid #fff;
    color: #fff;
    position: relative;
    height: 100%
}

.panorama-item__picture {
    height: 100%
}

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

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

.panorama-item__video {
    z-index: 5;
    overflow: hidden;
}

.panorama-item__video video {
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%); */
    object-fit: cover;
    height: 100%;
}

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

.panorama-item__icon {
    background-color: rgba(49, 48, 44, 0.2);
    z-index: 7;
}

.panorama-item__icon svg {
    width: 50px;
    height: 50px;
    z-index: 8;
}

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

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

.panorama-item__open {
    cursor: zoom-in;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

@media (min-width: 768px) {
    .panorama-item__icon {
        background-color: rgba(49, 48, 44, 0.4);
        display: none;
    }

    .panorama-item__wrapper:hover .panorama-item__icon {
        display: block;
    }
}
/* #endregion .panoramas */

/* #region .prices */
.prices {
    overflow: hidden;
    margin-top: 28px;
}

.prices h2 {
    margin-bottom: 28px;
}

.prices .swiper {
    overflow: visible;
}

.prices__carousel {
    max-width: 93%;
}

.prices .swiper-slide {
    height: auto;
}

@media (min-width: 1024px) {
    .prices {
        padding-top: 100px;
        margin-top: 0px;
    }
    
    .prices h2 {
        margin-bottom: 40px;
    }
}

@media (min-width: 1300px) {
    .prices__carousel {
        max-width: initial;
    }
}

.price-item {
    color: #ffffff;
    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%;
    object-fit: cover;
}

/* .price-item__background--shadow {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 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: #665C83;
    padding: 24px 0;
    font-size: 28px;
    line-height: 28px;
    text-align: center;
    margin: 0 -16px 24px;
}

.price-item__description {
    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-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-size: 24px;
    font-weight: 500;
    line-height: 28px;
    /* text-align: center; */
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .price-item__price p:first-child {
    text-decoration: line-through;
} */

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

.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;
    }
}
/* #endregion .prices */