@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;600&display=swap');

@font-face {
    font-family: 'Skia';
    src: url('/assets/fonts/Skia.ttf');
}

@font-face {
    font-family: 'Liber';
    src: url('/assets/fonts/LiberationSerif-Regular.ttf');
}

@font-face {
    font-family: 'Liber-Bold';
    src: url('/assets/fonts/LiberationSerif-Bold.ttf');
}

* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    background: #FFFFFF;
    font-family: 'Liber', sans-serif;
    position: relative;
}

.amo {
    position: fixed;
    right: 130px;
    bottom: 10px;
    z-index: 9;
}

.amoforms_iframe {
    max-width: 540px !important;
    width: 100% !important;
}

.amo button {
    font-family: 'Liber', sans-serif !important;
    height: 30px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    transition: all .5s;
    background-color: #0064E4 !important;
}

.amo button:hover {
    transform: scale(1.05);
}

.banner {
    width: 100%;
    height: 500px;
    background-image: url('/assets/img/banner.webp');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    transition: all .5s;
    background-size: 120%;
    background-position: left;
    animation: animatedBackground 15s linear infinite;
    -moz-animation: animatedBackground 15s linear infinite;
    -webkit-animation: animatedBackground 15s linear infinite;
    -ms-animation: animatedBackground 15s linear infinite;
    -o-animation: animatedBackground 15s linear infinite;
}

.banner__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: black;
    opacity: .3;
    z-index: 2;
    transition: all .5s;
}

.banner__container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    height: 230px;
    margin-top: 40px;
}

.body_over {
    overflow: hidden;
}

.modal_bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 130vh;
    background: rgba(0, 0, 0, .85);
    z-index: 33;
}

.modal {
    display: none;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 700px;
    height: 500px;
    z-index: 44;
    background: repeating-linear-gradient(-45deg, #FCFAF7 0 4px, #FFFFFF 5px 12px);
    border: 1px solid #E5E8F0;
    padding: 30px 50px;
    box-sizing: border-box;
    flex-direction: column;
    -webkit-box-shadow: 0px 0px 28px 19px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 0px 0px 28px 19px rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 28px 19px rgba(255, 255, 255, 0.2);
}

.modal_close {
    position: absolute;
    right: 15px;
    top: 15px;
    background-image: url('/assets/img/close_modal.png');
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    transition: all .5s;
}

.modal_close:hover {
    transform: scale(1.08);
}

.mobile__menu {
    display: none;
    width: 100%;
    height: 100%;
    background-color: #686668;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: .99;
}

.mapik1_2, .mapik2_2 {
    display: none;
}

.header, .main, .footer {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(0, 0, 0, .3);
}

.header__container {
    max-width: 100%;
    width: 100%;
    display: flex;
    padding: 15px 100px;
    justify-content: flex-end;
    box-sizing: border-box;
    align-items: center;
}

.header__logo-box {
    position: absolute;
    width: 215px;
    height: 150px;
    background-color: #016AF3;
    top: 0;
    left: 90px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
    box-sizing: border-box;

}

.header__logo {
    width: 90%;
}

.header__nav {
    max-width: 68%;
    width: 100%;
    margin-right: 70px;
}

.header__nav-list {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.header__nav-item {
    list-style: none;
}

.header__nav-url {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    line-height: 1.3;
}

.header__nav-item a:after {
    background-color: #FFFFFF;
    display: block;
    content: "";
    height: 1px;
    width: 0%;
    -webkit-transition: width .3s ease-in-out;
    -moz--transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}

.header__nav-item a:hover:after,
.header__nav-item a:focus:after {
    width: 100%;
}

.header__contacts {
    display: flex;
    flex-direction: column;
}

.header__contacts>a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.header__contacts .header__contacts-phone {
    color: #E5B57D;
}

.header__contacts-email {
    margin-bottom: 10px;
}

.main {
    position: relative;
}

@keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: -180px 0;
    }

    100% {
        background-position: 0 0;
    }
}

@-moz-keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -180px 0;
    }
}

@-webkit-keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -180px 0;
    }
}

@-ms-keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -180px 0;
    }
}

@-o-keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -180px 0;
    }
}

.banner__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 58px;
    color: #FFFFFF;
    z-index: 5;
    text-align: center;
    font-family: 'Skia', sans-serif;
}

.banner__title span {
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    color: #FFFFFF;
    font-family: 'Liber', sans-serif;
}

.banner__subtitle {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: #FFFFFF;
    z-index: 5;
}

.banner__btn {
    text-decoration: none;
    z-index: 5;
    background: #B5936C;
    border-radius: 10px;
    padding: 0 25px;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    cursor: pointer;
    color: #FFFFFF;
}

.about-vill, .about-company {
    width: 100%;
    display: flex;
    position: relative;
    background-color: #FCFAF7;
}

.about__company-logo {
    object-fit: contain;
    width: 345px;
}

.about-company__top, .about-company__bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-company__bot {
    margin-top: 20px;
}

.about-company__text-box {
    max-width: 68%;
    width: 100%;
}

.about-company__text {
    color: #484848;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
    margin-bottom: 20px;
}

.about-company__bot .about-company__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #484848;
    margin-bottom: 0;
}

.about-company__bot .about-company__text span {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #B5936C;
}

.about-company__bot .about-company__text-box {
    display: flex;
    max-width: 68%;
    width: 100%;
    justify-content: space-between;
}

.about-company__item {
    max-width: 20%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #484848;
}

