:root {
    font-size: 16px;

    --white: #fff;
    --secondary-bg-color: #FFFAF5;
    --theme-color: #0B352C;
    --accent-color: #F8AF4F;
    --grey: #CED3CD;

    --font-color-1: #0B352C;

    --section-border-radius: 50px;
    --item-border-radius: 20px;

    --header-height: 75px;

    --form-theme-color: var(--theme-color);
    
    --booking-form-height: var(--header-height);
    --booking-div-height: calc( var(--booking-form-height) + var(--header-height) );
}

body {
    color: var(--font-color-1);
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.5;
    background-color: var(--white);
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    clear: both;
    margin: 0;
    padding: 0 0 1.5em;
}

h3, h4, h5, h6 {
    font-weight: 400;
    clear: both;
    margin: 0;
    padding: 0 0 1.5em;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.7rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1rem;
}

p {
    margin: 0;
    padding-bottom: 1.5em;
}

a {
    color: var(--accent-color);
    text-decoration: underline;
}

a[name] {
    display: block;
    transform: translateY( calc( var(--header-height) * -1 ) );
}

hr {
    color: var(--white);
    background-color: currentColor;
    border: 0;
    margin: 0;
    padding: 0;
    opacity: 1;
}

ul,
ol {
    padding-left: 1.5em;
    margin: 0;
}

ul li,
ol li {
    padding-bottom: 1em;
}

ul li::marker,
ol li::marker {
    color: var(--accent-color);
}

.btn-prim,
.btn-sec,
.btn-hero {
    position: relative;
    display: inline-block;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    padding: 1em 2em;
    overflow: hidden;
    -webkit-transition: color .3s ease, border .3s ease;
    -moz-transition: color .3s ease, border .3s ease;
    transition: color .3s ease, border .3s ease;
    z-index: 2;
}

.btn-sec {
    color: var(--accent-color);
    background-color: var(--white);
    border: 1px solid var(--accent-color);
}

.btn-hero {
    color: var(--white);
    background-color: transparent;
    border: 1px solid var(--white);
}

.btn-prim::after,
.btn-sec::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    background-color: var(--white);
    transform: translate(-50%, -50%) scale(0.75);
    -webkit-transition: opacity .3s ease, transform .0s .3s ease;
	-moz-transition: opacity .3s ease, transform .0s .3s ease;
    transition: opacity .3s ease, transform .0s .3s ease;
    opacity: 0;
    z-index: -1;
}

.btn-sec::after {
    background-color: var(--accent-color);
}

.btn-prim:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.btn-sec:hover {
    color: var(--white);
    text-decoration: none;
}

.btn-hero:hover {
    color: var(--accent-color);
    text-decoration: none;
    background-color: transparent;
    border: 1px solid var(--accent-color);
}

.btn-prim:hover::after,
.btn-sec:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
    -webkit-transition: opacity .3s ease, transform .3s ease;
	-moz-transition: opacity .3s ease, transform .3s ease;
    transition: opacity .3s ease, transform .3s ease;
    opacity: 1;
}

.btn-show-more {
    display: block;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.04em;
    line-height: 1;
    background-color: var(--theme-color);
    border-radius: calc((0.875rem + (0.9375rem * 2)) / 2);
    padding: 0.9375rem 7.5rem;
    -webkit-transition: background .3s ease, color .3s ease;
	-moz-transition: background .3s ease, color .3s ease;
    transition: background .3s ease, color .3s ease;
}

.btn-show-more:hover {
    color: var(--white);
    background-color: var(--accent-color);
}

.btn-features {
    display: block;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    background-color: var(--accent-color);
    border-radius: calc((1.25rem + (0.825em * 2)) / 2);
    line-height: 1;
    padding: 0.825em 5em;
    -webkit-transition: background .3s ease, color .3s ease;
	-moz-transition: background .3s ease, color .3s ease;
    transition: background .3s ease, color .3s ease;
}

.btn-features:hover {
    color: var(--white);
    background-color: var(--theme-color);
}

.btn-menu-dwn {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    background-color: var(--theme-color);
    border-radius: calc((0.875rem + (0.5em * 2) + (0.75em * 2)) / 2);
    line-height: 1;
    padding: 0.75em 1.5em;
    -webkit-transition: background .3s ease;
	-moz-transition: background .3s ease;
    transition: background .3s ease;
}

.btn-menu-dwn:hover {
    background-color: var(--accent-color);
}

.btn-menu-dwn span {
    color: var(--white);
}

.btn-menu-dwn span:nth-child(2) {
    display: block;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    padding: 0.5em 0.75em;
    margin-right: 3rem;
    -webkit-transition: border .3s ease;
	-moz-transition: border .3s ease;
    transition: border .3s ease;
}

.btn-menu-dwn:hover span:nth-child(2) {
    border: 1px solid var(--white);
}

.btn-menu-dwn i {
    color: var(--accent-color);
    font-size: 1.25rem;
    -webkit-transition: color .3s ease;
	-moz-transition: color .3s ease;
    transition: color .3s ease;
}

.btn-menu-dwn:hover i {
    color: var(--white);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
select,
textarea {
    width: 100%;
	color: var(--form-theme-color);
    font-size: 1.25rem;
    font-weight: 400;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--form-theme-color);
    border-radius: 0;
    padding: 1em;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
select:focus,
textarea:focus {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--form-theme-color);
	outline: none !important;
    box-shadow: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="range"]::placeholder,
input[type="date"]::placeholder,
input[type="month"]::placeholder,
input[type="week"]::placeholder,
input[type="time"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
select::placeholder,
option:disabled,
textarea::placeholder {
    color: var(--grey);
}

form .agreement {
    display: inline;
    color: var(--accent-color);
    font-size: 0.875rem;
    letter-spacing: 0.04em;
}

form .agreement a {
    color: var(--accent-color);
    text-decoration: underline;
}

form input[type="checkbox"] {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    margin-right: 0.25em;
}

/* nav toggler */
.nav-menu-toggler div {
    position: relative;
    width: 2rem;
    height: 2rem;
}

.nav-menu-toggler span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    transition: transform 200ms ease-in-out 0s;
    background-color: var(--theme-color);
} 

.nav-menu-toggler[aria-expanded="false"] span:first-child {
  transform: translate(-50%,calc(-50% + .4em)) rotate(0deg);
}

.nav-menu-toggler[aria-expanded="false"] span:last-child {
  transform: translate(-50%,calc(-50% - .4em)) rotate(0deg);
}

.nav-menu-toggler[aria-expanded="true"] span:first-child {
  transform: translate(-50%,-50%) rotate(45deg);
}

.nav-menu-toggler[aria-expanded="true"] span:last-child {
  transform: translate(-50%,-50%) rotate(135deg);
}

.icon-arrow-diagonal-up-right {
    font-size: 0.7em;
    vertical-align: middle;
}

.btn-spec .icon-arrow-diagonal-up-right {
    display: inline-block;
    font-size: 0.68em;
    padding-bottom: 1px;
}

/* navigation */
.navigation {
    display: flex;
    align-items: center;
    flex-direction: row;
    height: var(--header-height);
    background-color: var(--white);
    border-radius: 0 0 var(--section-border-radius) var(--section-border-radius);
    -webkit-transition: height .3s ease;
	-moz-transition: height .3s ease;
    transition: height .3s ease;
}

.navigation.min {
    --header-height: 75px;
}

.navigation .navigation-wrap {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    justify-content: space-between;
}

.navigation .navigation-wrap .logo-wrap {
    flex-grow: 1;
}

.navigation .navigation-wrap .logo-wrap .site-logo {
    display: block;
    max-width: 216px;
}

.navigation .navigation-wrap .cont {
    display: block;
    color: var(--theme-color);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.04em;
}

.navigation .navigation-wrap .cont:hover {
    text-decoration: underline;
}

.navigation .navigation-wrap .cont.icon {
    display: none;
    font-size: 1.25rem;
    font-weight: auto;
}

.navigation .nav-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0 0 var(--section-border-radius) var(--section-border-radius);
    background-color: var(--white);
    -webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
    transition: all .3s ease;
}

.navigation .nav-menu .nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0 2.5rem 1.25rem;
}

.navigation .nav-menu .nav-list .nav-item {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
}

.navigation .nav-menu .nav-list .nav-item:not(:last-child) {
    border-bottom: 1px solid #fbd7a7;
}

.navigation .nav-menu .nav-list .nav-item a {
    display: block;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5em 0;
    -webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0.5;
}

.navigation .nav-menu .nav-list .nav-item a:hover {
    padding-left: 0.5rem;
    opacity: 1;
}

.navigation .nav-menu .nav-list .nav-item a.active {
    opacity: 1;
}

