@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
}

.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: 40px;
        line-height: normal;
    }
}

.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 {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    height: 70px;
    transition: top 300ms ease-in-out;
}

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

.header--single + main {
    margin-top: 80px;
}

/* .header--scrolled .header__main {} */

.header .header__main {
    height: 100%;
}

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

.header .header__main .content {
    color: #fff;
}

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

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

.header--scrolled .header__logo {
    display: none;
}

.header--single.header--scrolled .header__logo {
    display: block;
}

.header__top-nav {
    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--scrolled .header__phone {
    color: #ffffff;
}

.header--scrolled .header__nav .header__phone {
    color: #3d3d3d;
}

.header-menu-open,
.header-menu-close {
    font-family: "Lora";
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.2px;
    text-transform: uppercase
}

.header-menu-open {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px
}

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

.header-menu-open svg {
    width: 31px
}

.header--scrolled .header-menu-open svg rect {
    fill: #ffffff;
}

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

.header-nav--show {
    display: block
}

.header-nav__top {
    height: 70px
}

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

.header-nav__body {
    padding-top: 80px
}

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

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

.header-nav li a:hover {
    text-decoration: underline
}

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

.header-menu-close {
    color: inherit
}

.header-menu-close__mobile {
    width: 31px;
}

.header-menu-close__desk {
    display: none
}

@media (min-width: 500px) {
    .header__logo, .header-nav__logo {
        display: block;
    }
}

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

    /* .header--scrolled {
        transform: translateY(0);
    } */

    .header .header__main .content, .header .header-nav__top .content {
        gap: 32px;
    }

    .header__logo {
        width: 143px;
        position: static;
    }

    .header--scrolled .header__logo {
        display: block;
    }

    .header__top-nav {
        display: block;
        flex: 1;
    }

    .header__top-nav ul {
        align-items: center;
        display: flex;
        justify-content: flex-end;
        gap: 32px;
        list-style: none;
    }

    .header__top-nav a {
        color: inherit;
        font-family: 'Lora';
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 3.2px;
        text-transform: uppercase;
        text-decoration: none;
    }

    .header__top-nav a:hover {
        text-decoration: underline;
    }

    .header__main .header__phone {
        color: #ffffff;
        flex: initial;
    }

    .header-menu-open {
        display: none;
    }

    .header-menu-open span {
        display: block;
    }

    .header--scrolled .header-menu-open svg rect {
        fill: #ffffff;
    }

    .header-nav--show {
        display: none;
    }

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

    .header--scrolled .header-nav__logo {
        display: block;
    }

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

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

    .header-nav li a:hover {
        text-decoration: underline
    }

    .header-menu-close {
        width: 40px;
        height: 40px;
        position: relative
    }

    .header-menu-close__mobile {
        display: none
    }

    .header-menu-close__desk {
        display: block
    }
}


/* .hero */

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

.hero-bg {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

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

.hero-head {
    padding: 100px 0 40px;
    position: relative;
    color: #fff;
}

.hero-head__bg {
    position: absolute;
    top: 0;
    right: -16px;
    bottom: 0;
    left: -16px;
    z-index: 4;
}

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

.hero-head__content {
    position: relative;
    z-index: 5;
}

.hero-head__title {
    font-family: "Lora";
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 28px;
}

.hero-head__content ul {
    padding-left: 15px;
    margin-bottom: 64px;
}

.hero-head__content li {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.hero-head__btn {
    width: 100%;
}


@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 {
        display: block;
    }

    .hero-head {
        color: #fff;
        padding: 56px 20px 0 0;
        max-width: 579px;
    }

    .hero-head__bg {
        display: none;
    }

    .hero-head__content ul {
        padding-left: 21px;
    }

    .hero-head__content li + li {
        margin-top: 12px;
    }

    .hero-head__content li {
        font-size: 24px;
        font-weight: 500;
        line-height: 34px;
    }

    .hero-head__btn {
        max-width: 400px;
    }
}

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

    .hero-head__title {
        font-size: 60px;
        line-height: 70px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1100px) {
    .hero-head {
        padding: 56px 0 0 0;
    }
}

.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: normal;
    margin-bottom: 24px;
}

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

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

.hero-calc__radios {
    display: flex
}

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

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

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

.hero-calc__radios--area .hero-area-input {
    flex: 1;
}

.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 {
    background-color: #fff;
    align-items: center;
    border: 1px solid #927971;
    display: flex;
    justify-content: center;
}