.about-company__item span {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #B5936C;
}


.section-subtitle {
    position: absolute;
    top: 75px;
    left: 10%;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #A98863;
    text-transform: uppercase;
}

.about-vill .section-subtitle {
    top: 55px;
}

.section-subtitle::before {
    content: '';
    background-image: url('/assets/img/section-subtitle.png');
    position: absolute;
    left: -215px;
    width: 200px;
    top: 8px;
    background-repeat: no-repeat;
    height: 1px;
}

.about-vill__container, .about-company__container {
    display: flex;
    padding: 125px 11.2% 35px;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}

.about-company__container {
    flex-direction: column;
}

.about-vill__left {
    display: flex;
    flex-direction: column;
}

.about-vill__img {
    width: 100%;
    height: 365px;
    object-fit: contain;
}

.about-vill__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #B5936C;
    margin-bottom: 20px;
}

.about-vill__text {
    color: #484848;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
}

.about-vill__left {
    max-width: 45%;
    width: 100%;
}

.about-vill__right {
    max-width: 47%;
    width: 100%;
}

.advant {
    position: relative;
    padding: 165px 11.2% 25px;
    background: repeating-linear-gradient(-45deg, #FCFAF7 0 4px, #FFFFFF 5px 12px);
}

.advant__container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.advant__item {
    display: flex;
    max-width: 19%;
    width: 100%;
    margin-bottom: 60px;
    align-items: center;
    justify-content: flex-start;
}

.advant__item-img {
    margin-right: 12px;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.advant__item-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    width: 160px;
    margin-left: 7px;
}

.present {
    width: 100%;
    background: repeating-linear-gradient(-45deg, #DFD7D1 0 4px, #E4DCD6 5px 12px);
    padding: 40px 11.2% 50px;
    display: flex;
    box-sizing: border-box;
    height: 385px;
    justify-content: space-between;
    position: relative;
}

.present__container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    max-width: 370px;
    width: 100%;
    height: 214px;
    background: #EDE8E2;
    box-shadow: 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 23px 50px;
}

.present.present_new {
    height: auto;
    margin: 20px 0;
}
.present__container.present__container_new {
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    height: auto;
}

.present__img {
    width: 945px;
    position: absolute;
    right: 170px;
    top: 108px;
    transform: rotate(-7deg);
    z-index: 2;
}

.present__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
    text-transform: uppercase;
    color: #B5936C;
}
.present__container.present__container_new .present__title {
    margin-bottom: 20px;
}
.new_present__btn,
.present__btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: #FFFFFF;
    background: #0064E4;
    border-radius: 5px;
    text-decoration: none;
    width: 200px;
    text-align: center;
    box-sizing: border-box;
}

.shilovka {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 90px;
    background-color: #FFFFFF;
}

.section__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 41px;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    text-align: center;
    margin-bottom: 38px;
    color: #B5936C;
}

.shilovka .section-subtitle {
    top: -37px;
}

.section-type {
    display: flex;
    justify-content: center;
    padding: 0 11.2% 29px;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #484848;
}

.section__title::before {
    background-image: url('/assets/img/section__title.png');
    left: 0;
}

.section__title::after {
    background-image: url('/assets/img/section__title.png');
    right: 0;
    transform: rotate(180deg);
}

.shilovka__flex-box {
    display: flex;
    padding: 0 11.2%;
    justify-content: space-between;
}

.shilovka__btn-container {
    display: flex;
    padding: 0 125px;
    margin-bottom: 40px;
    justify-content: center;
}

.moldovka {
    margin-bottom: 90px;
}

.menu__btn {
    max-width: 305px;
    width: 100%;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    background-color: #FFFFFF;
    border: 1px solid #733D00;
    text-decoration: none;
    text-align: center;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
}

.menu__btn:first-child {
    border-radius: 5px 0px 0px 5px;
}

.menu__btn:last-child {
    border-radius: 0px 5px 5px 0px;
}

.menu__btn span {
    color: #484848
}

.menu__btn:hover {
    background-color: #B5936C;
}

.menu__btn:hover span {
    color: white;
}

.shilovka__slider {
    max-width: 800px;
    width: 100%;
    height: 400px;
    position: relative;
}

.moldovka_2, .moldovka_3 {
    display: none !important;
}

.moldovka__slide3 {
    display: none;
}

.slick_arrow {
    position: absolute;
    z-index: 5;
    top: 170px;
    cursor: pointer;
    transition: all .5s;
    width: 25px;
}

.slider__img {
    height: 100%;
    object-fit: contain !important;
    width: 100%;
}

.slick_arrow:hover {
    transform: scale(1.2);
}

.slick-slide {
    height: 400px !important;
}

.prev_arrow {
    left: 30px;
}

.next_arrow {
    right: 30px;
}

