@font-face {
    font-family: "ArtegraSans-Bold";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/ArtegraSans/ArtegraSans-Bold.woff2") format("woff2"), url("../fonts/ArtegraSans/ArtegraSans-Bold.woff") format("woff");
}

@font-face {
    font-family: "ArtegraSans-Medium";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/ArtegraSans/ArtegraSans-Medium.woff2") format("woff2"), url("../fonts/ArtegraSans/ArtegraSans-Medium.woff") format("woff");
}

@font-face {
    font-family: "ArtegraSans-Regular";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/ArtegraSans/ArtegraSans-Regular.woff2") format("woff2"), url("../fonts/ArtegraSans/ArtegraSans-Regular.woff") format("woff");
}

@font-face {
    font-family: "ArtegraSans-SemiBold";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/ArtegraSans/ArtegraSans-SemiBold.woff2") format("woff2"), url("../fonts/ArtegraSans/ArtegraSans-SemiBold.woff") format("woff");
}

@font-face {
    font-family: "TrajanPro3-Bold";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/TrajanPro3Bold.woff2") format("woff2"), url("../fonts/TrajanPro3Bold.woff") format("woff");
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    scrollbar-color: #da9852 #1f2428;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 15px;
    height: 10px;
    background-color: #1f2428;
}

::-webkit-scrollbar-thumb {
    background-color: #da9852;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #da9852;
}

