@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@500&display=swap");

@font-face {
    font-family: "agatha";
    src: url(./../fonts/agatha.ttf);
}
@font-face {
    font-family: "O-400";
    src: url(./../fonts/O-regular.ttf);
}
@font-face {
    font-family: "O-500";
    src: url(./../fonts/O-medium.ttf);
    font-weight: 500;
}
@font-face {
    font-family: "O-700";
    src: url(./../fonts/O-bold.ttf);
}
@font-face {
    font-family: "O-800";
    src: url(./../fonts/O-extrabold.ttf);
}
@font-face {
    font-family: "O-900";
    src: url(./../fonts/O-black.ttf);
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "O-500", sans-serif;
    font-display: swap;
}

::-moz-selection {
    background-color: rgb(250, 212, 140);
    color: rgb(36, 36, 36);
}

::selection {
    background-color: rgb(250, 212, 140);
    color: rgb(36, 36, 36);
}

body {
    overflow-x: hidden;
    background: rgb(250, 212, 140) url(./../images/bg.jpg);
}

.container {
    max-width: 1520px;
    margin: 0 auto;
}
@media screen and (max-width: 1540px) {
    .container {
        padding: 0 20px;
    }
}

img {
    max-width: 100%;
}

.second__font {
    font-family: "agatha";
}

.font__color--primary {
    color: rgb(36, 36, 36);
}
.font__color--placeholder {
    color: rgb(189, 189, 189);
}
.font__color--secondary {
    color: rgb(130, 130, 130);
}
.font__color--white {
    color: #fff;
}
.font__color--main {
    color: rgb(55, 31, 14);
}
.font__size--xs {
    font-size: 14px;
}
.font__size--base {
    font-size: 16px;
}
.font__size--sm {
    font-size: 18px;
}
.font__size--md {
    font-size: 20px;
}
.font__size--lg {
    font-size: 24px;
}
@media screen and (max-width: 576px) {
    .font__size--lg {
        font-size: 20px;
    }
}
.font__size--xl {
    font-size: 40px;
}
.font__size--xxl {
    font-size: 80px;
}
@media screen and (max-width: 576px) {
    .font__size--xxl {
        font-size: 44px;
    }
}
.font__size--xxxl {
    font-size: 88px;
}
@media screen and (max-width: 576px) {
    .font__size--xxxl {
        font-size: 44px;
    }
}
.font__family--400 {
    font-family: "O-400";
}
.font__family--500 {
    font-family: "O-500";
}
.font__family--600 {
    font-family: "O-600";
}
.font__family--700 {
    font-family: "O-700";
}
.font__family--800 {
    font-family: "O-800";
}
.font__family--900 {
    font-family: "O-900";
}

.btn {
    overflow: hidden;
    border: 1px solid transparent;
    padding: 20px 40px;
    font-family: "O-500";
    border-radius: 500px;
    cursor: pointer;
    transition: all 0.35s linear;
    font-size: 20px;
    line-height: 24px;
}
.btn.btn__white {
    background-color: #fff;
    color: rgb(36, 36, 36);
}
.btn.btn__white:hover {
    background-color: rgb(250, 212, 140);
}
@media screen and (max-width: 576px) {
    .btn.btn__white {
        font-size: 16px;
        padding: 16px 32px;
    }
}
.btn.btn__main {
    border-color: rgb(55, 31, 14);
    color: rgb(55, 31, 14);
    background: transparent;
}
.btn.btn__main:hover {
    background-color: rgb(55, 31, 14);
    color: #fff;
}
.btn.btn__more {
    border-color: rgb(55, 31, 14);
    color: rgb(55, 31, 14);
    background: transparent;
    padding: 16px 24px;
    font-size: 18px;
    line-height: 24px;
    border-width: 2px;
}
.btn.btn__more:hover {
    background-color: rgb(55, 31, 14);
    color: #fff;
}
@media screen and (max-width: 576px) {
    .btn.btn__more {
        padding: 10px 20px;
        font-size: 14px;
    }
}
.btn.btn__yellow {
    padding: 12px 40px;
    border-radius: 8px;
    background-color: #ffcc00;
    font: 700 16px/24px "O-700";
    color: rgb(36, 36, 36);
}

.heading__title {
    font-size: 80px;
    font-weight: 400;
    line-height: 64px;
    text-align: center;
}
@media screen and (max-width: 650px) {
    .heading__title {
        font-size: 60px;
    }
}
@media screen and (max-width: 576px) {
    .heading__title {
        font-size: 44px;
        line-height: 44px;
    }
}
.heading__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
@media screen and (max-width: 992px) {
    .heading__content {
        width: 100%;
        gap: 20px;
    }
}
.heading__content .heading__body {
    font-size: 24px;
    line-height: 32px;
    color: rgb(130, 130, 130);
}
@media screen and (max-width: 576px) {
    .heading__content .heading__body {
        font-size: 16px;
        line-height: 24px;
    }
}

nav {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
@media screen and (max-width: 1024px) {
    nav {
        padding: 10px 0;
    }
}
nav .nav__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 576px) {
    nav .nav__content--logo {
        width: 150px;
    }
}
nav .nav__content--right {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    nav .nav__content--right {
        display: none;
    }
}
nav .nav__content--right .nav__content--lists {
    display: flex;
    align-items: center;
    gap: 40px;
}
nav .nav__content--right .nav__content--lists a {
    padding: 10px 20px;
    font-size: 18px;
    font-family: "O-700";
    color: #fff;
    line-height: 28px;
    transition: all 0.35s linear;
}
nav .nav__content--right .nav__content--lists a:hover {
    color: rgb(250, 212, 140);
}
nav .nav__content--right .nav__content--lists .language {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    border: 2px solid #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    list-style: 28px;
    font-family: "O-700";
}
nav .nav__content--right .nav__content--lists .language__content {
    position: absolute;
    top: 110%;
    left: 0;
    padding: 8px;
    background-color: #f8eddf;
    width: 100%;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35ms linear;
}
nav .nav__content--right .nav__content--lists .language__content a {
    color: rgb(36, 36, 36);
    padding: 8px 24px;
    display: block;
    border-radius: 8px;
    transition: all 0.5s linear;
}
nav .nav__content--right .nav__content--lists .language__content a.active,
nav .nav__content--right .nav__content--lists .language__content a:hover {
    background-color: rgb(55, 31, 14);
    color: #fff;
}
nav
    .nav__content--right
    .nav__content--lists
    .language:hover
    .language__content {
    opacity: 1;
    visibility: visible;
}
nav .nav__content--bars {
    padding: 12px;
    display: none;
}
@media screen and (max-width: 1024px) {
    nav .nav__content--bars {
        display: block;
    }
}
nav.scroll {
    background-color: rgb(36, 36, 36);
    transition: all 0.3s linear;
}