/* booking */
.booking {
    display: flex;
    align-items: center;
    height: var(--booking-div-height);
    background-color: var(--theme-color);
    border-radius: 0 0 var(--section-border-radius) var(--section-border-radius);
    padding-top: var(--header-height);
    margin-top: calc(-1 * var(--header-height));
    -webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 1010;
}

.booking.min {
    --header-height: 75px;
}

.hero + .booking {
    margin-top: calc(-1 * var(--booking-div-height));
}

.hero + .booking.trnsp {
    background-color: transparent;
}

.booking.hidden {
    top: calc(-1 * var(--booking-div-height));
}

.booking .btn-book {
    display: inline-block;
    width: 100%;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid var(--white);
    border-radius: 10px;
    padding: 0.75em 2em;
    overflow: hidden;
}

/* booking form fix */
.booking form {
    padding: 0 !important;
}

.booking form,
.booking form > div {
    gap: 1rem !important;
}

/* breadcrumb */
.breadcrumb {
    display: block;
    padding: 2.5rem 0 0;
    margin: 0;
}

.breadcrumb .breadcrumbs-wrap,
.hero .breadcrumbs-wrap,
.page-title-events .breadcrumbs-wrap {
    display: inline-block;
}

.hero .breadcrumbs-wrap {
    margin-top: 1rem;
}

.page-title-events .breadcrumbs-wrap {
    margin-top: 2.5rem;
}

.hero.main .breadcrumbs-wrap {
    display: none;
}

.breadcrumb .breadcrumbs-wrap .item,
.hero .breadcrumbs-wrap .item,
.page-title-events .breadcrumbs-wrap .item {
    color: var(--grey);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.hero .breadcrumbs-wrap .item,
.page-title-events .breadcrumbs-wrap .item {
    color: var(--white);
}

.breadcrumb .breadcrumbs-wrap .item:not(:last-child)::after,
.hero .breadcrumbs-wrap .item:not(:last-child)::after,
.page-title-events .breadcrumbs-wrap .item:not(:last-child)::after {
    content: ' /';
    color: var(--grey);
}

.hero .breadcrumbs-wrap .item:not(:last-child)::after,
.page-title-events .breadcrumbs-wrap .item:not(:last-child)::after {
    color: var(--white);
}

.breadcrumb .breadcrumbs-wrap a.item:hover,
.hero .breadcrumbs-wrap a.item:hover,
.page-title-events .breadcrumbs-wrap a.item:hover {
    color: var(--accent-color);
}

/* hero */
.hero {
    position: relative;
    min-height: 900px;
    height: 100vh;
    background-color: var(--theme-color);
    border-radius: 0 0 var(--section-border-radius) var(--section-border-radius);
    padding: 0;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: padding .3s ease;
	-moz-transition: padding .3s ease;
    transition: padding .3s ease;
}

.navigation + .hero {
    margin-top: calc(-1 * var(--header-height));
}

.booking + .hero {
    margin-top: calc(-1 * ( var(--header-height) + var(--header-height) ));
}

.hero .title {
    color: var(--white);
    text-transform: uppercase;
}

.hero.main .title {
    padding-bottom: 0!important;
}

.hero .subtitle {
    color: var(--white);
    font-weight: 400;
    border-color: var(--white);
}

.hero.main .subtitle {
    text-transform: initial;
    border: none;
    padding: 0;
    margin: 0;
}

.hero .hero-slider-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero .hero-slider-list::before {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    background-color: var(--theme-color);
    opacity: 0.8;
    z-index: 2;
}

.hero.main .hero-slider-list .hero-location-map {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 450px;
    height: 450px;
    transform: translate(-50%, -50%);
    mix-blend-mode: soft-light;
    opacity: 0.75;
    z-index: 3;
}

.hero.main .hero-slider-list .hero-location-map img {
    display: block;
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

.hero .hero-slider-list .image-wrap {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero .hero-slider-list .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero .container {
    position: relative;
    z-index: 4;
}

.navigation + .hero .container {
    padding-top: var(--header-height);
}

.booking + .hero .container {
    padding-top: calc( var(--header-height) + var(--header-height) );
}

.hero .container .hero-swiper-dots {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
    align-items: center;
    margin-top: 1.25rem;
}

.hero .container .hero-swiper-dots .swiper-pagination-bullet {
    position: relative;
    display: block;
    width: 100%;
    height: 10px;
    background-color: transparent;
    border-radius: 0;
    margin: 0;
    opacity: 1;
}

.hero .container .hero-swiper-dots .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
    transition: all .3s ease;
    pointer-events: none;
}

.hero .container .hero-swiper-dots .swiper-pagination-bullet-active::after {
    height: 4px;
}

.hero.main .container .hero-content-wrap {
    margin-top: 20%;
}

.hero .container .hero-content-wrap {
    margin-top: calc( 17% - var(--header-height) );
}

.hero .container .hero-content-wrap .meta-wrap {
    display: none;
}

.hero.main .container .hero-content-wrap .meta-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--white);
    width: fit-content;
    border: 1px solid var(--white);
    border-radius: 10px;
    margin: 0 auto;
}

.hero .container .hero-content-wrap .meta-wrap span {
    padding: 0.5em 0.75em;
}

.hero .container .hero-content-wrap .meta-wrap span:first-child {
    border-right: 1px solid var(--white);
}

.hero .container .hero-content-wrap .meta-wrap span:first-child:not(:has(i)) {
   display: none;
}

.hero .container .hero-content-wrap .meta-wrap span.loc {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.75em;
}

.hero .container .hero-content-wrap .caption {
    display: block;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.04em;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    padding: 2.5rem 0;
}

/* sections */
section {
    padding: 7.5rem 0;
    overflow: hidden;
}

section.alt {
    background-color: var(--secondary-bg-color);
    border-radius: var(--section-border-radius);
    padding: 2.5rem 0;
}

section.alt:has( + .parallax ) {
    margin-bottom: 2.5rem;
}

/* section.alt:has( + .site-footer ),
section.subscription-form:has( + .site-footer ) {
    margin-bottom: 7.5rem;
} */

section .title {
    font-size: 5.625rem;
    font-weight: 400;
    text-align: center;
    padding-bottom: 2.5rem;
    overflow: hidden;
}

section .title:has(+ .subtitle) {
    padding-bottom: 1.25rem;
}

section .title span {
    color: var(--accent-color);
}

section .subtitle {
    display: block;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-left: 1px solid var(--theme-color);
    border-right: 1px solid var(--theme-color);
    padding: 10px 0;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

section .subtitle span {
    color: var(--accent-color);
    text-transform: initial;
}

section .tab-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 1.25rem;
    row-gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

/* section .tab-wrap .tab-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 1rem;
    align-items: center;
    justify-content: space-between;
    color: var(--theme-color);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    flex-shrink: 0;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    border-radius: 0.5em;
    padding: 0.5em 1.25em;
} */

section .tab-wrap .tab-item {
    flex: 1 1 fit-content;
    display: block;
    color: var(--theme-color);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    border-radius: 0.5em;
    padding: 0.5em 1.25em;
}

section .tab-wrap .tab-item:hover {
    background-color:var(--white);
}

section .tab-wrap .tab-item:active,
section .tab-wrap .tab-item.active {
    color: var(--white);
    background-color:var(--theme-color);
}

section .btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

section .section-swiper-dots {
    display: flex;
    align-items: center;
    flex-direction: row;
    height: fit-content;
    column-gap: 1rem;
    padding-bottom: 2.5rem;
    z-index: 2;
}

section .section-swiper-dots .swiper-pagination-bullet {
    position: relative;
    display: block;
    width: 100%;
    height: 10px;
    background-color: transparent;
    opacity: 1;
    border-radius: 0px;
    margin: 0px!important;
}

section .section-swiper-dots .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--theme-color);
    transform: translateY(-50%);
    pointer-events: none;
    -webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0.25;
}

section .section-swiper-dots .swiper-pagination-bullet-active::after {
    opacity: 1;
}

/* object features & rating */
.object-features .item,
.rating .item {
    position: relative;
    padding: 1.25rem 1.25rem 2rem;
}

.object-features .item::before,
.rating .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: calc( 100% - 40px );
    height: 1px;
    background-color: var(--grey);
    transform: translateX(-50%);
}

.object-features .col-12:not(:nth-child(3n)) .item::after,
.rating .col-12:not(:nth-child(3n)) .item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 1px;
    height: calc( 100% - 40px );
    background-color: var(--grey);
    transform: translateY(-50%);
}

.rating .item .header-wrap {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.object-features .item .item-title {
    padding: 0 0 2em;
}

.object-features .item .item-title,
.rating .item .item-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0;
}

.rating .item .item-title a {
    color: inherit;
    text-decoration: none;
}

