@import url("normalize.css");
@import url("base.css");

/* main styles */
body {
    position: relative;
    background: var(--bg-color);
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--text-default-color);
}
.container {
    max-width: 100%;
    width: 1470px;    
    margin: 0 auto;
    padding: 0 15px;
}
header {
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 100;    
    transition: 0.7s transform ease;
}
header.fixed {
    top: 0;
    animation: slideDown 0.65s ease-out;
}
header.menu-shown {
    box-shadow: none !important;
}
header.hide {
    transform: translateY(-100%);
}
body.locked header {
    width: calc(100% - 12px);
}
.header-row {
    gap: 50px;
    padding: 10px 15px;
    background: var(--bg-color);
    border-radius: var(--border-radius-default);
    transition: 0.25s all ease;
}
header.fixed .header-row {
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow-default);
}
header.fixed.menu-shown .header-row {
    box-shadow: none;
}
.header-left {
    gap: 50px;
}
.menu-toggler {
    display: block;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 0 !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}
.menu-toggler span {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--text-white-color);
    margin: 5px auto;
    border-radius: 5px;
    transition: 0.45s all ease-in-out;
}
.menu-toggler:hover {
    background: var(--theme-color-lighter);
}
.menu-toggler.active span:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}
.menu-toggler.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggler.active span:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -o-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}
.header-menu {
    gap: 30px;
    font-size: 20px;
}
.header-menu li a {
    color: inherit;
    text-decoration: none;
    font-family: var(--font-family-headers);
    font-size: 28px;
    
}
.header-menu li a:hover {
    color: var(--theme-color);
}
.logo {
    width: 180px;
}
header .logo {
    left: 50%;
    transform: translateX(-50%);
}
.header-right {
    gap: 30px;
}
.header-contacts {
    gap: 5px;
}
.header-phone {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    color: var(--theme-color);
    text-decoration: none;
}
.header-phone:hover {
    color: var(--theme-color-lighter);
}
.header-socials {
    gap: 10px;
}
.header-soc svg {
    display: block !important;
    width: 28px;
    height: 28px;    
}
.menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    padding-top: 0;
    background-color: var(--bg-color);
    overflow: hidden;
    z-index: 9;
}
.menu-wrap.shown {
    height: auto;
    width: 100%;
    padding-top: 75px;
    overflow-y: auto;
}
.menu-wrap.shown > .container {
    height: 100%;
}
.menu-wrap-inner {
    gap: 25px;
    height: 100%;
}
.menu-wrap-content {
    width: 75%;
    gap: 50px;
    flex-shrink: 0;
    padding-right: 30px;
    border-right: 2px solid var(--bg-color-grey);
}
.main-menu {
    flex-wrap: wrap;
    gap: 15px;
}
.main-menu-item a {
    font-family: var(--font-family-headers);
    font-size: 32px;
    text-decoration: none;
    font-weight: 700;
    color: var(--text-default-color);
    transition: 0.3s all;
}
.main-menu-item a:hover {
    color: var(--text-light-color);
}
.main-menu-item.active a {
    color: var(--theme-color);
}
.menu-wrap-contact {    
    gap: 12px;    
    padding: 15px;
    margin-bottom: 15px;
    /*border: 1px solid var(--text-light-color);*/
    border: 1px solid var(--theme-color);
    border-radius: var(--border-radius-default);
    color: var(--text-default-color);
    background: var(--bg-color);
    text-decoration: none;
}
.menu-wrap-contact.menu-wrap-contact--wp {
    color: #9349d9;
    font-weight: 500;
}
.menu-wrap-contact.menu-wrap-contact--tg {
    color: #20a0e1;
    font-weight: 500;
}
.menu-wrap-contact:before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.menu-wrap-contact:after {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: url(../images/icons/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-left: auto;
}
.menu-wrap-contact.menu-wrap-contact--phone:before {
    background-image: url(../images/icons/phone-3.svg);
}
.menu-wrap-contact.menu-wrap-contact--wp:before {
    background-image: url(../images/icons/max.svg);
}
.menu-wrap-contact.menu-wrap-contact--tg:before {
    background-image: url(../images/icons/tg-3.svg);
}
.menu-wrap-contact:last-child {
    margin-bottom: 0;
}
.menu-wrap-contact-inner > div {
    font-weight: 500;
    line-height: 1;
}
.menu-wrap-contact-inner > div br {
    display: none;
}
.menu-wrap-contact-inner span {
    color: var(--text-light-color);
    font-size: 13px;
}
.menu-wrap-contact:hover {
    border-color: var(--second-color);
}
.menu-wrap-sale-block {
    flex-grow: 1;
}
.menu-wrap-sale-title {
    font-family: var(--font-family-headers);
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-color);
    gap: 10px;
    margin-bottom: 40px;
    text-decoration: none;
}
.menu-wrap-sale-title:before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background-image: url(../images/icons/hot.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.menu-wrap-sale-title:after {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background-image: url(../images/icons/arrow-right-theme.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.menu-wrap-address {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-color-grey);
}
.menu-wrap-address > span {
    font-size: 18px;
    color: var(--text-light-color);
}
.menu-wrap-address > div {
    font-weight: 500;
}
.menu-wrap-address > a {
    font-size: 14px;
    color: var(--text-light-color);
}
.menu-wrap-sale {
    height: 150px;
    border-radius: var(--border-radius-default);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-white-color);
}
.menu-wrap-sale-info {
    gap: 15px;
    padding: 10px;
    width: 100%;
    background: rgba(0,0,0,0.3);
}
.menu-wrap-sale-info img {
    width: 30px;
    flex-shrink: 0;
    transition: 0.4s ease-in-out;
}
.menu-wrap-sale:hover .menu-wrap-sale-info img {
    transform: scale(1.2);
}
.hero {
    height: 100vh;
    overflow: hidden;
}
.hero-images-slider-wrapper,
.hero-text-slider-wrapper {
    width: 50%;
    flex-shrink: 0;
}
.hero-images-slider,
.hero-text-slider {
    height: 100%;
}
.hero-images-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-images-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}
.hero-image-slide-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-text-slider-wrapper:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/design/pattern.png) no-repeat;
    background-size: 1000px;
    background-position: -200px 120px;
    opacity: 0.05;
    z-index: -1;
}
.hero-text-slider .swiper-slide {
    width: 100%;
    height: 100%;
    padding: 50px 100px;
}
.hero-text-slider h2 {
    font-size: 84px;
    margin-bottom: 10px;
}
.hero-text-slider p {
    font-size: 26px;
    margin: 0;
}
.hero-nav-wrapper {
    width: auto;
    max-width: 100%;
    bottom: 40px;
    left: 100px;
    z-index: 2;
}
.hero-nav-wrapper .hero-btn-prev, 
.hero-nav-wrapper .hero-btn-next {
    position: static;
    flex-shrink: 0;
    width: 27px;
    height: 27px;
    margin: 0;
}
.hero-nav-wrapper .hero-btn-prev:after, 
.hero-nav-wrapper .hero-btn-next:after {
    display: none;
}
.hero-nav-wrapper .hero-btn-prev svg, 
.hero-nav-wrapper .hero-btn-next svg {
    width: 27px;
}
.hero-pagination {
    position: static !important;
    margin: 0 30px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--text-default-color);
    border-radius: 50%;
    gap: 2px;
    line-height: 1;
}
.main-pros-row {
    flex-wrap: wrap;
    gap: 20px;
}
.main-pros-item {
    width: calc((100% - 40px) / 3);
    text-align: center;
}
.main-pros-item-icon {
    height: 70px;
    margin-bottom: 5px;
}
.main-pros-item-icon img {
    width: auto;
    height: 100%;
    margin: 0 auto;
}
.rooms-row {
    padding: 0 10px 20px 10px;
}
.rooms-row-nav {
    display: none;
}
.rooms-row:not(.swiper-initialized) > .swiper-wrapper {
    flex-wrap: wrap;
    gap: 25px;
}
.room-item {
    border-radius: var(--border-radius-default);
    box-shadow: var(--shadow-default);
    overflow: hidden;
}
.rooms-row:not(.swiper-initialized) .room-item {
    width: calc((100% - 50px) / 3);
}
.rooms-row:not(.swiper-initialized) .rooms-btn-prev,
.rooms-row:not(.swiper-initialized) .rooms-btn-next {
    display: none;
}
.room-item-images {
    width: 100%;
    max-width: 100%;
    height: 350px;
}
.rooms-row .room-item-image {
    height: auto;
}
.room-item-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-item-images-nav .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--text-white-color);
    border-radius: 5px;
}
.room-item-images-nav .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
}
.room-item-info {
    padding: 30px;
    flex-grow: 1;
    background: #f5f5f5;
}
.room-item-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-default-color);
    font-family: var(--font-family-headers);
}
.room-item-detailed {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 25px;
}
.room-item-detail {
    width: calc((100% - 20px) / 2);
    gap: 5px;
    font-weight: 300;
}
.room-item-detail-bg {
    gap: 5px;
    font-weight: 300;
}
.room-item-detail > img {
    width: 25px;
    height: 25px;
}
.room-item-detail-bg > img {
    width: 40px;
    height: 40px;
}
.room-item-footer {
    gap: 30px;
}
.room-item-footer .btn {
    flex-grow: 1;
}
.swiper-scrollbar-drag {
    background: var(--theme-color) !important;
}
.sales-slider {
    padding-bottom: 40px;
}
.sale-slide {
    height: auto;
    text-decoration: none;
}
.sale-slide-img {
    height: 420px;
    border-radius: var(--border-radius-default) var(--border-radius-default) 0 0;
    overflow: hidden;
}
.sale-slide-img img {
    height: 100%;
    object-fit: cover;
}
.sale-slide-info {
    flex-grow: 1;
    padding: 25px;
    background: var(--second-color);
    border-radius: 0 0 var(--border-radius-default) var(--border-radius-default);
    color: var(--text-white-color);
}
.sale-slide-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-family-headers);
}
.sale-slide-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sale-slide-desc a {
    color: inherit;
}
.sales-slider .sales-btn-prev:after,
.sales-slider .sales-btn-next:after {
    display: none;
}
.sales-slider .sales-btn-prev,
.sales-slider .sales-btn-next {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    border: 1px solid var(--text-white-color);
    border-radius: 50%;
    filter: drop-shadow(2px 4px 6px #777);
}
.sales-slider .sales-btn-prev svg,
.sales-slider .sales-btn-next svg {
    width: 40px;
}
.main-services {
    gap: 20px;
}
.main-services-inner {
    width: calc(40% - 20px);
    flex-shrink: 0;
    gap: 20px;
}
.main-service {
    border-radius: var(--border-radius-default);
    flex-basis: 0;
    flex-grow: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
    border: 3px solid var(--bg-color);
    transition: 0.4s all;
}
.main-service:hover {
    box-shadow: -3px 4px 11px 3px rgba(0,0,0,0.25);
    border-color: var(--second-color);
}
.main-service.main-service-big {
    flex-shrink: 0;
    flex-grow: 1;
    height: 580px;
    width: 60%;
}
.main-service:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(22,22,22,0.6), transparent);
}
.main-service-title {
    position: relative;
    color: var(--text-white-color);
    font-size: 24px;
    font-weight: 700;
    padding: 30px;
}
.todo-item {
    flex-basis: 0;
    flex-grow: 1;
    height: 550px;
    text-decoration: none;
    overflow: hidden;
    border-radius: var(--border-radius-default);
}
.todo-img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}
.todo-img img {
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-default);
    flex-basis: 0;
    flex-grow: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
    transition: 0.4s all;
    padding: 4px;
}
.todo-item:hover .todo-img img {
    transform: scale(1.2);
}
.todo-title {
    width: 100%;
    /* height: 100px; */
    position: relative;
    z-index: 2;
    font-size: 20px;
    padding: 20px;
    text-align: center;
    color: var(--text-white-color);
    text-decoration: none;
    background: rgba(0, 0, 0, 0.7);
    margin: 15px;
    border-radius: var(--border-radius-default);
}
.about-row {
    gap: 50px;
}
.about-content, 
.about-images {
    flex-basis: 0;
    flex-grow: 1;
}
.about-content .section-title {
    text-align: left;
    margin-bottom: 30px !important;
}
.about-images img {
    width: 60%;
    min-height: 560px;
    height: 80%;
    object-fit: cover;
    border-radius: var(--border-radius-default);    
    box-shadow: var(--shadow-default);
}
.about-images img:last-child {
    bottom: 0;
    right: 0;
    z-index: -1;
}
.reviews-row {
    gap: 25px;
    flex-wrap: wrap;
}
.review-item {
    width: calc((100% - 75px) / 4);
    border-radius: var(--border-radius-default);
    padding: 20px;
    font-size: 14px;    
    background: var(--bg-color);
    box-shadow: var(--shadow-default);
    overflow: hidden;
}
.review-item:nth-child(2), 
.review-item:nth-child(4n) {
    width: calc((100% - 75px) / 2);
}
.review-item-top {
    gap: 20px;
}
.review-rating {
    width: 60px;
    height: 10px;
    background: url(../images/icons/rating-star.svg) repeat-x;
}
.review-item-top > img {
    width: auto;
    height: 20px;
}
.review-item-info {
    margin-top: 15px;
}
.review-item-info-top {
    gap: 15px;
}
.review-item-author {
    font-weight: 600;
}
.review-item-date {
    color: var(--text-light-color);
}
.review-text-content {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;    
    margin-top: 10px;
}
.read-review {
    margin-top: 15px;
    color: var(--theme-color);
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}
.read-review svg {
    fill: var(--theme-color);
}
.read-review:hover {
    gap: 10px;
}
.reviews-more {
    margin: 40px auto 0 auto;
    display: flex;
}
.section-contacts {
    padding: 0 !important;
}
.map {
    width: 100%;
    height: 580px;
}
.map-contacts-wrap {
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    background: var(--bg-color);
    border-radius: var(--border-radius-default);
    padding: 40px;
    box-shadow: var(--shadow-default);
    z-index: 1;
}
.map-contacts-wrap .section-title {
    margin-bottom: 20px;
}
.contacts-block {
    max-width: 100%;
}
.contacts-block-item {
    margin-bottom: 25px;
}
.contacts-block-item__title {
    gap: 5px;
    color: var(--text-light-color);
}
.contacts-block-item__title svg {
    fill: var(--theme-color);
}
.contacts-block-item__text {
    padding-left: 27px;
    margin-top: 5px;
}
.contacts-block-item__text a {
    text-decoration: none;
    color: var(--text-default-color);
    transition: 0.3s ease;
}
.contacts-block-item__text a:hover {
    color: var(--theme-color);
}
.social-list {
    gap: 10px;
}
.road-make {
    text-transform: uppercase;
    font-size: 12px;
    padding-left: 27px;
    margin-top: 5px;
    color: var(--theme-color);
    cursor: pointer;
}
ymaps[class$="map-copyrights-promo"] {
    display: none !important;
}
footer {
    padding: 40px 0 20px 0;
}
.footer-mobile {
    display: none;
}
.footer-top {
    gap: 50px;
}
.footer-top-item {
    flex-basis: 0;
    flex-grow: 1;
}
.footer-top-item:first-child {
    flex-basis: 20%;
}
.footer-logo img {
    width: 180px;
}
.footer-contacts {
    gap: 15px;
    margin-top: 20px;
}
.footer-contacts a {
    text-decoration: none;
}
.footer-contacts-item {
    margin: 0;
    gap: 10px;
    color: var(--text-default-color);
}
.footer-contacts-item.footer-phones-item {
    align-items: flex-start;
}
.footer-phones a {
    color: var(--text-default-color);
}
.footer-top-item-title {
    font-family: var(--font-family-headers);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.1em;
    color: var(--theme-color);
    margin: 0;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}