main .swiper-slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
@media screen and (max-height: 600px) and (min-width: 1000px) {
    main .swiper-slide {
        min-height: auto;
    }
}
@media screen and (max-height: 600px) {
    main .swiper-slide {
        min-height: auto;
    }
}
main .swiper-slide .container {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 268px;
}
@media screen and (max-width: 1200px) {
    main .swiper-slide .container {
        padding: 0 20px;
        justify-content: center;
    }
}
@media screen and (max-height: 600px) {
    main .swiper-slide .container {
        min-height: 550px;
    }
}
@media screen and (max-height: 800px) {
    main .swiper-slide .container {
        padding-bottom: 120px;
    }
}
@media screen and (max-height: 750px) and (max-width: 650px) {
    main .swiper-slide .container {
        padding-bottom: 0px;
    }
}
@media screen and (max-height: 700px) and (min-width: 950px) {
    main .swiper-slide .container {
        min-height: 700px;
        padding-bottom: 0px;
        justify-content: center;
    }
}
main .swiper-slide .main__text {
    width: 62%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}
@media screen and (max-width: 1200px) {
    main .swiper-slide .main__text {
        width: 100%;
        gap: 48px;
    }
}
main .swiper-slide .main__text--title {
    font-size: 88px;
    font-weight: 400;
    color: #fff;
    line-height: 96px;
}
@media screen and (max-width: 768px) {
    main .swiper-slide .main__text--title {
        font-size: 70px;
        line-height: 70px;
    }
}
@media screen and (max-width: 576px) {
    main .swiper-slide .main__text--title {
        font-size: 40px;
        line-height: 40px;
    }
}
main .swiper .swiper-horizontal > .swiper-pagination-bullets,
main .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
main .swiper .swiper-pagination-custom,
main .swiper .swiper-pagination-fraction {
    bottom: 48px;
    display: flex;
    justify-content: flex-start;
    z-index: 100;
    padding: 16px;
    gap: 8px;
    width: auto;
    left: 10%;
}
@media screen and (min-width: 2200px) {
    main .swiper .swiper-horizontal > .swiper-pagination-bullets,
    main .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    main .swiper .swiper-pagination-custom,
    main .swiper .swiper-pagination-fraction {
        left: 17%;
    }
}
@media screen and (min-width: 2400px) {
    main .swiper .swiper-horizontal > .swiper-pagination-bullets,
    main .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    main .swiper .swiper-pagination-custom,
    main .swiper .swiper-pagination-fraction {
        left: 20%;
    }
}
@media screen and (max-width: 2100px) {
    main .swiper .swiper-horizontal > .swiper-pagination-bullets,
    main .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    main .swiper .swiper-pagination-custom,
    main .swiper .swiper-pagination-fraction {
        left: 12%;
    }
}
@media screen and (max-width: 1950px) {
    main .swiper .swiper-horizontal > .swiper-pagination-bullets,
    main .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    main .swiper .swiper-pagination-custom,
    main .swiper .swiper-pagination-fraction {
        left: 9%;
    }
}
@media screen and (max-width: 1800px) {
    main .swiper .swiper-horizontal > .swiper-pagination-bullets,
    main .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    main .swiper .swiper-pagination-custom,
    main .swiper .swiper-pagination-fraction {
        left: 6%;
    }
}
@media screen and (max-width: 1720px) {
    main .swiper .swiper-horizontal > .swiper-pagination-bullets,
    main .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    main .swiper .swiper-pagination-custom,
    main .swiper .swiper-pagination-fraction {
        left: 4%;
    }
}
@media screen and (max-width: 1600px) {
    main .swiper .swiper-horizontal > .swiper-pagination-bullets,
    main .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    main .swiper .swiper-pagination-custom,
    main .swiper .swiper-pagination-fraction {
        left: 2%;
    }
}
@media screen and (max-width: 1540px) {
    main .swiper .swiper-horizontal > .swiper-pagination-bullets,
    main .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    main .swiper .swiper-pagination-custom,
    main .swiper .swiper-pagination-fraction {
        left: 4px;
    }
}
@media screen and (max-width: 576px) {
    main .swiper .swiper-horizontal > .swiper-pagination-bullets,
    main .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
    main .swiper .swiper-pagination-custom,
    main .swiper .swiper-pagination-fraction {
        left: 4px;
        bottom: 20px;
    }
}
main
    .swiper
    .swiper-horizontal
    > .swiper-pagination-bullets
    .swiper-pagination-bullet,
main
    .swiper
    .swiper-pagination-bullets.swiper-pagination-horizontal
    .swiper-pagination-bullet,
main .swiper .swiper-pagination-custom .swiper-pagination-bullet,
main .swiper .swiper-pagination-fraction .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    border: 2px solid rgb(242, 242, 242);
    background: transparent;
    opacity: 1;
}
main
    .swiper
    .swiper-horizontal
    > .swiper-pagination-bullets
    .swiper-pagination-bullet.swiper-pagination-bullet-active,
main
    .swiper
    .swiper-pagination-bullets.swiper-pagination-horizontal
    .swiper-pagination-bullet.swiper-pagination-bullet-active,