.shilovka__text-box {
    background: #F0F0F0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 600px;
    border: 1px solid #E5E8F0;
    width: 100%;
    padding: 25px 60px;
    box-sizing: border-box;
    position: relative;
    background: repeating-linear-gradient(-45deg, #FCFAF7 0 4px, #FFFFFF 5px 12px);
}

.shilovka__text {
    display: flex;
    justify-content: space-between;
    line-height: 34px;
}

.modal .shilovka__text {
    display: flex;
    justify-content: space-between;
    line-height: 34px;
}

.shilovka__text span:last-child {
    width: 190px;
    text-align: left;
}

.shilovka__text span:first-child {
    font-weight: bold;
}

.corner {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-image: url('/assets/img/corner.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.shilovka__btn-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 41px;
    align-items: flex-end;
}

.shilovka__btn-about {
    color: #016AF3;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

.shilovka__btn-about:after {
    background-color: #016AF3;
    display: block;
    content: "";
    height: 2px;
    width: 0%;
    -webkit-transition: width .3s ease-in-out;
    -moz--transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}

.shilovka__btn-about:hover:after,
.shilovka__btn-about:focus:after {
    width: 100%;
}

.shilovka__btn-price {
    background: #B5936C;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    padding: 12px 20px;
    cursor: pointer;
}

.shilovka__about-btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-decoration-line: underline;
    color: #B5936C;
    cursor: pointer;
}

.shilovka__text {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    text-align: justify;
    color: #0A0A0A;
    position: relative;
}

.shilovka__text::before {
    content: "";
    position: absolute;
    left: -16px;
    background-size: contain;
    top: 16px;
    width: 10px;
    height: 11px;
    background-image: url('/assets/img/shilovka__text-before.png');
}

.shilovka__text-hide-before::before {
    display: none;
}

.shilovka2, .shilovka3 {
    padding-top: 15px;
}

.shilovka3 .section-subtitle {
    top: -65px;
}

.shilovka3 {
    margin-top: 157px;
}

.pay {
    width: 100%;
    padding: 144px 11.2% 100px;
    display: flex;
    box-sizing: border-box;
    height: 440px;
    justify-content: space-between;
    position: relative;
    background: repeating-linear-gradient(-45deg, #DFD7D1 0 4px, #E4DCD6 5px 12px);
}

.pay .section-subtitle {
    top: 63px;
}

.pay__backitem {
    position: absolute;
    right: 0;
    width: 478px;
    height: 228px;
    top: 60px;
    background-image: url('/assets/img/pay_back.png');
}

.pay__text-box {
    display: flex;
    flex-direction: column;
    max-width: 57%;
    width: 100%;
    justify-content: space-around;
    background: #EDE8E2;
    box-shadow: 0px 8px 10px rgb(0 0 0 / 25%);
    padding: 23px 223px 23px 44px;
    box-sizing: border-box;
    height: 170px;
}

.pay__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;
    color: #B5936C;
    margin-bottom: 30px;
}

.pay__btn {
    background: #016AF3;
    border-radius: 10px;
    display: flex;
    color: #FFFFFF;
    justify-content: center;
    align-items: center;
    width: 264px;
    height: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    cursor: pointer;
    padding: 2px 12px;
}

.pay__items {
    display: flex;
    z-index: 6;
    justify-content: space-between;
    max-width: 33%;
    width: 100%;
    align-items: center;
}

.pay__item {
    display: flex;
    flex-direction: column;
    width: 100px;
    align-items: center;
}

.pay__img {
    width: 70px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 10px;
}

.pay__name {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    text-transform: lowercase;
    color: #020202;
    height: 40px;
}

.map {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    padding: 150px 0 0 0;
    position: relative;
}

.map__btn-box {
    width: 100%;
    display: flex;
    text-decoration: none;
}

.map__btn {
    text-decoration: none;
    width: 50%;
    height: 50px;
    background: #E5E8F0;
    border: 1px solid #E5E8F0;
    color: rgba(7, 7, 7, 0.6);
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.map__btn:first-child {
    border-right: none;
}

.active-btn {
    background: #B5936C;
}

.active-btn__map {
    background: #5A5A5A;
    color: #FFFFFF;
}

.active-btn span {
    color: #FFFFFF;
}

.map__maps-box {
    width: 100%;
    height: 400px;
    display: block;
}

.map__maps-box_disabled {
    display: none;
}

.map__text-box {
    padding: 32px 11.2% 32px 467px;
    box-sizing: border-box;
    background: #F0F0F0;
    position: relative;
}

.map__logo-box {
    position: absolute;
    top: 0;
    left: 215px;
    width: 155px;
    height: 125px;
    display: flex;
    background: #016AF3;
    align-items: center;
    justify-content: center;
}

.map__logo {
    width: 127px;
    height: 33px;
    margin-top: 25px;
    object-fit: contain;
}

.map__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
    color: #000000;
    max-width: 45%;
    width: 100%;
}

.gallery {
    padding: 130px 11.2% 100px;
    height: 690px;
    background-color: #FFFDFD;
    position: relative;
    background: rgb(200, 200, 200);
    background: linear-gradient(184deg, rgba(200, 200, 200, 0.8326681014202556) 0%, rgba(255, 255, 255, 0.7178221630449055) 28%);
}

.gallery .section-subtitle {
    top: 57px;
}

.gallery__slider {
    height: 690px;
}

.gallery__slide {
    height: 690px !important;
}

.gallery__slider .slick-arrow {
    top: 325px;
}

.slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    background: repeating-linear-gradient(-45deg, #686668 0 4px, #6B6D6B 5px 12px);
    display: flex;
    flex-direction: column;
    padding: 50px 11.2%;
    box-sizing: border-box;
}

.footer__top {
    width: 100%;
    display: flex;
    padding: 0 50px 43px;
    justify-content: space-between;
    border-bottom: 1px solid #FFFFFF;
    align-items: flex-end;
    box-sizing: border-box;
}

.footer__nav {
    margin-top: 27px;
    margin-bottom: 20px;
}

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

.footer__list-item {
    list-style: none;
}

.footer__list-url {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer__logo {
    width: 230px;
}

.footer__list-item a:after {
    background-color: #FFFFFF;
    display: block;
    content: "";
    height: 1px;
    width: 0%;
    -webkit-transition: width .3s ease-in-out;
    -moz--transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}

.footer__list-item a:hover:after,
.footer__list-item a:focus:after {
    width: 100%;
}

.footer_box {
    display: flex;
    flex-direction: column;
}

.footer__text-top {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #D9D9D9;
    margin-bottom: 8px;
}

.footer__text, .footer__phone, .footer__email {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.shilovka__text-box3_mobile, .shilovka__text-box1_mobile, .shilovka__text-box2_mobile, .movdovka__text-box_mobile {
    display: none;
}

.modal .shilovka__text::before {
    top: 12px;
}

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

.map__text-container .shilovka__text {
    max-width: 510px;
}

.map__text-container-disabled {
    display: none;
}

@-webkit-keyframes animate-modal-logo {
    0% {
        background-position: 0 3200px;
    }
    100% {
        background-position: 3200px 0;
    }
}

.modal.modal_price1{
    background: url(../res/s4.jpg);
    background-position: center;
    background-size: cover;
}

.modal.modal_price2{
    background: url(../res/s3.jpg);
    background-position: center;
    background-size: cover;
}

.modal.modal_price3{
    background: url(../res/s1.jpg);
    background-position: center;
    background-size: cover;
}

.modal.modal_price{
    box-shadow: none;
    width: 1000px;
    font-family: 'Open Sans', sans-serif;
}

.modal.modal_price .modal_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.modal.modal_price h2 {
    font-size: 50px;
    margin: 0 0 20px 0;
    background: -webkit-linear-gradient(left, #F99746, #1cb495, #ffffff, #1cb495, #F99746);
    background: linear-gradient(left, #F99746, #F99746, #1cb495, #ffffff, #1cb495, #F99746);
    background-size: 3200px 200px;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-animation: animate-modal-logo;
    -webkit-animation-delay: 0;
    -webkit-animation-duration: 7s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    transition: font-size 500ms ease-in-out;
}

.modal.modal_price h3 {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 40px 0;
}

#modal_price_signup_form input[type="text"],
#modal_price_signup_form input[type="tel"],
#modal_price_signup_form input[type="email"],
#modal_price_signup_form select,
#modal_price_signup_form textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -moz-transition: border-color 0.2s ease, background-color 0.2s ease;
    -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
    -ms-transition: border-color 0.2s ease, background-color 0.2s ease;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    border-radius: 6px;
    border: solid 2px rgba(255, 255, 255, 0.35);
    display: block;
    outline: 0;
    padding: 0 1em;
    text-decoration: none;
    width: 100%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.35);
}

#modal_price_signup_form input[type="text"]:invalid,
#modal_price_signup_form input[type="tel"]:invalid,
#modal_price_signup_form input[type="email"]:invalid,
#modal_price_signup_form select:invalid,
#modal_price_signup_form textarea:invalid {
    box-shadow: none;
}

#modal_price_signup_form input[type="text"]:focus,
#modal_price_signup_form input[type="tel"]:focus,
#modal_price_signup_form input[type="email"]:focus,
#modal_price_signup_form select:focus,
#modal_price_signup_form textarea:focus {
    -moz-animation: focus 0.1s;
    -webkit-animation: focus 0.1s;
    -ms-animation: focus 0.1s;
    animation: focus 0.1s;
    border-color: #1cb495;
}

#modal_price_signup_form {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    position: relative;
    flex-wrap: wrap;
}

#modal_price_signup_form input[type="text"],
#modal_price_signup_form input[type="tel"],
#modal_price_signup_form input[type="email"] {
    width: 300px;
    height: 50px;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
}