.footer-menu > li:not(:last-child) {
    margin-bottom: 12px;
}
.footer-menu > li > a {
    text-decoration: none;
    line-height: 1.18;
    color: var(--text-default-color);
}
.social-list {
    gap: 20px;
    margin-top: 30px;
}
.social-list a {
    transition: 0.35s ease;
}
.social-list a:hover {
    transform: scale(1.15);
}
.footer-bottom {
    justify-content: space-between;
    align-items: center;
    gap: 20px;    
    font-size: 14px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--bg-color-grey);
}
.footer-bottom a {
    color: var(--text-default-color);
}
footer a:hover {
    color: var(--theme-color);
}
.inner-main {
    padding-top: 100px;
}
.room-wrap {
    gap: 50px;
    margin-top: 15px;
}
.room-sliders {
    width: 60%;
}
.room-slider {
    height: 550px;
    border-radius: var(--border-radius-default);
}
.gallery-item img {
    height: 100%;
    object-fit: cover;
}
.room-slider-nav {
    width: auto;
    max-width: 100%;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}
.room-pagination {
    position: static !important;
    margin: 0 30px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--text-white-color);
    color: var(--text-white-color);
    border-radius: 50%;
    gap: 2px;
    line-height: 1;
}
.room-slider-nav .room-btn-prev, 
.room-slider-nav .room-btn-next {
    position: static;
    flex-shrink: 0;
    width: 27px;
    height: 27px;
    margin: 0;
}
.room-slider-nav .room-btn-prev:after, 
.room-slider-nav .room-btn-next:after {
    display: none;
}
.room-slider-nav .room-btn-prev svg, 
.room-slider-nav .room-btn-next svg {
    width: 27px;
}
.room-thumbs {
    margin-top: 10px;
    height: 80px;
}
.room-thumb-item {
    border-radius: var(--border-radius-default);
    overflow: hidden;
}
.room-thumb-item img {
    height: 100%;
    object-fit: cover;
}
.room-info {
    flex-grow: 1;
}
.room-info .section-title {
    text-align: left;
}
.room-opts {
    flex-wrap: wrap;
    gap: 25px;
}
.room-types {
    margin: 40px 0;
    padding: 25px;
    border-radius: var(--border-radius-default);
}
.room-types p:first-child {
    margin-top: 0;
}
.room-types p:last-child {
    margin-bottom: 0;
}
.other-room {
    height: 420px;
    border-radius: var(--border-radius-default);
    background-size: cover;
    text-decoration: none;
    color: var(--text-white-color);
    box-shadow: var(--shadow-default);
    overflow: hidden;
}
.other-room-img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: 0.6s all;
}
.other-room:hover .other-room-img {
    transform: scale(1.2);
}
.other-room-info {
    position: relative;
    width: 100%;
    padding: 25px;
    gap: 20px;
}
.other-room-title {
    /*font-size: 22px;*/
    font-weight: 700;
    font-size: 26px;
    font-family: var(--font-family-headers);
}
.other-room-guest {
    gap: 5px;
}
.other-room-guest img {
    filter: brightness(5);
}
.other-room-guest span {
    flex-shrink: 0;
}
.room-other-nav {
    gap: 30px;
}
.room-other-nav .swiper-button-prev,
.room-other-nav .swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    border: 1px solid var(--text-default-color);
    border-radius: 50%;
    margin-top: 30px !important;
}
.bg-dark .room-other-nav .swiper-button-prev, 
.bg-dark .room-other-nav .swiper-button-next{
    filter: invert(1);
}
.room-other-nav .swiper-button-prev:after, 
.room-other-nav .swiper-button-next:after {
    display: none;
}
.room-other-nav .swiper-button-prev svg,
.room-other-nav .swiper-button-next svg {
    width: 40px;
}
.room-services-wrap {
    gap: 50px;
}
.room-services-info {
    width: 35%;
    flex-shrink: 0;
    color: var(--text-white-color);
}
.room-services-info .section-title {
    text-align: left;
    margin-bottom: 25px;
}
.room-service {
    width: 460px;
    height: 560px;
    border-radius: var(--border-radius-default);
    text-decoration: none;
    overflow: hidden;
}
.room-service-image {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.room-service-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease, opacity .8s ease;
    will-change: transform, opacity;
}
.room-service:hover .room-service-image img {
    transform: scale(1.05);
}
.room-service-image:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(92, 85, 80, .3), rgba(92, 85, 80, .3)), linear-gradient(180deg, rgba(50, 45, 41, 0) 50.28%, rgba(50, 45, 41, .2));
    transition: opacity .8s cubic-bezier(.29, .73, .45, 1);
    will-change: opacity;
    opacity: 0;
}
.room-service:hover .room-service-image:after {
    opacity: 1;
}
.room-service-info {
    width: 100%;
    height: 100%;
}
.room-service-title {
   /* font-size: 22px;*/
    font-weight: 600;
    color: var(--text-white-color);
    bottom: 30px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    font-size: 26px;
    font-family: var(--font-family-headers);
}
.paid-service-icon {
    background: var(--theme-color);
    width: auto;
    height: 30px;
    padding: 0 8px;
    border-radius: var(--border-radius-default);
    font-size: 16px;
    font-weight: 400;
    flex-shrink: 0;
}
.room-service-intro {
    font-size: 12px;
    color: var(--text-white-color);
    top: 50%;
    padding: 0 10px;
    margin: 0;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity .4s cubic-bezier(.25, .74, .22, .99)
}
.room-service-intro p {
    margin: 0;
}
.room-service:hover .room-service-intro {
    opacity: 1;
}
.room-service-btn {
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: opacity .2s cubic-bezier(.25, .74, .22, .99), all .3s cubic-bezier(.25, .74, .22, .99);
}
.room-service:hover .room-service-btn {
    width: 150px;
    height: 150px;
    background: transparent;
    opacity: 0.22;
    border: 1px solid var(--text-white-color);
}
.room-service-btn svg {
    fill: var(--text-white-color);
    width: 30px;
    height: 30px;
    transition: 0.5s all;
}
.room-services-nav,
.sales-list-nav {
    gap: 30px;
    margin-top: 50px;
}
.sales-list-nav {
    display: none !important; 
}
.room-services-prev, 
.room-services-next,
.sales-list-prev, 
.sales-list-next {
    position: static;
    width: 50px;
    height: 50px;
    border: 1px solid var(--text-white-color);
    border-radius: 50%;
    margin: 0;
}
.sales-list-prev, 
.sales-list-next {
    border-color: var(--text-default-color);
}
.room-services-prev:after,
.room-services-next:after,
.sales-list-prev:after,
.sales-list-next:after {
    display: none;
}
.room-services-prev svg, 
.room-services-next svg,
.sales-list-prev svg, 
.sales-list-next svg {
    width: 30px;
}
.sales-list-prev svg, 
.sales-list-next svg {
    filter: invert(1);
}
.inner-section {
    min-height: 450px;
}
.inner-page-top .section-title {
    margin-bottom: 0;
    text-align: left;
}
.breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}
.breadcrumb > li > a {
    color: var(--text-default-color);
    text-decoration: none;
}
.breadcrumb > li > span {
    color: var(--text-light-color);
}
.inner-page {
    margin-top: 60px;
}
.sales-list:not(.swiper-initialized) {
    overflow: visible;
}
.sales-list:not(.swiper-initialized) .swiper-wrapper {
    flex-wrap: wrap;
    gap: 25px;    
}
.sale-list-item {
    width: calc((100% - 50px) / 3);
    height: auto;
    border-radius: var(--border-radius-default);
    overflow: hidden;
    box-shadow: var(--shadow-default);
    text-decoration: none;
    color: var(--text-default-color);
}
.sale-list-item:hover {
    box-shadow: 0 0 0 1px var(--second-color);
}
.sale-list-item-img {
    height: 300px;
    overflow: hidden;
}
.sale-list-item-img img {
    height: 100%;
    object-fit: cover;
    transition: 0.65s ease;
}
.sale-list-item-info {
    padding: 25px;
    flex-grow: 1;
    background: var(--bg-color);
}
.sale-list-item-title {
    font-weight: 600;
    /*font-size: 20px;*/
    color: inherit;
    text-decoration: none;
    font-family: var(--font-family-headers);
    font-size: 32px;
}
.sale-list-item-intro {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0 30px 0;
}
.sale-list-item-intro p:first-child {
    margin-top: 0;
}
.sale-list-item-intro p:last-child {
    margin-bottom: 0;
}
.sale-list-item-info .btn {
    margin-top: auto;
    width: 100%;
}
.sale-list-item-stopper{
    font-size: 12px;
}
.sale-page-top img {
    width: 60%;
    height: 550px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: var(--border-radius-default);
    box-shadow: var(--shadow-default);
}
.sale-page-info .section-title {
    margin: 0;
    text-align: left;
    color: var(--text-white-color);
    background: var(--theme-color);
    padding: 30px;
    margin-left: -80px;
    border-radius: var(--border-radius-default);
    box-shadow: var(--shadow-default);
}
.sale-page-desc {
    padding: 30px;
    font-size: 20px;
}
.sale-page-desc p:first-child {
    margin-top: 0;
}
.sale-page-desc p:last-child {
    margin-bottom: 0;
}
.sale-list-item .paid-service-icon {
    color: var(--text-white-color);
    top: 20px;
    right: 20px;
}
.todo-page-img {
    height: 600px;
    border-radius: var(--border-radius-default);
    overflow: hidden;
}
.todo-page-img img {
    height: 100%;
    object-fit: cover;
}
.todo-page-desc {
    margin-top: 20px;
    font-size: 20px;
}
.todo-page-desc p:first-child {
    margin-top: 0;
}
.todo-page-desc p:last-child {
    margin-bottom: 0;
}
.contacts-page .map {
    border-radius: var(--border-radius-default);
    box-shadow: var(--shadow-default);
    overflow: hidden;
}
.contact-page-top {
    gap: 20px;
    margin-bottom: 50px;
}
.contact-page-top-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
    border-right: 1px solid #ddd;
}
.contact-page-top-item:last-child {
    border-right: none;
}
.contact-page-top-item .footer-phones > div:not(:last-child) {
    margin-bottom: 5px;
}
.contact-page-top-item > svg {
    fill: var(--theme-color);
    width: 30px;
    margin-bottom: 15px;
}
.contact-page-top-item a:not(.contacts-toggle-btn) {
    text-decoration: none;
    color: var(--theme-color);
}
.contact-page-top-item a:hover {
    color: var(--theme-color-lighter);
}
.contact-page-top-item .road-make {
    margin-top: 10px;
    padding-left: 0 !important;
}
.contact-page-top-item .toggle-scheme {
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 5px;
    color: var(--theme-color);
    cursor: pointer;
    margin-top: 10px;
}
.contact-page-top-item .social-list {
    margin-top: 10px;
}
.contacts-scheme {    
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: none;
}
.contacts-scheme-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}
.contacts-scheme-img {
    border-radius: var(--border-radius-default);
    overflow: auto;
}
.tab-togglers {
    gap: 25px;
}
.tab-togglers-active {
    display: none;
}
.tab-toggler {
    font-size: 18px;
    font-weight: 600;
    gap: 25px;
    cursor: pointer;
}
.tab-toggler:not(:last-child):after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--text-default-color);
    border-radius: var(--border-radius-default);
}
.tab-toggler:hover {
    color: var(--text-light-color);
}
.tab-toggler.active {
    color: var(--theme-color);
}
.tabs {
    margin-top: 50px;
    border-radius: var(--border-radius-default);
    background: var(--bg-color);
    box-shadow: var(--shadow-default);
}
.tab-item {
    display: none;
    padding: 30px;
}
.tab-item.tab-active {
    display: block;
}
.faq-item {
    background: var(--bg-color-grey);
    border-radius: var(--border-radius-default);
    transition: 0.45s ease;
}
.faq-item.shown {
    background: var(--theme-color);
    color: var(--text-white-color);
}
.faq-item:not(:last-child) {
    margin-bottom: 15px;
}
.faq-item-header {
    gap: 20px;
    padding: 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}
