/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

html {
    box-sizing: border-box;
}

*, *:after, *:before {
    box-sizing:inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto Flex", sans-serif;
    font-size: 16px;
    font-weight: 300;
    /* background-color: #1B1B1B; */
}

.home__bg {
    background-color: #1B1B1B;
    overflow: hidden;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.home {
    background-image: url(../images/home.webp);
    background-position: center;
    background-size: cover;
    position: relative;
    color: #fff;
    padding: 25px 0 75px;
}

.home::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(    circle at center,    rgba(255, 255, 255, 0.1) 0%,    rgba(0, 0, 0, 1) 80%  ); */
    opacity: 0.7;
}

.home .wrapper {
    position: relative;
    z-index: 2;
    display: grid;
}

.home__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Lobster", sans-serif;
}

.home__header a {
    color: #fff;
    text-decoration: none;
}

a.home__header__logo {
    display: inline-grid;
    text-align: center;
    font-size: 21px;
    line-height: 26px;
    font-family: "Lobster", sans-serif;
    color: #fff;
    text-decoration: none;
}

a.home__header__logo span {
    display: flex;
    gap: 0 3px;
}

a.home__header__logo span b {
    font-size: 34px;
    font-weight: 500;
}

a.home__header__logo::first-letter {
    font-size: 27px;
}

a.home__header__logo i {
    display: block;
    text-transform: lowercase;
    font-style: normal;
}

.home__header__contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.home__header__contact__msg {
    display: flex;
    gap: 15px;
    /* margin: 15px 0 0 0; */
}

.home__header__contact__msg a {
    mask-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-color: #fff;
}

.home__header__contact__msg > :nth-child(1) {mask-image: url(../images/ico_wa.svg);}
.home__header__contact__msg > :nth-child(2) {mask-image: url(../images/ico_tg.svg);}

.home__header__contact__phone {
    font-size: 21px;
    /* font-weight: 700; */
}

.burger__btn {
    display: grid;
    justify-items: end;
    gap: 8px;
    cursor: pointer;
}

.burger__btn::after,
.burger__btn::before,
.burger__btn span {
    height: 1px;
    width: 25px;
    background-color: #fff;
}

.burger__btn::after,
.burger__btn::before {
    content: '';
    width: 35px;
}

.home__title {
    display: grid;
    margin: 75px 0;
    justify-self: start;
    font-family: "Lobster", sans-serif;
}

.home__title::after,
.home__title::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.home__title::before {
    width: 70%;
    margin-bottom: 25px;
}

.home__title::after {
    margin-top: 25px;
}

.home__title h1 {
    display: grid;
    margin: 0;
    /* text-transform: uppercase; */
    font-size: 40px;
    font-weight: 300;
    line-height: 42px;
}

.home__title h1::after {
    content: '';
    mask-image: url(../images/ico_separ.svg);
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center;
    background-color: #fff;
    width: 100px;
    height: 20px;
    margin: 20px 0 15px 0;
}

.home__title h2 {
    margin: 0;
    font-weight: 400;
    display: grid;
}

.home__title h2 i {
    /* font-weight: 600; */
}

.home__title p {
    font-weight: 400;
    font-size: 18px;
    display: grid;
    padding: 0 50px 0 0;
}

.home__select__btn {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 5px;
    font-family: "Lobster", sans-serif;
    font-weight: 300;
    font-size: 16px;
    /* align-self: start; */
    justify-self: start;
}

.home__select__btn::before {
    content: '';
    mask-image: url(../images/ico_check.svg);
    mask-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-color: #000;
}

.about {
    display: grid;
    gap: 25px;
    color: #e4e4e4;
    padding: 50px 0 75px;
}

.about__header {
    display: grid;
    grid-template-columns: 250px auto;
    gap: 50px;
    align-items: start;
}

.about__header__title {
    display: grid;
    gap: 15px;
}

.about__header__title h2 {
    font-family: "Lobster", sans-serif;
    font-weight: 300;
    display: grid;
    margin: 0;
}

