@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

html {
    box-sizing: border-box;
}

*, *:after, *:before {
    box-sizing:inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.wrapper {
    max-width: 1200px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 auto;
}

.home {
    background-image: url(../images/home.webp);
    background-position: center;
    background-size: cover;
    position: relative;
    color: #fff;
    overflow: hidden;
    padding-bottom: 75px;
    background-color: #000;
}

.home::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.65;
}

.home .wrapper {
    z-index: 1;
    position: relative;
}

.home__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    font-family: "Tenor Sans", sans-serif;
}

.home__header__logo {
    display: grid;
    line-height: 30px;
    max-width: 170px;
    color: #fff;
    text-decoration: none;
}

.home__header__logo strong {
    font-weight: 500;
    font-size: 27px;
}

.home__header__logo span {
    font-weight: 400;
    line-height: 18px;
    font-size: 14px;
}

.home__header__menu {
    display: flex;
    gap: 35px;
}

.home__header__menu a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
}

.home__header__contact {
    display: flex;
    gap: 10px;
}

.home__header__contact a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.home__header__contact > :nth-child(1),
.home__header__contact > :nth-child(2) {
    content: '';
    width: 24px;
    height: 24px;
    background-color: #fff;
    mask-repeat: no-repeat;
}

.home__header__contact > :nth-child(1) {mask-image: url(../images/ico_tg.svg);}
.home__header__contact > :nth-child(2) {mask-image: url(../images/ico_wa.svg);}

.home__content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    margin: 75px 0 0 0;
}

.home__content__title {
    
}

.home__content__title h1 {
    font-weight: 400;
    font-size: 40px;
    line-height: 44px;
    border-bottom: solid 1px #fff;
    margin: 0 0 40px;
    padding: 0 0 30px;
    font-family: "Tenor Sans", sans-serif;
}

.home__content__bullets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    font-family: "Tenor Sans", sans-serif;
}

.home__content__bullets div {
    background: rgba(255,255,255,0.3);
    border: solid 1px #fff;
    border-radius: 12px;
    padding: 15px;
    display: grid;
}

.home__content__bullets div strong {
    font-size: 35px;
    font-weight: 400;
    line-height: 35px;
}

.home__content__bullets div span {
    line-height: 18px;
}

.home__content__desc {}

.home__content__desc h2 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 21px;
    line-height: 30px;
    margin: 0 0 15px;
    font-family: "Tenor Sans", sans-serif;
}

.home__content__desc p {
    margin: 0;
    line-height: 24px;
}

.home__content__desc__links {
    display: flex;
    gap: 15px;
    margin: 15px 0 0 0;
}

.home__content__desc__links a {
    background-color: #8F7B68;
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 25px;
    font-family: "Tenor Sans", sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.home__content__desc__links a::before {
    content: '';
    mask-repeat: no-repeat;
    width: 16px;
    height: 16px;
    background-color: #fff;
}

.home__content__desc__links > :nth-child(1)::before {mask-image: url(../images/ico_catalog.svg);}
.home__content__desc__links > :nth-child(2)::before {mask-image: url(../images/ico_comment.svg);}

.home__other {
    background: none;
    background-color: #000;
    padding: 0;
}

.apart__maps__wrapper {
    margin-top: 25px;
}

.apart__maps__wrapper h2 {
    text-align: center;
    font-weight: 500;
    font-family: "Tenor Sans", sans-serif;
}

.map {
    background-color: #00615c;
    overflow: hidden;
    position: relative;
}

.map__btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 20px 0;
    position: relative;
    z-index: 1;
    color: #fff;
}

.map__btn::before {
    content: '';
    mask-image: url(../images/ico_map.svg);
    mask-repeat: no-repeat;
    width: 32px;
    height: 32px;
    background-color: #fff;
}

.aparts__locfitr {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 15px 0 30px;
}

.aparts__locfitr span {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 15px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 16px;
    background-color: #f9f9f9;
}

.aparts__locfitr span::before {
    content: '';
    mask-image: url(../images/ico_pin.svg);
    mask-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-color: #000;
}

.aparts__locfitr span:hover {
    background-color: #f0f0f0;
}

.aparts__locfitr span.active {
    background-color: #8F7B68;
    color: #fff;
}

.aparts__locfitr span.active::before {
    background-color: #fff;
}

.apart__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0 0;
}

.apart__list__item {
    display: flex;
    align-items: center;
    box-shadow: rgba(0,0,0,.12) 0px 6px 16px;
    padding: 15px;
    border-radius: 10px;
}

.apart__list__item > div {
    width: 50%;
}

.apart__list__item__cover {
    max-height: 220px;
    width: 50%;
    height: 20vw;
}

.apart__list__item__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.apart__list__item__content {
    display: grid;
    padding: 0 0 0 10px;
    row-gap: 7px;
}

.apart__list__item__content > span {}

.apart__list__item__content > span a {
    /* display: flex; */
    display: none;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    background: #00615c;
    padding: 7px 0;
    justify-content: center;
    border-radius: 20px;
    margin: 2px 0;
}

.apart__list__item__content > span a::before {
    content: '';
    /* background-image: url(/images/ico_whatsapp2.svg);
    background-repeat: no-repeat;
    background-size: cover; */
    mask-image: url(../images/ico_ft_wa.svg);
    mask-repeat: no-repeat;
    background-color: #fff;
    width: 14px;
    height: 14px;
}