img {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

li {
    list-style: none;
}

body {
    background: -webkit-linear-gradient(#30333F 0%, #272A36 100%);
    background: linear-gradient(#30333F 0%, #272A36 100%);
    color: #fff;
    font-family: "ArtegraSans-Regular";
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.flex {
    display: -webkit-box;
    display: flex;
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn::after,
.btn::before {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    clip-path: polygon(0% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%);
    -webkit-animation: impulse 2s infinite;
    animation: impulse 2s infinite;
    background: radial-gradient(#DBB38900 0%, #da9852 100%);
}

.btn::after {
    top: 0;
}

.btn::before {
    top: 100%;
}

.btn span {
    position: relative;
    z-index: 1;
}

@keyframes impulse {
    0% {
        width: 90%;
        height: 150%;
    }

    30% {
        width: 110%;
        height: 200%;
    }

    100% {
        width: 90%;
        height: 150%;
    }
}



/* header */
.header {
    position: relative;
    z-index: 12;
    height: 82px;
}

.header.scroll {
    position: sticky;
    top: 0;
   background: rgba(255, 255, 255, 0.6);
-webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
    animation: scroll 1s;
}

@keyframes scroll {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.header.active {
    height: 100vh;
}

.header__inner {
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.scroll .logo svg path {
    fill: #724400;
}

.menu__content {
    align-items: center;
    gap: 20px;
}

.menu__btn {
    display: none;
}

.menu__list {
    align-items: center;
    gap: 20px;
}

.menu__link {
    font-family: "ArtegraSans-SemiBold";
    font-weight: 600;
    font-size: 14px;
    position: relative;
    border-bottom: 2px solid transparent;
}

.scroll .menu__link {
    color: #1F1F1F;
}

.menu__link:hover {
    border-bottom: 2px solid #fff;
}

.menu__link:hover:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 7px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.scroll .menu__link:hover {
    border-bottom: 2px solid #1f1f1f;
}

.scroll .menu__link:hover::after {
    border-top: 7px solid #1f1f1f;
}

.scroll .lang-link {
    color: #1f1f1f;
}

.lang-link {
    font-weight: 700;
    padding: 0 5px;
}

.lang-link__ru {
    display: none;
}

.uz-page .lang-link__ru {
    display: block;
}

.uz-page .lang-link__uz {
    display: none;
}

.header__end {
    align-items: center;
    gap: 16px;
}

.header__end .message {
    display: none;
}

.phone__link {
    font-family: "ArtegraSans-Bold";
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    position: relative;
    padding-right: 52px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.phone__link::before {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 28px;
    height: 28px;
    background: #fff;
}

.phone__link::after {
    content: url('../img/svg/phone.svg');
    position: absolute;
    top: 50%;
    right: 9px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 20px;
}

.scroll .phone__link {
    color: #724400;
}

.scroll .phone__link::before {
    background: transparent;
    border: 1px solid #724400;
}

.header__btn {
    font-weight: 700;
    padding: 20px;
    position: relative;
    display: inline-block;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%,
            8% 100%, 0% 50%, 1% 50%, 8.5% 98%, 91.5% 98%, 99% 50%,
            91.5% 2%, 8.5% 2%, 1% 50%);
    background: #fff;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.header__btn-bg {
    position: relative;
}

.header__btn-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 4px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-right: 5px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    z-index: -1;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.header__btn-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 4px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-left: 5px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.scroll .header__btn-bg .header__btn {
    color: #724400;
}

.scroll .header__btn-bg .header__btn::after {
    background: #724400;
}

.scroll .header__btn-bg::after {
    border-right: 5px solid #724400;
}

.scroll .header__btn-bg::before {
    border-left: 5px solid #724400;
}

/* intro */
.header.active~.main .intro {
    margin-top: -100vh;
}

.intro {
    margin-top: -82px;
    background-image: url('../img/sky3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
    overflow: hidden;
}

.intro .container {
    position: relative;
    z-index: 10;
}

.intro::before {
    content: url('../img/svg/borders.svg');
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.intro__img {
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.intro__inner {
    height: 100vh;
    min-height: 900px;
    position: relative;
}

.intro__title {
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
    padding: 200px 0 42px;
    font-family: "TrajanPro3-Bold";
    font-weight: 700;
    font-size: 60px;
    line-height: 78px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.intro__title::after,
.intro__title::before {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.intro__title::before {
    bottom: 12px;
    width: 462px;
    height: 1px;
    background: linear-gradient(90deg, #fff0 0%, #fff 50%, #fff0 100%);
}

.intro__title::after {
    bottom: 0;
    border-top: 12px solid #fff;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
}

.down {
    position: absolute;
    z-index: 10;
    bottom: 60px;
    left: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

.down::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    background: radial-gradient(#DBB38900 20%, #DBB389 100%);
    -webkit-animation: circle 1.5s infinite;
    animation: circle 1.5s infinite;
}

@keyframes circle {
    0% {
        width: 0;
        height: 0;
    }

    100% {
        width: 80px;
        height: 80px;
    }
}

.down::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    border-bottom: 5px solid #DBB389;
    border-right: 5px solid #DBB389;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-animation: down 1.5s infinite;
    animation: down 1.5s infinite;
}

@keyframes down {
    0% {
        top: 50%;
        width: 45px;
        height: 45px;
    }

    100% {
        top: 260%;
        width: 0px;
        height: 0px;
    }
}

.down span {
    z-index: -1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #DBB389;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 45px;
    height: 45px;
}

.down__img {
    margin: 8px 12px;
}

/* about */
.about {
    background: #ebecec;
    position: relative;
    overflow: hidden;
}

.about__bg {
    background-image: url('../img/building.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    height: 520px;
    position: relative;
    z-index: 1;
}

.about__img {
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.about__inner {
    height: max-content;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about__title {
    font-family: "TrajanPro3-Bold";
    font-weight: 700;
    font-size: 100px;
    line-height: 0.86;
    letter-spacing: 20px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #B4B4B4 0%, #bdbcbc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 90px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
}

.about__title-uz {
    font-size: 85px;
}

.about__subtitle {
    color: #BB9256;
    font-family: "ArtegraSans-SemiBold";
    font-weight: 600;
    font-size: 34px;
    line-height: 48px;
    padding-top: 150px;
    width: max-content;
    margin: 0 auto 52px;
    position: relative;
}

.about__subtitle::before,
.about__subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.about__subtitle::after {
    bottom: -10px;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, #BB925600 0%, #BB9256 50%, #BB925600 100%);
}

.about__subtitle::before {
    bottom: -22px;
    border-top: 12px solid #BB9256;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
}

.about__descr {
    font-family: "ArtegraSans-Medium";
    font-weight: 500;
    font-size: 26px;
    line-height: 34px;
    max-width: 800px;
    color: #1f1f1f;
    margin: 0 auto 52px;
}

.about__btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    padding: 15px 25px;
    background: #EAC17A;
    display: inline-block;
    color: #5E3F09;
    letter-spacing: 0.56px;
    margin-bottom: -35px;
    clip-path: polygon(0% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%);
}

/* advantage */
.advantage {
    overflow: hidden;
    position: relative;
}

.advantage::after {
    content: url('../img/svg/advantage-bg.svg');
    position: absolute;
    z-index: -1;
    top: -160px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.advantage__title {
    font-family: "TrajanPro3-Bold";
    font-weight: 700;
    font-size: 100px;
    line-height: 0.86;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    position: absolute;
    top: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.advantage__subtitle {
    color: #BB9256;
    font-family: "ArtegraSans-SemiBold";
    font-weight: 600;
    font-size: 34px;
    line-height: 48px;
    padding-top: 150px;
    width: max-content;
    margin: 0 auto 62px;
    -webkit-margin: 0 auto 62px;
    position: relative;
}

.advantage__subtitle::before,
.advantage__subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.advantage__subtitle::after {
    bottom: -10px;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, #BB925600 0%, #BB9256 50%, #BB925600 100%);
}

.advantage__subtitle::before {
    bottom: -22px;
    border-top: 12px solid #BB9256;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
}

.advantage__bg {
    background-image: url('../img/building-2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    height: 520px;
    position: relative;
}

.advantage__img {
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.advantage__inner {
    margin-top: -65px;
}

.advantage__list {
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.advantage__item {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.advantage__item-img {
    position: relative;
    padding: 30px;
}

.advantage__item-img img {
    position: relative;
    z-index: 3;
}

.advantage__item-img::before,
.advantage__item-img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.advantage__item-img::before {
    width: 105px;
    height: 105px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0px 38px 100px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
}

.advantage__item-img::after {
    width: 95px;
    height: 95px;
    border: 2px solid #DBB389;
}

.advantage__item-descr {
    font-family: 'ArtegraSans-Bold';
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #EBECEC;
    width: 286px;
    padding: 0 15px;
}

.advantage__descr {
    font-family: 'ArtegraSans-Regular';
    margin-bottom: 60px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: -0.4px;
    color: #EBECEC;
}

.advantage__content-img {
    width: 100%;
    clip-path: polygon(0% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%);
    margin-bottom: 60px;
    position: relative;
}

.advantage__content-img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 98%;
    height: 94%;
    background: #fff;
    clip-path: polygon(0.5% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%,
            8% 100%, 0.5% 50%, 1.2% 50%, 8.5% 98%, 91.5% 98%, 99.2% 50%,
            91.5% 2%, 8.5% 2%, 1.2% 50%);
}

.advantage__info {
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 100px;
}

.advantage__info-title {
    max-width: 570px;
    font-family: "TrajanPro3-Bold";
    font-weight: 700;
    font-size: 26px;
    line-height: 160%;
    color: #DBB389;
    margin-bottom: 10px;
}

.advantage__info-descr {
    max-width: 680px;
    font-weight: 500;
    font-size: 22px;
    line-height: 160%;
    color: #B2B3B3;
}

.advantage__info-link {
    padding: 15px 30px;
    margin: 15px;
    min-width: 188px;
    height: max-content;
    clip-path: polygon(0% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%);
    background: #EAC17A;
    letter-spacing: 0.56px;
    color: #5E3F09;
}

/* architecture */
.architecture {
    position: relative;
    overflow: hidden;
}

.architecture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url('../img/noise.png') #BB9256;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.architecture::before {
    content: url('../img/svg/borders.svg');
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -2;
}

.architecture .flora-1 {
    position: absolute;
    background-image: url('../img/flora-1.png');
    background-repeat: no-repeat;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 260px;
    height: 580px;
}

.architecture .flora-1::after {
    content: url('../img/leaf-3.png');
    position: absolute;
    bottom: -150px;
    left: 0;
}

.architecture .flora-2 {
    position: absolute;
    background-image: url('../img/flora-2.png');
    background-repeat: no-repeat;
    right: 0;
    top: 40%;
    width: 260px;
    height: 580px;
    z-index: 2;
}

.architecture .flora-2::after {
    content: url('../img/leaf-1.png');
    position: absolute;
    top: -150px;
    right: 50px;
}

.architecture .flora-2::before {
    content: url('../img/leaf-2.png');
    position: absolute;
    bottom: -50px;
    right: 100px;
}

.architecture__inner {
    position: relative;
}

.architecture__inner.bottom {
    margin-bottom: 145px;
}

.architecture__title {
    font-family: "TrajanPro3-Bold";
    font-weight: 700;
    font-size: 100px;
    line-height: 0.86;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    position: absolute;
    top: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.architecture__subtitle {
    color: #EBECEC;
    font-family: "ArtegraSans-SemiBold";
    font-weight: 600;
    font-size: 34px;
    line-height: 48px;
    padding-top: 150px;
    width: max-content;
    margin: 0 auto 62px;
    position: relative;
}

.architecture__subtitle::before,
.architecture__subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.architecture__subtitle::after {
    bottom: -10px;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, #BB925600 0%, #EBECEC 50%, #BB925600 100%);
}

.architecture__subtitle::before {
    bottom: -22px;
    border-top: 12px solid #EBECEC;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
}

.architecture__list {
    justify-content: space-evenly;
    gap: 30px;
    margin-top: 60px;
}

.architecture__item {
    max-width: 286px;
    font-family: "ArtegraSans-SemiBold";
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #EBECEC;
}

.swiper {
    position: relative;
    width: 120vw;
    -webkit-transform: translateX(-10vw);
    transform: translateX(-10vw);
    height: 450px;
}

.swiper-slide {
    display: -webkit-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    -webkit-transition: all 1.1s ease;
    transition: all 1.1s ease;
}

.swiper-slide.swiper-slide-active .architecture__img {
    align-self: center;
    height: 100%;
}

.swiper-slide.swiper-slide-prev {
    padding-top: 150px;
}

.swiper-slide.swiper-slide-next {
    padding-bottom: 150px;
}

.architecture__img {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.swiper-button-prev {
    left: 33%;
    color: #fff;
}

.swiper-button-next {
    right: 33%;
    color: #fff;
}

/* map */
.map {
    background: #EBECEC;
    position: relative;
}

.map iframe {
    width: 50vw;
    height: 100%;
    position: absolute;
    right: 0;
}

.map__inner {
    padding: 80px 0;
}

.map__title {
    width: 425px;
    font-family: "TrajanPro3-Bold";
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: #BB9256;
    margin-bottom: 30px;
}

.map__descr {
    max-width: 425px;
    font-family: "ArtegraSans-SemiBold";
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #1F1F1F;
    margin-bottom: 30px;
}

.map__list {
    display: -webkit-box;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 45px;
}

.map__item {
    padding-left: 42px;
    position: relative;
    font-family: "ArtegraSans-SemiBold";
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 0.2px;
    color: #1F1F1F;
}

.map__item::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #BB9256;
}

.map__link {
    padding: 15px 30px;
    margin: 15px;
    height: max-content;
    clip-path: polygon(0% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%);
    background: #EAC17A;
    letter-spacing: 0.56px;
    color: #5E3F09;
}

/* repair */
.repair {
    background-image: url('../img/repair-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 30% bottom;
}

.repair__inner {
    padding: 80px 0 185px;
}

.repair__title {
    max-width: 360px;
    font-family: "TrajanPro3-Bold";
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: #BB9256;
    margin-bottom: 20px;
}

.repair__descr {
    max-width: 360px;
    font-family: "ArtegraSans-SemiBold";
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #1F1F1F;
    margin-bottom: 20px;
}

.repair__item {
    display: -webkit-box;
    display: flex;
    align-items: center;
}


.repair__item-descr {
    width: 360px;
    padding: 16px 0 16px 75px;
    font-family: "ArtegraSans-SemiBold";
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #1F1F1F;
    position: relative;
}

.repair__item-descr::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12px;
    width: 40px;
    height: 40px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    background: #fff8;
    border: 2px solid #DBB389;
}

.repair__item-descr::after {
    content: url('../img/svg/check.svg');
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 21px;
    width: 24px;
    height: 24px;
}

/* plan */
.plan {
    position: relative;
    overflow: hidden;
}

.plan .container {
    position: relative;
    z-index: 1;
}

.plan::after {
    content: url('../img/svg/advantage-bg.svg');
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.plan::before {
    content: '';
    background: url('../img/noise.png') #DBB389;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-140px);
    transform: translateX(-140px);
    width: 100vw;
    height: 100%;
}

.plan__inner {
    padding: 100px 0;
}

.plan__contemt {
    display: none;
}

.plan__contemt.active {
    display: -webkit-box;
    display: flex;
}

.plan__left {
    width: 37%;
}

.plan__title {
    font-family: "ArtegraSans-Medium";
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 17px 0 38px;
    width: 37%;
}

.plan__list {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    min-height: 294px;
    max-height: 380px;
    overflow-y: auto;
}

.plan__item {
    width: 174px;
    height: 132px;
    background: #EBECEC;
    padding: 16px 16px 0;
    overflow: hidden;
    cursor: pointer;
}

.plan__item.active {
    background: #DBB389;
}

.plan__item-title {
    font-family: 'ArtegraSans-Bold';
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: #1F1F1F;
    margin-bottom: 20px;
}

.plan__item-img {
    object-fit: contain;
    object-position: left top;
    text-align: center;
}

.plan__descr {
    font-family: 'ArtegraSans-Bold';
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    color: #EBECEC;
}

.plan__right {
    width: 63%;
}

.plan__room-list {
    margin: 0 0 38px 30px;
    gap: 12px;
    width: 60%;
}

.plan__room-item {
    cursor: pointer;
    position: relative;
    padding: 12px 18px;
    clip-path: polygon(0% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.plan__room-item.active,
.plan__room-item.active::after {
    background: #272A34;
}

.plan__room-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    clip-path: polygon(0.5% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%,
            8% 100%, 0.5% 50%, 1.2% 50%, 8.5% 98%, 91.5% 98%, 99.2% 50%,
            91.5% 2%, 8.5% 2%, 1.2% 50%);
}

.paln__flat-list {
    flex-wrap: wrap;
    gap: 38px 30px;
    margin-left: 30px;
}

.plan__flat-item {
    width: 100%;
    padding: 30px;
    display: -webkit-box;
    display: flex;
    gap: 30px;
    background: #FFFFFF;
    box-shadow: 0px 25px 100px rgba(0, 0, 0, 0.3);
    display: none;
    position: relative;
}

.plan__flat-item.active {
    display: -webkit-box;
    display: flex;
    -webkit-animation: scale .5s;
    animation: scale .5s;
}

@keyframes scale {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.plan__flat-item::after {
    content: '';
    position: absolute;
    top: 2%;
    left: 5%;
    width: 90%;
    height: 100%;
    background: #fff8;
    z-index: 1;
}

.plan__flat-item::before {
    content: '';
    position: absolute;
    top: 4.5%;
    left: 10%;
    width: 80%;
    height: 100%;
    background: #fff8;
    z-index: 1;
}

.plan__flat-img {
    object-fit: contain;
    width: 350px;
    margin: 0 auto;
    height: 320px;
    position: relative;
    z-index: 2;
}

.plan__flat-text {
    width: max-content;
    position: relative;
    z-index: 2;
}

.plan__flat-title {
    font-family: 'ArtegraSans-Bold';
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #1F1F1F;
    margin-bottom: 20px;
}

.plan__characteristics-list {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.plan__characteristics-item {
    font-family: "ArtegraSans-SemiBold";
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #BB9256;
    position: relative;
    padding-left: 20px;
}

.plan__characteristics-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #DBB389;
}

.plan__btn {
    background: #EAC17A;
    color: #5E3F09;
    letter-spacing: 0.56px;
    clip-path: polygon(0% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%);
}

.plan__link {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
}

/* footer */
.footer {
    position: relative;
    overflow: hidden;
    background: #1F1F1F;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer::before {
    content: url('../img/svg/advantage-bg.svg');
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.footer__inner {
    padding: 112px 0 116px;
    justify-content: space-between;
    gap: 30px;
}

.footer__title {
    max-width: 380px;
    font-family: "TrajanPro3-Bold";
    font-weight: 700;
    font-size: 52px;
    line-height: 58px;
    letter-spacing: 3px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer__link {
    max-width: 355px;
    font-family: "TrajanPro3-Bold";
    font-weight: 700;
    font-size: 34px;
    line-height: 34px;
    letter-spacing: 0.8px;
    color: #DBB389;
    display: block;
    margin-bottom: 20px;
}

.footer__descr {
    max-width: 380px;
    font-family: "ArtegraSans-SemiBold";
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.message {
    gap: 20px;
}

.footer .message__item svg path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.footer .message__item:hover svg path:first-child {
    stroke: #DBB389;
}

.footer .message__item:hover svg path:last-child {
    fill: #DBB389;
}

.form__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #BB9256;
    margin-bottom: 48px;
}

.form {
    padding: 40px;
    background: #FFFFFF;
    max-width: 445px;
}

.footer form {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin-bottom: 30px;
}

.footer form .input {
    height: 56px;
    border: none;
    background: #EBECEC;
    padding: 0 20px;
}

.footer form .input::placeholder {
    font-family: 'ArtegraSans-Regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #1F1F1F88;
}

.footer form .submit {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.56px;
    color: #5E3F09;
    height: 56px;
    clip-path: polygon(0% 50%, 5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%);
    background: #EAC17A;
    cursor: pointer;
    border: none;
}

.form__descr {
    max-width: 365px;
    font-family: "ArtegraSans-SemiBold";
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: #000000;
}

.form__descr-link {
    color: #BB9256;
}

.popup__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    z-index: 11;
}

.popup__bg.active {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
}

.popup {
    display: -webkit-box;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
}

.popup.active {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
}

.popup__img {
    object-fit: cover;
    object-position: left;
    margin-left: -25px;
}

.popup .form {
    width: 445px;
    /* display: none; */
}

.popup .form__back {
    width: 445px;
    padding: 70px 40px 40px;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
}

.form__back-icon {
    position: relative;
    width: 140px;
    height: 160px;
    background: #BB9256;
    margin-bottom: 30px;
    clip-path: polygon(50% 0%, 0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%);
}

.form__back-icon::after {
    content: '';
    position: absolute;
    top: 49%;
    left: 39%;
    -webkit-transform: rotate(-42deg);
    transform: rotate(-42deg);
    width: 50px;
    height: 10px;
    background: #fff;
}

.form__back-icon::before {
    content: '';
    position: absolute;
    top: 54%;
    left: 32%;
    -webkit-transform: rotate(42deg);
    transform: rotate(42deg);
    width: 25px;
    height: 10px;
    background: #fff;
}

.form__back-title {
    font-weight: 700;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    color: #BB9256;
    margin-bottom: 10px;
}

.form__back-descr {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #000000;
    margin-bottom: 80px;
}

.form__btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    padding: 15px 25px;
    background: #EAC17A;
    display: inline-block;
    color: #5E3F09;
    letter-spacing: 0.56px;
    clip-path: polygon(0% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%);
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 26px;
    height: 26px;
    background: #fff8;
    border-radius: 50%;
    cursor: pointer;
}

.close-popup::after,
.close-popup::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 3px;
    top: 50%;
    left: 50%;
    -webkit-transform-origin: center;
    transform-origin: center;
    background: #fff;
    cursor: pointer;
    clip-path: polygon(0% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%);
}

.close-popup::after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-popup::before {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1400px) {
    .swiper {
        height: 400px;
        width: 140vw;
        -webkit-transform: translateX(-20vw);
        transform: translateX(-20vw);
    }

    .swiper-slide.swiper-slide-prev {
        padding-top: 120px;
    }

    .swiper-slide.swiper-slide-next {
        padding-bottom: 120px;
    }

    .architecture__img {
        height: 280px;
    }

    .swiper-button-next {
        right: 32%;
    }

    .swiper-button-prev {
        left: 32%;
    }
}

@media (max-width: 1110px) {

    /* header */
    .header {
        position: sticky;
        top: 0;
        background: #0005;
    }

    .logo {
        position: relative;
        z-index: 2;
    }

    .menu {
        position: relative;
        z-index: 1;
    }

    .menu__btn {
        width: 55px;
        height: 56px;
        position: relative;
        padding: 15px 0 15px 15px;
        display: block;
        cursor: pointer;
        z-index: 4;
    }

    .menu__btn::before,
    .menu__btn span,
    .menu__btn::after {
        position: absolute;
        right: 0;
        height: 4px;
        background: #fff;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        clip-path: polygon(0% 50%, 8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%);
    }

    .menu__btn::before {
        content: '';
        top: 15px;
        width: calc(100% - 15px);
    }

    .menu__btn span {
        top: calc(50% - 2px);
        width: calc(75% - 15px);
    }

    .menu__btn::after {
        content: '';
        bottom: 15px;
        width: calc(50% - 15px);
    }

    .menu.active .menu__btn span {
        opacity: 0;
    }

    .menu.active .menu__btn::before {
        -webkit-transform-origin: right;
        transform-origin: right;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 12px;
    }

    .menu.active .menu__btn::after {
        -webkit-transform-origin: right;
        transform-origin: right;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        bottom: 12px;
        width: calc(100% - 15px);
    }

    .menu.active .menu__content {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    .menu__content {
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        position: absolute;
        -webkit-transform: rotateY(90deg);
        transform: rotateY(90deg);
        -webkit-transform-origin: right;
        transform-origin: right;
        background-image: url('../img/noise.png');
        width: 375px;
        height: 100vh;
        right: -15px;
        top: -10px;
        flex-direction: column;
        gap: 50px;
        padding: 120px 0 50px;
        background-color: #BB9256;
        overflow: hidden;
    }

    .menu__content.scroll {
        overflow-y: scroll;
        max-height: 750px;
    }

    .menu__content.scroll::after {
        height: 750px;
    }

    .menu__content::before {
        content: '';
        background-image: url('../img/svg/borders.svg');
        background-size: cover;
        background-position: center;
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 600px;
        height: 750px;
        z-index: -1;
    }

    .menu__list {
        flex-direction: column;
        gap: 35px;
    }

    .menu__link {
        font-weight: 700;
        font-size: 24px;
        line-height: 26px;
    }

    .lang-link,
    .uz-page .lang-link {
        display: block;
    }

    .lang-list {
        gap: 40px;
    }

    .lang-link {
        font-size: 20px;
        padding: 5px;
    }

    .header__end {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .header .phone__link {
        padding-right: 0;
    }

    .phone__link::after,
    .phone__link::before {
        display: none;
    }

    .header__btn-bg {
        margin-bottom: 92px;
        margin-bottom: 20px;
    }

    .header__end .message {
        display: -webkit-box;
        display: flex;
        z-index: 1;
    }

    /* intro */
    .intro::before {
        top: 95%;
    }

    .intro__img {
        width: 1200px;
    }

    .intro__title {
        max-width: 750px;
        font-size: 54px;
        line-height: 68px;
    }

    /* about */
    .about__bg {
        height: 400px;
    }

    .about__img {
        width: 1200px;
    }
    
    .about__title-uz {
        font-size: 70px;
    }

    /* advantage */
    .advantage__title {
        font-size: 90px;
    }

    .advantage__img {
        left: -10%;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    /* architecture */
    .flora-1,
    .flora-2 {
        display: none;
    }

    .swiper {
        width: 160vw;
        -webkit-transform: translateX(-30vw);
        transform: translateX(-30vw);
    }

    /* map */
    .map {
        display: -webkit-box;
        display: flex;
        flex-direction: column-reverse;
    }

    .map iframe {
        position: static;
        width: 100%;
        height: 400px;
    }

    .map__inner {
        padding-bottom: 30px;
        display: -webkit-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .map__title {
        text-align: center;
        width: 100%;
        font-size: 34px;
        margin-bottom: 0;
    }

    .map__descr {
        text-align: center;
        max-width: 750px;
    }

    .map__list {
        margin-bottom: 30px;
    }

    .map__link {
        margin: 0;
    }

    /* repair */
    .repair__title {
        font-size: 34px;
        line-height: 40px;
    }

    /* plan */
    .plan::before {
        left: 38.5%;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media (max-width: 992px) {

    /* intro */
    .intro__img {
        width: 1100px;
    }

    .intro__title {
        max-width: 700px;
        font-size: 50px;
        line-height: 64px;
    }

    /* about */
    .about__img {
        width: 1100px;
    }

    .about__inner {
        height: 368px;
    }

    .about__title {
        font-size: 75px;
    }
    
    .about__title-uz {
        font-size: 45px;
    }

    .about__subtitle {
        padding-top: 130px;
    }

    .about__descr {
        font-size: 22px;
    }

    /* advantage */
    .advantage__title {
        font-size: 70px;
    }

    .advantage__subtitle {
        padding-top: 130px;
    }

    .advantage__bg {
        height: 350px;
    }

    .advantage__img {
        width: 1110px;
    }

    .advantage__descr {
        margin-bottom: 30px;
    }

    .advantage__list {
        flex-wrap: wrap;
        gap: 30px;
    }

    .advantage__item {
        gap: 20px;
    }

    .advantage__item-img::after {
        width: 85px;
        height: 85px;
    }

    .advantage__item-img::before {
        width: 95px;
        height: 95px;
    }

    .advantage__item-descr {
        font-size: 20px;
    }

    .advantage__content-img {
        height: 300px;
        margin-bottom: 30px;
    }

    .advantage__info {
        margin-bottom: 50px;
    }

    .advantage__info-title {
        font-size: 22px;
    }

    .advantage__info-descr {
        font-size: 18px;
    }

    /* architecture */
    .architecture__title {
        font-size: 70px;
    }

    .architecture__subtitle {
        padding-top: 130px;
    }

    .swiper {
        height: 350px;
    }

    .swiper-slide.swiper-slide-prev {
        padding-top: 100px;
    }

    .swiper-slide.swiper-slide-next {
        padding-bottom: 100px;
    }

    .architecture__img {
        height: 250px;
    }

    /* plan */
    .plan__room-list {
        flex-wrap: wrap;
    }

    .plan__room-item {
        width: 136px;
    }

    .plan__flat-item {
        flex-direction: column;
    }

    .plan__flat-img {
        max-width: 100%;
    }

    .plan__flat-text {
        width: 100%;
        text-align: center;
    }

    .plan__characteristics-list {
        flex-direction: row;
        justify-content: center;
    }

    .plan__characteristics-item {
        padding-left: 0;
    }

    .plan__characteristics-item::before {
        display: none;
    }

    .plan__btn {
        margin: 0 auto;
        width: 206px;
    }

    .plan__link {
        margin: 0 auto;
    }

    /* footer */
    .footer__title {
        font-size: 42px;
        line-height: 50px;
    }

    .footer__link {
        font-size: 30px;
        line-height: 1;
    }

    .footer__descr {
        font-size: 18px;
    }

    .form {
        padding: 30px;
    }

    /* popup */
    .popup .form {
        width: 350px;
    }

    .popup__img {
        width: 350px;
    }
}

@media (max-width: 768px) {

    /* intro */
    .intro__img {
        width: 800px;
    }

    .intro__title {
        max-width: 500px;
        font-size: 35px;
        line-height: 50px;
        padding-bottom: 32px;
    }

    /* about */
    .about__img {
        width: 800px;
    }

    .about__inner {
        height: max-content;
    }

    .about__title {
        font-size: 40px;
        line-height: 55px;
    }
    
    .about__title-uz {
        font-size: 30px;
    }

    .about__subtitle {
        padding-top: 120px;
    }

    .about__subtitle {
        font-size: 24px;
        line-height: 30px;
    }

    .about__descr {
        font-size: 18px;
        line-height: 28px;
    }

    .about__btn {
        margin-bottom: -35px;
    }

    /* advantage */
    .advantage__title {
        font-size: 50px;
    }

    .advantage__subtitle {
        font-size: 24px;
        line-height: 30px;
        padding-top: 125px;
    }

    .advantage__img {
        width: 900px;
        bottom: 0;
    }

    .advantage__inner {
        margin-top: 10px;
    }

    .advantage__list {
        gap: 10px;
        margin-bottom: 20px;
    }

    .advantage__item {
        flex-direction: row;
    }

    .advantage__item-img img {
        width: 80%;
        height: 80%;
        margin: 0 auto;
    }

    .advantage__item-img::after {
        width: 70px;
        height: 70px;
    }

    .advantage__item-img::before {
        width: 80px;
        height: 80px;
    }

    .advantage__item-descr {
        text-align: left;
        padding: 0;
    }

    .advantage__descr {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .advantage__content-img {
        height: 250px;
    }

    .advantage__content-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .advantage__info {
        flex-direction: column;
        align-items: center;
    }

    .advantage__info-title {
        text-align: center;
        margin: 0 auto 10px;
    }

    .advantage__info-descr {
        text-align: center;
        font-size: 16px;
    }

    .advantage__info-link {
        margin: 0;
    }

    /* architecture */
    .architecture__title {
        font-size: 50px;
    }

    .architecture__subtitle {
        font-size: 24px;
        line-height: 30px;
        padding-top: 125px;
    }

    .swiper {
        width: 180vw;
        -webkit-transform: translateX(-40vw);
        transform: translateX(-40vw);
        height: 300px;
    }

    .swiper-slide.swiper-slide-prev {
        padding-top: 80px;
    }

    .swiper-slide.swiper-slide-next {
        padding-bottom: 80px;
    }

    .architecture__img {
        height: 220px;
    }

    .architecture__list {
        flex-direction: column;
        align-items: center;
    }

    .architecture__item {
        max-width: 450px;
    }

    .architecture__inner.bottom {
        margin-bottom: 100px;
    }

    /* map */
    .map__title {
        font-size: 30px;
        line-height: 38px;
    }

    /* plan */
    .plan__inner {
        padding: 50px 0;
    }

    .plan__title {
        font-size: 16px;
        line-height: 22px;
    }

    .plan__flat-img {
        height: 200px;
    }

    /* footer */
    .footer__inner {
        flex-direction: column;
        align-items: center;
        padding-bottom: 50px;
    }

    .footer__title {
        font-size: 32px;
        text-align: center;
        max-width: 100%;
        line-height: 40px;
        letter-spacing: 1px;
    }

    .footer__link {
        text-align: center;
        max-width: 100%;
        letter-spacing: 0px;
    }

    .footer__descr {
        text-align: center;
        margin: 0 auto 30px;
        max-width: 500px;
    }

    .footer .message {
        justify-content: center;
    }

    /* popup */
    .popup .form,
    .popup .form__back {
        width: 350px;
    }

    .form__title {
        margin-bottom: 30px;
        text-align: center;
    }

    .popup__img {
        display: none;
    }

    .close-popup {
        top: 5px;
        right: 5px;
        background: #0008;
    }
}

@media (max-width: 576px) {

    /* header */
    .menu__content {
        width: 100vw;
    }

    /* intro */
    .intro__img {
        width: 580px;
    }

    .intro::before {
        top: 115%;
    }

    .intro__inner {
        min-height: 700px;
    }

    .intro__title {
        max-width: 345px;
        font-size: 24px;
        line-height: 30px;
    }

    .intro__title::before {
        width: 350px;
    }

    /* about */

    .about__img {
        width: 600px;
    }

    .about__title {
        letter-spacing: 9px;
    }

    .about__subtitle {
        width: 100%;
    }

    .about__descr {
        margin-bottom: 30px;
    }

    /* advantage */
    .advantage__title {
        font-size: 40px;
    }

    .advantage__subtitle {
        padding-top: 120px;
    }

    .advantage__bg {
        height: 270px;
    }

    .advantage__img {
        width: 700px;
    }

    .advantage__item {
        width: 100%;
    }

    .advantage__item-img {
        padding: 30px 20px;
    }

    .advantage__item-img img {
        width: 60%;
        height: 60%;
        margin: 0 auto;
    }

    .advantage__item-img::after {
        width: 60px;
        height: 60px;
    }

    .advantage__item-img::before {
        width: 70px;
        height: 70px;
    }

    .advantage__item-descr {
        width: 100%;
        font-size: 18px;
    }

    .advantage__content-img {
        height: 200px;
    }

    .advantage__info {
        gap: 20px;
    }

    .advantage__info-title {
        font-size: 20px;
    }

    /* architecture */
    .architecture__title {
        font-size: 30px;
    }

    .architecture__subtitle {
        padding-top: 115px;
    }

    .swiper {
        width: 200vw;
        -webkit-transform: translateX(-50vw);
        transform: translateX(-50vw);
        height: 260px;
    }

    .swiper-slide.swiper-slide-prev {
        padding-top: 60px;
    }

    .swiper-slide.swiper-slide-next {
        padding-bottom: 60px;
    }

    .architecture__img {
        height: 200px;
    }

    /* map */
    .map__title {
        font-size: 24px;
        line-height: 30px;
    }

    .map__item {
        font-size: 18px;
    }

    /* repair */
    .repair {
        background-position: 55% bottom;
    }

    .repair__inner {
        padding-bottom: 400px;
    }

    .repair__title {
        max-width: 100%;
        text-align: center;
    }

    .repair__descr {
        max-width: 100%;
        text-align: center;
    }

    /* plan */
    .plan__nav {
        flex-direction: column;
    }

    .plan__title {
        width: 100%;
        margin: 0 0 20px;
        text-align: center;
    }

    .plan__room-list {
        width: 100%;
        flex-wrap: nowrap;
        width: 100%;
        margin: 0 0 30px;
        overflow-x: scroll;
    }

    .plan__room-item {
        min-width: 136px;
    }

    .plan__room-item.active,
    .plan__room-item.active::after {
        background: #BB9256;
    }

    .plan__contemt {
        flex-direction: column;
    }

    .plan__left,
    .plan__right {
        width: 100%;
    }

    .plan__left {
        display: -webkit-box;
        display: flex;
        flex-direction: column-reverse;
    }

    .plan__descr {
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
    }

    .plan__list {
        width: 100%;
        min-height: 100%;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .plan__item {
        min-width: 157px;
    }

    .paln__flat-list {
        margin-left: 0;
    }

    .plan::before {
        top: 31%;
        left: 0;
    }
}

@media (max-width: 480px) {

    /* about */
    .about__title {
        font-size: 30px;
        line-height: 55px;
    }
    
    .about__title-uz {
        font-size: 18px;
    }

    /* advantage */
    .advantage__title {
        font-size: 30px;
    }

    .advantage__subtitle {
        padding: 110px 0 50px;
    }

    .advantage__subtitle::after {
        bottom: 42px;
    }

    .advantage__subtitle::before {
        bottom: 30px;
    }

    .advantage__bg {
        height: 216px;
    }

    .advantage__img {
        width: 600px;
    }

    /* architecture */
    .architecture__subtitle {
        width: 100%;
        text-align: center;
    }

    .swiper {
        width: 220vw;
        -webkit-transform: translateX(-60vw);
        transform: translateX(-60vw);
    }

    .swiper-slide.swiper-slide-active .architecture__img {
        height: 70%;
    }

    .swiper-slide.swiper-slide-prev {
        padding-top: 110px;
    }

    .swiper-slide.swiper-slide-next {
        padding-bottom: 110px;
    }

    .architecture__img {
        height: 150px;
    }

    .swiper-button-prev {
        left: 31%;
    }

    .swiper-button-next {
        right: 31%;
    }

    /* map */
    .map__list {
        width: 100%;
    }

    /* footer */
    .form {
        padding: 30px 20px;
    }

    /* popup */
    .popup .form,
    .popup .form__back {
        width: calc(100vw - 30px);
    }
}