.about__header__title h2::after {
    content: '';
    mask-image: url(../images/ico_separ.svg);
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center;
    background-color: #fff;
    width: 100px;
    height: 20px;
    margin: 5px 0 0 0;   
}

.about__btns {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.about__btns__title {
    font-family: "Lobster", sans-serif;
    font-size: 21px;
}

.about__btns__prew,
.about__btns__next {
    width: 28px;
    height: 28px;
    background-color: #3E3E3E;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.about__btns__prew i,
.about__btns__next i {
    mask-image: url(../images/ico_arrow.svg);
    mask-repeat: no-repeat;
    background-color: #fff;
    width: 50%;
    height: 50%;
}

.about__btns__next {
    background-color: #fff;
}

.about__btns__prew i {
    transform: rotate(180deg);
}

.about__btns__next i {
    background-color: #3E3E3E;
}

.about__btns__prew {}

.about__btns__next {}

.about__content {
    max-width: 600px;
}

.about__content h3 {
    margin: 0 0 10px;
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-size: 21px;
}

.about__content p {
    margin: 0;
}

.about__slider {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.about__slider__item {
    display: flex;
    justify-content: center;
    align-items: end;
    cursor: pointer;
}

.about__slider__item img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 15px;
}

.about__slider__item.active img {
    width: 100%;
    height: 100%;
}

.slick-list {
    overflow: hidden;
    position: relative;
}

.slick-track {
    display: flex;
    align-items: end;
}

.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: #3E3E3E;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
}

.slick-arrow:hover {
    background-color: #fff;
}

.slick-arrow::after {
    content: '';
    mask-image: url(../images/ico_arrow.svg);
    mask-repeat: no-repeat;
    background-color: #fff;
    width: 50%;
    height: 50%;
}

.slick-arrow:hover::after {
    background-color: #1B1B1B;
}

.slick-arrow.slick-prev {
    left: 10px;
}

.slick-arrow.slick-prev::after {
    transform: rotate(180deg);
}

.slick-arrow.slick-next {
    right: 10px;
}

.slick-slide {
    margin: 0 10px;
}
.slick-list {
    margin: 0 -10px;
}

.district {
    color: #e4e4e4;
    display: grid;
    grid-template-columns: 300px calc(100% - 300px);
}

.district__title h2 {
    margin: 0;
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    display: grid;
}

.district__title h2::after {
    content: '';
    mask-image: url(../images/ico_separ.svg);
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center;
    background-color: #fff;
    width: 100px;
    height: 20px;
    margin: 5px 0 0 0;   
}

.district__title h2 i {}

.district__content {}

.district__content p {
    margin: 0 0 15px;
}

.district__slider {
    width: 100%;
    overflow: hidden;
    margin: 25px 0 0 0;
}

.district__slider .slick-slide {
    height: 45vw;
    max-height: 500px;
}

.district__slider .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.homebullets {
    color: #e4e4e4;
    margin: 75px 0;
    font-family: "Lobster", sans-serif;
    display: grid;
    gap: 25px;
}

.homebullets__header {
    padding: 0 0 0 300px;
}

.homebullets__header h2 {
    margin: 0;
    font-weight: 400;
    display: grid;
}

.homebullets__header h2::after {
    content: '';
    mask-image: url(../images/ico_separ.svg);
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center;
    background-color: #fff;
    width: 100px;
    height: 20px;
    margin: 5px 0 0 0;   
}

.homebullets__list {
    display: grid;
    grid-template-columns: 2fr 2fr 3fr 2fr;
    gap: 20px;
}

.homebullets__list__item {
    display: flex;
    flex-direction: column;
    /* font-style: italic; */
    font-weight: 500;
    font-size: 18px;
    gap: 10px;
}

.homebullets__list__item span {
    height: 14vw;
    max-height: 160px;
}

.homebullets__list > :nth-child(3) span {
    height: 22vw;
    max-height: 250px;
}

.homebullets__list__item span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.homebullets__list__item p {
    margin: 0;
}

.homebullets__list > :nth-child(3),
.homebullets__list > :nth-child(4) {
    flex-direction: column-reverse;
}

.floors__wrapper {
    background-color: #fff;
    width: 100%;
    padding: 20px;
    border-radius: 15px;
}

.floors {
    position: relative;
    text-align: center;
}

.floors img {
    width: 100%;
    border-radius: 15px;
}

.floors svg {
    position: absolute;
}

.floors svg a {
    opacity: 0;
    fill: #0059c6;
}

.floors svg a:hover,
.floors svg a.active {
    opacity: 0.5;
}

.floors svg a.aprt_2 {
    fill: rgba(246, 128, 13, 0.5);
    opacity: 1;
}

.floors svg a.aprt_3 {
    fill: rgba(255, 0, 0, 0.5);
    opacity: 1;
}

.home__apart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* margin: 75px 0; */
    padding: 0 0 50px;
}