.apart__list__item__content__title {}

.apart__list__item__content__title a {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    display: block;
    color: #000;
    text-decoration: none;
}

.apart__list__item__content__loc {
    display: flex;
    align-items: center;
    column-gap: 3px;
    font-size: 14px;
    color: #797979;
    margin: 5px 0 0 0;
}

.apart__list__item__content__loc::before {
    content: '';
    mask-image: url(../images/ico_pin.svg);
    mask-repeat: no-repeat;
    width: 12px;
    height: 12px;
    background-color: #00615c;
}

.apart__list__item__content__price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.apart__list__item__content__price__cost {
    font-weight: 600;
}

.apart__list__item__content__price__cmt {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.apart__list__item__content__price__cmt::before {
    content: '';
    mask-image: url(../images/ico_form_cmt.svg);
    mask-repeat: no-repeat;
    width: 12px;
    height: 12px;
    background-color: #797979;
}

.apart__list__item__content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    width: 100%;
    font-size: 14px;
    gap: 5px;
}

.apart__list__item__content ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.apart__list__item__content ul li span {
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.apart__list__item__content ul li > :first-child {
    padding: 0 7px 0 0;
}

.apart__list__item__content ul li > :last-child {
    padding: 0 0 0 7px;
    font-weight: 400;
}

.apart__list__item__content ul li::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 11px;
    width: 100%;
    height: 1px;
    border-top: dashed 1px #ddd;
}

.apart__list__item__content > a {
    /* border: solid 1px #2c2c2c; */
    color: #00615c;
    text-decoration: none;
    text-align: center;
    border-radius: 25px;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    font-weight: 500;
    font-size: 14px;
    /* padding: 10px 0; */
    /* background: #8F7B68; */
}

.apart__list__more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    grid-column: span 2;
    margin: 25px 0;
    cursor: pointer;
}

.apart__list__more::before {
    content: '';
    mask-image: url(../images/ico_plus.svg);
    mask-repeat: no-repeat;
    width: 18px;
    height: 18px;
    background-color: #00615c;
}

.apart__custom {
    display: grid;
    grid-template-columns: 35% 65%;
}

.apart__custom__manager {
    position: relative;
}

.apart__custom__manager__body {
    position: sticky;
    top: 20px;
    text-align: center;
    padding: 20px;
}

.apart__custom__manager__title {
    font-weight: 600;
}

.apart__custom__manager__body p {
    margin: 10px 0;
}

.apart__custom__manager__body img {
    width: 90%;
    max-width: 300px;
    border-radius: 15px;
}

.apart__custom__form {
    box-shadow: rgba(0,0,0,.12) 0px 6px 16px;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.apart__custom__form__num {
    position: relative;
    display: flex;
    justify-content: center;
}

.apart__custom__form__num span {
    background-color: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
    color: #ddd;
    font-weight: 600;
}

.apart__custom__form__num::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    border-top: dashed 1px #ddd;
}

.apart__custom__form__item {
    display: grid;
}

.apart__custom__form__title {
    text-align: center;
    font-weight: 500;
    margin: 10px 0 5px;
}

.apart__custom__form__row {
    display: grid;
    gap: 20px;
    margin: 5px 0 20px 0;
}

.apart__custom__form__row__2 {
    grid-template-columns: repeat(2, 1fr);
}

.apart__custom__form__row__3 {
    grid-template-columns: repeat(3, 1fr);
}

.apart__custom__form__col {
    display: flex;
    flex-direction: column;
    row-gap: 3px;
}

.apart__custom__form__col__title {
    font-size: 14px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-weight: 400;
}

.apart__custom__form__col__title::before {
    content: "";
    mask-repeat: no-repeat;
    width: 16px;
    height: 16px;
    background-color: #bbb;
}

.apart__custom__form>:nth-child(2) .apart__custom__form__row > :nth-child(1) .apart__custom__form__col__title::before {mask-image: url(../images/ico_form_arrival.svg);}
.apart__custom__form>:nth-child(2) .apart__custom__form__row > :nth-child(2) .apart__custom__form__col__title::before {mask-image: url(../images/ico_form_departure.svg);}
.apart__custom__form>:nth-child(4) .apart__custom__form__row > :nth-child(1) .apart__custom__form__col__title::before {mask-image: url(../images/ico_form_adult.svg);}
.apart__custom__form>:nth-child(4) .apart__custom__form__row > :nth-child(2) .apart__custom__form__col__title::before {mask-image: url(../images/ico_form_child.svg);}
.apart__custom__form>:nth-child(4) .apart__custom__form__row > :nth-child(3) .apart__custom__form__col__title::before {mask-image: url(../images/ico_form_pet.svg);}
.apart__custom__form>:nth-child(10) .apart__custom__form__row > :nth-child(1) .apart__custom__form__col__title::before {mask-image: url(../images/ico_form_cmt.svg);}
.apart__custom__form>:nth-child(12) .apart__custom__form__row > :nth-child(1) .apart__custom__form__col__title::before {mask-image: url(../images/ico_form_adult.svg);}
.apart__custom__form>:nth-child(12) .apart__custom__form__row > :nth-child(2) .apart__custom__form__col__title::before {mask-image: url(../images/ico_form_phone.svg);}