main
    .swiper
    .swiper-pagination-custom
    .swiper-pagination-bullet.swiper-pagination-bullet-active,
main
    .swiper
    .swiper-pagination-fraction
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgb(242, 242, 242);
}

.why {
    padding: 160px 0;
    display: flex;
    flex-direction: column;
    gap: 120px;
}
@media screen and (max-width: 650px) {
    .why {
        padding: 80px 0;
        gap: 80px;
    }
}
.why__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 120px;
}
@media screen and (max-width: 576px) {
    .why__content {
        gap: 64px;
    }
}
.why__content--item {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (max-width: 300px) {
    .why__content--item {
        width: 100%;
    }
}
.why__content--item .why__content--image {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}
.why__content--item .why__content--text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}
.why__content--item .why__content--text .why__content--title {
    font-size: 24px;
    font-family: "O-700";
    line-height: 32px;
    color: rgb(55, 31, 14);
}
@media screen and (max-width: 576px) {
    .why__content--item .why__content--text .why__content--title {
        font-size: 20px;
        line-height: 28px;
    }
}
.why__content--item .why__content--text .why__content--body {
    font-size: 18px;
    line-height: 28px;
    font-family: "O-500";
    color: rgb(130, 130, 130);
}
@media screen and (max-width: 576px) {
    .why__content--item .why__content--text .why__content--body {
        font-size: 16px;
        line-height: 24px;
    }
}

.advantages {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.advantages__content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.advantages__content--item {
    padding: 40px;
    border-radius: 4px;
    background-color: #fff;
    flex: 0 1 492px;
    min-height: 188px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.5s linear;
}
@media screen and (max-width: 1540px) {
    .advantages__content--item {
        flex: 0 1 32.3%;
    }
}
@media screen and (max-width: 1330px) {
    .advantages__content--item {
        flex: 0 1 32%;
    }
}
@media screen and (max-width: 1100px) {
    .advantages__content--item {
        flex: 1 1 320px;
    }
}
@media screen and (max-width: 576px) {
    .advantages__content--item {
        padding: 40px 20px;
    }
}
.advantages__content--item .advantages__content--image {
    width: 64px;
    height: 64px;
    position: relative;
    z-index: 0;
}
.advantages__content--item
    .advantages__content--image
    .advantages__content--shape {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
}
@media screen and (max-width: 576px) {
    .advantages__content--item
        .advantages__content--image
        .advantages__content--shape {
        left: 15px;
        bottom: -10px;
    }
    .advantages__content--item
        .advantages__content--image
        .advantages__content--shape
        svg {
        width: 60px !important;
        height: 60px !important;
    }
}
.advantages__content--item .advantages__content--text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.advantages__content--item .advantages__content--title {
    font-size: 24px;
    line-height: 32px;
    color: rgb(55, 31, 14);
    font-family: "O-700";
}
@media screen and (max-width: 576px) {
    .advantages__content--item .advantages__content--title {
        font-size: 20px;
        line-height: 24px;
    }
}
.advantages__content--item .advantages__content--body {
    font-size: 18px;
    line-height: 28px;
    color: rgb(130, 130, 130);
    font-family: "O-500";
}
@media screen and (max-width: 576px) {
    .advantages__content--item .advantages__content--body {
        font-size: 16px;
        line-height: 24px;
    }
}
.advantages__content--item:hover {
    transform: scale(1.02, 1.02);
}

.city {
    padding: 80px 0;
}
@media screen and (max-width: 650px) {
    .city {
        padding: 40px 0;
    }
}
@media screen and (max-width: 650px) {
    .city .container {
        padding: 0 0 0 20px;
    }
    .city .container .heading {
        padding-right: 20px;
    }
}
.city__content {
    margin-top: 80px;
    position: relative;
    z-index: 0;
}
@media screen and (max-width: 650px) {
    .city__content .city__item {
        width: 85%;
    }
}
@media screen and (max-width: 576px) {
    .city__content .city__item {
        width: 90%;
    }
}

.city__item {
    border-radius: 4px;
    overflow: hidden;
    min-height: 482px;
    cursor: pointer;
    background-color: #fff;
}
/* @media screen and (max-width: 576px) {
  .city__item {
    min-height: auto;
  }
} */
.city__item--image {
    width: 100%;
    height: 242px;
    overflow: hidden;
}
.city__item--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.5s linear;
}
.city__item--text {
    padding: 20px 20px 32px 20px;
    display: flex;
    flex-direction: column;
}
.city__item--text .city__item--title {
    font-size: 24px;
    font-family: "O-500";
    line-height: 32px;
    color: rgb(55, 31, 14);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
@media screen and (max-width: 576px) {
    .city__item--text .city__item--title {
        font-size: 20px;
        line-height: 28px;
    }
}
.city__item--text .city__item--body {
    text-overflow: ellipsis;
    font-size: 16px;
    color: rgb(130, 130, 130);
    line-height: 24px;
    font-family: "O-500";
    margin: 12px 0 0 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}
@media screen and (max-width: 576px) {
    .city__item--text .city__item--body {
        align-self: stretch;
        margin: 12px 0 0 0;
    }
}
.city__item--text .city__item--price {
    font-size: 16px;
    color: rgb(55, 31, 14);
    font-family: "O-700";
    line-height: 48px;
    text-align: end;
    margin-top: 38px;
}
@media screen and (max-width: 576px) {
    .city__item--text .city__item--price {
        margin-top: 12px;
    }
}
.city__item:hover .city__item--image img {
    transform: scale(1.2, 1.2) rotate(1deg);
}

.swiper__btn--prev,
.swiper__btn--next {
    width: 56px;
    height: 56px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.5s linear;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.swiper__btn--prev:hover,
.swiper__btn--next:hover {
    border-color: rgb(55, 31, 14);
}
@media screen and (max-width: 1700px) {
    .swiper__btn--prev,
    .swiper__btn--next {
        display: none;
    }
}
.swiper__btn--prev {
    left: -16px;
    transform: translate(-100%, -50%);
}
.swiper__btn--next {
    right: -16px;
    transform: translate(100%, -50%);
}

.city__price {
    padding: 80px 0 160px 0;
}
@media screen and (max-width: 650px) {
    .city__price {
        padding: 40px 0;
    }
}
@media screen and (max-width: 650px) {
    .city__price .container {
        padding: 0 0 0 20px;
    }
    .city__price .heading {
        padding-right: 20px;
    }
}
.city__price__content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    margin-top: 80px;
}
@media screen and (max-width: 850px) {
    .city__price__content {
        display: none;
    }
}
.city__price__content .city__price__item {
    border-radius: 4px;
    overflow: hidden;
    display: block;
    background-color: #fff;
}
.city__price__content .city__price__item--image {
    height: 400px;
    overflow: hidden;
}
.city__price__content .city__price__item--image img {
    width: 100%;
    transition: all 0.5s linear;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.city__price__content .city__price__item--text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
}
.city__price__content .city__price__item--text .city__price__item--title {
    font-size: 24px;
    font-family: "O-500";
    line-height: 32px;
    color: rgb(55, 31, 14);
}
.city__price__content .city__price__item--text .city__price__item--body {
    font-family: "IBM Plex Sans", sans-serif;
    color: rgb(130, 130, 130);
    font-size: 16px;
    display: -webkit-box;
    line-height: 24px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    flex: 1 1 60%;
    overflow: hidden;
}
.city__price__content .city__price__item--text .city__price__item--foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.city__price__content .city__price__item--text .city__price__item--price {
    font-size: 16px;
    font-family: "O-700";
    color: rgb(55, 31, 14);
    line-height: 48px;
}
.city__price__content .city__price__item:hover .city__price__item--image img {
    transform: rotate(1deg) scale(1.2, 1.2);
}
.city__price__content .city__price__item.md {
    flex: 1 1 720px;
}
@media screen and (max-width: 1540px) {
    .city__price__content .city__price__item.md {
        flex: 0 1 49%;
    }
}
@media screen and (max-width: 1440px) {
    .city__price__content .city__price__item.md {
        flex: 0 1 100%;
    }
}
.city__price__content .city__price__item.big {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
    min-height: 520px;
    position: relative;
}
.city__price__content .city__price__item.big .city__price__item--image {
    width: 50.5%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
}
.city__price__content .city__price__item.big .city__price__item--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.city__price__content .city__price__item.big .city__price__item--body {
    display: flex;
    font-family: "O-500";
    font-weight: 500;
}
.city__price__content .city__price__item.big .city__price__item--text {
    padding: 40px;
    gap: 40px;
    width: 50%;
}
.city__price__content .city__price__item.big .city__price__item--price {
    text-align: end;
}
.city__price__content .city__item {
    flex: 0 1 365px;
    min-height: 100%;
}
@media screen and (max-width: 1540px) {
    .city__price__content .city__item {
        flex: 0 1 24%;
    }
}
@media screen and (max-width: 1440px) {
    .city__price__content .city__item {
        flex: 1 1 365px;
    }
}
.city__price__content .city__item--image {
    height: 254px;
}
.city__price__content .city__item--body {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    margin-top: 16px;
    font-family: "IBM Plex Sans", sans-serif;
}
.city__price .city__content {
    display: none;
}
@media screen and (max-width: 850px) {
    .city__price .city__content {
        display: block;
    }
}
.city__price .city__content .city__item {
    min-height: 538px;
}
@media screen and (max-width: 850px) {
    .city__price .city__content .city__item--body {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6;
        align-self: stretch;
        overflow: hidden;
    }
}
.city__price__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 48px;
}
@media screen and (max-width: 650px) {
    .city__price__btn {
        padding: 30px 20px 0 0;
    }
}