.home__apart__title,
.home__apart__slide__wrap__title {
    color: #fff;
    font-family: "Lobster", sans-serif;
    margin: 0 0 10px;
    font-size: 21px;
    font-weight: 300;
}

.home__apart__content {}

/* .home__apart {
    display: grid;
    grid-template-columns: 1fr 1fr;
} */

.home__apart__slide__wrap {
    overflow: hidden;
}

.home__apart__slider {
    width: 100%;
    overflow: hidden;
}

.home__apart__slider__item {
    display: grid;
    color: #e4e4e4;
}

.home__apart__slider__item > a {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    border-radius: 15px;
}

.home__apart__slider__item > a img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 10px;
}

.home__apart__slider .slick-arrow {
    top: 110px;
}

.home__apart__slider__item__content {
    margin: 10px 0 0 0;
}

.home__apart__slider__item__content h3 {
    font-size: 16px;
    font-weight: 400;
}

.home__apart__slider__item__content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
    font-size: 14px;
}

.home__apart__slider__item__content ul li {
    display: grid;
    gap: 3px;
    font-weight: 600;
}

.home__apart__slider__item__content ul li span {
    color: #7C7C7C;
}

.home__apart__slider__item__content ul li a {
    display: flex;
    justify-content: center;
    background-color: #fff;
    color: #1B1B1B;
    text-decoration: none;
    align-self: center;
    padding: 7px 0;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
}

.home__floor__inside {
    /* margin-bottom: 25px; */
    display: grid;
    grid-template-columns: 250px auto 325px;
    gap: 0 30px;
}

.home__floor__inside h1 {
    grid-column: span 3;
    font-family: "Lobster", sans-serif;
    margin: 0 0 15px;
    font-weight: 300;
}

.home__floor__inside .floors img {
    /* border-radius: unset; */
}

.home__inside {
    color: #000;
    background: unset;
    background-color: #fff;
    padding: 15px 0;
    border-bottom: solid 1px #959595;
    margin: 0 0 15px;
}

.home__inside a {
    color: #000;
}

.home__inside::after {
    display: none;
}

.home__inside .burger__btn::after,
.home__inside .burger__btn::before,
.home__inside .burger__btn span {
    background-color: #000;
}

.home__floor__inside__sidebar {}