#modal_price_signup_form > * {
    margin: 0 0 0 1em;
    font-family: 'Open Sans', sans-serif;
}

#modal_price_signup_form > :first-child {
    margin: 0 0 0 0;
}

#modal_price_signup_form  ::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1.0;
}

#modal_price_signup_form  :-moz-placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1.0;
}

#modal_price_signup_form  ::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1.0;
}

#modal_price_signup_form  :-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1.0;
}

#modal_price_signup_form input[type="submit"],
#modal_price_signup_form input[type="reset"],
#modal_price_signup_form input[type="button"],
#modal_price_signup_form button,
#modal_price_signup_form .button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out;
    background-color: #1cb495;
    border-radius: 6px;
    border: 0;
    color: #ffffff !important;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    font-size: 20px;
    height: 54px;
    line-height: 2.75em;
    padding: 0 1.125em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    font-family: 'Open Sans', sans-serif;
    margin: 20px 0 0 0;
}

#modal_price_signup_form input[type="submit"]:hover,
#modal_price_signup_form input[type="reset"]:hover,
#modal_price_signup_form input[type="button"]:hover,
#modal_price_signup_form button:hover,
#modal_price_signup_form .button:hover {
    background-color: #1fcaa7;
}

#modal_price_signup_form input[type="submit"]:active,
#modal_price_signup_form input[type="reset"]:active,
#modal_price_signup_form input[type="button"]:active,
#modal_price_signup_form button:active,
#modal_price_signup_form .button:active {
    background-color: #199e83;
}

#modal_price_signup_form input[type="checkbox"],
#modal_price_signup_form input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    float: left;
    margin-right: -2em;
    opacity: 0;
    width: 1em;
    z-index: -1;
}