.apart__custom__form__col input,
.apart__custom__form__col select,
.apart__custom__form__col textarea {
    background-color: #f9f9f9;
    border: solid 1px #f0f0f0;
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-family: "Jost", system-ui;
}

.apart__custom__form__col textarea {
    height: 100px;
}

.apart__custom__form__row__type {
    grid-template-columns: repeat(3, 1fr);
}

.apart__custom__form__row__type label {
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    border-radius: 5px;
}

.apart__custom__form__row__type label > span {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    height: 100%;
}

.apart__custom__form__row__type input[type="file"]:checked + span,
.apart__custom__form__row__type input[type="checkbox"]:checked + span,
.apart__custom__form__row__type input[type="radio"]:checked + span {
    outline: none;
    color: #fff;
    background-color: #00615c;
}

.apart__custom__form__places__cover {
    height: 15vw;
    margin: 0 0 10px;
    max-height: 175px;
}

.apart__custom__form__places__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.apart__custom__after {
    border: dashed 2px #00615c;
    padding: 10px 15px;
    border-radius: 10px;
    margin: 0 0 15px;
    font-size: 16px;
}

.apart__custom__form button {
    background-color: #8f7b68;
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Tenor Sans", sans-serif;
    cursor: pointer;
}

.apart__other {
    margin: 50px 0 0 0;
}

.apart__other h2 {
    text-align: center;
    font-weight: 500;
    font-family: "Tenor Sans", sans-serif;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    width: 2.5em;
    height: 1.8em;
    background: #f0f1f3;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: none;
    background: none;
    font-size: 14px;
    padding: 7px;
    text-align: center;
    font-family: "Jost", system-ui;
    border-radius: 5px;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    background-color: #e5f2fe;
    border-radius: 5px;
}

.ui-datepicker .selected-start:not(.selected-end) a,
.ui-datepicker .selected-end:not(.selected-start) a {
  background: #0099F7;
}

.ui-datepicker .selected.first-of-month:not(.selected-start) a {
  border-left: 2px dotted #D4E7F6;
  padding-left: 1px;
}

.ui-datepicker .selected.last-of-month:not(.selected-end) a {
  border-right: 2px dotted #D4E7F6;
  padding-right: 1px;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    background: #0099F7;
    color: #fff;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background: #0099F7;
    /* color: #000; */
}

.ui-widget.ui-widget-content {
    border: none;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    padding: 10px;
}

#date_range_multiple{ width: 350px; }

.reviews {
    background-color: #f9f9f9;
    overflow: hidden;
    padding: 25px 0;
    margin: 25px 0;
}

.reviews h2 {
    text-align: center;
    font-weight: 500;
    font-family: "Tenor Sans", sans-serif;
}

.reviews__list {
    display: grid;
    gap: 25px;
}

.reviews__list__item {
    display: grid;
    align-items: start;
    grid-template-columns: 120px auto;
    gap: 20px;
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
}

.reviews__list__item__meta,
.reviews__list__item__meta__name {
    display: grid;
}

.reviews__list__item__meta {
    gap: 5px;
}

.reviews__list__item__meta__name span,
.reviews__list__item__meta__date {
    font-size: 14px;
}

.reviews__list__item__meta__date {
    color: #757575;
}

.reviews__list__item__content {
    display: grid;
    justify-items: end;
    gap: 20px;
}

.reviews__list__item__content__txt {}

.reviews__list__item__content__re {
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    display: grid;
    align-items: center;
    grid-template-columns: 64px auto;
    gap: 10px;
    width: 70%;
    padding: 10px;
    border-radius: 10px;
}

.reviews__list__item__content__re__userpic {}

.reviews__list__item__content__re__userpic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.reviews__list__item__content__re__txt strong {
    display: block;
    font-weight: 400;
    color: #797979;
    font-size: 16px;
}

.reviews__more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    grid-column: span 2;
    margin: 25px 0;
    cursor: pointer;
}

.reviews__more::before {
    content: '';
    mask-image: url(../images/ico_plus.svg);
    mask-repeat: no-repeat;
    width: 18px;
    height: 18px;
    background-color: #00615c;
}

.filetype,
.home__header__menu__close,
.home__header__btn {
    display: none;
}

.privacy__form {
    font-size: 11px;
    margin: 10px 0 0 0;
}

.privacy__form a {
    color: #000;
    text-decoration: none;
}

.footer {
    background-color: #030303;
    color: #fff;
    padding: 50px 0;
    margin-top: 50px;
}

.footer__cnt {
    display: flex;
    gap: 30px;
}

.footer__cnt__full {
    display: grid;
    grid-template-columns: 36px auto;
    align-items: center;
    gap: 3px 10px;
}

.footer__cnt__full i,
.footer__cnt__msg a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    grid-row: span 2;
    background-color: #8F7B68;
    border-radius: 50%;
}

.footer__cnt__full i::before,
.footer__cnt__msg a::before {
    content: '';
    mask-repeat: no-repeat;
    width: 50%;
    height: 50%;
    background-color: #fff;
}

.footer__cnt > :nth-child(2) i::before {mask-image: url(../images/ico_phone.svg);}
.footer__cnt > :nth-child(3) i::before {mask-image: url(../images/ico_mail.svg);}