.partners {
    padding: 80px 0;
}
.partners .swiper-slide,
.partners .swiper-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners .swiper-slide {
    padding: 50px 0;
}
@media screen and (max-width: 650px) {
    .partners .swiper-slide {
        padding: 22px 26px;
    }
}
.partners .swiper-wrapper {
    align-items: center;
}
@media screen and (max-width: 650px) {
    .partners .swiper-wrapper {
        padding-bottom: 25px;
    }
}
.partners .swiper-pagination {
    padding: 16px;
    bottom: 0;
    display: none;
}
@media screen and (max-width: 650px) {
    .partners .swiper-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.partners .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border: 2px solid rgb(55, 31, 14);
    background: transparent;
    opacity: 1;
}
.partners
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgb(55, 31, 14);
}
@media screen and (max-width: 650px) {
    .partners {
        padding: 40px 0;
    }
    .partners .city__content {
        margin-top: 40px;
    }
}

.socials {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.socials__item {
    padding: 4px;
}
.socials__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    border: 1px solid #414141;
    width: 40px;
    height: 40px;
    transition: all 0.3s linear;
}
.socials__item:hover a {
    background-color: #039be5;
    border-color: transparent;
}
.socials__item:hover svg path {
    fill: #fff;
}
.socials__item:hover:nth-child(1) a {
    background: #039be5;
}
.socials__item:hover:nth-child(2) a {
    background: #3b5998;
}
.socials__item:hover:nth-child(3) a {
    background: linear-gradient(
        135deg,
        #fade1e 0%,
        #f83286 53.96%,
        #9843f9 100%
    );
}
.socials__item:hover:nth-child(4) a {
    background: rgb(255, 0, 0);
}
@media screen and (max-width: 576px) {
    .socials {
        justify-content: center;
    }
}

footer {
    background-color: rgb(36, 36, 36);
    padding: 120px 0 80px 0;
}
@media screen and (max-width: 650px) {
    footer {
        padding: 80px 0;
    }
}
footer .footer__content {
    display: flex;
    flex-direction: column;
    gap: 120px;
    align-items: flex-start;
    justify-content: flex-start;
}
@media screen and (max-width: 650px) {
    footer .footer__content {
        gap: 40px;
    }
}
footer .footer__top {
    display: grid;
    /* grid-template-columns: 1fr 0.8fr 2.2fr; */
    grid-template-columns: 1fr 2fr;
    gap: 36px;
    /* display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; */
}
/* @media (max-width: 1280px) {
    footer .footer__top {
        grid-template-columns: 1fr 2fr;
    }
} */