#modal_price_signup_form input[type="checkbox"] + label,
#modal_price_signup_form input[type="radio"] + label {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    font-size: 1em;
    font-weight: 400;
    padding-left: 2.4em;
    padding-right: 0.75em;
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
}

#modal_price_signup_form input[type="checkbox"] + label:before,
#modal_price_signup_form input[type="radio"] + label:before {
    background: rgba(255, 255, 255, 0.125);
    border-radius: 6px;
    border: solid 2px rgba(255, 255, 255, 0.35);
    content: '';
    display: inline-block;
    height: 1.65em;
    left: 0;
    line-height: 1.58125em;
    position: absolute;
    text-align: center;
    top: 0;
    width: 1.65em;
}

#modal_price_signup_form input[type="checkbox"]:checked + label:before,
#modal_price_signup_form input[type="radio"]:checked + label:before {
    background-color: #1cb495;
    border-color: #1cb495;
    color: #ffffff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}

#modal_price_signup_form input[type="checkbox"]:focus + label:before,
#modal_price_signup_form input[type="radio"]:focus + label:before {
    border-color: #1cb495;
    box-shadow: 0 0 0 2px #1cb495;
}

#modal_price_signup_form input[type="radio"] + label:before,
#modal_price_signup_form input[type="checkbox"] + label:before {
    border-radius: 6px;
}

#modal_price_signup_form > .modal_price_radio{
    display: flex;
    align-items: center;
    margin: 20px 0 0 0;
    width: 100%;
}

@-moz-keyframes focus {
    0% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.025);
        -webkit-transform: scale(1.025);
        -ms-transform: scale(1.025);
        transform: scale(1.025);
    }

    100% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes focus {
    0% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.025);
        -webkit-transform: scale(1.025);
        -ms-transform: scale(1.025);
        transform: scale(1.025);
    }

    100% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes focus {
    0% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.025);
        -webkit-transform: scale(1.025);
        -ms-transform: scale(1.025);
        transform: scale(1.025);
    }

    100% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes focus {
    0% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.025);
        -webkit-transform: scale(1.025);
        -ms-transform: scale(1.025);
        transform: scale(1.025);
    }

    100% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@media screen and (max-width: 1720px) {
    .header__nav {
        max-width: 64%;
    }

    .shilovka__slider {
        width: 60%;
    }

    .shilovka__text-box {
        max-width: 35%;
        padding: 25px 30px;
    }

    .pay__text-box {
        height: 195px;
    }
}

@media screen and (max-width: 1550px) {
    .about__company-logo {
        width: 300px;
    }
    .about-vill__img {
        height: 100%;
    }

    .header__logo-box {
        width: 190px;
        height: 140px;
    }

    .header__nav {
        margin-right: 45px;
    }

    .banner, .banner__background {
        height: 450px;
    }

    .about-vill__container, .about-company__container {
        padding: 125px 8% 35px;
    }

    .about-vill__left {
        max-width: 48%;
    }

    .shilovka__btn-price {
        padding: 5px 45px;
        font-size: 20px;
    }

    .advant {
        padding: 125px 8% 10px;
        ;
    }

    .advant .section-subtitle {
        top: 53px;
    }

    .present {
        padding: 40px 8%;
        ;
    }

    .present__container {
        max-width: 490px;
    }

    .present__img {
        width: 830px;
        top: 69px;
    }

    .shilovka__flex-box {
        padding: 0 8%;
    }

    .shilovka__text-box {
        max-width: 37%;
    }

    .shilovka__text {
        line-height: 30px;
    }

    .shilovka__text::before {
        top: 9px;
    }

    .shilovka {
        margin-top: 80px;
    }

    .shilovka .section-subtitle {
        top: -30px;
    }

    .pay {
        padding: 100px 8%;
    }

    .pay .section-subtitle {
        top: 44px;
    }

    .map .section-subtitle {
        top: 65px;
    }

    .gallery .section-subtitle {
        top: 43px;
    }

    .map__text-box {
        padding: 32px 8% 32px 350px;
    }

    .gallery {
        padding: 100px 8%;
    }

    .footer {
        padding: 50px 8%;
    }

    .map__logo-box {
        left: 100px;
    }

    .pay__text-box {
        height: 215px;
        padding: 23px 125px 23px 44px;
    }
}

@media screen and (max-width: 1440px) {
    .present__img {
        width: 775px;
        right: 55px;
    }

    .next_arrow {
        right: 0;
    }

    .prev_arrow {
        left: 0;
    }
}