.faq-item-header:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/icons/plus.svg) no-repeat;
    flex-shrink: 0;
    transition: 0.45s all ease-in-out;
}
.faq-item.shown .faq-item-header:after {
    transform: rotate(180deg);
    filter: invert(1) brightness(10);
    background: url(../images/icons/minus.svg) no-repeat;
}
.faq-item-text {
    display: none;
    padding: 0 25px 25px;
}
.faq-item-text a {
    color: inherit;
}
.faq-item-text p:first-child {
    margin-top: 0;
}
.faq-item-text p:last-child {
    margin-bottom: 0;
}
.mfp-review-content {
    background: var(--bg-color);
    max-width: calc(100% - 20px);
    width: 600px;
    border-radius: var(--border-radius-default);
    margin: 0 auto;
    padding: 30px;
}
.not-found-title {
    font-size: 220px;
    line-height: 1;
    font-weight: 700;
    color: var(--theme-color);
}
.not-found-wrap > p {
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
}
.not-found-actions {
    gap: 20px;
}
.go-back.btn {
    background: var(--second-color);
}
.env-slider-nav,
.main-services-slider-nav {
    gap: 25px;
    margin-top: 20px;
}
.env-slider-footer {
    gap: 30px;
    margin-top: 20px;
}
.env-slider-footer .swiper-scrollbar {
    position: static;
}
.env-slider-nav {
    margin-top: 0 !important;
}
.env-slider .env-slider-nav .swiper-btn,
.env-slider .env-slider-nav .swiper-pagination,
.main-services-slider-nav .swiper-pagination,
.main-services-slider-nav .swiper-btn {
    position: static;
    margin-top: 0;
}
.env-slider .env-slider-nav .swiper-pagination,
.main-services-slider-nav .swiper-pagination{
    width: 50px;
    height: 50px;
    border: 1px solid var(--text-white-color);
    border-radius: 50%;
    color: var(--text-white-color);
}
.main-services-slider-nav .swiper-pagination {
    border-color: var(--theme-color);
    color: var(--theme-color);
}
.main-services-slider-nav .swiper-btn svg line {
    stroke: var(--theme-color);
}
.env-slider .env-slider-nav .swiper-btn:after,
.main-services-slider-nav .swiper-btn:after{
    display: none;
}
.env-slide,
.main-service-slide {
    width: 370px;
    height: 350px;
    border-radius: var(--border-radius-default);
    background-size: cover;
    background-position: center center;
    border: 1px solid #a5a5a5;
}
.main-service-slide {
    text-decoration: none;
}
.env-slide:before,
.main-service-slide:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-default);
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.15);
    z-index: -1;
}
.env-mins {
    margin-top: 30px;
    gap: 5px;
    font-weight: 500;
    background: var(--theme-second-color);
    color: var(--text-white-color);
    padding: 6px 15px 6px 5px;
    border-radius: 0 10px 10px 0;
}
.env-title {
    color: var(--text-white-color);
    padding: 30px 20px;
    font-weight: 700;
    /*font-size: 20px;*/
    font-size: 26px;
    font-family: var(--font-family-headers);
}
.env-pos {
    position: absolute;
}
.subscribe-wrap {
    border: 2px solid var(--theme-color);
    border-radius: var(--border-radius-default);
    margin-top: 140px;
    height: 500px;
    box-shadow: var(--shadow-default);
}
.subscribe-left {
    width: 60%;
    flex-shrink: 0;
    padding: 20px 100px;
}
.subscribe-section-title {
    text-align: left;
    font-family: 'Montserrat';
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}
.subs-list {
    gap: 20px;
    margin-top: 30px;
}
.subs-list > a {
    width: 48px;
    height: 48px;
}
.subs-list > a:hover {
    transform: scale(1.2);
}
.subs-list > a svg {
    width: 100%;
    height: 100%;
}
.subscribe-media {
    width: 323px;
    flex-shrink: 0;
    height: 640px;
    bottom: 30px;
    right: 120px;
}
.subscribe-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section.section-form h3, 
.section.section-form h2 {
    color: var(--text-white-color);
    text-align: left;
}
.contact-form-title {
    font-size: 36px;
}
.contact-form {
    gap: 20px;
    margin-top: 30px;
}
.form-group {
    flex-basis: 0;
    flex-grow: 1;
}
.form-group-label {
    color: var(--text-white-color);
}
.form-group-field {
    margin-top: 5px;
}
.form-field {
    width: 100%;
    padding: 15px 15px 15px 0;
    border: none;
    border-bottom: 1px solid var(--text-white-color);
    background: transparent;
    font-size: 22px;
    color: #fff;
}
.form-field::-webkit-input-placeholder {    
    color: #dfdfdf;
}
.form-field:-ms-input-placeholder { 
    color: #dfdfdf;
} 
.form-field::placeholder {
    color: #dfdfdf;
}
.form-action {
    gap: 5px;
    height: 100%;
}
.form-action .btn {
    background: #fff;
    color: var(--theme-color);
    font-weight: 600;
    padding: 15px;
    height: auto;
    flex-grow: 1;
}
.form-action .btn:hover span {
    color: var(--text-white-color);
}
.agree-chk-wrap {
    display: flex;
    gap: 5px;
    font-size: 12px;
    color: inherit;
}
.contact-form .agree-chk-wrap {
    color: #fff;
}
.agree-chk-wrap > label {
    position: relative;
}
.agree-chk-wrap > label > input {
    opacity: 0;
    z-index: -1;
    position: absolute;
}
.agree-chk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 3px;
    border: 1px solid var(--second-color);
    transition: 0.35s all ease;
}
.agree-chk:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: var(--theme-color);
    border-radius: 2px;
    opacity: 0;
    transition: 0.35s all ease;
}
.agree-chk-wrap > label > input:checked + .agree-chk {
    border-color: var(--theme-color);
}
.agree-chk-wrap > label > input:checked + .agree-chk:before {
    opacity: 1;
}
.form-action > span {
    font-size: 12px;
    color: #fff;
    opacity: 0.6;
}
.form-action > span > a,
.agree-chk-wrap a {
    color: inherit;
}
.review-form-wrap {    
    width: 650px;
    max-width: 100%;
    padding: 25px;    
    margin: 0 auto;
    background: var(--bg-color);
    border-radius: var(--border-radius-default);
}
.review-form-wrap > h3 {
    font-size: 28px;
    text-align: center;
}
.review-form {
    gap: 20px;
    margin-top: 20px;
}
.field-block input, 
.field-block textarea {
    width: 100%;
    padding: 5px 10px 10px 0;
    font-size: 20px;
    border: none;
    border-bottom: 1px solid var(--second-color);
}
.field-block textarea {
    height: 80px;
}
.review-form .btn {
    width: 100%;
}
.review-form-rating {
    gap: 10px;
    flex-wrap: wrap;
}
.stars-rating {    
    flex-direction: row-reverse;    
    width: fit-content;
}
.review-rate-btn:hover svg path,
.review-rate-btn:hover ~ .review-rate-btn svg path,
.review-rate-btn.scored svg path {
    fill: var(--theme-color);
}
.field-block .ec-error {
    color: red;
    font-size: 12px;
}
.review-form-rating .ec-error {
    width: 100%;
    color: red;
    font-size: 12px;
}
.grecaptcha-badge {
    display: none !important;
}
.navi-c {
    display: none;   
}
.map-c {
    display: block;   
}
.gallery-filters {
    gap: 20px;
    margin-bottom: 40px;
}
.gallery-filter.mixitup-control-active:after {
    width: 100%;
}
.gallery-photos {
    gap: 20px;
    flex-wrap: wrap;
}
.photo-item {
    width: calc((95% - 40px) / 4);
    height: 350px;
    position: relative;
    border-radius: var(--border-radius-default);
    overflow: hidden;
}
.photo-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 50%;
    z-index: 2;
}
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.55s ease;
}
.photo-item:hover img {
    transform: scale(1.12);
}
.photo-view svg {
    display: block;
    transition: 0.4s ease;
}
.photo-item:hover .photo-view svg {
    transform: scale(1.22);
}
.sale-page-top img.event-page-img {
    flex-basis: 50%;
}
.event-photos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 228px;
    gap: 4px;
    border-radius: 30px;
    margin-top: 70px;
    overflow: hidden;
}
.event-photo {
    position: relative;
}
.event-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.event-photo:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.event-photo:nth-child(n+8) {
    display: none;
}
.event-photo:nth-child(7):before {
    position: absolute;
    content: attr(data-count);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.51);
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-more {
    width: 220px !important;
}
.room-page-top {
    height: 850px;
    padding: 50px 0;
    overflow: hidden;
}
.room-page-video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-page-top:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}
.room-page-top-container {
    z-index: 3;
}
.room-page-top-content {
    width: 750px;
    max-width: 100%;
    color: var(--text-white-color);
}
.room-page-top-content .breadcrumb {
    opacity: 0.6;
}
.room-page-top-content .breadcrumb > li > a,
.room-page-top-content .breadcrumb > li > span {
    color: var(--text-white-color);
}
.room-page-top-content .breadcrumb svg {
    fill: var(--text-white-color);
}
.room-page-top-content h1 {
    font-size: 4rem;
}
.room-page-top-content p {
    font-size: 1.5rem;
    margin-bottom: 0;
}
.bars-wrap {
    margin: 100px 0;
}
.bar-section:not(:last-child) {
    margin-bottom: 80px;
}
.bar-section-img {
    width: 50%;
    min-height: 500px;
    flex-shrink: 0;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}