@media (max-width: 992px) {
    footer .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    footer .footer__top {
        grid-template-columns: 1fr;
    }
}
/* @media screen and (max-width: 1200px) {
    footer .footer__top {
        gap: 40px;
    }
}
@media screen and (max-width: 650px) {
    footer .footer__top {
        gap: 40px 0;
        justify-content: center;
    }
} */
footer .footer__top--logo {
    /* width: 22%; */
    display: flex;
    flex-direction: column;
    gap: 32px;
}
/* @media screen and (max-width: 992px) {
    footer .footer__top--logo {
        width: 45%;
    }
} */
@media screen and (max-width: 650px) {
    footer .footer__top--logo {
        width: 100%;
        gap: 20px;
    }
}
/* footer .footer__top--logo a {
    width: 80%;
} */
/* @media screen and (max-width: 650px) {
    footer .footer__top--logo a {
        width: 55%;
    }
} */
footer .footer__top--logo .footer__logo--text {
    font-size: 16px;
    line-height: 24px;
    font-family: "O-400";
    color: rgb(189, 189, 189);
}
@media screen and (max-width: 576px) {
    footer .footer__top--logo .footer__logo--text {
        font-size: 14px;
        line-height: 22px;
        font-family: "O-400";
    }
}
footer .footer__top--menus {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* width: 15%; */
}
/* @media screen and (max-width: 992px) {
    footer .footer__top--menus {
        width: 20%;
    }
} */
/* @media screen and (max-width: 650px) {
    footer .footer__top--menus {
        flex: 1 1 30%;
    }
    footer .footer__top--menus:nth-child(2) {
        flex: 1 1 60%;
    }
} */
footer .footer__top--menus a {
    /* padding: 10px 20px; */
    padding: 10px 0;
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-family: "O-500";
    line-height: 28px;
    font-weight: 500;
    transition: all 0.3s linear;
}
@media screen and (max-width: 576px) {
    footer .footer__top--menus a {
        /* padding: 10px 8px; */
        padding: 10px 0;
        font-size: 16px;
        line-height: 24px;
    }
}
footer .footer__top--menus a:hover {
    color: #fff;
}
footer .footer__top--links {
    /* width: 19%; */
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 32px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: 1.1fr 0.9fr; */
    gap: 16px;
}

/* @media (max-width: 1280px) {
    footer .footer__top--links {
        grid-template-columns: 1fr;
    }
} */
/* @media (max-width: 992px) {
    footer .footer__top--links {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }
} */
@media (max-width: 992px) {
    footer .footer__top--links {
        display: flex;
        flex-direction: column;

        /* align-items: center;
        grid-column: auto;
        grid-template-columns: 1fr; */
    }
}
/* @media screen and (max-width: 1400px) {
    footer .footer__top--links {
        width: 23%;
    }
}
@media screen and (max-width: 1100px) {
    footer .footer__top--links {
        width: 90%;
    }
}
@media screen and (max-width: 360px) {
    footer .footer__top--links {
        width: 100%;
    }
} */
footer .footer__top--links .footer__links--top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* @media screen and (max-width: 576px) {
    footer .footer__top--links .footer__links--top {
        justify-content: center;
        align-items: center;
    }
} */
footer .footer__top--links .footer__links--top .footer__links__link {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
footer .footer__top--links .footer__links--top .footer__link {
    padding: 8px 4px;
    display: block;
    color: #fff;
    font-size: 24px;
    font-family: "O-700";
    line-height: 32px;
    transition: all 0.3s linear;
}
footer .footer__top--links .footer__links--top .footer__link:nth-child(2) {
    padding: 12px 4px;
}
@media screen and (max-width: 576px) {
    footer .footer__top--links .footer__links--top .footer__link {
        font-size: 20px;
        line-height: 28px;
        text-align: center;
    }
}
footer .footer__top--links .footer__links--top .footer__link:hover {
    color: rgb(250, 212, 140);
}
footer .footer__top--links .footer__links__numbers {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
footer .footer__top--links .footer__links__numbers .footer__numbers__item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
}
footer
    .footer__top--links
    .footer__links__numbers
    .footer__numbers__item
    .footer__numbers__top {
    display: flex;
    align-items: center;
    gap: 12px;
}
footer
    .footer__top--links
    .footer__links__numbers
    .footer__numbers__item
    .footer__numbers__icon {
    display: flex;
    align-items: center;
    gap: 8px;
}
footer
    .footer__top--links
    .footer__links__numbers
    .footer__numbers__item
    .footer__numbers__body {
    font: 500 16px/24px "O-500";
    color: rgb(189, 189, 189);
}
footer .footer__top--links .footer__links__numbers .footer__numbers__item a {
    font: 500 20px/28px "O-500";
}
footer
    .footer__top--links
    .footer__links__numbers
    .footer__numbers__item
    a.footer__link {
    padding: 0;
}
footer .footer__top--links .footer__links--address {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
@media screen and (max-width: 576px) {
    footer .footer__top--links .footer__links--address {
        justify-content: center;
    }
}
footer .footer__top--links .footer__links--address p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-family: "O-500";
}
footer .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 992px) {
    footer .footer__bottom {
        flex-direction: column;
        gap: 40px;
    }
}
/* @media screen and (max-width: 850px) {
    footer .footer__bottom {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
} */
footer .footer__bottom--left {
    display: flex;
    align-items: center;
    gap: 40px;
    color: rgb(130, 130, 130);
    font-size: 14px;
}
@media (max-width: 992px) {
    footer .footer__bottom--left {
        flex-direction: column;
    }
}
/* @media screen and (max-width: 650px) {
    footer .footer__bottom--left {
        gap: 16px 8px;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
    footer .footer__bottom--left .footer__bottom--text {
        width: 100%;
    }
} */
footer .footer__bottom--left a,
footer .footer__bottom--left p {
    line-height: 22px;
    color: rgb(130, 130, 130);
}
footer .footer__bottom--left a {
    /* padding: 13px 8px; */
    transition: all 0.3s linear;
}
footer .footer__bottom--left a:hover {
    color: #fff;
}