.rating .item .item-title a[href^="http"]:hover {
    color: var(--accent-color);
}

.object-features .item .item-title {
    margin-bottom: 2.5rem;
}

.object-features .item .item-title span,
.rating .item .item-title span {
    display: block;
    color: var(--accent-color);
    font-size: 0.7em;
}

.object-features .item .item-text {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
}

.rating .item .header-wrap .icon-wrap {
    display: flex;
    flex-shrink: 0;
    width: 62px;
    height: auto;
    aspect-ratio: 1;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
}

.rating .item .header-wrap .icon-wrap {
    display: flex;
    flex-shrink: 0;
    width: 62px;
    height: auto;
    aspect-ratio: 1;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.rating .item .header-wrap .icon-wrap img {
    width: 100%;
    max-width: 42px;
    height: auto;
    max-height: 42px;
}

.rating .item .item-rating {
    display: block;
    color: var(--grey);
    font-family: 'Montserrat', sans-serif;
    font-size: 5.625rem;
    font-weight: 400;
    line-height: 1;
}

.rating .item .item-rating span {
    color: var(--font-color-1);
    font-variant-numeric: tabular-nums;
}

/* features */
.features .video-wrap {
    position: relative;
    display: flex;
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    border-radius: var(--item-border-radius);
    overflow: hidden;
    z-index: 1;
}

.features .video-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--theme-color);
    pointer-events: none;
    opacity: 0.5;
}

.features .video-wrap video,
.features .video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.features .features-item-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.features .features-item-content-wrap .features-item-about {
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.features .features-item-content-wrap .features-item-features-1-wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    width: 100%;
    margin-bottom: 2.5rem;
    z-index: 1;
}

.features .features-item-content-wrap .features-item-features-1-wrap span {
    position: relative;
    display: block;
    width: 100%;
    color: var(--theme-color);
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
    padding: 0.75em 1em;
    z-index: 2;
}

.features .features-item-content-wrap .features-item-features-1-wrap span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: calc(100% - 20px);
    height: 1px;
    background-color: var(--grey);
    transform: translateX(-50%);
}

.features .features-item-content-wrap .features-item-features-1-wrap span:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 1px;
    height: calc(100% - 20px);
    background-color: var(--grey);
    transform: translateY(-50%);
}

.features .features-item-content-wrap > h3 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    color: var(--theme-color);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: initial;
    padding-bottom: 1.5em;
}

.features .features-item-content-wrap .features-item-features-2-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    column-gap: 20px;
    width: 100%;
    margin-bottom: 2.5rem;
}

.features .features-item-content-wrap .features-item-features-2-wrap .features-2-item-wrap {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
    justify-content: space-between;
    background: linear-gradient(90deg, var(--theme-color) 0%, var(--secondary-bg-color) 35.58%);
    border-radius: 0px 0px 0px 10px;
    padding: 6.5px 10px;
    overflow: hidden;
}

.features .features-item-content-wrap .features-item-features-2-wrap .features-2-item-wrap > div {
    display: flex;
    width: 16px;
    height: auto;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.features .features-item-content-wrap .features-item-features-2-wrap .features-2-item-wrap > div img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.features .features-item-content-wrap .features-item-features-2-wrap .features-2-item-wrap span {
    color: var(--theme-color);
    font-size: 1.25rem;
    letter-spacing: 0.04em;
}

/* gallery */
.gallery .swiper .swiper-slide {
    display: flex;
    border-radius: var(--item-border-radius) !important;
    overflow: hidden;
}

.gallery .swiper .swiper-slide img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/* bonuses */
.bonuses .item {
    position: relative;
    height: 100%;
    padding: 1.25rem;
}

.bonuses .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: calc(100% - 40px);
    height: 1px;
    background-color: var(--grey);
    transform: translateX(-50%);
}

.bonuses .col-12:not(:nth-child(3n)) .item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 1px;
    height: calc(100% - 40px);
    background-color: var(--grey);
    transform: translateY(-50%);
}

.bonuses .item .item-title {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0;
    margin-bottom: 2em;
}

.bonuses .item .bonus-item-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    column-gap: 0.5rem;
    align-items: flex-start;
    border-bottom: 1px solid var(--grey);
    padding: 1.125rem 0;
    margin-bottom: 1.25rem;
    cursor: pointer;
    z-index: 1;
}

.bonuses .item .bonus-item-wrap .item-icon-wrap {
    display: flex;
    width: 24px;
    height: auto;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.bonuses .item .bonus-item-wrap .item-icon-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.bonuses .item .bonus-item-wrap .caption {
    font-size: 0.875rem;
    font-weight: 600;
}

.bonuses .item .bonus-item-wrap .item-image-wrap {
    position: absolute;
    top: -95px;
    right: -65px;
    display: flex;
    width: 170px;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: var(--item-border-radius);
    transform: rotate(90deg);
    -webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
    transition: all .3s ease;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}

.bonuses .item .bonus-item-wrap:hover .item-image-wrap {
    top: -30px;
    right: 0;
    transform: rotate(15deg);
    opacity: 1;
    z-index: 3000;
}

.bonuses .item .bonus-item-wrap:nth-child(odd):hover .item-image-wrap {
    top: -30px;
    right: 0;
    transform: rotate(-15deg);
    opacity: 1;
    z-index: 3000;
}

.bonuses .item .bonus-item-wrap .item-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* rooms */
.rooms .item {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 0;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.rooms .item::before {
    content: '';
    position: absolute;
    top: var(--item-border-radius);
    bottom: 26.5px;
    left: 0;
    right: 0;
    display: block;
    flex-direction: column;
    background-color: transparent;
    border-left: 1px solid var(--grey);
    border-right: 1px solid var(--grey);
    pointer-events: none;
    z-index: -1;
}

.rooms .item .rooms-slider-list {
    position: relative;
    width: 100%;
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.rooms .item .rooms-slider-list .image-wrap {
    display: flex;
    aspect-ratio: 35 / 25;
    width: 100%;
    height: auto;
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.rooms .item .rooms-slider-list .image-wrap img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.rooms .item .rooms-slider-list .slider-controls-wrap {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    right: 0.625rem;
    display: flex;
    flex-direction: row;
    column-gap: 0.625rem;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.rooms .item .rooms-slider-list .slider-controls-wrap .rooms-item-swiper-dots {
    display: flex;
    flex-direction: row;
    column-gap: 0.625rem;
    align-self: flex-start;
    align-items: center;
    width: auto;
    background-color: var(--white);
    border-radius: calc(( 0.625rem + (0.625rem*2) ) / 2);
    padding: 0.625rem;
}

.rooms .item .rooms-slider-list .slider-controls-wrap .rooms-item-swiper-dots .swiper-pagination-bullet {
    display: flex;
    width: 0.625rem;
    height: auto;
    aspect-ratio: 1;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    margin: 0;
    opacity: 1;
}

.rooms .item .rooms-slider-list .slider-controls-wrap .rooms-item-swiper-dots .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.rooms .item .rooms-slider-list .slider-controls-wrap .arrows-wrap {
    display: flex;
    flex-direction: row;
    column-gap: 0.625rem;
}

.rooms .item .rooms-slider-list .slider-controls-wrap .arrows-wrap > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 30px;
    font-size: 0.75rem;
    line-height: 1;
    color: var(--accent-color);
    background-color: var(--white);
    border-radius: 15px;
    opacity: 1;
}

.rooms .item .rooms-slider-list .slider-controls-wrap .arrows-wrap > div:hover {
    color: var(--white);
    background-color: var(--accent-color);
}

.rooms .item .content-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: var(--item-border-radius);
}

.rooms .item .content-wrap .link-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.rooms .item .content-wrap .item-title {
    font-size: 1.25rem;
    font-weight: 700;
    flex-grow: 1;
    padding-bottom: 1.5em;
    -webkit-transition: color .3s ease, color .3s ease;
    -moz-transition: color .3s ease, color .3s ease;
    transition: color .3s ease, color .3s ease;
}

.rooms .item .content-wrap:hover .item-title {
    color: var(--accent-color);
}

.rooms .item .content-wrap .comfort-wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 10px;
    margin: 0 -10px 10px;
}

.rooms .item .content-wrap .comfort-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: calc(100% - 20px);
    height: 1px;
    transform: translateX(-50%);
    background-color: var(--grey);
}

.rooms .item .content-wrap .comfort-wrap span,
.rooms .item .content-wrap .add-info-wrap span {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0 10px;
}

.rooms .item .content-wrap .comfort-wrap span i {
    color: var(--grey);
    font-size: 1.25em;
}

.rooms .item .content-wrap .comfort-wrap span:not(:last-child),
.rooms .item .content-wrap .add-info-wrap span:not(:last-child) {
    border-right: 1px solid var(--grey);
}

.rooms .item .content-wrap .add-info-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 -10px 2rem;
}