.footer__cnt__full span {
    color: #757575;
    font-size: 14px;
    font-weight: 400;
}

.footer__cnt__full a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer__cnt__msg {
    display: flex;
    gap: 30px;
}

.footer__cnt__msg a {}

.footer__cnt__msg > :nth-child(1)::before {mask-image: url(../images/ico_ft_wa.svg);}
.footer__cnt__msg > :nth-child(2)::before {mask-image: url(../images/ico_fr_tg.svg);}

.slick-list {
    overflow: hidden;
    position: relative;
}

.slick-track {
    display: flex;
    align-items: center;
}

.slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
    font-size: 0;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00615c;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 3px;
}

.slick-arrow::after {
    content: '';
    mask-image: url(../images/ico_arrow.svg);
    mask-repeat: no-repeat;
    background-color: #fff;
    width: 50%;
    height: 50%;
}

.slick-arrow.slick-prev {
    left: 10px;
}

.slick-arrow.slick-prev::after {
    transform: rotate(180deg);
}

.slick-arrow.slick-next {
    right: 10px;
}

.apart {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
    width: 100%;
    margin-top: 25px;
}

.apart__slider__for > a > img,
.apart__slider__nav > div > img {
    display: none;
}

.apart__slider__for .slick-slide {
    max-height: 430px;
    height: 55vw;
    background: #f9f9f9;
}

.apart__slider__for .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.apart__content {
    overflow: hidden;
}

.apart__content h1 {
    font-size: 21px;
    font-weight: 500;
    margin: 0 0 5px;
}

.apart__loc {
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 16px;
    color: #797979;
}

.apart__loc::before {
    content: '';
    mask-image: url(../images/ico_pin.svg);
    mask-repeat: no-repeat;
    width: 16px;
    height: 16px;
    background-color: #797979;
}

.apart__slider {
    margin: 10px 0;
}

.apart__slider__nav div {
    height: 100px;
    width: 100%;
    background-position: center;
    background-size: cover;
    font-size: 0;
    cursor: pointer;
    margin: 1px;
}

.apart__slider__nav .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.apart__options {
    display: grid;
}

.apart__options ul {
    margin: 15px 0 15px;
    padding: 0;
    list-style: none;
    display: grid;
    row-gap: 5px;
    width: 100%;
}

.apart__options__li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.apart__options__li span {
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.apart__options__li > :first-child {
    padding: 0 7px 0 0;
}

.apart__options__li > :last-child {
    padding: 0 0 0 7px;
    font-weight: 500;
}

.apart__options__li::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 11px;
    width: 100%;
    height: 1px;
    border-top: dashed 1px #ddd;

}

.apart__options__li__spec {
    display: block;
    background: #8256c9;
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
}

.apart__options__li__spec span {
    cursor: pointer;
    background: no-repeat;
    text-decoration: underline;
    padding: unset !important;
    font-weight: 500 !important;
}

.apart__options__li__spec::after {
    display: none;
}

.apart__options__showmore {
    cursor: pointer;
    background-color: #2A7BFD;
    color: #fff;
    display: inline-block;
    padding: 7px 15px;
    border-radius: 5px;
    justify-self: center;
}

.apart__map {
    margin: 25px 6px;
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    padding: 20px;
    border-radius: 5px;
}

.apart__map > div {
    height: 300px;
}

.apart__map > div .ymaps-map {
    height: 300px;
    width: 100%;
    border-radius: 5px;
}

.apart__comment {
    /* box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px; */
    padding: 15px;
    border-radius: 10px;
    background-color: #8256c9;
    color: #fff;
    gap: 10px;
    display: grid;
    margin: 0 0 20px;
}

.apart__comment__header {
    display: grid;
    align-items: center;
    gap: 10px;
    grid-template-columns: 64px auto;
}

.apart__comment__header::before {
    content: '';
    background-image: url(../images/select.JPG);
    background-position: center;
    background-size: cover;
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.apart__comment__header span {
    display: grid;
    font-weight: 500;
}

.apart__comment__header span i {
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
}

.apart__comment__content {
    font-size: 16px;
    background: #4d4d4d;
    padding: 0px 15px;
    border-radius: 10px;
    margin: 10px 0;
    overflow: hidden;
}

.apart__comment__content p {}

.apart__comment ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    display: grid;
    /* justify-content: space-between; */
    gap: 5px;
    grid-template-columns: repeat(3, 1fr);
}

.apart__comment ul li {
}