footer .footer__bottom--left .footer__bottom--menus {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
footer .footer__bottom--left .footer__bottom--menus a {
    display: inline-block;
    padding: 10px 0;
}

@media screen and (max-width: 850px) {
    footer .footer__bottom--right {
        width: 100%;
    }
    footer .footer__bottom--right a {
        justify-content: center;
    }
}
footer .footer__bottom--right a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}
footer .footer__bottom--right a svg {
    margin-bottom: 2px;
}

.part__page {
    padding: 100px 0 0 0;
}
@media screen and (max-width: 1024px) {
    .part__page {
        padding-top: 80px;
    }
}
.part__page nav.scroll {
    background-color: #fff;
}
.part__page nav .nav__content--lists a {
    color: rgb(36, 36, 36);
}
.part__page nav .nav__content--lists a:hover {
    color: rgb(55, 31, 14);
}
.part__page nav .nav__content .language {
    border-color: rgb(36, 36, 36);
    color: rgb(36, 36, 36);
}
.part__page nav .nav__content .language__content {
    background-color: #fff;
}
.part__page nav .nav__content .language svg path {
    stroke: rgb(36, 36, 36);
}

.contacts {
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    gap: 120px;
}
@media screen and (max-width: 650px) {
    .contacts {
        gap: 64px;
        padding: 80px 0;
    }
}
.contacts__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media screen and (max-width: 650px) {
    .contacts__content {
        gap: 64px;
    }
}
.contacts__content .contacts__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
@media screen and (max-width: 650px) {
    .contacts__content .contacts__cards {
        gap: 16px;
    }
}
.contacts__content .contacts__cards .contacts__card {
    flex: 1 1 365px;
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: all 0.3s linear;
}
.contacts__content .contacts__cards .contacts__card:hover {
    transform: scale(1.02, 1.02);
}
.contacts__content .contacts__cards .contacts__card--image {
    width: 48px;
    height: 48px;
    overflow: hidden;
}
.contacts__content .contacts__cards .contacts__card--title {
    font-size: 20px;
    font-family: "O-700";
    font-weight: 700;
    line-height: 28px;
    color: rgb(36, 36, 36);
}
.contacts__content .contacts__cards .contacts__card--body {
    font-size: 16px;
    color: rgb(130, 130, 130);
    line-height: 24px;
    font-weight: 500;
    margin: 16px 0 12px 0;
    font-family: "O-500";
}
.contacts__content .contacts__cards .contacts__card--link {
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    color: rgb(55, 31, 14);
    font-family: "O-700";
    font-weight: 700;
    padding: 12px 0;
}
.contacts__content .contacts__map {
    height: 480px;
}

.abouts {
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
@media screen and (max-width: 992px) {
    .abouts {
        gap: 64px;
    }
}
@media screen and (max-width: 650px) {
    .abouts {
        padding: 80px 0;
    }
}
.abouts__heading {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
}
@media screen and (max-width: 992px) {
    .abouts__heading {
        flex-wrap: wrap;
        gap: 64px;
    }
}
.abouts__heading .heading {
    width: 41%;
    text-align: start;
    align-items: flex-start;
    margin: 0;
}
@media screen and (max-width: 992px) {
    .abouts__heading .heading {
        width: 100%;
        text-align: center;
        align-items: center;
    }
}
.abouts__heading__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px 0;
}
.abouts__heading__bottom .abouts__text {
    width: 42%;
}
@media screen and (max-width: 768px) {
    .abouts__heading__bottom .abouts__text {
        width: 100%;
    }
}
.abouts__image {
    width: 100%;
    overflow: hidden;
}
.abouts__image img {
    border-radius: 4px;
}
@media screen and (max-width: 576px) {
    .abouts__image {
        height: 160px;
        border-radius: 4px;
    }
    .abouts__image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
.abouts__text,
.abouts__text p {
    font-size: 16px;
    line-height: 24px;
    font-family: "O-500";
}
.abouts__text.secondary,
.abouts__text p.secondary {
    color: rgb(130, 130, 130);
    font-weight: 500;
}
@media screen and (max-width: 992px) {
    .abouts__text.secondary,
    .abouts__text p.secondary {
        color: rgb(55, 31, 14);
        font-weight: 500;
    }
}
.abouts__text.main,
.abouts__text p.main {
    color: rgb(55, 31, 14);
    font-family: "O-400";
    font-weight: 400;
}
@media screen and (max-width: 992px) {
    .abouts__text.main,
    .abouts__text p.main {
        color: rgb(55, 31, 14);
        font-weight: 500;
    }
}
.abouts__texts {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}
@media screen and (max-width: 992px) {
    .abouts__texts {
        flex-wrap: wrap;
    }
}
.abouts__texts .abouts__text {
    flex: 0 1 428px;
    overflow: hidden;
}
@media screen and (max-width: 992px) {
    .abouts__texts .abouts__text {
        width: 100%;
        flex: 0 1 100%;
    }
}

.cities {
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    gap: 64px;
}
@media screen and (max-width: 650px) {
    .cities {
        padding: 80px 0;
    }
}
.cities__content {
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    gap: 20px;
}
@media screen and (max-width: 1200px) {
    .cities__content {
        grid-template-columns: 32% 32% 32%;
    }
}
@media screen and (max-width: 850px) {
    .cities__content {
        grid-template-columns: 48% 48%;
    }
}
@media screen and (max-width: 576px) {
    .cities__content {
        grid-template-columns: 100%;
    }
}
@media screen and (max-width: 650px) {
    .cities__content {
        gap: 24px;
    }
}
.cities .pagination {
    justify-content: flex-end;
}
@media screen and (max-width: 650px) {
    .cities .pagination {
        justify-content: center;
    }
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}
@media screen and (max-width: 650px) {
    .pagination {
        gap: 4px;
    }
}
.pagination__arrow {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s linear;
}
.pagination__arrow:hover {
    border-color: rgb(55, 31, 14);
}
.pagination__num a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    font-family: "O-800";
    font-weight: 800;
    color: rgb(55, 31, 14);
    transition: all 0.3s linear;
}
.pagination__num a.active,
.pagination__num a:hover {
    background-color: rgb(55, 31, 14);
    color: #fff;
}
.pagination__num.active a {
    background-color: rgb(55, 31, 14);
    color: #fff;
}
@media screen and (max-width: 650px) {
    .pagination__num.none {
        display: none;
    }
}