.home__floor__inside__sidebar table {
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.home__floor__inside__sidebar table td,
.home__floor__inside__sidebar table th {
    padding: 5px 10px;
}

.home__floor__inside__sidebar table td {
    border-top: solid 1px #f5f5f5;
}

.home__floor__inside__sidebar table tr > :nth-child(4) {
    font-weight: 600;
}

.home__floor__inside__sidebar table tr.td_2 td {
    background-color: rgba(246, 128, 13, 0.5);
}

.home__floor__inside__sidebar table tr.td_3 td {
    background-color: rgba(255, 0, 0, 0.5);
}

.home__floor__inside__sidebar table tr.td_a_active td {
    background-color: rgb(0, 89, 198, 0.5);
}

.floors svg a.td_b_active {
    fill: rgb(0, 89, 198, 0.5);
    opacity: 1;
}

.home__inside .home__header__contact__msg > a {
    background-color: #000;
}

.contact__bg {
    /* margin: 25px 0 0 0; */
    background-color: #1B1B1B;
    padding: 50px 0;
    overflow: hidden;
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact__info {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 20px;
    align-items: center;
}

.contact__info__cover {}

.contact__info__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.contact__info__content {
    color: #fff;
    display: grid;
    font-family: "Lobster", sans-serif;
}

.contact__info__content h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    display: grid;
}

.contact__info__content h2::after {
    content: '';
    mask-image: url(../images/ico_separ.svg);
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center;
    background-color: #fff;
    width: 80px;
    height: 20px;
    margin: 10px 0;   
}

.contact__info__content h2 span {
    display: grid;
}

.contact__info__content h2 span i {
    font-style: normal;
}

.contact__info__content p {
    margin: 10px 0 0;
    font-size: 14px;
}

.contact__info__content a {
    color: #fff;
    text-decoration: none;
    margin: 10px 0 0 0;
}

.contact__info__content__ph {
    font-size: 18px;
    /* font-weight: 600; */
}

.contact__info__content__wa,
.contact__info__content__tg {
    display: grid;
    grid-template-columns: 16px auto;
    gap: 7px;
    align-items: center;
    font-size: 14px;
}

.contact__info__content__wa::before,
.contact__info__content__tg::before {
    content: '';
    mask-image: url(../images/ico_wa.svg);
    mask-repeat: no-repeat;
    background-color: #fff;
    width: 16px;
    height: 16px;
}

.contact__info__content__tg::before {
    mask-image: url(../images/ico_tg.svg);
}

a.contact__info__content__cb {
    font-size: 14px;
    text-decoration: underline;
}

.contact__map {
    position: relative;
    overflow: hidden;
}

.contact__map iframe {
    z-index: 1;
}

.contact__map > div {
    width: 100%;
    height: 100%;
    border: solid 10px #fff;
}

.contact__map [class*="ymaps-2"] [class*="ground-pane"]{-webkit-filter: grayscale(0.9) invert(0.71) contrast(1.85);filter: grayscale(0.9) invert(0.71) contrast(1.85)}
.contact__map [class*="ymaps-2"] [class*="placemark-overlay"] [class*="image"]{background-repeat: no-repeat;-webkit-background-size: contain;background-size: contain}

.contact__map {
    position: relative;
}

.footer {
    background-color: #2F2F2F;
    padding: 25px 0;
    color: #fff;
    /* margin: 25px 0 0 0; */
}

.footer .wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.footer a.home__header__logo {
    font-size: 16px;
    line-height: 22px;
    display: flex;
    flex-direction: column;
    align-self: center;
}

.footer .home__header__logo span b {
    font-size: 27px;
    font-weight: 500;
}

.footer .wrapper a {
    color: #fff;
    text-decoration: none;
    display: grid;
    margin: 0 0 10px;
}

.footer .home__header__contact__msg > a {
    background-color: #fff;
}

.footer__item {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 3px;
}

.footer__item__title {
    color: #7C7C7C;
    font-weight: 600;
    margin: 0 0 10px;
}

.footer__item p {
    margin: 0;
}

.footer__item__ico {
    display: grid;
    grid-template-columns: 14px auto;
    gap: 5px;
    align-items: center;
}

.footer__item__ico::before {
    content: '';
    mask-repeat: no-repeat;
    width: 14px;
    height: 14px;
    background-color: #fff;
}

.footer__item__ico__phone::before {mask-image: url(../images/ico_phone.svg);}
.footer__item__ico__email::before {mask-image: url(../images/ico_email.svg);}
.footer__item__ico__pin::before {mask-image: url(../images/ico_pin.svg);}

.footer__logo {
    display: flex;
}

.footer .home__header__contact__msg {
    margin: 15px 0 0 0;
}

.menu {
    position: fixed;
    top: 0;
    right: -200vw;
    width: 100%;
    max-width: 600px;
    height: 100%;
    background-color: #2F2F2F;
    padding: 30px;
    font-family: "Lobster", sans-serif;
    font-size: 21px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    transition: all 0.4s ease 0s;
}

.menu.active {
    right: 0;
    transition: all 0.4s ease 0s;
}

.menu a {
    color: #fff;
    text-decoration: none;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 20px;
}

.menu ul a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu ul a::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
}