@media screen and (max-width: 1280px) {
    .about__company-logo {
        width: 250px;
    }

    .shilovka__text::before {
        top: 9px;
        left: -13px;
    }

    .header__logo-box {
        width: 135px;
        height: 105px;
        left: 61px;
    }

    .header__container {
        padding: 15px 45px;
    }

    .header__nav {
        font-size: 13px;
        margin-right: 25px;
        max-width: 66%;
    }

    .header__contacts-phone {
        font-size: 15px;
    }

    .about-vill__img {
        height: 100%;
        object-fit: cover;
    }

    .about-vill__container, .about-company__container {
        padding: 100px 7% 35px;
    }

    .about-vill .section-subtitle {
        top: 40px;
    }

    .section-subtitle {
        left: 90px;
    }

    .advant .section-subtitle {
        top: 35px;
    }

    .advant {
        padding: 90px 7% 0;
    }

    .advant__item-text {
        width: 100px;
    }

    .present {
        padding: 40px 7%;
        height: 335px;
    }

    .present__title {
        font-size: 22px;
    }

    .present__img {
        width: 600px;
        top: 50px;
    }

    .present__container {
        padding: 20px 25px;
        max-width: 365px;
    }

    .map {
        padding: 130px 0 0 0;
    }

    .map .section-subtitle {
        top: 55px;
    }

    .menu__btn {
        max-width: 220px;
        height: 40px;
        font-size: 22px;
    }

    .shilovka .shilovka__slider {
        width: 55%;
        height: 300px;
    }

    .shilovka .slick-slide {
        height: 300px !important;
    }

    .slick_arrow {
        top: 130px;
    }

    .shilovka {
        margin-top: 35px;
    }

    .shilovka3 {
        padding-top: 50px;
    }

    .shilovka .section-subtitle {
        top: 5px;
    }

    .next_arrow {
        right: 8px;
    }

    .prev_arrow {
        left: 8px
    }

    .menu__btn span {
        font-size: 20px;
    }

    .shilovka__text-box {
        max-width: 44%;
        padding: 15px 30px;
    }

    .shilovka__text {
        line-height: 30px;
    }

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

    .shilovka__flex-box {
        padding: 0 7%;
    }

    .pay {
        padding: 100px 7% 60px;
        height: auto;
    }

    .pay__text-box {
        padding: 20px;
    }

    .map__logo-box {
        left: 82px;
    }

    .map__text-box {
        padding: 32px 7% 32px 293px;
    }

    .shilovka1 {
        margin-top: 50px;
    }

    .gallery__slide {
        height: 470px !important;
    }

    .gallery__slider, .gallery {
        height: auto;
    }

    .gallery__slider .slick-arrow {
        top: 220px;
    }

    .gallery {
        padding: 100px 7% 80px;
    }

    .footer {
        padding: 50px 7%;
    }
}

@media screen and (max-width: 1025px) {
    .modal.modal_price{
        width: 100%;
        height: 100%;
        overflow: auto;
        padding: 10px;
        z-index: 999999999999;
    }
    .modal.modal_price .modal_content{
        align-items: center;
    }
    #modal_price_signup_form{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90%;
    }
    .modal.modal_price h2 {
        font-size: 23px;
        text-align: center;
    }
    .modal.modal_price h3 {
        font-size: 18px;
        margin: 0 0 20px 0;
        text-align: center;
    }
    #modal_price_signup_form input[type="text"], #modal_price_signup_form input[type="tel"], #modal_price_signup_form input[type="email"] {
        margin: 0 0 10px 0;
        width: 100%;
        height: 40px;
        font-size: 14px;
        box-sizing: border-box;
    }
    #modal_price_signup_form input[type="submit"], #modal_price_signup_form input[type="reset"], #modal_price_signup_form input[type="button"], #modal_price_signup_form button, #modal_price_signup_form .button {
        font-size: 14px;
        height: 40px;
        width: 100%;
        display: block;
        box-sizing: border-box;
    }
    .header__logo-box {
        width: 86px;
        height: 65px;
        left: 21px;
        padding-bottom: 10px;
    }
    .about-company__text-box {
        max-width: 62%;
    }

    .header__logo {
        width: 55px;
        object-fit: contain;
    }

    .header__nav-url {
        font-size: 12px;
    }

    .header__contacts>a {
        font-size: 15px;
    }

    .header__nav {
        margin-right: 45px;
    }

    .header__container {
        padding: 25px 20px 15px 0;
    }

    .banner, .banner__background {
        height: 340px;
    }

    .banner__title {
        font-size: 35px;
    }

    .banner__title span {
        font-size: 30px;
    }

    .banner__container {
        height: 205px;
    }

    .banner__subtitle {
        font-size: 20px;
    }

    .about-vill__container, .about-company__container {
        padding: 100px 5% 35px;
    }

    .advant {
        padding: 90px 5% 0;
    }

    .advant__item {
        max-width: 27%;
    }

    .present {
        padding: 40px 5%;
        align-items: center;
    }

    .present__img {
        top: 80px;
        width: 451px;
        right: 17px;
    }

    .present__container {
        padding: 15px;
        max-width: 300px;
    }

    .present__title {
        font-size: 18px;
        margin-bottom: 15px
    }

    .section__title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .shilovka__flex-box {
        padding: 0 5%;
    }

    .shilovka .shilovka__slider {
        width: 50%;
        height: 240px;
    }

    .shilovka .slick-slide {
        height: 240px !important;
    }

    .shilovka__text-box {
        max-width: 49%;
        padding: 15px 10px;
    }

    .shilovka__text {
        line-height: 23px;
        padding-left: 10px;
    }

    .corner {
        width: 20px;
        height: 20px;
    }

    .shilovka__text::before {
        top: 7px;
        left: -6px;
    }

    .shilovka__btn-price {
        padding: 0px 45px;
        font-size: 17px;
    }

    .shilovka__btn-box {
        margin-top: 18px;
        width: 95%;
    }

    .pay {
        padding: 100px 5% 60px;
    }

    .pay__btn {
        width: 270px;
    }

    .pay__items {
        max-width: 40%;
    }

    .pay__title {
        font-size: 20px;
    }

    .slick_arrow {
        top: 100px;
    }

    .map__maps-box {
        height: 300px;
    }

    .map__btn {
        font-size: 20px;
    }

    .map__text-box {
        padding: 32px 5% 32px 189px;
    }

    .map__logo-box {
        left: 35px;
        width: 125px;
    }

    .gallery {
        padding: 100px 5% 50px;
    }

    .gallery__slide {
        height: 340px !important;
    }

    .footer {
        padding: 35px 5%;
    }

    .footer__top {
        padding: 0 0 25px;
    }

    .footer__logo {
        width: 170px;
    }

    .footer__text, .footer__list-url {
        font-size: 12px;
    }

    .prev_arrow {
        left: 15px;
    }

    .next_arrow {
        right: 15px;
    }

    .gallery__slider .slick-arrow {
        top: 160px;
    }
}