.city__page {
    padding: 80px 0 120px 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
@media screen and (max-width: 650px) {
    .city__page {
        padding: 80px 0;
        gap: 64px;
    }
}
.city__page--card {
    background-color: #fff;
}
.city__page--card .city__page--image {
    width: 100%;
    height: 560px;
    border-radius: 4px;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .city__page--card .city__page--image {
        height: 460px;
    }
}
@media screen and (max-width: 576px) {
    .city__page--card .city__page--image {
        height: 360px;
    }
}
@media screen and (max-width: 425px) {
    .city__page--card .city__page--image {
        height: 280px;
    }
}
.city__page--card .city__page--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.city__page--card .city__page--bottom {
    padding: 64px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
}
@media screen and (max-width: 576px) {
    .city__page--card .city__page--bottom {
        padding: 40px 20px;
        gap: 40px;
    }
}
.city__page--card .city__page--bottom .city__page--text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.city__page--card .city__page--bottom .city__page--title {
    font-size: 88px;
    line-height: 88px;
    font-family: "agatha";
    color: rgb(55, 31, 14);
    font-weight: 400;
}
@media screen and (max-width: 576px) {
    .city__page--card .city__page--bottom .city__page--title {
        font-size: 40px;
        line-height: 44px;
    }
}
.city__page--card .city__page--bottom .city__page--body {
    font-size: 16px;
    line-height: 24px;
    color: rgb(130, 130, 130);
    font-weight: 500;
}
@media screen and (max-width: 576px) {
    .city__page--card .city__page--bottom a,
    .city__page--card .city__page--bottom button {
        width: 100%;
    }
}
.city__page .city__about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.city__page .city__about--item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.city__page .city__about--title {
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    font-family: "agatha";
    color: rgb(55, 31, 14);
}
@media screen and (max-width: 576px) {
    .city__page .city__about--title {
        font-size: 32px;
        line-height: 32px;
    }
}
.city__page .city__about--body,
.city__page .city__about--body li {
    font-size: 16px;
    font-family: "O-500";
    line-height: 24px;
    color: rgb(55, 31, 14);
}
.city__page .city__about ul li {
    list-style: disc;
    list-style-position: inside;
}
.city__page .city__about ol li {
    list-style: decimal;
    list-style-position: inside;
}
.city__page .city__about li {
    margin-bottom: 10px;
}

.offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    z-index: -10;
}
.offcanvas__box {
    width: 50%;
    background-color: rgb(36, 36, 36);
    height: 100%;
    overflow-y: scroll;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transform: translateX(100%);
    transition: all 0.5s linear;
    position: absolute;
    top: 0;
    right: 0;
}
.offcanvas__box::-webkit-scrollbar {
    display: none;
}
@media screen and (max-width: 650px) {
    .offcanvas__box {
        width: 95%;
    }
}
.offcanvas__box--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.offcanvas__box--header img {
    width: 70%;
}
.offcanvas__box--body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.offcanvas__box--body ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.offcanvas__box--body ul li a {
    color: #fff;
    font-size: 16px;
}
.offcanvas__box--body .language {
    display: flex;
    align-items: center;
    gap: 12px;
}
.offcanvas__box--body .language a {
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s linear;
}
.offcanvas__box--body .language a.active,
.offcanvas__box--body .language a:hover {
    background-color: #fff;
    color: rgb(36, 36, 36);
}
.offcanvas__box--body .socials {
    justify-content: flex-start;
}
.offcanvas.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    transition: all 0.5s linear;
    display: flex;
}
.offcanvas.active .offcanvas__box {
    transition: all 1s linear;
    transform: translateX(0%);
}