.bar-section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bar-section-desc {
    flex-grow: 1;
    border-radius: 0 20px 20px 0;
    padding: 50px;
}
.bar-section-title {
    font-size: 2rem;
    margin-bottom: 20px;
}
.bar-section-intro {
    line-height: 1.5;
}
.bar-section-intro p:first-child,
.bar-section-intro ul:first-child {
    margin-top: 0;
}
.bar-section-intro p:last-child,
.bar-section-intro ul:last-child {
    margin-bottom: 0;
}
.bar-section-btns-wrap {
    margin-top: 25px;
}
.bar-section-btns {
    gap: 15px;
    padding: 25px;
    border-radius: 15px;
    width: 700px;
    max-width: 100%;
}
.bar-section-btn {
    background: var(--bg-color);
    padding: 10px 30px;
    flex-basis: calc((100% - 40px) / 3);
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid var(--bg-color);
    color: var(--text-default-color);
    text-align: center;
    transition: 0.35s all ease;
}
.bar-section-btn:hover {
    background: var(--theme-second-color);
    color: var(--text-white-color);
}
.bar-gallery {
    margin-top: 40px;
}
.bar-slider-footer .swiper-btn svg line {
    stroke: var(--text-default-color);
}
.env-slider .bar-slider-footer .env-slider-nav .swiper-pagination {
    border: 1px solid var(--text-default-color);
    color: var(--text-default-color);
}
.room-opts.room-params {
    gap: 0;
    margin-bottom: 30px;
}
.room-params .room-item-detail {
    width: 100%;
    display: grid;
    padding: 20px 0;
    border-bottom: 1px solid rgba(21, 28, 42, .03);
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}
.room-params .room-item-detail > div {
    gap: 8px;
}
.room-params .room-item-detail > div > img {
    width: 25px;
    height: 25px;
}
.room-params-btn {
    width: 200px;
    height: 46px !important;
}
.cookie-modal {
    background: #fff;
    box-shadow: 2px 0 6px 2px rgba(0, 0, 0, 0.12);
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999999;
    display: inline-block;
    border-radius: 8px;
    margin: 10px;
}
.cookie-modal__content {
    font-size: 10px;
    padding: 5px 5px;
    text-align: center;
}
.cookie-modal__content p {
    margin: 0;
}
.cookie-modal__close {
    background: var(--theme-color);
    font-size: 12px;
    color: var(--text-white-color);
    line-height: 1;
    border: none;
    padding: 3px 15px;
    margin-top: 5px;
    cursor: pointer;
    border-radius: 4px;
}
.cookie-modal__content a {
    color: var(--theme-color);
}
.cv-form-wrap {
    margin: 0 auto;
    max-width: 100%;
    width: 600px;
    background: var(--bg-color);
    padding: 50px;
    border-radius: var(--border-radius-default);
}
.cv-form-wrap h3 {
    text-align: center;
    margin-bottom: 30px;
}
.cv-form .form-group {
    margin-bottom: 25px;
}
.cv-form .form-group:last-of-type {
    margin-bottom: 0;
}
.cv-form .form-group-label {
    color: var(--text-light-color);
}
.cv-form .form-field {
    color: var(--text-default-color);
    border-color: var(--text-default-color);
}
.cv-form .form-field::-webkit-input-placeholder {    
    color: #d7d7d7;
}
.cv-form .form-field:-ms-input-placeholder { 
    color: #d7d7d7;
} 
.cv-form .form-field::placeholder {
    color: #d7d7d7;
}
.cv-form .agree-chk-wrap {
    justify-content: center;
    margin-top: 5px;
}
.cv-form .form-action .btn {
    color: var(--text-white-color);
    background: var(--text-default-color);
}
/* Media */
@media (min-width: 1920px) {
    .container {
        width: 100%;
        padding: 0 100px;
    }
}
@media (max-width: 1360px) {
    .hero-text-slider h2 {
        font-size: 64px;
    }
    .section-title {
        font-size: 44px;
    }
    .section-header-with-link .section-title {
        max-width: 70%;
        text-align: left;
    }
    .about-row {
        align-items: center;
    }
    .about-images img:last-child {
        transform: translate(0, 50px);
    }
    .subscribe-left {
        padding: 20px 50px;
    }
    .subscribe-section-title {
        font-size: 48px;
    }
    .subscribe-media {
        position: static;
        transform: translateY(-100px);
    }
    .event-photos {
        grid-auto-rows: 203px;
    }
}
@media (max-width: 1200px) {
    .menu-wrap-content {
        gap: 30px;
    }
    .main-menu-item a {
        font-size: 18px;
    }
    .room-item-detail {
        width: calc((100% - 25px) / 2);
    }
    .sale-list-item-img {
        height: 220px;
    }
    .tab-togglers {
        flex-wrap: wrap;
    }
    .todo-title {
        height: auto;
    }
    .rooms-row:not(.swiper-initialized) .room-item {
        width: calc((100% - 25px) / 2);
    }
}
@media (max-width: 992px) {
    body {
        font-size: 14px;
    }
    .btn {
        height: auto;
        padding: 5px 15px;
    }
    .header-row,
    .header-left,
    .header-right {
        gap: 25px;
    }
    .header-left {
        margin-right: auto;
    }
    header .logo {
        transform: none;
        position: static;
        order: -1;
    }
    .logo {
        width: 140px;
    }
    .header-menu {
        gap: 20px;
        font-size: inherit;
    }
    .header-contacts {
        flex-direction: row;
    }
    .header-phone {
        font-size: 0;        
        width: 28px;
        height: 28px;
        background-image: url(../images/icons/phone-white.svg);
        background-repeat: no-repeat;
        background-size: 18px;
        background-position: center;
        background-color: var(--theme-color);
        border-radius: 50%;
    }
    .hero-text-slider h2 {
        font-size: 44px;
    }
    .hero-text-slider p {
        font-size: 18px;
    }
    .tl-container {
        padding: 0 15px !important;
    }
    .main-rooms-section {
        margin-top: 0;
    }
    .section {
        padding: 50px 0;
    }
    .room-item-images {
        height: 270px;
    }
    .todo-item {
        height: 360px;
    }
    .todo-title {
        font-size: 16px;
    }
    .about-row {
        flex-wrap: wrap;
    }
    .about-content {
        order: 2;
        flex-basis: 100%;
        margin-top: 50px;
    }
    .map-contacts-wrap {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding: 25px;        
        width: calc((100% - 30px));
        margin: 20px auto;
    }
    .map {
        height: 420px;
    }
    .footer-top {
        flex-wrap: wrap;
    }
    .contact-page-top {
        gap: 40px 20px;
        flex-wrap: wrap;
    }
    .contact-page-top-item {
        flex-basis: calc((100% - 20px) / 2);
        border-right: none;
    }
    .contact-page-top-item:nth-child(1),
    .contact-page-top-item:nth-child(3) {
        border-right: 1px solid #ddd;
    }    
    .room-wrap {
        gap: 30px;
        flex-wrap: wrap;
    }
    .room-sliders {
        width: 100%;
    }
    .sale-page-top {
        flex-wrap: wrap;
    }
    .sale-page-top img {
        width: 100%;
        height: 380px;        
    }
    .sale-page-info {
        margin-top: 20px;
    }
    .sale-page-info .section-title {
        display: none;
    }
    .sale-page-desc {
        padding: 0;
        font-size: inherit;
    }
    .other-room-info {
        background: rgba(0,0,0,0.25);
    }
    /*.room-service-image:after,
    .room-service-intro {
        opacity: 1;
    }*/
    .room-service-btn {
        width: 150px;
        height: 150px;
        background: transparent;
        opacity: 0.22;
        border: 1px solid var(--text-white-color);
    }
    .review-item,
    .review-item:nth-child(2),
    .review-item:nth-child(4n) {
        width: calc((100% - 50px) / 3);
    }
    .subscribe-wrap {
        padding-right: 20px;
    }
    .subscribe-left {
        width: calc(100% - 323px);
        padding: 0 0 0 30px;
    }
    .contact-form-title {
        font-size: 24px;
    }
    .room-page-top {
        height: 650px;
    }
    .room-page-top-content h1 {
        font-size: 2rem;
    }
    .cookie-modal__content {
        font-size: 8px;
        padding: 5px 5px;
    }
}
@media (max-width: 940px) {
    .subscribe-wrap {
        height: auto;
        padding: 40px;
        margin-top: 0;
        background: var(--theme-color);
        color: #fff;
    }
    .subscribe-left {
        width: 100%;
        padding-left: 0;
    }
    .subscribe-section-title {
        text-align: center;
    }
    .subs-list {
        justify-content: center;
    }
    .subscribe-media {
        display: none;
    }
    .event-photo:nth-child(7):before {
        font-size: 18px;
    }
    .bar-section-info {
        flex-direction: column;
    }
    .bar-section-img {
        width: 100%;
        min-height: unset;
        height: 350px;
        border-radius: 20px 20px 0 0;
    }
    .bar-section-desc {
        border-radius: 0 0 20px 20px;
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .room-item-detail-bg{
        /*width: calc((50% - 20px) / 2);*/
    }
    .upnone{
        display:none;    
    }
    .photo-item {
        height: 250px;
    }
    .menu-wrap-contact-inner > div br {
        display: inline;
    }
    .container-full {
        padding: 0 15px;
    }
    body.locked {
        padding-right: 0;
    }
    body.locked header {
        width: 100%;
    }
    .inner-main {
        padding-top: 75px;
    }
    .inner-page {
        margin-top: 20px;
    }
    .breadcrumb {
        display: block;
    }
    .breadcrumb > * {
        display: inline;
        vertical-align: middle;
    }
    .hero {
        height: 500px;
    }
    .hero-text-slider .swiper-slide {
        padding: 25px;
    }
    .hero-text-slider h2 {
        font-size: 26px;
    }
    .hero-text-slider p {
        font-size: 13px;
    }
    .rooms-row {
        padding-bottom: 0;
    }
    .rooms-row-nav {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 45px;
    }
    .rooms-btn-prev, 
    .rooms-btn-next {
        position: static;
        width: 40px;
        height: 40px;
        border: 1px solid var(--text-default-color);
        border-radius: 50%;
    }
    .rooms-btn-prev:after,
    .rooms-btn-next:after {
        display: none;
    }
    .rooms-btn-prev svg, 
    .rooms-btn-next svg {
        width: 30px;
    }
    .sale-list-item {
        width: calc((100% - 25px) / 2);
    }
    .sale-slide-img {
        height: 280px;
        border-radius: 16px 16px 0 0;
    }
    .sale-slide-info {
        padding: 20px;
        margin-top: 0;
    }
    .sale-slide-title {
        font-size: 1.125rem;
    }
    .main-service.main-service-big {
        height: 420px;
    }
    .todo-row {
        flex-wrap: wrap;
    }
    .todo-item {
        height: 250px;
        flex-basis: 50%;
    }
    .about-images img {
        min-height: 350px;
        height: 350px;
    }
    .about-content {
        margin-top: 25px;
    }
    .reviews-row {
        gap: 20px;
    }
    .review-item, 
    .review-item:nth-child(2), 
    .review-item:nth-child(4n) {
        width: calc((100% - 20px) / 2);
    }
    .review-item-top {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    .section-title {
        font-size: 32px;
    }
    .section-subtitle {
        font-size: inherit;
    }
    .footer-top {
        gap: 25px 15px;
        flex-wrap: wrap;
    }
    .footer-logo img {
        width: 100px;
    }
    .footer-contacts {
        align-items: flex-start;
        margin-top: 15px;
    }
    .footer-top-item {
        width: 100%;
        flex-basis: 100%;
    }
    .footer-top-item:first-child {
        flex-basis: 100%;
    }
    .footer-top-item:nth-child(2), 
    .footer-top-item:nth-child(3) {
        width: calc((100% - 15px) / 2);
        flex-basis: 0;
    }
    .footer-menu, .social-list {
        margin-top: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-wrap.shown {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .menu-wrap.shown > .container {
        height: auto;
    }
    .menu-wrap-inner {
        gap: 20px;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .menu-wrap-content {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid var(--bg-color-grey);
        padding-bottom: 20px;
    }
    .main-menu {
        width: 100%;
        gap: 15px;
    }
    .main-menu-item {
        width: 100%;
    }
    .main-menu-item a {
        font-size: 18px;
    }    
    .menu-wrap-contacts {
        width: 100%;        
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 10px;
        background: var(--theme-color);
        border-radius: var(--border-radius-default);
    }
    .menu-wrap-contact {
        gap: 5px;
        margin-bottom: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        color: #fff;
        padding: 0;
    }
    .menu-wrap-contact--wp,
    .menu-wrap-contact--tg {
        display: none;
    }
    .menu-wrap-contact:after {
        display: none;
    }
    .menu-wrap-contact:nth-child(2) {
        order: 4;
        border-radius: var(--border-radius-default);
        margin-left: auto;
    }
    .menu-wrap-contact .menu-wrap-contact-inner > span {
        font-size: 14px;
        color: #fff;
    }
    .menu-wrap-contact:before {
        width: 38px;
        height: 38px;
        background-size: 22px;
        background-color: #fff;
        border-radius: 50%;
        flex-shrink: 0;
    }
    .menu-wrap-sale-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .menu-wrap-address {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .section-header,
    .section-title {
        margin-bottom: 30px;
    }
    .map-contacts-wrap .section-title {
        text-align: left;
    }
    .room-services-nav, .sales-list-nav {
        margin-top: 30px;
    }
    .sales-list-nav {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .other-room {
        height: 260px;
    }
    .other-room-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
        gap: 5px;        
    }
    .other-room-title {
        font-size: inherit;
    }
    .todo-page-img {
        height: 320px;
    }
    .todo-page-desc {
        font-size: inherit;
    }
    .other-room-guest img {
        width: 15px;
    }
    .room-services {
        flex-grow: 1;
    }
    .room-service {
        width: 100%;
    }
    .tab-togglers {
        display: block;
        background: var(--bg-color);
        width: fit-content;
        margin: 5px auto 0 auto;
        border-radius: var(--border-radius-default);
        padding: 10px;
        overflow: hidden;
    }
    .tab-toggler {
        font-size: inherit;
        display: block;    
        text-align: center;
    }
    .tab-toggler:not(:last-child) {
        margin-bottom: 5px;
    }
    .tab-toggler:not(:last-child):after {
        display: none;
    }
    .tab-togglers-active {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 18px;
        font-weight: 700;
        color: var(--theme-color);
    }
    .tab-togglers-active svg {
        width: 20px;
    }
    .tab-togglers-active.active svg {
        transform: rotate(180deg);
    }
    .tabs {
        margin-top 30px;
    }
    .faq-item-header {
        padding: 15px;
    }
    .faq-item-header > span {
        max-width: 80%;
    }
    .header-menu {
        display: none;
    }    
    .main-services {
        flex-wrap: wrap;
    }
    .main-service.main-service-big {
        height: 220px;
    }
    .main-services-inner {
        width: 100%;
    }
    .main-service {
        height: 220px;
        flex-basis: auto;
    }
    .main-service-title {
        font-size: inherit;
        width: 100%;
    }
    .section-header-with-link {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .section-header-with-link .section-title {
        max-width: 100%;
        text-align: center;
    }
    .room-services {
        flex-grow: 1;
    }
    .room-service {
        width: 100%;
    }
    .header-right {
        gap: 5px;
    }
    .header-socials {
        gap: 5px;
    }
    .header-right .btn {
        font-size: 0;
        padding: 0;
    }
    .header-right .btn {
        width: 28px;
        height: 28px;
        background-image: url(../images/icons/booking.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 18px;
        background-color: var(--theme-color);
    }
    .header-right .btn:after {
        display: none;
    }
    .room-slider {
        height: 350px;
    }
    .room-services-wrap {
        gap: 30px;
        flex-wrap: wrap;
    }
    .room-services-info {
        width: 100%;
    }
    .room-service {
        height: 350px;
    }
    .room-item-title {
        font-size: 24px;
    }
    .footer-mobile {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px 10px 0 10px;
        background: var(--second-color);        
        border-radius: 16px 16px 0 0;
        z-index: 10;
    }
    .footer-mobile-inner {
        gap: 15px;
        justify-content: space-between;
    }
    .footer-mobile-item {
        text-decoration: none;
        color:var(--text-default-color);
        /*color: var(--text-white-color);*/
        font-size: 10px;
        text-align: center;
    }
    .footer-mobile-item > svg {
        width: 34px;
    }
    .fmobile-toggler-content {
        /*bottom: calc(100% + 10px);
        right: -10px;
        height: 100%;
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 5px;
        border-radius: 10px 0 0 10px;
        background: var(--second-color);
        transform: translateX(150%);*/
                bottom: calc(100% + 20px);
        right: -10px;
        height: 170%;
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 10px;
        border-radius: 10px 0 0 10px;
        background: var(--bg-color-grey);
        transform: translateX(150%);
    }
    .fmobile-toggler-content.shown {
        transform: translateX(0);
    }
    .fmobile-toggler-content svg {
        width: 50px;
        height: 50px;
    }
    footer {
        padding-bottom: 70px;
    }
    .contacts-scheme-img img {
        width: 780px;
        height: auto;
        max-width: none;
    }
    .not-found-title {
        font-size: 100px;
    }
    .not-found-wrap > p {
        font-size: 18px;
    }
    .not-found-actions {
        flex-wrap: wrap;
        gap: 10px;
    }
    .subscribe-wrap {
        padding: 50px 15px;
    }
    .subscribe-section-title {
        font-size: 38px;
    }
    .contact-form {
        flex-direction: column;
        gap: 25px;
    }
    .event-photos {
        grid-auto-rows: 130px;
    }
    .cookie-modal {
        bottom: 70px;
        width: 80vw;
    }
}
@media (max-width: 600px) {
    .event-photos {
        border-radius: 0px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        flex-shrink: 0;
        height: 200px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .event-photo {
        width: 80%;
        flex-shrink: 0;
    }
    .event-photo:before {
        display: none;
    }
    .event-photo:nth-child(n+8) {
        display: block;
    }
}
@media (max-width: 540px) {
    .photo-item {
        width: calc((100% - 20px) / 2);
    }
    .gallery-filters {
        gap: 5px 10px;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }
    .main-pros-item {
        width: calc((100% - 20px) / 2);
    }
    .subscribe-section-title {
        font-size: 30px;
    }
    .contact-form-wrap > h3 {
        font-size: inherit;
    }
    .contact-form-title {
        font-size: 20px;
    }
    .form-field {
        font-size: 16px;
        padding-top: 5px;
    }
    .navi-c {
        display: block;   
    }
    .map-c {
        display: none;   
    }
    .bars-wrap {
        margin: 50px 0;
    }
    .bar-section:not(:last-child) {
        margin-bottom: 50px;
    }
    .cv-form-wrap {
        padding: 20px;
    }
}
@media (max-width: 480px) {
    header {
        top: 0;
        background: var(--bg-color);
    }
    header.fixed {
        box-shadow: var(--shadow-default);
    }
    .header-row {
        gap: 15px;
        padding: 5px;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    .hero {
        flex-wrap: wrap;
        height: auto;
    }
    .hero-images-slider-wrapper {
        width: 100%;
        order: -1;
        height: 350px;
    }
    .hero-text-slider-wrapper {
        width: 100%;
        height: 150px;
    }
    .hero-text-slider .swiper-slide {
        padding: 15px;
        height: auto;
    }
    .hero-nav-wrapper {        
        position: static;
        order: 3;
        padding: 0 15px;
    }
    .menu-toggler {
        width: 36px;
        height: 36px;
    }
    .menu-toggler span {
        width: 24px;
    }
    .section-title {
        font-size: 26px;
    }
    .more-btn {
        font-size: inherit;
    }
    .about-images img {
        min-height: auto;
        height: 260px;
    }
    .about-content .section-title {
        margin-bottom: 10px !important;
    }
    .review-item, .review-item:nth-child(2), .review-item:nth-child(4n) {
        width: 100%;
    }
    .sale-page-top img {
        height: 320px;
    }
    .inner-page-top .section-title {
        margin-top: 20px;
    }
    .todo-title {
        font-size: inherit;
        padding: 5px;
    }
    .contact-page-top {
        gap: 30px;
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .faq-item-header {
        padding: 10px;
        font-size: inherit;
    }
    .room-item-info {
        padding: 10px;
    }
    .room-item-detailed {
        gap: 10px;
    }    
    .footer-mobile-item > svg {
        width: 26px;
    }
    .room-thumbs {
        height: 60px;
    }
    .room-thumb-item {
        border-radius: var(--border-radius-default);
    }
    .env-slide,
    .main-service-slide {
        width: 270px;
        height: 270px;
    }
    .sales-list:not(.swiper-initialized) .swiper-wrapper {
        gap: 15px;
    }
    .sale-list-item {
        width: calc((100% - 15px) / 2);
    }
    .sale-list-item-info {
        padding: 10px;
    }
    .sale-list-item-title {
        font-size: 18px;
    }
    .sale-list-item-intro {
        font-size: 12px;
    }
    .menu-wrap-contacts {
        gap: 10px;
        padding: 10px 5px;
    }
    .menu-wrap-contact-inner, .menu-wrap-contact .menu-wrap-contact-inner > span {
        font-size: 12px;
    }
    .room-page-top {
        height: 450px;
    }
    .room-page-top-content h1 {
        font-size: 2rem;
    }
    .bar-section-btns {
        gap: 5px;
        padding: 10px;
        flex-direction: column;
    }
    .flatpickr-calendar {
        width: 307.875px;
    }
}
@media (max-width: 400px) {
    .gallery-photos {
        gap: 10px;
    }
    .photo-item {
        width: calc((100% - 10px) / 2);
        height: 180px;
    }
    .sale-list-item {
        width: 100%;
    }
    .menu-wrap-contacts {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .menu-wrap-contact:nth-child(2) {
        margin-left: 0;
    }
    .bar-section-img {
        height: 270px;
    }
    .bar-section-desc {
        padding: 15px;
    }
}
@media (max-width: 370px) {
    .main-pros-item-icon {
        height: 50px;
    }
    .room-item-detail {
        width: 100%;
    }
}
.mgb15 {
    margin-bottom:15px;
}