.hero-area-input input {
    background-color: rgba(0, 0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: #927971;
    padding: 8px 0;
    flex: 0 0 50%;
    outline: none;
    text-align: right;
    -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;
    cursor: text;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 8px 0 8px 5px;
    flex: 0 0 50%;
}

.cust-radio-2 {
    align-items: center;
    display: flex
}

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

.cust-radio-2 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-radio-2 label::before,
.cust-radio-2 label::after {
    border-radius: 50%;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

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

.cust-radio-2 label::after {
    display: none;
    background-color: #fff;
    left: 6px;
    width: 4px;
    height: 4px;
}

.cust-radio-2 input:checked+label::before {
    background-color: #927971
}

.cust-radio-2 input:checked+label::after {
    display: block;
}

.cust-radio-2 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
    }

    .hero-calc__radios--dizajn-proekt {
        flex-direction: row;
        justify-content: space-between;
    }
}

.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
}

/* .optimize */

.optimize {
    padding: 32px 0 0;
    overflow: hidden
}

.optimize .swiper {
    overflow: visible
}

.optimize h2 {
    margin-bottom: 24px
}

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

.optimize-slide {
    position: relative
}

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

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

.optimize-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
}

.optimize-slide__content {
    color: #fff;
    display: flex;
    align-items: flex-start;
    font-size: 20px;
    line-height: 28px;
    padding: 20px 32px 0 15px;
    z-index: 3;
}

.optimize-slide__content img {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    margin-right: 10px;
}

.optimize-slide__content {
    flex: 1;
}

.optimize-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
}

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

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

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

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

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

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

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

@media(min-width: 768px) {
    .optimize {
        padding-bottom: 50px;
    }
    
    .optimize__carousel {
        margin: -8px;
    }

    .optimize__carousel .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    .optimize__carousel .swiper-slide {
        padding: 8px;
        width: 62.13%;
    }

    .optimize__carousel .swiper-slide:first-child,
    .optimize__carousel .swiper-slide:last-child {
        flex: 0 0 37.87%;
    }
 
    .optimize-pag, .optimize-nav {
        display: none
    }

    .optimize-slide__shadow {
        background-image: linear-gradient(181deg, rgba(16, 16, 16, 0.70) 19.89%, rgba(49, 48, 44, 0.00) 66.6%);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .optimize-slide__content {
        font-size: 14px;
        line-height: 19px;
    }

    .optimize-slide__content--3 p {
        max-width: 350px;
    }
}

@media(min-width: 1024px) {
    .optimize {
        padding: 50px 0;
    }
}

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

/* .advantages */

.advantages {
    background-color: #679570;
    color: #fff;
    padding: 32px 0;
    margin-top: 0;
}

.advantages h2 {
    margin-bottom: 24px;
    max-width: 600px;
}

.advantages__body {
    max-width: 375px;
}

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

.advantages-item {
    padding: 8px;
    flex: 0 0 100%;
}

@media (max-width: 499px) {
    .advantages-item:nth-child(even) .advantages-item__wrapper {
        flex-direction: row-reverse;
    }
}

.advantages-item__wrapper {
    align-items: center;
    display: flex;
    gap: 26px;
    height: 100%;
}

.advantages-item__icon {
    box-shadow: 0px 10px 20px 0px rgba(158, 109, 56, 0.10);
    background-color: #FFFFFF;
    border-radius: 50%;
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    position: relative;
}

.advantages-item__icon img {
    width: 30px;
    height: 30px;
}

.advantages-item__wrapper p {
    font-size: 16px;
    line-height: 26px;
    flex: 1;
}

@media (min-width: 500px) {
    .advantages__body {
        max-width: initial;
    }
}

@media (min-width: 768px) {
    .advantages-item {
        flex: 0 0 50%;
    }

    .advantages-item:nth-child(3) {
        order: 1;
    }
    .advantages-item:nth-child(5) {
        order: 2;
    }
}

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

    .advantages h2 {
        margin-bottom: 48px;
        max-width: 738px;
    }

    .advantages-item {
        flex: 0 0 33.3333333333%;
    }

    .advantages-item__icon img {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }

    .advantages-item__wrapper p {
        font-size: 20px;
        line-height: 30px;
    }

    .advantages-item:nth-child(1) p {
        max-width: 210px;
    }
}

@media (min-width: 1200px) {
    .advantages__wrapper {
        margin: -20px -15px;
    }

    .advantages-item {
        padding: 20px 15px;
        flex: 0 0 33.3333333333%;
    }
}

/* .works */

.works {
    padding: 32px 0;
    overflow: hidden;
}

.works h2 {
    margin-bottom: 32px;
}

.works .swiper {
    overflow: visible;
}

.swiper-slide--desk {
    display: none;
}