.city__items {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.city__items .city__new__item {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media screen and (max-width: 768px) {
    .city__items .city__new__item {
        flex: 1 1 50%;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 576px) {
    .city__items .city__new__item {
        gap: 24px;
    }
}
.city__items .city__new__item--text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 45%;
}
@media screen and (max-width: 768px) {
    .city__items .city__new__item--text {
        width: 100%;
    }
}
@media screen and (max-width: 576px) {
    .city__items .city__new__item--text {
        gap: 16px;
    }
}
.city__items .city__new__item--image {
    width: 400px;
    height: 240px;
    border-radius: 4px;
    overflow: hidden;
}
.city__items .city__new__item--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .city__items .city__new__item--image {
        width: 100%;
    }
}
@media screen and (max-width: 650px) {
    .city__items .city__new__item--image {
        height: 200px;
    }
}
@media screen and (max-width: 425px) {
    .city__items .city__new__item--image {
        height: 160px;
    }
}
.city__items .city__new__item--title {
    font: 500 20px/28px "O-500";
    color: rgb(55, 31, 14);
}

.city__part--item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.city__part--heading {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.city__part--title {
    font: 400 40px/40px "agatha";
    color: rgb(55, 31, 14);
}
@media screen and (max-width: 576px) {
    .city__part--title {
        font: 400 32px/32px "agatha";
    }
}
.city__part--body {
    font: 500 16px/24px "O-500";
    color: rgb(130, 130, 130);
}
.city__part--gallery {
    display: grid;
    grid-gap: 12px;
}
.city__part--gallery.cols-3 {
    grid-template-columns: 33% 33% 33%;
}
@media screen and (max-width: 992px) {
    .city__part--gallery.cols-3 {
        grid-template-columns: 50% 50%;
    }
}
@media screen and (max-width: 576px) {
    .city__part--gallery.cols-3 {
        grid-template-columns: 100%;
    }
}
.city__part--gallery.cols-3 .city__part__gallery--item {
    height: 300px;
}
@media screen and (max-width: 650px) {
    .city__part--gallery.cols-3 .city__part__gallery--item {
        height: 270px;
    }
}
@media screen and (max-width: 425px) {
    .city__part--gallery.cols-3 .city__part__gallery--item {
        height: 180px;
    }
}
.city__part--gallery.cols-2 {
    grid-template-columns: 50% 50%;
}
@media screen and (max-width: 576px) {
    .city__part--gallery.cols-2 {
        grid-template-columns: 100%;
    }
}
.city__part--gallery.cols-2 .city__part__gallery--item {
    height: 400px;
}
@media screen and (max-width: 992px) {
    .city__part--gallery.cols-2 .city__part__gallery--item {
        height: 300px;
    }
}
@media screen and (max-width: 650px) {
    .city__part--gallery.cols-2 .city__part__gallery--item {
        height: 270px;
    }
}
@media screen and (max-width: 425px) {
    .city__part--gallery.cols-2 .city__part__gallery--item {
        height: 180px;
    }
}
.city__part--gallery.cols-1 {
    grid-template-columns: 100%;
}
.city__part--gallery.cols-1 .city__part__gallery--item {
    height: 640px;
}
@media screen and (max-width: 1200px) {
    .city__part--gallery.cols-1 .city__part__gallery--item {
        height: 460px;
    }
}
@media screen and (max-width: 992px) {
    .city__part--gallery.cols-1 .city__part__gallery--item {
        height: 300px;
    }
}
@media screen and (max-width: 650px) {
    .city__part--gallery.cols-1 .city__part__gallery--item {
        height: 270px;
    }
}
@media screen and (max-width: 425px) {
    .city__part--gallery.cols-1 .city__part__gallery--item {
        height: 180px;
    }
}
.city__part--gallery .city__part__gallery--item {
    border-radius: 4px;
    overflow: hidden;
}
.city__part--gallery .city__part__gallery--item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.251);
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-overflow-style: none; /* IE 11 */
    scrollbar-width: none; /* Firefox 64 */
    opacity: 0;
    visibility: hidden;
    z-index: -100;
    transition: all 0.3s linear;
}
.modal.active {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s linear;
}
@media screen and (max-height: 900px) {
    .modal {
        padding: 30px 0;
        align-items: flex-start;
        overflow-y: scroll;
    }
}
.modal::-webkit-scrollbar {
    display: none;
}
.modal__box {
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
    overflow: hidden;
    width: 480px;
    position: relative;
}
@media screen and (max-width: 576px) {
    .modal__box {
        width: 95%;
    }
}
@media screen and (max-width: 360px) {
    .modal__box {
        padding: 25px;
    }
}
.modal__box__close {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 12px;
    cursor: pointer;
}
.modal__box__body {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    flex-direction: column;
}
.modal__box__body .modal__box__image {
    width: 100%;
}
.modal__box__body .modal__box__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.modal__box__body .modal__box__title {
    font: 700 20px/28px "O-700";
    color: rgb(36, 36, 36);
}
.modal__box__body .modal__box__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.modal__box__body .modal__box__form .modal__btn {
    width: 100%;
}
.modal__box__body .modal__box__form .modal__btn .btn {
    width: 100%;
}

.input__block {
    position: relative;
    z-index: 0;
    width: 100%;
}
.input__block label {
    position: absolute;
    top: 14px;
    left: 14px;
    transition: all 0.3s linear;
    transform: translate(0, -24px);
    font: 500 12px/20px "O-500";
    color: #3e7bfa;
    background-color: #fff;
    z-index: 1;
    padding: 0 4px;
    letter-spacing: 0.2px;
}
.input__block input {
    padding: 14px 10px 14px 18px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgb(224, 224, 224);
    width: 100%;
    font: 500 14px/22px "O-500";
    color: rgb(36, 36, 36);
}
.input__block input::-webkit-input-placeholder {
    font: 500 14px/22px "O-500";
    color: rgb(189, 189, 189);
    opacity: 1;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.input__block input:focus {
    outline-color: #3e7bfa;
}
.input__block input:invalid + label {
    opacity: 0;
}
.input__block input:focus + label {
    transform: translate(0, -24px);
    opacity: 1;
}
.input__block input:focus::-webkit-input-placeholder {
    color: transparent;
}
.input__block textarea {
    width: 100%;
    padding: 14px 10px 14px 18px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgb(224, 224, 224);
    width: 100%;
    font: 500 14px/22px "O-500";
    color: rgb(36, 36, 36);
    min-height: 185px;
    resize: none;
}
.input__block textarea::-webkit-input-placeholder {
    font: 500 14px/22px "O-500";
    color: rgb(189, 189, 189);
    opacity: 1;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.input__block textarea:focus {
    outline-color: #3e7bfa;
}

.alert {
    padding: 15px 20px;
    border: 1px solid #000;
    border-radius: 8px;
    margin: 15px 0;
}
.alert-success {
    border-color: #4d9d17;
    color: #4d9d17;
}
.alert-danger {
    border-color: #d40000;
    color: #d40000;
}

.footer-chat-link svg {
    fill: #fff;
}

.footer-chat-link:hover svg {
    fill: rgb(250, 212, 140);
}

.footer__nav-links {
    display: flex;
    flex-direction: column;
}

.footer__nav-links a {
    width: max-content;
}

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

.socials__mail {
    padding: 8px 4px;
    display: block;
    color: #fff;
    font-size: 24px;
    font-family: "O-700";
    line-height: 32px;
    transition: all 0.3s linear;
    margin-bottom: 12px;
}