.menu__contact {
    display: grid;
    font-size: 16px;
    gap: 10px;
}

.menu__contact p {
    margin: 0;
    color: #fff;
}

.menu__close {
    position: absolute;
    right: 20px;
    top: 20px;
    mask-image: url(../images/ico_close.svg);
    mask-repeat: no-repeat;
    width: 32px;
    height: 32px;
    background-color: #fff;
    cursor: pointer;
}


.tooltip {
    position: absolute;
    max-width: 200px;
    padding: 8px 12px;
    background: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    /* text-align: center; */
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    word-wrap: break-word;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: #333 transparent transparent;
}

[data-tooltip] {
    position: relative;
    cursor: pointer;
}

.tooltip b {
    margin: 0 0 5px;
    font-weight: 600;
    display: inline-block;
}

.tooltip ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.home__plan h1 {
    font-family: "Lobster", sans-serif;
    margin: 0 0 15px;
    font-weight: 300;
}

.apart {
    display: grid;
    grid-template-columns: 250px auto 250px;
    gap: 0 30px;
    margin-bottom: 25px;
}

.apart__left__title {
    /* text-align: center; */
    margin: 15px 0;
    font-weight: 300;
    font-family: "Lobster", sans-serif;
    font-size: 21px;
}

.apart__content {}

.apart h1 {
    font-family: "Lobster", sans-serif;
    margin: 10px 0 25px;
    font-weight: 300;
    grid-column: span 3;
}

.apart__content__gall {
    display: grid;
    gap: 15px;
}

.apart__content__gall__cover {
    max-height: 50vh;
}

.apart__content__gall__cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.apart__content__gall__tabs {
    display: flex;
    align-items: end;
    gap: 30px;
}

.apart__content__gall__tabs div {
    max-width: 150px;
    opacity: 0.5;
    cursor: pointer;
}

.apart__content__gall__tabs div.active,
.apart__content__gall__tabs div:hover {
    opacity: 1;
}

.apart__content__gall__tabs div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .apart__content__gall__cover img {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.apart__content__gall__tabs__1, 
.apart__content__gall__tabs__2 {
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.6;
}

.apart__content__gall__tabs__1.active, 
.apart__content__gall__tabs__2.active {
    opacity: 1;
    transform: scale(1) !important;
} */

.apart__right {}

.apart__right__info {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}

.apart__right__info li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.apart__right__info li span {
    background-color: #fff;
    /* padding: 5px 0; */
    z-index: 2;
}

.apart__right__info li > :nth-child(1) {
    padding: 5px 5px 5px 0;
}

.apart__right__info li > :nth-child(2) {
    padding: 5px 0 5px 5px;
    font-weight: 600;
}

.apart__right__info li::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: dashed 1px #ddd;
    z-index: 1;
}

.apart__right__booking {
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    padding: 15px;
    margin: 25px 0 0 0;
    border-radius: 10px;
}

.apart__right__form__title {
    font-weight: 300;
    font-family: "Lobster", sans-serif;
    font-size: 21px;
}

.apart__right__booking input {
    border: none;
    border-bottom: solid 1px #ddd;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 300;
    outline: none;
}

.apart__right__booking input::placeholder {
    color: #b4b4b4;
}