.works-item-mobile {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.works-item-mobile a {
    display: block;
    grid-column: span 1;
    grid-row: span 1;
}

.works-item-mobile a:first-child,
.works-item-mobile a:last-child {
    grid-column: span 2;
}

.works-item-desk a {
    display: block;
}

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

.works-pag__item {
    background-color: #e0dcd9;
    height: 2px;
    max-width: 65px;
    flex-grow: 1;
    flex-basis: 0;
}

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

.works-nav {
    display: flex;
    gap: 12px;
}

.works-nav__item {
    flex-grow: 1;
    flex-basis: 0;
}

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

    .works .swiper-slide--desk {
        display: block;
    }
}

@media (min-width: 1024px) {
    .works {
        padding: 40px 0 30px;
    }

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

    .works-nav {
        gap: 16px;
        max-width: 572px;
        margin: 0 auto;
    }
}

/* .prices */

.prices {
    padding: 32px 0;
    overflow: hidden;
}

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

.prices__subtitle {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 22px;
}

.prices .swiper {
    overflow: visible
}

.prices__carousel {
    max-width: 93%
}

@media (min-width: 500px) and (max-width: 767px) {
    .prices__carousel {
        max-width: 435px;
    }
}

.prices .swiper-slide {
    height: auto
}

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

    .prices__subtitle {
        font-size: 24px;
        font-weight: 500;
        line-height: 34px;
    }

    .prices__carousel {
        max-width: none;
        max-width: initial
    }
}

.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__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-family: 'Lora';
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.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: 1024px) {
    .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: 1024px) {
    .prices-pag {
        display: none
    }
}

/* .control */

.control {
    padding: 32px 0;
}

.control__content {
    margin-bottom: 24px;
}

.control__content h2 {
    margin-bottom: 12px;
}

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

.control__pic img {
    border-radius: 10px;
    box-shadow: 0px 2px 24px 0px rgba(26, 49, 89, 0.25);
}

@media (min-width: 768px) {
    .control__body {
        display: flex;
        justify-content: space-between;
    }

    .control__content {
        margin: 0;
        flex: 0 0 50%;
        padding-right: 20px;
        max-width: 560px;
    }
    
    .control__pic {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .control {
        padding: 70px 0 65px;
    }

    .control__content {
        flex: 1;
        max-width: 575px;
    }

    .control__content p {
        font-size: 24px;
        line-height: 34px;
    }

    .control__pic {
        max-width: 486px;
        flex: 0 0 486px;
    }
}


/* .materials */

.materials {
    background-color: #F5F1EE;
    padding: 32px 0;
}

.materials h2 {
    margin-bottom: 12px;
}

.materials p {
    font-size: 16px;
    line-height: 22px;
    max-width: 840px;
    margin-bottom: 32px;
}

.materials__btns {
    align-items: stretch;
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.materials__btn {
    border: 1px solid #927971;
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    flex-grow: 1;
    flex-basis: 0;
}

.materials__btn--active {
    background-color: #927971;
    color: #fff;
}

.materials__tab {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px 15px;
}

.materials__tab--show {
    display: flex;
}

.materials__tab picture {
    /* width: 70px;
    height: 70px; */
    flex: 0 0 70px;
}

.materials__tab picture 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
}

.materials__btns, .materials__tabs {
    max-width: 400px;
}

@media(min-width: 768px) {
    .materials__btns,
    .materials__tabs {
        max-width: initial;
    }
}

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

    .materials p {
        font-size: 24px;
        font-weight: 500;
        line-height: 34px;
        margin-bottom: 60px;
    }

    .materials__btns {
        margin-bottom: 60px;
        gap: 24px;
    }

    .materials__tab picture {
        flex: 0 0 100px;
    }
}

/* .team */

.team {
    padding: 32px 0;
    overflow: hidden;
}

.team .swiper {
    overflow: visible;
}

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

.team__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 24px;
}

.team-item {
    user-select: none;
}

.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
}

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

.team-pag__item {
    background-color: #e0dcd9;
    height: 2px;
    max-width: 65px;
    flex-grow: 1;
    flex-basis: 0;
}

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

.team-nav {
    display: none;
    gap: 16px;
    max-width: 572px;
    margin: 40px auto 0;
}

.team-nav__item {
    flex-grow: 1;
    flex-basis: 0;
}

@media (min-width: 768px) {
    .team-nav {
        display: flex;
    }
}

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

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

    .team__subtitle {
        display: none;
    }

    .team__carousel .swiper {
        width: 85%;
        margin: 0;
    }

    .team-item__name {
        font-size: 28px;
        line-height: 33px;
    }

    .team-item__post {
        font-size: 16px;
        line-height: 30px;
    }
}

@media (min-width: 1200px) {
    .team__carousel .swiper {
        width: 90%;
    }

    .team-item__picture {
        margin-bottom: 24px;
    }
}

/* .contacts */

.contacts {
    padding: 32px 0;
}

.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 60px;
    }

    .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__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
    }
}