.rooms .item .content-wrap .price-caption {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding-bottom: 10px;
    text-decoration: none;
}

.rooms .item .content-wrap .price {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0;
}

.rooms .item .content-wrap .price .price-load {
    color: var(--accent-color);
}

.rooms .item .content-wrap .price > div {
    display: inline;
}

.rooms .item .content-wrap .price > span {
    color: var(--grey);
}

/* rooms filters */
.rooms .filters-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 1.25rem;
    row-gap: 0.625rem;
    align-items: center;
    /* justify-content: space-between; */
    margin-bottom: 2rem;
}

.rooms .filters-wrap .guests-input-wrap,
.rooms .filters-wrap input,
.rooms .filters-wrap select {
    background-color: var(--white);
}

.rooms .filters-wrap .guests-input-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1.25rem;
    flex-shrink: 0;
    height: 3.75rem;
    border: 1px solid var(--grey);
    border-radius: var(--item-border-radius);
    padding: 0 1.25rem;
}

.rooms .filters-wrap .guests-input-wrap label {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0;
    margin: 0;
}

.rooms .filters-wrap .guests-input-wrap input {
    min-width: 3em;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--grey);
    border-radius: 0.625rem;
    padding: 0.5em;
}

.rooms .filters-wrap .guests-input-wrap input:focus {
    border-color: var(--accent-color);
}

.rooms .filters-wrap .guests-input-wrap input[type=number]::-webkit-outer-spin-button,
.rooms .filters-wrap .guests-input-wrap input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.rooms .filters-wrap .guests-input-wrap input[type=number] {
    -moz-appearance: textfield;
}

.rooms .filters-wrap .dropdown {
    position: relative;
    flex-basis: 20%;
    flex-shrink: 0;
    height: 3.75rem;
    min-width: 15rem;
    background-color: var(--white);
}

.rooms .filters-wrap .dropdown .list-icon {
    position: absolute;
    top: 50%;
    right: 1.25em;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 30px;
    height: auto;
    font-size: 0.875rem;
    border: 1px solid var(--grey);
    border-radius: 10px;
    transform: translateY(-50%);
    flex-shrink: 0;
    overflow: hidden;
}

.rooms .filters-wrap .dropdown .list-icon i {
    font-size: 1.25rem;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.rooms .filters-wrap .dropdown .btn-dropdown {
    width: 100%;
    height: 100%;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: left;
    text-transform: none;
    background-color: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--item-border-radius);
    padding: 1.25em;
    box-shadow: none;
    outline: none;
}

.rooms .filters-wrap .dropdown .btn-dropdown::after {
    display: none!important;
}

.rooms .filters-wrap .dropdown .dropdown-menu {
    position: absolute;
    width: 100%;
    min-width: 10rem;
    max-height: 300px;
    font-size: 0.875rem;
    color: var(--font-color-1);
    text-align: left;
    list-style: none;
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--grey);
    border-radius: var(--item-border-radius);
    padding: 0.625em 0;
    margin: 0;
    overflow-y: auto;
    z-index: 1000;
}

.rooms .filters-wrap .dropdown .dropdown-menu li {
    padding: 0;
}

.rooms .filters-wrap .dropdown .dropdown-menu .dropdown-item {
    cursor: pointer;
}

.rooms .filters-wrap .dropdown .btn-dropdown:hover,
.rooms .filters-wrap .dropdown .btn-dropdown:focus {
    border-color: var(--accent-color);
}

.rooms .filters-wrap .btn-filter-refresh {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 3.75rem;
    height: auto;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--grey);
    background-color: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--item-border-radius);
    padding: 0;
}

.rooms .filters-wrap .btn-filter-refresh::after {
    display: none!important;
}

.rooms .filters-wrap .btn-filter-refresh:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}


/* rooms features */
.rooms-features .title {
    font-size: 1.25rem;
    font-weight: 600;
}

.rooms-features .tab-wrap {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 0;
    justify-content: unset;
    margin-bottom: 2.5rem;
}

.rooms-features .tab-wrap .rooms-features-tab-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 1rem;
    align-items: center;
    justify-content: space-between;
    color: var(--grey);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    flex-shrink: 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--grey);
    padding: 0.625rem 0;
}

.rooms-features .tab-wrap .rooms-features-tab-item:hover,
.rooms-features .tab-wrap .rooms-features-tab-item.active
{
    color: var(--theme-color);
}

.rooms-features .tab-wrap .rooms-features-tab-item i {
    opacity: 0;
}

.rooms-features .tab-wrap .rooms-features-tab-item.active i {
    opacity: 1;
}

.rooms-features .image-wrap {
    display: flex;
    /* aspect-ratio: 9 / 14; */
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.rooms-features .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rooms-features .text-wrap {
    height: 100%;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--grey);
}

/* special offers */
.special-offers .title {
    padding-bottom: 2.5rem;
}