.apart__right__booking button {
    background: #2a7bfd;
    border: none;
    color: #fff;
    width: 100%;
    padding: 14px 0;
    font-family: "Roboto Flex", sans-serif;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.apart__right__booking p {
    font-size: 10px;
    color: #333;
}

.apart__right__booking p a {
    color: #333;
}

a.apart__right__pdf {
    display: grid;
    grid-template-columns: 32px auto;
    gap: 10px;
    align-items: center;
    color: #000;
    text-decoration: none;
    margin: 30px 0 0 0;
    justify-content: center;
    font-weight: 400;
}

a.apart__right__pdf::before {
    content: '';
    background-image: url(../images/ico_pdf.svg);
    background-position: center;
    background-size: cover;
    width: 32px;
    height: 32px;
}

.legend {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 5px;
    font-size: 12px;
}

.legend li {
    display: grid;
    grid-template-columns: 10px auto;
    gap: 5px;
    align-items: center;
}

.legend li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend > :nth-child(1)::before {background-color: #fff; border: solid 1px #ddd;}
.legend > :nth-child(2)::before {background-color: rgba(246, 128, 13, 0.5);}
.legend > :nth-child(3)::before {background-color: rgba(255, 0, 0, 0.5);}
.legend > :nth-child(4)::before {background-color: #0059c6;}

.page {
    margin-bottom: 25px;
}

.page h1 {
    font-family: "Lobster", sans-serif;
    margin: 10px 0 25px;
    font-weight: 300;
    grid-column: span 3;
}

.page__about {}

.page__about__content {
    display: grid;
    grid-template-columns: auto 360px;
    gap: 20px;
    align-items: center;
}

.page__about__content__main {
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    padding: 10px 30px;
    border-radius: 15px;
}

.page__about__content__sidebar {}

.location__map {
    height: 600px;
    max-height: calc(100vh - 150px);
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    padding: 20px;
    border-radius: 5px;
}

.placemark__title {
    color: #333;
    font-size: 14px;
    text-align: center;
}

.placemark__img {
    width: 100%;
    height: 100px;
}

.placemark__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placemark__link {
    text-align: center;
}

.placemark__link a {
    color: #333;
    font-size: 14px;
    display: block;
}

.filetype {
    display: none;
}

@media screen and (max-width: 999px) {
    .footer__item {
        font-size: 12px;
    }
    .home__floor__inside {
        grid-template-columns: 1fr 1fr;
    }
    .home__floor__inside h1 {
        grid-column: span 2;
    }
    .home__floor__inside__plan {
        order: 1;
    }
    .home__floor__inside__content {
        order: 3;
        grid-column: span 2;
        max-width: 600px;
        margin: 25px auto;
    }
    .home__floor__inside__sidebar {
        order: 2;
    }
    .home__floor__inside__sidebar table {
        width: 100%;
    }
    .page__about__content {
        gap: 10px;
    }
}

@media screen and (max-width: 849px) {
    .footer .wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer .wrapper > :nth-child(1),
    .footer .wrapper > :nth-child(2) {
        grid-row: span 2;
    }
    .footer__logo {
        /* display: flex; */
    }
    .homebullets__list__item {
        font-size: 16px;
    }
    .home__title h1 {
        font-size: 30px;
        line-height: 35px;
    }
    .home__title h1::after {
        width: 85px;
        height: 10px;
        margin: 15px 0 15px 0;
    }
    .home__title h2 {
        font-size: 18px;
    }
    .home__title p {
        font-size: 16px;
    }
    .apart {
        grid-template-columns: auto 250px;
    }
    .apart h1 {
        grid-column: span 2;
    }
    .apart__left {
        order: 3;
    }
    .apart__content {
        order: 1;
    }
    .apart__right {
        order: 2;
    }
    .apart__content__gall {
        grid-template-columns: auto 75px;
    }
    .apart__content__gall__tabs {
        flex-direction: column;
    }
    .apart__left {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column: span 2;
        gap: 0 15px;
    }
    .apart__left > :nth-child(1) {
        order: 3;
    }
    .apart__left > :nth-child(3) {
        order: 4;
    }
    .apart__left__title {
        order: 1;
        align-self: center;
    }
    .legend {
        order: 2;
    }
    .page__about__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 799px) {
    .contact {
        gap: 10px;
    }
    .contact__info {
        grid-template-columns: 3fr 5fr;
    }
    .about__header {
        grid-template-columns: 200px auto;
        gap: 20px;
    }
    .district {
        grid-template-columns: 200px calc(100% - 200px);
    }
    .district__content {
        padding: 0 0 0 20px;
    }
    .homebullets__header {
        padding: 0 0 0 220px;
    }
}

@media screen and (max-width: 699px) {
    .home {
        padding: 25px 0 40px;
    }
    .home__title {
        margin: 25vh 0 40px;
    }
    .contact {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .contact__map>div {
        height: 50vw;
    }
    .contact__info {
        grid-template-columns: 130px auto;
        justify-content: center;
    }
    .contact__info__content h2 span {
        display: inline;
    }
    a.contact__info__content__ph {
        margin: 0;
    }
    .about__header__title h2,
    .district__title h2,
    .homebullets__header h2 {
        font-size: 21px;
    }
    .home__floor__inside {
        grid-template-columns: 1fr;
    }    
    .home__floor__inside h1 {
        grid-column: unset;
        text-align: center;
    }
    .home__floor__inside__content {
        order: 1;
        grid-column: unset;
        margin: 0 auto 25px;
    }
    .home__floor__inside__sidebar {
        order: 2;
        margin: 0 0 15px;
    }
    .home__floor__inside__plan {
        order: 3;
    }
}

@media screen and (max-width: 649px) {
    .apart__content__gall {
        grid-template-columns: 1fr;
    }
    .apart__content__gall__tabs {
        flex-direction: row;
        gap: 20px;
    }
    .apart__content__gall__tabs div {
        max-width: 70px;
    }
}

@media screen and (max-width: 599px) {
    .about__header {
        grid-template-columns: 1fr;
    }
    .about__header__title {
        display: flex;
        justify-content: space-between;
    }
    .district {
        display: flex;
        flex-direction: column;
    }
    .district__content {
        padding: 0;
    }
    .district__title h2 {
        margin: 0 0 20px;
    }
    .district__slider .slick-slide {
        height: 55vw;
    }
    .about {
        padding: 25px 0 50px;
    }
    .about__slider__item img {
        width: 90%;
        height: 90%;
    }
    .homebullets__header {
        padding: 0;
    }
    .homebullets {
        margin: 50px 0;
    }
    .home__apart {
        display: flex;
        flex-direction: column-reverse;
        margin: 50px 0;
        gap: 25px;
    }
    .contact__map>div {
        border: solid 5px #fff;
    }
    .footer .wrapper {
        grid-template-columns: 80px auto auto;
        gap: 10px 30px;
    }
    .home__header__contact__phone {
        font-size: 18px;
    }
    .home__header__contact {
        gap: 20px;
    }
    a.home__header__logo {
        font-size: 18px;
        line-height: 22px;
    }
    a.home__header__logo span b {
        font-size: 28px;
    }
    .home {
        padding: 25px 0;
    }
    .apart {
        grid-template-columns: auto 200px;
    }
    .apart h1 {
        font-size: 24px;
    }
    .apart__right__booking input {
        font-size: 14px;
    }
    .apart__right__form__title {
        text-align: center;
        font-size: 18px;
    }
    .apart__right__info {
        font-size: 12px;
    }
    a.apart__right__pdf {
        grid-template-columns: 30px auto;
        font-size: 14px;
    }
    a.apart__right__pdf::before {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 549px) {
    .home__title h1 {
        font-size: 24px;
        line-height: 30px;
    }
    .home__title h2 {
        /* font-size: 16px; */
    }
    .about__btns__title {
        font-size: 18px;
    }
    .homebullets__list__item {
        font-size: 14px;
    }
    .footer .wrapper {
        grid-template-columns: 90px auto;
        gap: 10px 20px;
        justify-content: start;
    }
    .footer .wrapper>:nth-child(1) {
        grid-row: span 3;
    }
    .footer .wrapper>:nth-child(2) {
        grid-row: unset;
    }
}

@media screen and (max-width: 499px) {
    .homebullets__list {
        grid-template-columns: 1fr 1fr;
    }
    .homebullets__list>:nth-child(3) span {
        height: unset;
    }
    .homebullets__list__item span {
        height: 25vw !important;
    }
    .about__slider {
        grid-template-columns: repeat(3, 1fr);
    }
    .about__slider__item {
        height: 25vw;
    }
    .about__slider__item img {
        opacity: 0.5;
    }
    .about__slider__item.active img {
        opacity: 1;
    }
}

@media screen and (max-width: 449px) {
    body {
        font-size: 14px;
    }
    .menu {
        font-size: 18px;
    }
    .menu ul {
        gap: 15px;
    }
    .menu__contact {
        font-size: 14px;
        gap: 5px;
    }
    .home__header__contact {
        gap: 15px;
    }
    .home__header__contact__msg {
        margin: 5px 0 0 0;
    }
    .home__header__contact__phone {
        font-size: 14px;
    }
    .home__header__contact__msg {
        gap: 10px;
    }
    .home__header__contact__msg a {
        width: 18px;
        height: 18px;
    }
    /* .home__title {
        margin: 25px 0;
    } */
    /* .home::after {
        background: #000;
    } */
    .home__title {
        margin: 25vh 0 25px 0;
        width: 100%;
    }
    .home__title::before {
        margin-bottom: 15px;
    }
    .home__title::after {
        margin-top: 15px;
    }
    .home::after {
        /* background: linear-gradient(0deg, rgba(0, 0, 0, 1) 45%, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 1) 90% 90%); */
    }
    .home__title p {
        /* font-size: 14px; */
        padding: 0;
    }
    .home__title h1 {
        font-size: 21px;
        line-height: 27px;
    }
    .home__apart {
        margin: 50px 0 0;
        padding: 0;
    }
    .about__content h3 {
        font-size: 18px;
    }
    .footer .wrapper {
        grid-template-columns: 80px auto;
    }
    .footer a.home__header__logo {
        font-size: 14px;
        line-height: 18px;
    }
    .footer .home__header__logo span b {
        font-size: 24px;
    }
    .contact__info__content h2 {
        font-size: 16px;
    }
    .apart {
        grid-template-columns: 1fr;
    }
    .apart h1,
    .apart__left {
        grid-column: unset;
    }
    .apart__content {
        margin: 0 0 15px;
    }
    .apart__content__gall {
        grid-template-columns: auto 90px;
        gap: 20px;
    }
    .apart__content__gall__tabs {
        flex-direction: column;
    }
    .apart__content__gall__tabs div {
        max-width: unset;
    }
    .apart__left {
        grid-template-columns: 1fr;
        margin: 25px 0 0 0;
    }
    .apart__left > :nth-child(3) {
        order: 1;
        max-width: 300px;
        margin: 0 auto;
    }
    .apart__left__title {
        order: 3;
        text-align: center;
    }
    .apart__left > :nth-child(1) {
        order: 4;
    }
    .legend {
        order: 2;
        margin: 15px auto 0;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 399px) {
    .apart__content__gall {
        grid-template-columns: auto 70px;
    }
}

@media screen and (max-width: 379px) {
    a.home__header__logo {
        font-size: 14px;
        line-height: 18px;
    }
    a.home__header__logo span b {
        font-size: 21px;
    }
    .home__title h1 {
        font-size: 18px;
        line-height: 22px;
    }
}

@media screen and (max-width: 359px) {
    .home__floor__inside__sidebar table {
        font-size: 12px;
    }
    .home__floor__inside__sidebar table td,
    .home__floor__inside__sidebar table th {
        padding: 5px 5px;
    }
}

@media screen and (max-width: 349px) {
    .home__header__contact {
        display: grid;
        grid-template-columns: 1fr 25px;
        gap: 0px 25px;
        justify-content: end;
    }
    .home__header__contact__msg {
        order: 3;
    }
    .home__header__contact__phone {
        order: 1;
        white-space: nowrap;
    }
    .burger__btn {
        order: 2;
        grid-row: span 2;
    }
    .home__header__contact__msg a {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 768px) {
}