.apart__comment ul li a {
    color: #fff;
    text-decoration: none;
    display: grid;
    gap: 5px;
    justify-items: center;
    text-align: center;
    background: #4d4d4d;
    padding: 5px 0;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.apart__comment ul li a::before {
    content: '';
    mask-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-color: #fff;
}

.apart__comment ul > :nth-child(1) a {background-color: #F2911C;}
.apart__comment ul > :nth-child(2) a {background-color: #29A71A;}
.apart__comment ul > :nth-child(3) a {background-color: #5eb5f7;}

.apart__comment ul > :nth-child(1) a::before {mask-image: url(../images/ico_phone.svg);}
.apart__comment ul > :nth-child(2) a::before {mask-image: url(../images/ico_ft_wa.svg);}
.apart__comment ul > :nth-child(3) a::before {mask-image: url(../images/ico_fr_tg.svg);}

.apart__manual {
    /* background: #f9f9f9; */
    /* border: solid 1px #f5f5f5; */
    border-radius: 15px;
    /* padding: 20px; */
    margin: 25px 0 50px 0;
}

.apart__manual>img {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
}

.apart__manual h2 {
    font-size: 24px;
    text-transform: unset;
    text-align: center;
    margin: 25px 0;
}

.apart__manual h2 span {
    display: inline-block;
    background: #D1FF00;
    padding: 2px 10px;
    color: #000;
}

.apart__manual ol {
    margin: 10px 0 0 0;
    padding: 0 0 0 20px;
    display: grid;
    gap: 10px;
}

.apart__manual ol li {}

.apart__manual ol li h3 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

.apart__manual ol li p {
    margin: 0;
}

.apart__form {
    position: relative;
}

.apart__form__body {
    position: sticky;
    top: 20px;
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    border-radius: 10px;
    padding: 0 0 15px;
}

.apart__form__body > p {
    margin: 15px 0 0 0;
    font-size: 14px;
    line-height: 16px;
}

.apart__form__title {
    text-align: center;
    font-weight: 600;
    margin: 10px 0 0px;
    line-height: 20px;
    padding: 20px 20px 10px;
}

.apart__form__title span {
    display: inline-block;
    background: #D1FF00;
    padding: 2px 10px;
    /* font-weight: 600; */
}

.apart__form__header {
    display: grid;
    grid-template-columns: 250px auto;
    column-gap: 10px;
    align-items: center;
    background: #8256c9;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    color: #fff;
}

.apart__form__header__manager {
    display: grid;
    grid-template-columns: 50px auto;
    column-gap: 10px;
    align-items: center;
}

.apart__form__header__manager__userpic {
    width: 50px;
    height: 50px;
}

.apart__form__header__manager__userpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.apart__form__header__manager__content {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.apart__form__header__manager__content__title {
    line-height: 18px;
    font-weight: 500;
    font-size: 16px;
}

.apart__form__header__manager__content__title span {
    font-size: 14px;
    display: block;
    font-weight: 400;
}

a.apart__form__header__manager__content__call {
    color: #fff;
    text-decoration: none;
    margin: 3px 0;
    font-weight: 500;
    font-size: 14px;
}

.apart__form__header__manager__content__callback {
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 3px;
    padding: 5px 15px;
    font-size: 14px;
    cursor: pointer;
}

.apart__form__header__price {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: right;
}

.apart__form__header__price span {
    font-size: 14px;
    /* color: #000; */
    line-height: 16px;
}

.apart__form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0 0 0;
    padding: 0 20px 20px;
}

.apart__form__col {
    display: flex;
    flex-direction: column;
}

.apart__form__col label {
    font-size: 16px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-weight: 500;
}

.apart__form__col label::before {
    content: '';
    mask-repeat: no-repeat;
    width: 16px;
    height: 16px;
    background-color: #bbb;
}

.apart__form form> :nth-child(1) label::before {mask-image: url(../images/ico_form_arrival.svg);}
.apart__form form> :nth-child(2) label::before {mask-image: url(../images/ico_form_guests.svg);}
.apart__form form> :nth-child(3) label::before {mask-image: url(../images/ico_form_cmt.svg);}
.apart__form form> :nth-child(4) label::before {mask-image: url(../images/ico_form_adult.svg);}
.apart__form form> :nth-child(5) label::before {mask-image: url(../images/ico_form_phone.svg);}

.apart__form__col__comment {
    grid-column: span 2;
}

.apart__form__col input,
.apart__form__col select,
.apart__form__col textarea {
    background-color: #f9f9f9;
    border: solid 1px #f0f0f0;
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-family: "Jost", system-ui;
    width: 100%;
}

.apart__form form button {
    background-color: #8F7B68;
    color: #fff;
    border: none;
    padding: 10px 0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    grid-column: span 2;
    cursor: pointer;
    font-family: "Rubik", sans-serif;
}

.apart__form__book .privacy__form {
    grid-column: span 2;
}

.apart__form__body > a {
    /* display: flex; */
    display: none;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    background: #00615c;
    padding: 10px 0;
    justify-content: center;
    border-radius: 20px;
    margin: 0px 15px;
}

.apart__form__body > a::before {
    content: '';
    mask-image: url(../images/ico_ft_wa.svg);
    mask-repeat: no-repeat;
    background-color: #fff;
    width: 14px;
    height: 14px;
}

.modal__contacts {}

.modal__contacts__body {}

.modal__contacts__body__pic {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.modal__contacts__body__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.modal__contacts__body p {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    margin: 10px 0;
}

.modal__contacts__body ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    display: grid;
    gap: 5px;
}

.modal__contacts__body ul li a {
    color: #fff;
    text-decoration: none;
    display: grid;
    gap: 5px;
    justify-items: center;
    text-align: center;
    background: #4d4d4d;
    padding: 10px 0;
    border-radius: 5px;
    font-weight: 500;
    white-space: nowrap;
}

.modal__contacts__body ul li a::before {
    content: '';
    mask-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-color: #fff;
}

.modal__contacts__body ul > :nth-child(1) a {
    background-color: #F2911C;
}

.modal__contacts__body ul > :nth-child(2) a {
    background-color: #29A71A;
}

.modal__contacts__body ul > :nth-child(3) a {
    background-color: #5eb5f7;
}

.modal__contacts__body ul > :nth-child(1) a::before {
    mask-image: url(../images/ico_phone.svg);
}

.modal__contacts__body ul > :nth-child(2) a::before {
    mask-image: url(../images/ico_wa.svg);
}

.modal__contacts__body ul > :nth-child(3) a::before {
    mask-image: url(../images/ico_tg.svg);
}

.apart__maps {
    width: 100%;
    margin: 0 0 25px;
}

.apart__maps__title {
    text-align: center;
    font-size: 21px;
    font-weight: 500;
    margin: 0 0 10px;
}

.apart__maps > #map_aparts {
    height: 400px;
    box-shadow: rgba(0,0,0,.12) 0px 6px 16px;
    padding: 20px;
    border-radius: 5px;
}

.apart__maps > div .ymaps-map {
    height: 300px;
    width: 100%;
    border-radius: 5px;
}

.map_aparts__cover {
    width: 200px;
    height: 100px;
}

.map_aparts__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.map_aparts__title {
    font-size: 16px;
    margin: 5px 0 0 0;
}

.map_aparts__cost {
    font-size: 16px;
    font-weight: 600;
}

a.map_aparts__link {
    background-color: #2a7bfd;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 5px 15px;
    font-size: 14px;
    text-decoration: none;
    margin: 5px 0 0 0;
    display: block;
}

.balloon {
    display: grid;
    gap: 5px;
}

.balloon__title {
    display: grid;
    font-size: 14px;
}

.balloon__title span {
    font-weight: 600;
}

.balloon__cover {
    width: 100%;
    height: 125px;
}

.balloon__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.balloon a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    background: #f2911c;
    text-align: center;
    border-radius: 3px;
    padding: 5px 0;
}

.wa__icon {
    position: fixed;
    bottom: 65px;
    right: 50px;
    width: 32px;
    height: 32px;
    z-index: 5;
    cursor: pointer;
}

.wa__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa__icon::before,
.wa__icon::after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #29A71A;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.wa__icon:after {
    animation-delay: .5s;
}

@keyframes animate
{
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}

.contacts {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 10px 0;
    align-items: center;
}

.contacts a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.contacts  > :nth-child(1),
.contacts  > :nth-child(2) {
    content: '';
    width: 24px;
    height: 24px;
    background-color: #000;
    mask-repeat: no-repeat;
}

.contacts  > :nth-child(1) {mask-image: url(../images/ico_tg.svg);background-color: #5eb5f7;}
.contacts  > :nth-child(2) {mask-image: url(../images/ico_wa.svg);background-color: #29A71A;}

.contacts a span {
    font-weight: 400;
    display: block;
}

.reviews__list__item__content__re .contacts {
    margin: 0;
    grid-column: span 2;
    justify-self: end;
}

.reviews__list__item__content__re .contacts > :nth-child(1),
.reviews__list__item__content__re .contacts > :nth-child(2) {
    width: 20px;
    height: 20px;
}

.reviews__list__item__content__re .contacts a {
    font-size: 12px;
    font-weight: 400;
}

.about {
    background-color: #00615c;
    padding: 50px 0;
    color: #fff;
}

.about .wrapper {
    display: grid;
    grid-template-columns: 300px auto;
    gap: 30px;
    align-items: center;
}

.about__cover {
    position: relative;
    min-height: 260px;
    border: solid 2px #fff;
    border-radius: 15px;
}

.about__cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.about__cover .contacts {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    margin: 0;
    padding: 10px;
    border-radius: 0 0 15px 15px;
}

.about__cover .contacts a {
    color: #fff;
}

.about__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about__content__item {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 10px;
}

.about__content__item::before {
    content: '';
    width: 50px;
    height: 50px;
    background-color: #fff;
    mask-repeat: no-repeat;
}

.about__content > :nth-child(1)::before {mask-image: url(../images/ico_chat.svg);}
.about__content > :nth-child(2)::before {mask-image: url(../images/ico_places.svg);}
.about__content > :nth-child(3)::before {mask-image: url(../images/ico_road.svg);}

.about__content__item h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 400;
    font-family: "Tenor Sans", sans-serif;
}

.about__content__item p {
    margin: 0;
    font-size: 16px;
}

@media screen and (max-width: 1079px) {
    .apart__slider__nav div {
        height: 90px;
    }
}

@media screen and (max-width: 999px) {
    body {
        font-size: 16px;
    }
    .home__content {
        grid-template-columns: auto 350px;
        gap: 35px;
    }
    .home__content__bullets div strong {
        font-size: 27px;
        line-height: normal;
    }
    .home__content__bullets div span {
        line-height: 16px;
        font-size: 16px;
    }
    .home__content__title h1 {
        font-size: 31px;
        line-height: normal;
        margin: 0 0 25px;
        padding: 0 0 20px;
    }
    .home__content__bullets {
        gap: 10px;
    }
    .home__content__bullets div {
        padding: 10px;
    }
    .home__content__desc h2 {
        font-size: 18px;
        line-height: normal;
    }
    .home__header__menu {
        gap: 20px;
    }
    .home__header__contact {
        display: grid;
        grid-template-columns: auto 24px;
        align-items: end;
        justify-items: end;
    }
    .home__header__contact > :nth-child(1) {order: 2;}
    .home__header__contact > :nth-child(2) {order: 3;}
    .home__header__contact > :nth-child(3) {
        order: 1; 
        grid-column: span 2;
        white-space: nowrap;
        font-size: 16px;
    }
    .apart__slider__nav div {
        height: 80px;
    }
    .about .wrapper {
        grid-template-columns: 220px auto;
        align-items: unset;
    }
    .about__cover {
        min-height: unset;
    }
    .contacts a {
        font-size: 12px;
    }
    .about__content__item::before {
        width: 36px;
        height: 36px;
    }
    .about__content__item h2 {
        font-size: 18px;
    }
    .about__content__item p {
        font-size: 14px;
    }
}

@media screen and (max-width: 899px) {
    .home__header__menu {
        gap: 15px;
    }
    .home__header__menu a {
        font-size: 12px;
    }
    .apart__list {
        grid-template-columns: repeat(3, 1fr);
    }
    .apart__list__item {
        flex-direction: column;
        gap: 10px;
    }
    .apart__list__item__cover,
    .apart__list__item>div {
        width: 100%;
        padding: 0;
    }
    .apart__list__more {
        grid-column: span 3;
    }
    .reviews__list__item__content__re {
        width: 85%;
    }
    .apart__custom {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
    .apart__custom__manager__body {
        display: grid;
        grid-template-columns: 150px auto;
        position: unset;
        align-items: center;
        padding: 0 0 15px;
    }
    .apart__custom__manager__body__content {
        order: 2;
        text-align: left;
    }
    .apart__custom__manager__body img {
        order: 1;
    }
    .apart {
        grid-template-columns: auto 370px;
    }
}

@media screen and (max-width: 849px) {
    .apart {
        grid-template-columns: 1fr;
    }
    .apart__form__body,
    .apart__comment {
        position: unset;
        max-width: 600px;
        margin: 0 auto;
    }
    .apart__form__body > a {
        position: fixed;
        bottom: 10px;
        left: 0px;
        padding: 7px 10px;
        border-radius: 5px;
        z-index: 5;
    }
    .apart__list__item__content > span a,
    .apart__form__body > a {
        display: flex;
    }
}

@media screen and (max-width: 799px) {
    .home__header {
        padding: 0 70px 0 0;
    }
    .home__header__menu {
        position: fixed;
        top: 0;
        right: -150vw;
        background-color: #000;
        width: 100%;
        height: 100vh;
        z-index: 10;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        transition: all 0.2s ease 0s;
    }
    .home__header__menu.active {
        right: 0;
        transition: all 0.2s ease 0s;
    }
    .home__header__menu a {
        font-size: 21px;
        text-transform: none;
    }
    .home__header__menu__close,
    .home__header__btn {
        position: absolute;
        top: 20px;
        right: 20px;
        display: grid;
        gap: 10px;
        cursor: pointer;
    }
    .home__header__menu__close::after,
    .home__header__menu__close::before,
    .home__header__btn::after,
    .home__header__btn::before {
        content: '';
    }
    .home__header__menu__close span,
    .home__header__menu__close::after,
    .home__header__menu__close::before,
    .home__header__btn span,
    .home__header__btn::after,
    .home__header__btn::before {
        width: 40px;
        height: 1px;
        background-color: #fff;
    }
    .home__header__btn {
        position: absolute;
        top: unset;
        right: 20px;
        gap: 8px;
    }
    .home__header__btn span,
    .home__header__btn::after,
    .home__header__btn::before {
        height: 2px;
        width: 35px;
    }
    .home__header__contact {
        display: flex;
        align-items: center;
    }
    .home__content__bullets div span {
        font-size: 14px;
    }
    .home__content {
        grid-template-columns: auto 300px;
        gap: 30px;
    }
    .home__content__title h1 {
        font-size: 24px;
    }
    .home__content__bullets div strong {
        font-size: 21px;
    }
    .reviews {
        padding: 10px 0;
        margin: 10px 0;
    }
    .about__content {
        grid-template-columns: 1fr;
    }
    .about__content__item {
        display: grid;
        grid-template-columns: 28px auto;
        align-items: center;
    }
    .about__content__item p {
        grid-column: span 2;
    }
    .about__content__item::before {
        width: 28px;
        height: 28px;
    }
    .about__cover {
        height: 200px;
    }
    .about .wrapper {
        align-items: center;
    }
    .about {
        padding: 25px 0;
    }
}

@media screen and (max-width: 749px) {
    .home__content {
        grid-template-columns: auto 330px;
        margin-top: 50px;
    }
    .home__content__bullets {
        grid-template-columns: 1fr;
    }
    .apart__list {
        grid-template-columns: 1fr 1fr;
    }
    .apart__list__more {
        grid-column: span 2;
    }
    .apart__list__item__cover {
        height: 30vw;
    }
}

@media screen and (max-width: 699px) {
    .home__content {
        grid-template-columns: 1fr;
    }
    .home__content__bullets {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .home__content__bullets div {
        text-align: center;
    }
    .home__content__title h1 {
        text-align: center;
    }
    .home__content__desc {
        max-width: 500px;
        margin: 0 auto;
    }
    .apart__maps>#map_aparts {
        padding: 40px;
    }
    .footer__cnt,
    .footer__cnt__msg {
        gap: 20px;
    }
}

@media screen and (max-width: 549px) {
    .footer__cnt {
        flex-direction: column-reverse;
    }
    .about .wrapper {
        grid-template-columns: 165px auto;
    }
    .about__cover {
        height: 165px;
    }
    .about__cover .contacts {
        display: grid;
        grid-template-columns: 16px auto;
        justify-content: start;
        gap: 5px 10px;
        padding: 5px 10px;
    }
    .about__cover .contacts > :nth-child(3) {
        grid-column: span 2;
    }
    .about__cover .contacts > :nth-child(1),
    .about__cover .contacts > :nth-child(2) {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 599px) {
    .apart__custom__form__row__3 {
        grid-template-columns: 1fr;
    }
    .apart__custom__form__row__type label>span {
        font-size: 14px;
        font-weight: 400;
    }
    .aparts__locfitr {
        gap: 15px;
    }
    .aparts__locfitr span {
        font-size: 14px;
    }
    .apart__manual h2 {
        font-size: 21px;
        font-weight: 600;
    }
    .apart__manual ol li h3 {
        font-size: 16px;
    }
    .wa__icon {
        bottom: 40px;
    }
}

@media screen and (max-width: 499px) {
    .home__header__contact {
        display: grid;
        grid-template-columns: auto 24px;
        gap: 5px;
    }
    .home__header__contact>:nth-child(3) {
        font-size: 14px;
    }
    .home__header__contact>:nth-child(1), .home__header__contact>:nth-child(2) {
        width: 20px;
        height: 20px;
    }
    .home__content {
        margin-top: 35px;
    }
    .home__content__bullets {
        gap: 15px;
    }
    .apart__content h1 {
        text-align: center;
    }
    .apart__loc {
        justify-content: center;
    }
    .aparts__locfitr span {
        display: grid;
        justify-items: center;
        border-radius: 5px;
        padding: 5px 10px;
    }
    .reviews__list__item {
        grid-template-columns: 1fr;
    }
    .reviews__list__item__meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .reviews__list__item__content__re {
        width: 95%;
    }
    .apart__custom__manager__body {
        grid-template-columns: 110px auto;
    }
    .apart__custom__form {
        padding: 20px 10px;
    }
    /* .apart__custom__form__row {
        gap: 10px;
    } */
}

@media screen and (max-width: 449px) {
    .apart__list {
        display: flex;
        flex-direction: column;
    }
    .apart__list__item__cover {
        height: 40vw;
        max-width: 275px;
    }
    .apart__form form {
        display: flex;
        flex-direction: column;
    }
    .about .wrapper {
        display: flex;
        flex-direction: column-reverse;
    }
    .about__cover {
        max-width: 250px;
        width: 100%;
    }
}

@media screen and (max-width: 429px) {
    .apart__custom__form__row__type {
        grid-template-columns: repeat(2, 1fr);
    }
    .apart__custom__form__places__cover {
        height: 25vw;
    }
    .apart__custom__form__row__2 {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 399px) {
    .home__header__logo {
        line-height: normal;
        max-width: 170px;
        max-width: unset;
    }
    .home__header__logo strong {
        font-size: 21px;
    }
    .home__header__logo span {
        line-height: normal;
        font-size: 12px;
    }
    .apart__custom__manager__body {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
    }
    .apart__custom__manager__body img {
        max-width: 150px;
    }
    .apart__custom__manager__title {
        text-align: center;
    }
    .apart__comment ul {
        grid-template-columns: 1fr;
    }
    .apart__comment ul li a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        font-size: 14px;
        font-weight: 400;
    }
    .apart__comment ul li a::before {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 369px) {
    .home__header__btn {
        gap: 6px;
        right: 15px;
    }
    .home__header__btn span,
    .home__header__btn::after,
    .home__header__btn::before {
        width: 30px;
    }
    .home__header {
        padding: 0 50px 0 0;
    }
    .home__header__contact>:nth-child(3) {
        font-size: 12px;
        font-family: "Rubik", sans-serif;
        font-weight: 400;
    }
    .home__content__title h1 {
        font-size: 18px;
        margin: 0 0 20px;
        padding: 0 0 15px;
    }
    .home__content__desc h2 {
        font-size: 16px;
    }
    .aparts__locfitr span {
        font-size: 12px;
        padding: 5px 7px;
    }
    .aparts__locfitr {
        gap: 5px;
    }
    .home__content__desc p {
        line-height: 20px;
    }
    .home__content__bullets {
        gap: 5px;
    }
    .home__content__bullets div {
        padding: 5px 5px;
    }
    .home {
        padding-bottom: 40px;
    }
    .reviews__list__item__content__re {
        width: 100%;
    }
}

@media screen and (max-width: 349px) {
    .home__content {
        margin-top: 25px;
    }
    .home__content__bullets {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 329px) {
    .home__content__desc__links {
        flex-direction: column;
    }
    .home__content__desc__links a {
        padding: 10px 0;
    }
}