.special-offers .special-offers-list:not(.row) {
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.special-offers .item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    aspect-ratio: 5.5 / 4.7;
    text-decoration: none;
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.special-offers .col-12 .item {
    margin: 0;
}

.special-offers .item .item-image-wrap {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.special-offers .item .item-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.special-offers .item .item-about-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    z-index: 2;
}

.special-offers .item .item-about-wrap .date-wrap {
    position: relative;
    display: block;
    width: fit-content;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 0.625rem;
    background-color: #FF880080;
    padding: 0.625rem;
    margin-top: 1.25rem;
    margin-left: 1.25rem;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.special-offers .item .item-about-wrap .date-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to right, var(--white), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.special-offers .item .item-about-wrap .info-wrap {
    background-image: linear-gradient(0deg,#00000030 0%, transparent 100%);
    border-radius: 0 0 var(--item-border-radius) var(--item-border-radius);
    padding: 1.25rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.special-offers .item .item-about-wrap .info-wrap .item-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 0;
    margin-bottom: 0.625rem;
}

.special-offers .item .item-about-wrap .info-wrap .item-text {
    display: flex;
    flex-direction: row;
    column-gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    padding: 0.5rem 0;
    -webkit-transition: padding .3s ease;
    -moz-transition: padding .3s ease;
    transition: padding .3s ease;
}

.special-offers .item:hover .item-about-wrap .info-wrap .item-text {
    padding: 0.75rem 0;
}

/* video-reviews */
.video-reviews {
    padding: 5rem 0;
}

.video-reviews .title {
    padding-bottom: 0.5em;
}

.video-reviews .video-slider-list {
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.video-reviews .item {
    position: relative;
    display: flex;
    aspect-ratio: 3.5 / 4.7;
    width: 100%;
    height: auto;
    border: 1px solid var(--accent-color);
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.video-reviews .item video {
    width: 100%;
    height: 100%;
    background-color: var(--grey);
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.video-reviews .item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 50px;
    height: auto;
    background-color: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.video-reviews .item:hover .play-icon {
    background-color: var(--accent-color);
}

.video-reviews .item .play-icon i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.video-reviews .item:hover .play-icon i {
    color: var(--white);
}

/* .video-reviews .item::after {
    content:'';
    position: absolute;
    inset: 0;
    top: 50%;
    display: block;
    background: transparent;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    pointer-events: none;
    z-index: 2;
} */

/* .video-reviews .item:hover::after {
    top: 75%;
} */

/* services */
.services .item {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    width: 100%;
    height: auto;
    aspect-ratio: 416/300;
    overflow: hidden;
}

.services .item .item-image-wrap {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.services .item .item-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services .item .item-title {
    position: relative;
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--font-color-1);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    padding: 0.75em;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.services .item:hover .item-title {
    color: var(--accent-color);
    padding: 1.5em 0.75em;
}

.services .item .item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    transform: translateX(-50%);
    background-color: var(--grey);
    -webkit-transition: width .3s ease;
    -moz-transition: width .3s ease;
    transition: width .3s ease;
}

.services .item:hover .item-title::after {
    width: 100%;
}

.services .item .item-title i {
    color: var(--grey);
    flex-shrink: 0;
    -webkit-transition: color .3s ease;
    -moz-transition: color .3s ease;
    transition: color .3s ease;
}

.services .item:hover .item-title i {
    color: var(--accent-color);
}

.services .item .ruble-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: auto;
    aspect-ratio: 1;
    color: var(--white);
    background-color: var(--accent-color);
    border: 1px solid var(--white);
    border-radius: 50%;
    overflow: hidden;
}

/* events */
.events .item {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    width: 100%;
    height: auto;
    aspect-ratio: 416/600;
    overflow: hidden;
}

.events .item .item-image-wrap {
    display: flex;
    width: 100%;
    height: auto;
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.events .item .item-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.events .item .item-title {
    position: relative;
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--font-color-1);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    padding: 0.75em;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.events .item:hover .item-title {
    padding: 1.5em 0.75em;
}

.events .item .item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    transform: translateX(-50%);
    background-color: var(--grey);
    -webkit-transition: width .3s ease;
    -moz-transition: width .3s ease;
    transition: width .3s ease;
}

.events .item:hover .item-title::after {
    width: 100%;
}

.events .item .item-title i {
    color: var(--grey);
    flex-shrink: 0;
    -webkit-transition: color .3s ease;
    -moz-transition: color .3s ease;
    transition: color .3s ease;
}

.events .item:hover .item-title i {
    color: var(--theme-color);
}

.events .item .item-about {
    --line-count: 3;
    --font-size: 0.875rem;
    --line-height: 1.5;
    --padding-top: 0;
    display: block;
    height: 0;
    color: var(--accent-color);
    font-size: var(--font-size);
    font-weight: 600;
    line-height: var(--line-height);
    letter-spacing: 0.04em;
    flex-shrink: 0;
    padding: var(--padding-top) 0.75em 0;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.events .item:hover .item-about {
    --padding-top: 0.75em;
    height: calc( var(--font-size) * var(--line-height) * var(--line-count) + var(--padding-top) );
}

/* contact form */
.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form:not(.parallax) {
    background-image: none!important;
}

.contact-form.parallax {
    --form-theme-color: var(--white);
    min-height: 600px;
    height: 100vh;
    max-height: 900px;
    background-color: var(--secondary-bg-color);
    background-image: url(/vendor/img/object-pick-form-back.png);
    background-image: linear-gradient(#00000033, #00000033), url(/vendor/img/object-pick-form-back-2.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    border-radius: var(--section-border-radius);
    padding: 2.5rem 0;
    margin: 0 0 2.5rem;
    overflow: unset;
}

.contact-form.parallax .title {
    color: var(--form-theme-color);
}

.contact-form.parallax .subtitle {
    color: var(--form-theme-color);
    border-color: var(--form-theme-color);
}

.contact-form.parallax .form-wrap {
    top: 30%;
}

.contact-form.parallax form .agreement {
    color: var(--form-theme-color);
}

.contact-form.parallax form .agreement a {
    color: var(--form-theme-color);
}

.contact-form.parallax form input[type="checkbox"] {
    background-color: transparent !important;
    border-color: var(--form-theme-color) !important;
}

.contact-form form button {
    position: relative;
    display: block;
    width: 100%;
    color: var(--form-theme-color);
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.04em;
    background-color: transparent;
    border: 1px solid var(--form-theme-color);
    border-radius: 10px;
    padding: 1em 2em;
    overflow: hidden;
    z-index: 1;
}

.contact-form form button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    background-color: var(--white);
    transform: translate(-50%, -50%) scale(0.75);
    -webkit-transition: opacity .3s ease, transform .0s .3s ease;
	-moz-transition: opacity .3s ease, transform .0s .3s ease;
    transition: opacity .3s ease, transform .0s .3s ease;
    opacity: 0;
    z-index: -1;
}

.contact-form form button:hover {
    color: var(--font-color-1);
}

.contact-form form button:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
    -webkit-transition: opacity .3s ease, transform .3s ease;
	-moz-transition: opacity .3s ease, transform .3s ease;
    transition: opacity .3s ease, transform .3s ease;
    opacity: 1;
}

/* subscription form */
.subscription-form {
    position: relative;
    background-color: #E8AC5D;
    border-radius: var(--section-border-radius);
    padding: 2.5rem 0;
    margin: 0 0 2.5rem;
    overflow: hidden;
}

.subscription-form::before,
.subscription-form::after {
    content:'';
    position: absolute;
    display: flex;
    width: 775px;
    height: auto;
    aspect-ratio: 1;
    background-image: url(/vendor/img/subscr-back-logo-wh.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
}

.subscription-form::before {
    left: -380px;
    bottom: -470px;
}

.subscription-form::after {
    right: -380px;
    top: -470px;
}

.subscription-form .title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    padding-bottom: 0.25em !important;
}

.subscription-form .subtitle {
    color: var(--white);
    font-size: 1.25rem;
    text-align: left;
    border: none;
    padding: 0;
    margin-bottom: 1.5em;
}

.subscription-form .form-wrap {
    position: relative;
    background-color: var(--white);
    border-radius: var(--item-border-radius);
    padding: var(--item-border-radius);
    overflow: hidden;
    z-index: 2;
}

.subscription-form .form-wrap::before {
    content:'';
    position: absolute;
    right: -180px;
    bottom: -240px;
    display: flex;
    width: 395px;
    height: auto;
    aspect-ratio: 1;
    background-image: url(/vendor/img/subscr-back-logo-or.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
}

.subscription-form .form-wrap form {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    z-index: 2;
}

.subscription-form label.inp-lbl {
    color: var(--font-color-1);
    font-size: 0.875rem;
    font-weight: 400;
}

.subscription-form input[type="text"],
.subscription-form input[type="email"],
.subscription-form input[type="tel"],
.subscription-form input[type="date"] {
    width: 100%;
	color: var(--font-color-1);
    font-size: 0.875rem;
    font-weight: 600;
    background-color: var(--white);
    border: none;
    border-bottom: 1px solid var(--grey);
    border-radius: 0;
    padding: 0 0 0.5em;
}

.subscription-form input[type="date"] {
    color: var(--grey);
}

.subscription-form input[type="text"]:focus,
.subscription-form input[type="email"]:focus,
.subscription-form input[type="tel"]:focus,
.subscription-form input[type="date"]:focus {
    color: var(--accent-color);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--accent-color);
	outline: none !important;
    box-shadow: none;
}

.subscription-form input[type="text"]::placeholder,
.subscription-form input[type="email"]::placeholder,
.subscription-form input[type="tel"]::placeholder {
    color: var(--grey);
}

.subscription-form button[type="submit"] {
    width: 100%;
    color: var(--grey);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    background-color: var(--white);
    border: 1px solid var(--grey);
    border-radius: 28px;
    padding: 1.375em 0;
}

.subscription-form button[type="submit"]:hover {
    color: var(--white);
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.subscription-form button[type="submit"].inactive:hover {
    color: var(--white);
    background-color: var(--grey);
    border: 1px solid var(--grey);
}

.subscription-form .checkbox-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 2rem;
}

.subscription-form label.agreement {
    color: var(--grey);
    font-size: 0.875rem;
    font-weight: 400;
}

.subscription-form label.agreement a {
    color: var(--accent-color);
    text-decotarion: underline;
}

.subscription-form .invalid-feedback {
    font-size: .75em;
    font-weight: 500;
}

/* page elements */
/* page title */
.page-title {
    padding: 6rem 0 3.5rem;
}

.page-title .title {
    color: var(--accent-color);
    text-transform: uppercase;
    padding: 0;
}

/* page content */
.page-features + .page-content {
    padding-top: 0;
}

.page-content .text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 1.5rem 0;
}

.page-content .text hr {
    color: var(--grey);
    margin: 1rem 0;
}

/* page content rooms */
.page-content-rooms {
    padding-top: 2.5rem;
    overflow: unset;
}

.page-content-rooms .left-wrap {
    position: sticky;
    top: calc(2 * var(--header-height) + 1rem);
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
}

.page-content-rooms .left-wrap .room-page-slider-list {
    position: relative;
    width: 100%;
    border-radius: var(--item-border-radius);
    overflow: hidden;
    z-index: 1;
}

.page-content-rooms .left-wrap .room-page-slider-list .room-page-swiper-dots {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    height: fit-content;
    column-gap: 1rem;
    padding: 1.25rem;
    z-index: 2;
}

.page-content-rooms .left-wrap .room-page-slider-list .room-page-swiper-dots .swiper-pagination-bullet {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 0;
    margin: 0;
    opacity: 0.75;
}

.page-content-rooms .left-wrap .room-page-slider-list .room-page-swiper-dots .swiper-pagination-bullet-active {
    height: 4px;
    border-radius: 2px;
    opacity: 1;
}

.page-content-rooms .left-wrap .room-page-slider-list .image-wrap {
    display: flex;
    aspect-ratio: 312 / 275;
    width: 100%;
    height: auto;
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.page-content-rooms .left-wrap .room-page-slider-list .image-wrap img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.page-content-rooms .left-wrap .room-page-slider-list .price-wrap {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    display: flex;
    flex-direction: column;
    row-gap: 0.625rem;
    z-index: 2;
}

.page-content-rooms .left-wrap .room-page-slider-list .price-wrap .price,
.page-content-rooms .left-wrap .room-page-slider-list .price-wrap .price-caption {
    position: relative;
    display: block;
    width: fit-content;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;

    border-radius: 0.625rem;
    background-color: #FF880080;
    padding: 0.625rem;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);

    text-decoration: none;
}

.page-content-rooms .left-wrap .room-page-slider-list .price-wrap .price::before,
.page-content-rooms .left-wrap .room-page-slider-list .price-wrap .price-caption::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to right, var(--white), transparent);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.page-content-rooms .left-wrap .room-page-slider-list .price-wrap .price > div {
    display: inline;
}

.page-content-rooms .left-wrap .room-page-slider-list .price-wrap .price-caption {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
linear-gradient(0deg, rgba(248, 175, 79, 0.1), rgba(248, 175, 79, 0.1));
}

.page-content-rooms .content-wrap {
    display: flex;
    flex-direction: column;
}

.page-content-rooms .content-wrap .title,
.page-content-rooms .content-wrap h2,
.page-content-rooms .content-wrap h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    padding-bottom: 1em;
}

.page-content-rooms .content-wrap .about {
    padding-bottom: 1.25rem;
}

.page-content-rooms .content-wrap .about p,
.page-content-rooms .content-wrap .about ul,
.page-content-rooms .content-wrap .about ol {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.page-content-rooms .content-wrap .comfort-list-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 0;
    border: 1px solid var(--grey);
    border-radius: var(--item-border-radius);
    padding: 0 1.25rem;
    margin-bottom: 2.5rem;
}

.page-content-rooms .content-wrap .comfort-list-wrap .item {
    cursor: pointer;
    padding: 1.25rem 0;
}

.page-content-rooms .content-wrap .comfort-list-wrap .item:not(:last-child) {
    border-bottom: 1px solid var(--grey);
}

.page-content-rooms .content-wrap .comfort-list-wrap .item .item-title-wrap {
    display: flex;
    flex-direction: row;
    column-gap: 1.25rem;
    justify-content: space-between;
    align-items: center;
}

.page-content-rooms .content-wrap .comfort-list-wrap .item .item-title-wrap .item-title,
.page-content-rooms .content-wrap .comfort-list-wrap .item .item-title-wrap .item-qty {
    font-size: 1.25rem;
    font-weight: 600;
}

.page-content-rooms .content-wrap .comfort-list-wrap .item .item-title-wrap .item-title {
    flex-grow: 1;
}

.page-content-rooms .content-wrap .comfort-list-wrap .item .item-about {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding-top: 1em;
}

.page-content-rooms .content-wrap .comfort-list-wrap .item .item-about ul {
    list-style: none;
    padding: 0;
}

.page-content-rooms .content-wrap .comfort-list-wrap .item .item-about ul > li::before {
    content: '';
    display: inline-block;
    aspect-ratio: 1;
    width: 24px;
    height: auto;
    vertical-align: middle;
    background-image: url(/vendor/img/logo-list.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 0.625rem;
}

.page-content-rooms .content-wrap .comfort-list-wrap .item .item-about ul ul {
    list-style: disc;
    padding-left: 4em;
}

.page-content-rooms .content-wrap .comfort-list-wrap .item .item-about ul ul > li::before {
    content: '';
    display: none;
}

.page-content-rooms .content-wrap .comfort-list-wrap .item .item-title-wrap .list-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 30px;
    height: auto;
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
}

.page-content-rooms .content-wrap .comfort-list-wrap .item .item-title-wrap .list-icon i {
    font-size: 1.25rem;
    line-height: 1;
    margin: 0;
    padding: 0;
    -webkit-transition: transform .3s ease;
	-moz-transition: transform .3s ease;
    transition: transform .3s ease;
}

.page-content-rooms .content-wrap .comfort-list-wrap .item:not(.collapsed) .item-title-wrap .list-icon i {
    transform: rotate(180deg);
}

.page-content-rooms .banner-wrap {
    display: flex;
    aspect-ratio: 2/1;
    width: 100%;
    height: auto;
}

.page-content-rooms .banner-wrap {
    display: flex;
    aspect-ratio: 2/1;
    width: 100%;
    height: auto;
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.page-content-rooms .banner-wrap img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/* page content events */
.page-content-events .events-group:not(:last-child) {
    border-bottom: 1px solid var(--grey);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

.page-content-events .events-group .events-group-title {
    font-size: 5.625rem;
    font-weight: 400;
    padding-bottom: 2.5rem
}

.page-content-events .item {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
    justify-content: space-between;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    background-color: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--item-border-radius);
    padding: 1.25rem;
    -webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
    transition: all .3s ease;
}

.page-content-events .item:hover {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.page-content-events .item span {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0;
}

.page-content-events .item span.date {
    color: var(--accent-color);
}

.page-content-events .item span.time {
    color: var(--grey);
}

.page-content-events .item:hover span {
    color: var(--white);
}

/* page features */
.page-features {
    padding: 7.5rem 0 0;
}

.page-features:has( + section.alt) {
    padding-bottom: 7.5rem;
}

.page-features .page-features-list {
    border-top: 1px solid var(--grey);
    padding-top: 2.5rem;
}

.page-features .item {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
    height: 100%;
    border-bottom: 1px solid var(--grey);
    padding-bottom: 2.5rem;
}

.page-features .item div {
    display: flex;
    width: 50px;
    height: auto;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.page-features .item div img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.page-features .item h3 {
    color: var(--accent-color);
}

.page-features .item h3,
.page-features .item span {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding-bottom: 0;
}

.page-features .page-features-disclaimer {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--grey);
    padding-bottom: 2.5rem;
}

/* page services and special offers */
.page-title-services,
.page-title-special-offers {
    padding: 2.5rem 0;
}

.page-title-services .content-wrap,
.page-title-special-offers .content-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    height: 100%;
}

.page-title-services .content-wrap {
    justify-content: space-between;
}

.page-title-services .title,
.page-title-services .caption,
.page-title-special-offers .title,
.page-title-special-offers .content-wrap h2 {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    padding: 0;
}

.page-title-special-offers .content-wrap h2 {
    padding-bottom: 1em;
}

.page-title-services .content-wrap .about,
.page-title-special-offers .content-wrap .about,
.page-title-special-offers .content-wrap .terms-wrap .terms {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.page-title-special-offers .content-wrap .about {
    flex-grow: 1;
}

.page-title-special-offers .content-wrap .terms-wrap .terms {
    display: block;
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
    padding: 1.25rem 0;
}

.page-title-services .image-wrap,
.page-title-special-offers .image-wrap {
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.page-title-services .image-wrap img,
.page-title-special-offers .image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* page about */
.page-about .left-wrap,
.page-about .right-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
}

.page-about .left-wrap .image-wrap {
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.page-about .left-wrap .image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-about .right-wrap {
    height: 100%;
}

.page-about .right-wrap .about {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    flex-grow: 1;
}

.page-about .right-wrap .about-list-title {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0;
}

.page-about .right-wrap .about-list-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 0;
    border: 1px solid var(--grey);
    border-radius: var(--item-border-radius);
    padding: 0 1.25rem;
}

.page-about .right-wrap .about-list-wrap div {
    display: flex;
    flex-direction: row;
    column-gap: 1.25rem;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.page-about .right-wrap .about-list-wrap div:not(:last-child) {
    border-bottom: 1px solid var(--grey);
}

.page-about .right-wrap .about-list-wrap div span {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.page-about .right-wrap .about-list-wrap div span:first-child {
    flex-shrink: 0;
}

.page-about .right-wrap .about-list-wrap div span:last-child {
    color: var(--accent-color);
    text-align: right;
}

/* page menu spa */
.page-menu-spa .left-wrap,
.page-menu-spa .right-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
}

.page-menu-spa .left-wrap .image-wrap {
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.page-menu-spa .left-wrap .image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-menu-spa .right-wrap {
    height: 100%;
}

.page-menu-spa .right-wrap > .item-about {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.page-menu-spa .right-wrap .item-features-list-wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    width: 100%;
    padding-bottom: 1.25rem;
    z-index: 1;
}

.page-menu-spa .right-wrap .item-features-list-wrap span {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
    padding: 0.75em 1em;
    z-index: 2;
}

.page-menu-spa .right-wrap .item-features-list-wrap span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: calc(100% - 20px);
    height: 1px;
    background-color: var(--grey);
    transform: translateX(-50%);
}

.page-menu-spa .right-wrap .item-features-list-wrap span:not(:nth-child(2n))::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 1px;
    height: calc(100% - 20px);
    background-color: var(--grey);
    transform: translateY(-50%);
}

.page-menu-spa .right-wrap .item-menu-list-title {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0;
}

.page-menu-spa .right-wrap .item-menu-list-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 0;
    border: 1px solid var(--grey);
    border-radius: var(--item-border-radius);
    padding: 0 1.25rem;
}

.page-menu-spa .right-wrap .item-menu-list-wrap .item {
    cursor: pointer;
    padding: 1.25rem 0;
}

.page-menu-spa .right-wrap .item-menu-list-wrap .item:not(:last-child) {
    border-bottom: 1px solid var(--grey);
}

.page-menu-spa .right-wrap .item-menu-list-wrap .item .item-title-wrap {
    display: flex;
    flex-direction: row;
    column-gap: 1.25rem;
    justify-content: space-between;
    align-items: center;
}

.page-menu-spa .right-wrap .item-menu-list-wrap .item .item-title-wrap .item-title {
    font-size: 1.25rem;
    font-weight: 600;
    flex-grow: 1;
}

.page-menu-spa .right-wrap .item-menu-list-wrap .item .item-title-wrap .item-time,
.page-menu-spa .right-wrap .item-menu-list-wrap .item .item-title-wrap .item-price,
.page-menu-spa .right-wrap .item-menu-list-wrap .item .item-about {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.page-menu-spa .right-wrap .item-menu-list-wrap .item .item-about {
    display: block;
    padding-top: 1em;
}

.page-menu-spa .right-wrap .item-menu-list-wrap .item .item-title-wrap .item-price {
    color: var(--accent-color);
}

.page-menu-spa .right-wrap .item-menu-list-wrap .item .item-title-wrap .list-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 30px;
    height: auto;
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
}

.page-menu-spa .right-wrap .item-menu-list-wrap .item .item-title-wrap .list-icon i {
    font-size: 1.25rem;
    line-height: 1;
    margin: 0;
    padding: 0;
    -webkit-transition: transform .3s ease;
	-moz-transition: transform .3s ease;
    transition: transform .3s ease;
}

.page-menu-spa .right-wrap .item-menu-list-wrap .item:not(.collapsed) .item-title-wrap .list-icon i {
    transform: rotate(180deg);
}

/* page menu restaurant */
.page-menu-restaurant .menu-list-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 0;
    border: 1px solid var(--grey);
    border-radius: var(--item-border-radius);
    padding: 0 1.25rem;
}

.page-menu-restaurant .menu-list-wrap .item {
    display: flex;
    flex-direction: row;
    column-gap: 1.25rem;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.page-menu-restaurant .menu-list-wrap .item:not(:last-child) {
    border-bottom: 1px solid var(--grey);
}

.page-menu-restaurant .menu-list-wrap .item .item-title,
.page-menu-restaurant .menu-list-wrap .item .item-weight,
.page-menu-restaurant .menu-list-wrap .item .item-price {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.page-menu-restaurant .menu-list-wrap .item .item-title {
    flex-grow: 1;
}

.page-menu-restaurant .menu-list-wrap .item .item-weight {
    color: var(--accent-color);
}

.page-menu-restaurant .menu-list-wrap .item .item-weight,
.page-menu-restaurant .menu-list-wrap .item .item-price {
    flex-shrink: 0;
}

/* page title events */
.page-title-events {
    position: relative;
    min-height: 900px;
    height: 100vh;
    background-color: var(--theme-color);
    border-radius: 0 0 var(--section-border-radius) var(--section-border-radius);
    padding: 0;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: padding .3s ease;
	-moz-transition: padding .3s ease;
    transition: padding .3s ease;
}

.navigation + .page-title-events {
    margin-top: calc(-1 * var(--header-height));
}

.booking + .page-title-events {
    margin-top: calc(-1 * ( var(--header-height) + var(--header-height) ));
}

.page-title-events .container {
    position: relative;
    z-index: 2;
}

.navigation + .page-title-events .container {
    padding-top: var(--header-height);
}

.booking + .page-title-events .container {
    padding-top: calc( var(--header-height) + var(--header-height) );
}

.page-title-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #FF8800;
    opacity: 0.5;
    z-index: 1;
}

.page-title-events .background-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-title-events .background-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-title-events .container .content-wrap {
    margin-top: calc(20% - var(--header-height));
}

.page-title-events .title {
    color: var(--white);
    text-transform: uppercase;
    padding-bottom: 0.25em;
}

.page-title-events .caption {
    display: block;
    color: var(--white);
    font-weight: 600;
    text-transform: initial;
    text-align: center;
    border: none;
    padding: 0;
    margin: 0;
}

/* page content contacts */
.page-content-contacts .cont-item-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 0.625rem;
    aspect-ratio: 3/2;
    border: 1px solid var(--grey);
    border-radius: var(--item-border-radius);
    padding: 1.25rem;
    overflow: hidden;
}

.page-content-contacts .cont-item-wrap span,
.page-content-contacts .cont-item-wrap a {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.page-content-contacts .cont-item-wrap span:last-child,
.page-content-contacts .cont-item-wrap a {
    color: var(--accent-color);
}

.page-content-contacts .cont-item-wrap a {
    text-decoration: none;
}

.page-content-contacts .cont-item-wrap a:hover {
    text-decoration: underline;
}

.page-content-contacts .cont-btn-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.page-content-contacts .cont-btn-wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.75em;
    width: 100%;
    height: 100%;
    color: var(--white);
    text-decoration: none;
    background-color: var(--accent-color);
    border-radius: var(--item-border-radius);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.page-content-contacts .cont-btn-wrap a:hover {
    background-color: var(--theme-color);
}

/* page content requisite */
.page-content-contacts + .page-content-requisite {
    padding-top: 0;
}

.page-content-requisite .requisite-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    border: 1px solid var(--grey);
    border-radius: var(--item-border-radius);
    padding: 1.25rem;
}

.page-content-requisite .requisite-wrap .requisite-group {
    display: flex;
    flex-direction: column;
    row-gap: 0;
}

.page-content-requisite .requisite-wrap .requisite-group .requisite-group-title {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 0.5em;
}

.page-content-requisite .requisite-wrap .requisite-group .requisite-group-item {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.page-content-requisite .requisite-wrap .requisite-group .requisite-group-item-list {
    display: flex;
    flex-direction: column;
    row-gap: 0;
    margin-top: 0.5rem;
}

.page-content-requisite .requisite-wrap .requisite-group .requisite-group-item-list div {
    display: flex;
    flex-direction: row;
    column-gap: 1.25rem;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--grey);
    padding: 0.25rem 0;
    margin-bottom: 0.25rem;
}

.page-content-requisite .requisite-wrap .requisite-group .requisite-group-item-list div:hover {
    border-bottom: 1px solid var(--theme-color);
}

.page-content-requisite .requisite-wrap .requisite-group .requisite-group-item-list div span {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.page-content-requisite .requisite-wrap .requisite-group .requisite-group-item-list div span:last-child {
    color: var(--accent-color);
    flex-shrink: 0;
}

/* page content docs */
.page-content-requisite + .page-content-docs {
    padding-top: 0;
}

.page-content-docs .docs-wrap {
    display: block;
    border: 1px solid var(--grey);
    border-radius: var(--item-border-radius);
    padding: 1.25rem;
}

.page-content-docs .docs-wrap .item {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.page-content-docs .docs-wrap .item:hover {
    color: var(--font-color-1);
}

/* footer */
.site-footer {
    overflow: hidden;
}

.site-footer .footer-top,
.site-footer .footer-bottom {
    border-top: 1px solid var(--grey);
}

.site-footer .footer-top {
    padding: 2.5rem 0;
}

.site-footer .footer-top .map-wrap {
    display: block;
    border: 1px solid var(--accent-color);
    border-radius: var(--item-border-radius);
    overflow: hidden;
}

.site-footer .footer-top .left-wrap,
.site-footer .footer-top .right-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 2rem;
    height: 100%;
}

.site-footer .footer-top .left-wrap .site-logo {
    display: block;
    width: max-content;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.site-footer .footer-top .left-wrap .site-logo:hover {
    filter: brightness(0) saturate(100%) invert(15%) sepia(67%) saturate(451%) hue-rotate(117deg) brightness(92%) contrast(97%);
}

.site-footer .footer-top .left-wrap .phone-wrap,
.site-footer .footer-top .left-wrap .address-wrap {
    display: flex;
    flex-direction: column;
}

.site-footer .footer-top .left-wrap .phone-wrap span,
.site-footer .footer-top .left-wrap .address-wrap span {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.site-footer .footer-top .left-wrap .phone-wrap a {
    display: inline-block;
    width: max-content;
    color: var(--accent-color);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.site-footer .footer-top .left-wrap .phone-wrap a:hover {
    color: var(--theme-color);
}

.site-footer .footer-top .left-wrap .address-wrap span:last-child {
    font-size: 1.125rem;
    font-weight: 600;
}

.site-footer .footer-top .right-wrap .links-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.site-footer .footer-top .right-wrap .links-wrap a {
    position: relative;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.04em;
    padding: 0.75em 0;
}

.site-footer .footer-top .right-wrap .links-wrap a:hover {
    color: var(--theme-color);
}

.site-footer .footer-top .right-wrap .links-wrap a::before,
.site-footer .footer-top .right-wrap .links-wrap a:last-child:after {
    content: '';
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color);
    opacity: 0.2;
}

.site-footer .footer-top .right-wrap .links-wrap a:last-child:after {
    top: unset;
    bottom: 0;
}

.site-footer .footer-top .right-wrap .links-wrap a span {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.site-footer .footer-top .right-wrap .links-wrap a:hover span {
    padding-left: 0.5rem;
}

.site-footer .footer-top .right-wrap .soc-wrap {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
}

.site-footer .footer-top .right-wrap .soc-wrap i::before {
    margin: 0;
    width: 2em;
}

.site-footer .footer-top .right-wrap .soc-wrap .soc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--accent-color);
    font-size: 1.875rem;
    border: 1px solid #F8AF4F33;
    border-radius: 10px;
    padding: 0.25em;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.site-footer .footer-top .right-wrap .soc-wrap .soc-icon:hover {
    border-color: var(--accent-color);
}

.site-footer .footer-bottom .links-wrap {
    display: flex;
    flex-direction: row;
    column-gap: 3rem;
    row-gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 2.5em 0;
}

.site-footer .footer-bottom .links-wrap a {
    display: block;
    color: var(--grey);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: underline;
}

.site-footer .footer-bottom .links-wrap a:hover {
    color: var(--accent-color);
}

/* modal form */
.modal .modal-cst {
    max-width: 720px;
}

.modal .modal-cst .modal-content {
    background-color: var(--secondary-bg-color);
    border: none;
    border-radius: var(--item-border-radius);
    padding: 0;
    overflow: hidden;
}

.modal .modal-cst .modal-content .modal-body {
    position: relative;
    padding: var(--item-border-radius) !important;
}

.modal .modal-cst .modal-content .modal-footer {
    display: block;
    background-color: var(--accent-color);
    border: none !important;
    border-radius: 0 !important;
    padding: var(--item-border-radius) !important;
}

.modal .modal-cst .modal-content .modal-footer span {
    display: block;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.modal .modal-cst .btn-close {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    color: var(--accent-color);
    font-size: 1.5rem;
    padding: 0;
}

.modal .modal-cst .modal-title {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
    padding-bottom: 1em;
}

.modal .modal-cst .modal-text {
    display: block;
    color: var(--font-color-1);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding-bottom: 0.5em;
}

#modal-thx .modal-cst {
    max-width: 300px;
}

#modal-thx .modal-cst .modal-title,
#modal-thx .modal-cst .modal-text {
    text-align: center;
}

#modal-thx .modal-cst .img-wrap {
    display: flex;
    justify-content: center;
    padding: 1.25rem 0;
}

#modal-thx .modal-cst .img-wrap img {
    display: block;
    width: 50px;
    height: 50px;
}

.modal .modal-cst form {
    margin-top: 1.25rem;
}

.modal .modal-cst form button {
    display: block;
    width: 100%;
    color: var(--form-theme-color);
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.04em;
    background-color: transparent;
    border: 1px solid var(--form-theme-color);
    border-radius: 10px;
    padding: 1em 2em;
    overflow: hidden;
    z-index: 1;
}

.modal .modal-cst form input[type="text"],
.modal .modal-cst form input[type="email"],
.modal .modal-cst form input[type="tel"] {
    width: 100%;
	color: var(--form-theme-color);
    font-size: 1rem;
    font-weight: 400;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--form-theme-color);
    border-radius: 0;
    padding: 1em;
}

.modal .modal-cst form button:hover {
    color: var(--white);
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.modal .modal-cst form label {
    display: inline;
    color: var(--black);
    font-size: 0.875rem;
}

.modal .modal-cst form label a {
    display: inline;
    color: var(--black);
    text-decoration: underline;
}

.modal .modal-cst .btn-prim {
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.modal-open .container {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

/* cookies */
.cookies {
    display: none;
    bottom: 45px;
    padding: 0;
}

.cookies .cookies-wrap {
    display: flex;
    flex-direction: row;
    column-gap: 3rem;
    row-gap: 1rem;
    align-items: center;
    background-color: var(--white);
    border: 1px solid var(--accent-color);
    border-radius: 1.25rem;
    padding: 1.625rem 1.375rem;
}

.cookies .cookies-wrap span {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
}

.cookies .cookies-wrap span a {
    color: var(--accent-color);
}

.cookies .cookies-wrap a {
   width: 25%;
   flex-shrink: 0;
   cursor: pointer;
}


/* media queries */
@media (max-width: 1400px) {
    .subscription-form::after {
        display: none;
    }
}

@media (max-width: 1200px) {
    .subscription-form .form-wrap::before {
        display: none;
    }
}

@media (max-width: 992px) {
    :root {
        --booking-form-height: 156px;
    }
    .hero {
        min-height: 600px;
    }
    .hero .container .hero-content-wrap {
        margin-top: calc(25vh - var(--header-height));
    }
    .hero.main .container .hero-content-wrap {
        margin-top: 25vh;
    }
    section .title {
        font-size: 2.5rem;
    }
    .bonuses .item::before,
    .bonuses .item::after {
        display: none!important;
    }
    .rooms-features .image-wrap {
        aspect-ratio: 4/3;
    }
    .page-content-rooms .left-wrap {
        position: static;
    }
    .cookies .cookies-wrap a {
        width: auto;
    }
    .site-footer .footer-bottom .links-wrap {
        flex-direction: column;
        column-gap: 3rem;
        row-gap: 0.625rem;
        align-items: center;
        justify-content: space-between;
        padding: 2.5em 0;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 75px;
        --booking-form-height: 150px;
    }
    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="password"],
    input[type="search"],
    input[type="number"],
    input[type="tel"],
    input[type="range"],
    input[type="date"],
    input[type="month"],
    input[type="week"],
    input[type="time"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="color"],
    select,
    textarea,
    form button {
        font-size: 0.875rem;
    }
    form .agreement {
        font-size: 0.75rem;
    }
    .btn-prim,
    .btn-sec {
        font-size: 0.75rem;
    }
    .btn-features {
        font-size: 1rem;
    }
    .navigation,
    .booking,
    .hero {
        border-radius: 0;
    }
    .hero {
        height: calc( 100vh - 100px);
    }
    .navigation .nav-menu .nav-list .nav-item a {
        font-size: 1.25rem;
    }
    .navigation .navigation-wrap {
        gap: 1.5rem;
    }
    .navigation .navigation-wrap .cont {
        display: none;
    }
    .navigation .navigation-wrap .cont.icon {
        display: block;
    }
    section .tab-wrap {
        column-gap: 1rem;
        row-gap: 0.75rem;
    }
    section .tab-wrap .tab-item {
        font-size: 1rem;
    }
    .cookies .cookies-wrap {
        flex-direction: column;
    }
    .cookies .cookies-wrap span {
        font-size: 0.75rem;
    }
    .cookies .cookies-wrap a {
        width: 100%;
    }
}

@media (max-width: 576px) {
    :root {
        --section-border-radius: 30px;
    }
    .navigation .nav-menu .nav-list {
        padding: 0 0 1rem;
    }
    section .title {
        word-break: break-word;
    }
    .rating .item .item-rating {
        font-size: 4rem;
    }
    .rooms .filters-wrap select,
    .rooms .filters-wrap .dropdown,
    .rooms .filters-wrap .guests-input-wrap {
        flex-basis: 100%;
        min-width: unset;
    }
    .features .features-item-content-wrap .features-item-features-2-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .special-offers .item {
        aspect-ratio: 4/5;
    }
}
@media (max-width: 992px) {
    .booking.sticky-top {
        position: relative;
    }
}
@media (max-width: 380px) {
    :root {
        --booking-form-height: 276px;
    }
    .hero + .booking.trnsp {
        background-color: #0b352c;
        transition: none;
        position: relative;
        top: auto;
        height: auto;
        margin: 0 auto;
        padding: 0;
    }
    .hero + .booking {
        background-color: #0b352c;
        transition: none;
        position: relative;
        top: auto;
        height: auto;
        margin: 0 auto;
        padding: 0;
    }
    .hero + .booking.trnsp .container {
        padding: 25px;
        height: auto;
    }
    .hero + .booking .container {
        padding: 25px;
        height: auto;
    }
}
.hero + .booking .container #booking-toggle-btn {
    display: none;
}