@media screen and (max-width: 769px) {
    .header, .shilovka__text-box3_descop, .shilovka__text-box1_descop, .shilovka__text-box2_descop, .shilovka__btn-about, .movdovka__text-box_descop {
        display: none;
    }

    .mapik1_2, .mapik2_2 {
        display: block;
    }

    .mapik1_1, .mapik2_1 {
        display: none;
    }

    .corner {
        width: 40px;
        height: 40px;
    }

    .shilovka__text::before {
        top: 6px;
        left: -5px;
    }

    .mobile__header {
        background: rgba(0, 0, 0, 0.7);
        height: 50px;
        position: fixed;
        z-index: 10;
        width: 100%;
        z-index: 11;
    }

    .burger-btn {
        position: absolute;
        left: 20px;
        top: 10px;
        background-image: url('/assets/img/burger-menu.png');
        width: 30px;
        height: 30px;
        background-size: contain;
    }

    .close-btn {
        background-image: url('/assets/img/close-icon.png');
        width: 30px;
        height: 30px;
        background-size: contain;
        position: absolute;
        right: 20px;
        top: 10px;
        display: none;
    }

    .mobile__container {
        margin-top: 50px;
    }

    .mobile__nav-list {
        text-align: center;
        padding-top: 50px;
    }

    .mobile__nav-item {
        list-style: none;
        margin-bottom: 15px;
    }

    .mobile__nav-url {
        color: #FFFFFF;
        text-decoration: none;
        text-align: center;
        font-size: 25px;
    }

    .mobile__box {
        position: absolute;
        right: 20px;
        top: 10px;
        display: flex;
        flex-direction: row;
        width: 110px;
        justify-content: space-between;
    }

    .mobile__whats, .mobile__phone, .mobile__telega {
        width: 30px;
        height: 30px;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .mobile__whats {
        background-image: url('/assets/img/mobile__whats.png');
    }

    .mobile__phone {
        background-image: url('/assets/img/mobile__phone.png');
    }

    .mobile__telega {
        background-image: url('/assets/img/mobile__telega.png');
    }

    .menu__mobile-box {
        position: absolute;
        left: 0;
        right: 0;
        margin: 10px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 110px;
        justify-content: space-between;
    }

    .active__mobile {
        display: block;
    }

    .banner__container {
        margin-top: 18px;
    }

    .banner__title {
        font-size: 30px;
    }

    .banner__title span {
        font-size: 23px;
    }

    .banner__subtitle {
        font-size: 20px;
    }

    .banner__btn {
        font-size: 12px;
        padding: 0 45px;
    }

    .section-subtitle {
        top: 18px;
        left: 60px;
        font-size: 13px;
    }

    .about-vill__title {
        margin-bottom: 10px;
    }

    .about-vill__img {}

    .about-vill__container {
        padding: 70px 4% 30px;
        flex-direction: column;
    }

     .about-company__container {
        padding: 70px 4% 0;
        flex-direction: column;
    }

    .about-company .section-subtitle {
        top: 30px;
    }

    .about-company__top {
        flex-direction: column;
        margin-top: 30px;
    }
    .about-company__text-box {
        max-width: 100%;
        margin-top: 30px;
    }

    .about-company__bot {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-company__bot .about-company__text-box {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        align-items: center;
    }
    .about-company__item {
        align-items: center;
        text-align: center;
        max-width: 100%;
        height: 80px;
        justify-content: space-around;
        padding: 15px 0;
    }
    .about-company__item:nth-child(odd) {
        background-color: #E4DCD6;
    }
    .about-company__bot > .about-company__text {
        width: 100%;
        text-align: center;
        font-size: 25px;
        line-height: 35px;
    }

    .about-company__bot .about-company__text span {
        font-size: 30px;
    }

    .about-company__item span {
        font-size: 35px;
    }

    .about__company-logo {
        width: 90%;
    }

    .about-vill .section-subtitle {
        top: 30px;
    }

    .about-vill__left, .about-vill__right {
        width: 100%;
        max-width: 100%;
    }

    .about-vill__text {
        font-size: 14px;
    }

    .advant__item-img {
        margin-right: 0;
        margin-bottom: 10px;
        width: 70px;
        height: auto;
    }

    .advant__item {
        flex-direction: column;
        max-width: 46%;
        margin-bottom: 25px;
    }

    .advant__item-text {
        text-align: center;
        font-size: 20px;
        line-height: 20px;
        width: 200px;
    }

    .present {
        padding: 30px 5%;
        flex-direction: column;
        height: auto;
    }

    .present__container {
        max-width: 81%;
        box-shadow: none;
        height: 165px;
    }

    .present__title {
        font-size: 20px;
        text-align: center;
    }

    .new_present__btn,
    .present__btn {
        margin: 10px auto 0;
        font-size: 18px;
    }

    .present__img {
        width: 100%;
        height: auto;
        margin: 20px auto 0;
        position: static;
    }

    .shilovka {
        margin-top: 0;
    }

    .moldovka {
        margin-bottom: 40px;
    }

    .shilovka .section-subtitle {
        top: 30px;
    }

    .shilovka__flex-box {
        flex-direction: column;
    }

    .shilovka .shilovka__slider {
        width: 100%;
    }

    .shilovka__text-box {
        max-width: 100%;
    }

    .slick_arrow {
        top: 90px;
    }

    .section__title {
        font-size: 18px;
    }

    .section__title::after, .section__title::before {
        max-width: 20%;
    }

    .section__title::before {
        top: 13px;
    }

    .section__title::after {
        top: -6px;
    }

    .shilovka__btn-container {
        padding: 10px 28px;
        margin-bottom: 15px;
    }

    .menu__btn span {
        font-size: 11px;
    }

    .menu__btn {
        height: 30px;
    }

    .shilovka__slider, .slick-slide, .slider__img {
        height: 255px !important;
    }

    .slick_arrow {
        width: 25px;
        top: 115px;
    }

    .next_arrow {
        right: 15px;
    }

    .prev_arrow {
        left: 15px;
    }

    .shilovka__text-box {
        padding: 25px 20px;
    }

    .shilovka__text {
        font-size: 14px;
    }

    .section-type {
        padding: 0 37px;
        font-size: 14px;
    }

    .shilovka2, .shilovka3, .moldovka {
        padding-top: 20px;
    }

    .shilovka3 {
        padding-top: 25px;
    }

    .shilovka3 {
        padding-top: 60px;
    }

    .section__title {
        margin-bottom: 0;
    }

    .pay {
        padding: 80px 5% 45px;
        flex-direction: column;
    }

    .pay .section-subtitle {
        top: 30px;
    }

    .menu__btn:first-child {
        border-radius: 7px 0px 0px 7px;
    }

    .menu__btn:last-child {
        border-radius: 0px 7px 7px 0px;
    }

    .pay__text-box {
        max-width: 100%;
        margin-bottom: 25px;
    }

    .pay__title {
        font-size: 16px;
        text-align: center;
    }

    .pay__btn {
        z-index: 9;
        margin: 15px auto;
    }

    .pay__items {
        max-width: 100%;
    }

    .pay__backitem {
        display: none;
    }

    .map {
        padding: 80px 0 0 0;
    }

    .map .section-subtitle {
        top: 30px;
    }

    .map__logo-box {
        display: none;
    }

    .map__btn {
        font-size: 14px;
        height: 40px;
        line-height: normal;
        padding: 5px;
    }

    .map__text-box {
        padding: 20px;
    }

    .map__text-container {
        flex-direction: column;
    }

    .map__text {
        max-width: 100%;
    }

    .gallery {
        padding: 80px 5% 20px;
    }

    .gallery .section-subtitle {
        top: 30px;
    }

    .footer {
        padding: 30px 20px 0;
    }

    .footer__top {
        flex-direction: column;
        margin-bottom: 100px;
        align-items: center;
    }

    .footer__logo, .footer_box {
        margin-bottom: 15px;
    }

    .footer__nav {
        display: none;
    }

    .banner {
        background-size: cover;
    }

    .banner__container {
        justify-content: space-evenly;
    }

    .banner__title span {
        font-size: 20px;
    }

    .banner__title {
        font-size: 28px;
        line-height: 25px;
    }

    .banner__container {
        height: 185px;
    }

    .banner__btn {
        line-height: 26px;
    }

    .about-vill__title {
        text-align: center;
    }

    .about-vill__right {
        margin-top: 10px;
    }

    .advant__item {
        max-width: 44%;
    }

    .advant__item-img {
        width: 55px;
    }

    .advant__item-text {
        width: 155px;
        font-size: 15px;
    }

    .advant {
        padding: 80px 5% 0;
    }

    .advant .section-subtitle {
        top: 30px;
    }

    .pay__btn {
        width: 215px;
        height: 50px;
        line-height: 20px;
        text-align: center;
    }

    .shilovka__btn-container {
        padding: 10px 19px;
    }

    .menu__btn {
        font-size: 18px;
    }

    .shilovka__btn-price {
        font-size: 15px;
        padding: 0px 19px;
    }

    .slick_arrow {
        top: 100px;
    }

    .gallery__slide {
        height: 220px !important;
    }

    .gallery__slider .slick-arrow {
        top: 100px;
    }

    .footer_box {
        align-items: center;
    }

    .shilovka__text-box3_mobile, .shilovka__text-box1_mobile, .shilovka__text-box2_mobile, .movdovka__text-box_mobile {
        display: flex;
        max-width: 80%;
        margin: 15px auto 0;
    }
    .about-company .section-subtitle {
        top: 50px;
    }
}

@media screen and (max-width: 500px) {
    .shilovka__text-box3_mobile, .shilovka__text-box1_mobile, .shilovka__text-box2_mobile, .movdovka__text-box_mobile {
        max-width: 100%;
    }

    .shilovka__text span:last-child {
        width: 160px;
        text-align: right;
    }

    .shilovka__text {
        line-height: 27px;
    }

    .shilovka__btn-about1 {
        display: none !important;
    }
    .amoforms_iframe .amoforms__field__name-label {
        font-size: 15px !important;
    }
    .amoforms__field__name-header {
        font-size: 20px !important;
    }
    .amo {
        right: 115px;
    }
}