@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --ff-heading: "Raleway", sans-serif;
  --ff-body: "Nunito Sans", sans-serif;
  --lh-heading: 1.2;
  --lh-body: 1.5;
  --fs-body: 15px;
  --fs-heading-one: 60px;
  --fs-heading-two: 38px;
  --fs-heading-three: 30px;
  --fs-heading-four: 24px;
  --fs-heading-five: 20px;
  --fs-heading-six: 18px;
  --c-heading: #bc9b6a;
  --c-body: #000000;
  --c-base: #bc9b6a;
  --c-primary: #23496c;
  --c-secondary: #8f9893;
  --c-success: #1cb81c;
  --c-danger: #de3434;
  --c-warning: #ff701c;
  --c-info: #7189ff;
  --c-dark: #01111a;
  --c-white: #ffffff;
  --c-black: #000000;
  --border-default: #ebebeb;
  --border-light: #f0f0f0;
  --border-dark: #ccc;
  --bg-default: #f1f1f1;
  --bg-light: #f4f4f4;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--c-body);
  line-height: var(--lh-body);
  font-weight: 300;
}

a {
  text-decoration: none;
  color: var(--c-body);
}

span,
sub,
sup,
a {
  display: inline-block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 111;
  visibility: hidden;
  opacity: 0;
}
.overlay.active {
  visibility: visible;
  opacity: 1;
}

.scrollToTop {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  z-index: 9999;
  bottom: 30px;
  right: 30px;
  font-size: 18px;
  position: fixed;
  transform: translateY(150px);
  background: var(--c-base);
  border-radius: 3px;
}

.scrollToTop:hover {
  color: var(--c-white);
}

.scrollToTop.active {
  transform: translateY(0);
  animation: bounceInDown 2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: var(--lh-heading);
  font-family: var(--ff-heading);
  color: var(--c-heading);
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: var(--c-heading);
}

h1 {
  font-size: var(--fs-heading-one);
}

h2 {
  font-size: var(--fs-heading-two);
}

h3 {
  font-size: var(--fs-heading-three);
}

h4 {
  font-size: var(--fs-heading-four);
}

h5 {
  font-size: var(--fs-heading-five);
}

h6 {
  font-size: var(--fs-heading-six);
}

@media (min-width: 1400px) {
  .container {
    max-width: 1250px !important;
  }
}
@media (max-width: 1199px) {
  :root {
    --fs-heading-one: 50px;
    --fs-heading-two: 40px;
    --fs-heading-three: 28px;
    --fs-heading-four: 22px;
    --fs-heading-five: 20px;
    --fs-heading-six: 16px;
  }
}
@media (max-width: 991px) {
  :root {
    --fs-heading-one: 40px;
    --fs-heading-two: 36px;
    --fs-heading-three: 28px;
    --fs-heading-four: 22px;
    --fs-heading-five: 20px;
    --fs-heading-six: 16px;
  }
}
@media (max-width: 575px) {
  :root {
    --fs-heading-one: 36px;
    --fs-heading-two: 30px;
    --fs-heading-three: 26px;
    --fs-heading-four: 20px;
    --fs-heading-five: 18px;
    --fs-heading-six: 16px;
  }
}
.text-base {
  color: var(--c-base);
}

.cmn-btn {
  height: 40px;
  line-height: 40px;
  padding-inline: 35px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-primary);
  color: var(--c-white);
  border: 1px solid var(--c-primary);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}
.cmn-btn.base {
  background-color: var(--c-base);
  border-color: var(--c-base);
}
.cmn-btn.base:hover {
  color: var(--c-base);
  background-color: transparent;
}
.cmn-btn.base.outline {
  color: var(--c-base);
  background-color: transparent;
}
.cmn-btn.base.outline:hover {
  background-color: var(--c-base);
  border-color: var(--c-base);
}
.cmn-btn:hover {
  background-color: var(--c-white);
  color: var(--c-primary);
}
.cmn-btn.outline {
  background-color: transparent;
  color: var(--c-primary);
}
.cmn-btn.outline:hover {
  background-color: var(--c-primary);
  color: var(--c-white);
}

.link-btn {
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
  transition: all 0.3s ease;
  line-height: 32px;
  color: var(--c-primary);
}
@media (max-width: 991px) {
  .link-btn {
    display: block;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-top: 32px;
  }
}
.link-btn:hover {
  color: var(--c-base);
  text-decoration: none;
}
.link-btn.base {
  color: var(--c-base);
}
.link-btn.base:hover {
  color: var(--c-primary);
}

.form-control {
  background-color: rgba(188, 155, 106, 0.1019607843);
  height: 38px;
  color: #676767;
  border-radius: 0;
  border: none;
  font-weight: 500;
  font-size: 14px;
}
.form-control::-webkit-input-placeholder {
  color: #676767;
}

textarea.form-control {
  height: auto;
}

.form-note {
  font-size: 12px;
  color: #697f91;
  margin-bottom: 12px;
  margin-top: 16px;
}

.form-check .form-check-input {
  box-shadow: none !important;
  border-radius: 0;
  border-color: rgba(188, 155, 106, 0.1882352941);
  background-color: rgba(188, 155, 106, 0.1882352941);
}
.form-check .form-check-input:checked {
  background-color: var(--c-base);
  border-color: var(--c-base);
}
.form-check .form-check-label {
  color: #676767;
  font-size: 14px;
}
.form-check .form-check-label a {
  text-decoration: underline;
  color: #676767;
}
.form-check .form-check-label a:hover {
  color: var(--c-base);
}

/* Top bar */
body.home .header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(180deg, rgba(33, 74, 108, 0.72) 30%, rgba(11, 15, 50, 0) 77.4%);
  z-index: -1;
  transition: all 0.3s ease;
}
body.home .header .header-top {
  background-color: var(--c-white);
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}
.header .header-logo-icon {
  position: absolute;
  left: 0;
  bottom: 0;
}
.header .header-top {
  position: relative;
  z-index: 1;
}
.header .header-top::before {
  background-color: var(--c-primary);
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.95;
  z-index: -1;
  transition: all 0.3s linear;
}
.header.sticky::before {
  opacity: 0;
  visibility: hidden;
}
.header.sticky .header-top::before {
  opacity: 1;
}
.header .social-media a {
  transition: all 0.3s ease;
}
.header .social-media a:hover {
  color: var(--c-primary);
}

.header-top {
  color: #fff;
  transition: all 0.3s ease;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  width: 197px;
}
@media (max-width: 991px) {
  .logo {
    width: 158px;
  }
}

.logo img {
  width: 100%;
}

.lang-wrapper {
  display: flex;
  align-items: center;
  gap: 0px;
}
@media (min-width: 992px) {
  .lang-wrapper svg path {
    fill: var(--c-base);
  }
}

.lang {
  background-color: transparent;
  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right 0px center;
  padding-right: 20px;
  padding-left: 6px;
  border: none;
  color: var(--c-white);
  -webkit-appearance: none;
  appearance: none;
  webkit-appearance: none;
  -moz-appearance: none;
  outline: none !important;
  box-shadow: 1px solid var(--c-base) !important;
}
@media (max-width: 991px) {
  .lang {
    background-image: url("../images/arrow-down-white.svg");
  }
}
.lang option {
  color: var(--c-primary);
}

.booking-info {
  display: flex;
  align-items: center;
  gap: 20px 50px;
}

.menu-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
}
.menu-toggle::before {
	position: absolute;
	content: "";
	width: 16px;
	height: 11px;
	background-color: var(--c-base);
	left: 50%;
	bottom: -39px;
	transform: translateX(-50%);
	transition: all 0.5s linear;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	opacity: 0;
}
@media (max-width: 991px) {
  .menu-toggle::before {
    bottom: -25px;
  }
}

.menu-toggle span {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--c-white); /* bar color */
  margin: 5px 0; /* creates ~10px gap total */
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-inline: auto;
}

/* ACTIVE STATE */
.menu-toggle.active {
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
  border-radius: 50%;
  transform: rotate(0deg);
}
.menu-toggle.active::before {
  opacity: 1;
}

/* turn bars into X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  height: 2px;
  width: 20px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  height: 2px;
  width: 20px;
}

/* Navigation */
.header-nav {
  background: rgba(188, 155, 106, 0.9607843137);
  padding-block: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
}
.header-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    padding-block: 50px;
    overflow-y: auto;
  }
}

.header-nav-wrapper {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 50px;
  justify-content: center;
}
@media (max-width: 991px) {
  .header-nav-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
.header-nav-wrapper .social-media {
  /*margin-inline-end: 76px;*/
}
@media (max-width: 1199px) {
  .header-nav-wrapper .social-media {
    margin-inline-end: 0;
  }
}
@media (max-width: 991px) {
  .header-nav-wrapper .social-media {
    margin-top: 10px;
  }
  .header-nav-wrapper .social-media a {
    font-size: 24px;
  }
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-inline-start: auto;
}
@media (max-width: 991px) {
  .nav-list {
    flex-direction: column;
    margin-inline-end: auto;
    gap: 0px 15px;
  }
}

.nav-list li {
	margin: 0 18px;
}

.nav-list a {
	display: block;
	padding: 15px 0;
	text-decoration: none;
	color: #fff;
	font-weight: 400;
	font-size: 17px;
	position: relative;
}
@media (max-width: 991px) {
  .nav-list a {
    font-size: 20px;
  }
}
.nav-list a::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 11px;
  background-color: var(--c-primary);
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  opacity: 0;
}
@media (max-width: 991px) {
  .nav-list a::before {
    display: none;
  }
}

.nav-list a.active {
  font-weight: 800;
}

.nav-list a:hover::before,
.nav-list a.active::before {
  opacity: 1;
}

.socials a img {
  height: 16px;
  margin-left: 10px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 992px) {
  .booking-info {
    flex-wrap: wrap;
    gap: 15px;
  }
}
footer {
  background: linear-gradient(180deg, #214a6c 81.25%, #131a57 99.04%);
  color: #ecf0f1;
  text-align: center;
  padding: 50px 20px 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 575px) {
  footer {
    padding-top: 20px;
  }
}
footer hr {
  opacity: 0.1;
}

/* Fading gradient effect at the bottom */
footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
}

/* Large 'C' logo in the background */
.footer-logo-background {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
@media (max-width: 991px) {
  .footer-logo-background img {
    max-height: 184px;
  }
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 246px;
}
@media (max-width: 575px) {
  .logo {
    max-width: 191px;
  }
}

.address-info {
  margin-bottom: 20px;
}
.address-info p {
  margin-bottom: 4px;
}

.social-media {
  margin-bottom: 20px;
}

.social-media a {
  color: #ecf0f1;
  font-size: 18px;
  margin: 0 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-media a:hover {
  color: var(--c-base);
}

.contact-info {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .contact-info {
    margin-bottom: 20px;
  }
}

.footer-nav {
  margin-bottom: 55px;
  margin-top: 10px;
}
@media (max-width: 575px) {
  .footer-nav {
    display: none;
  }
}

.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  margin: 0 10px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.footer-nav a:hover,
.footer-nav a.active {
  color: #bc9b6a;
}

.footer-nav a.active {
  font-weight: 600;
}

.legal-links {
  font-size: 12px;
  margin-top: 20px;
  color: #bc9b6a;
}

.legal-links a {
  text-decoration: none;
  margin: 0 5px;
  color: #bc9b6a;
}



.banner-section {
	width: 100%;
	min-height: 80dvh;
	max-height: 80dvh;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	margin-top: 110px;
	overflow: hidden;
}
.banner-section iframe {
  width: 100%;
  aspect-ratio: 1.7777777778;
}

.banner-slider .slick-list {
  padding-inline: 0 !important;
}

.banner-img {
  width: 100%;
  min-height: 80dvh;
  max-height: 80dvh;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.inner-hero img {
  min-height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.hotel-spa {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .hotel-spa {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .hotel-spa {
    padding: 40px 0;
  }
}

.row-gap {
  --bs-gutter-y: 40px;
}
@media (min-width: 992px) {
  .row-gap {
    --bs-gutter-x: 80px;
  }
}

@media (min-width: 992px) {
  .row-gap-two {
    --bs-gutter-x: 32px;
    --bs-gutter-y: 40px;
  }
}

.common-content {
  margin-bottom: 36px;
}
@media (max-width: 575px) {
  .common-content {
    margin-bottom: 24px;
  }
}
.common-content h2 {
  position: relative;
  padding-bottom: 50px;
}
.common-content h2::before {
  position: absolute;
  content: "";
  max-width: 304px;
  width: 100%;
  height: 18px;
  background-image: url("../images/logo-line.svg");
  background-size: cover;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}
.common-content p {
  font-size: 15px;
}

.thumb-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 575px) {
  .thumb-img {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .thumb-img {
    min-height: 450px;
  }
}
.thumb-img.left-img {
  border-radius: 0 0 25px 0;
}
.thumb-img img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.thumb-img:hover img {
  transform: scale(1.05);
}

.icon-box {
  text-align: center;
}
.icon-box .icon {
	font-size: 40px;
	color: var(--c-base);
	margin-bottom: 12px;
	width: 63px;
	height: auto;
}
@media (max-width: 991px) {
.icon-box .icon {
	width: 15vw;
}
}

.icon.slick-arrow {

	display: none;
}

.thumb-content img {
	width: 86px;
	opacity: 0.4;
}

.member-club-btn {
	transition: all 0.3s ease-out;
}
.member-club-btn:hover {
	transform: scale(1.1);
}

.icon-box p {
  font-size: 11px;
  color: var(--c-primary);
  line-height: 1.5;
  margin: 0;
}

.special-offers {
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .special-offers {
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .special-offers {
    padding-bottom: 40px;
  }
}
.special-offers.single-page {
  padding-top: 80px;
}
@media (max-width: 991px) {
  .special-offers.single-page {
    padding-top: 60px;
  }
}

.special-offers-home .single-item .cmn-btn:hover {
  background-color: var(--c-base);
  border-color: var(--c-base);
}

.single-item {
  border: 1px solid var(--c-primary);
  padding: 10px;
  border-radius: 0 0 25px 0;
}
.single-item:hover .single-item__thumb img {
  transform: scale(1.05);
}
.single-item__content {
  color: #595959;
  padding-inline: 10px;
}
.single-item__content h3 {
  margin-inline: -10px;
  font-size: 18px;
  padding: 15px 10px;
  font-weight: 400;
  color: var(--c-white);
  background: var(--c-primary);
  margin-bottom: 16px;
}
.single-item__content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-primary);
}
.single-item__content ul {
  list-style-type: disc;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 1.7;
}
.single-item__content .line {
  display: block;
  height: 1px;
  width: 140px;
  background-color: var(--c-primary);
  margin-inline-start: 0;
  margin-inline-end: auto;
  margin-top: 20px;
  margin-bottom: 24px;
}
.single-item__content span {
  font-size: 12px;
  display: block;
}
.single-item__content .cmn-btn {
  margin-bottom: 10px;
  margin-top:22px;
  width: 50%;
  min-width: 160px;
}
.single-item__thumb {
  height: 340px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}
.single-item__thumb img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.single-item__thumb.small-thumb-slider img {
  transform: scale(1) !important;
}

.small-thumb-slider .slick-list,
.small-thumb-slider .slick-track {
  height: 100%;
}
.small-thumb-slider .slick-arrow {
  width: 36px !important;
  bottom: 20px !important;
  top: auto !important;
}
.small-thumb-slider .slick-arrow.left {
  left: 50% !important;
  transform: translateX(-130%) !important;
}
.small-thumb-slider .slick-arrow.right {
  right: 50% !important;
  transform: translateX(130%) !important;
}

.video-two {
  position: relative;
  min-height: 50dvh;
  max-height: 70dvh;
  background-attachment: fixed;
  background-size: cover;
}
@media (min-width: 1400px) {
  .video-two {
    min-height: 60dvh;
    max-height: 60dvh;
  }
}
.video-two::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 1;
}

.video-content {
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding-inline: 24px;
}
.video-content h2 {
  color: var(--c-white);
  margin-bottom: 0px;
}

.single-slide {
  padding-inline: 16px;
}
@media (max-width: 1199px) {
  .single-slide {
    padding-inline: 8px;
  }
}

.special-offers-slider {
  --bs-gutter-y: 0px !important;
}
@media (max-width: 991px) {
  .special-offers-slider {
    padding-inline: 0;
  }
}

.special-offers-grid .grid-item {
  width: calc(50% - 20px);
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .special-offers-grid .grid-item {
    width: 100%;
    margin-bottom: 24px;
  }
}

.small-thumb-slider .slick-list {
  padding-inline: 0 !important;
}

.rooms-suites {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .rooms-suites {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .rooms-suites {
    padding: 60px 0;
  }
}
.rooms-suites .single-item {
  border-color: var(--c-base);
}
.rooms-suites .single-item__content h3 {
  background: var(--c-base);
}
.rooms-suites .single-item .cmn-btn {
  color: var(--c-base);
  border-color: var(--c-base);
}
.rooms-suites .single-item .cmn-btn:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}
.rooms-suites.single-page .single-item h4 {
  color: var(--c-base);
}
.rooms-suites.single-page .single-item .line {
  background-color: var(--c-base);
}
.rooms-suites.single-page .single-item .cmn-btn {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.rooms-suites.single-page .single-item .cmn-btn:hover {
  background-color: var(--c-primary);
  color: var(--c-white);
}

.attractions-in-eilat {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .attractions-in-eilat {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .attractions-in-eilat {
    padding: 40px 0;
  }
}
.attractions-in-eilat.single-page {
  padding-top: 160px;
}
@media (max-width: 991px) {
  .attractions-in-eilat.single-page {
    padding-top: 140px;
  }
}
.attractions-in-eilat .single-item {
  border-color: var(--c-base);
}
.attractions-in-eilat .single-item__content h3 {
  background: transparent;
  color: var(--c-black);
  padding-bottom: 0;
  font-size: 20px;
}
.attractions-in-eilat .single-item .cmn-btn {
  color: var(--c-base);
  border-color: var(--c-base);
}
.attractions-in-eilat .single-item .cmn-btn:hover {
  background: var(--c-base);
  color: var(--c-white);
  border-color: var(--c-base);
}

@media (max-width: 991px) {
  .thumb-content-section .container {
    padding-inline: 0;
    max-width: 100%;
  }
}

.thumb-content-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.thumb-content-wrapper.style--two {
  align-items: flex-start;
}
.thumb-content-wrapper.style--two .thumb-img {
  min-width: 50%;
}
@media (min-width: 1200px) {
  .thumb-content-wrapper.style--two .thumb-img {
    min-width: 60%;
  }
}
@media (min-width: 992px) {
  .thumb-content-wrapper.style--two .thumb-content {
    margin-top: 48px;
    position: relative;
    left: -80px;
    width: 50%;
  }
}
.thumb-content-wrapper:not(:last-child) {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .thumb-content-wrapper:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .thumb-content-wrapper:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .thumb-content-wrapper:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
  .thumb-content-wrapper:nth-of-type(2n) .thumb-content {
    border-radius: 0 0 25px 0;
    left: 0;
    right: auto;
  }
  .thumb-content-wrapper:nth-of-type(2n) .thumb-img {
    border-radius: 0 0 25px 0;
  }
  .thumb-content-wrapper:nth-of-type(2n) .flower-icon {
    right: 16px;
    left: auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .thumb-content-wrapper:nth-of-type(2n) .flower-icon {
    right: 8px;
    left: auto;
  }
}
@media (min-width: 992px) and (max-width: 575px) {
  .thumb-content-wrapper:nth-of-type(2n) .flower-icon {
    right: 0;
    left: auto;
  }
}
@media (max-width: 991px) {
  .thumb-content-wrapper {
    flex-direction: column;
  }
}
.thumb-content-wrapper .thumb-img {
  width: 58%;
}
.thumb-content-wrapper .thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .thumb-content-wrapper .thumb-img {
    height: 450px;
  }
}
@media (max-width: 991px) {
  .thumb-content-wrapper .thumb-img {
    width: 100%;
    height: 400px;
  }
}
.thumb-content-wrapper .thumb-content {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 60px 80px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0588235294);
  position: absolute;
  right: 0;
  width: 52%;
  border-radius: 0 0 25px 0;
}
@media (max-width: 1199px) {
  .thumb-content-wrapper .thumb-content {
    padding: 40px 60px;
  }
}
@media (max-width: 991px) {
  .thumb-content-wrapper .thumb-content {
    position: relative;
    margin-inline: auto;
    width: calc(100% - 32px);
    margin-top: -50px;
  }
}
@media (max-width: 575px) {
  .thumb-content-wrapper .thumb-content {
    padding: 45px 20px 30px;
  }
}
.thumb-content-wrapper .thumb-content h2 {
  font-size: 25px;
  color: var(--c-black);
  margin-bottom: 14px;
}
.thumb-content-wrapper .thumb-content .flower-icon {
  position: absolute;
  left: 16px;
  top: 16px;
}
@media (max-width: 1199px) {
  .thumb-content-wrapper .thumb-content .flower-icon {
    left: 8px;
    top: 8px;
  }
  .thumb-content-wrapper .thumb-content .flower-icon img {
    max-width: 80px;
  }
}
@media (max-width: 575px) {
  .thumb-content-wrapper .thumb-content .flower-icon {
    left: 0;
    top: 0;
  }
  .thumb-content-wrapper .thumb-content .flower-icon img {
    max-width: 70px;
  }
}
.thumb-content-wrapper .thumb-content .cmn-btn {
  margin-top: 12px;
}

.custom-image {
  border-radius: 0 0 25px 0;
}

@media (max-width: 575px) {
  .slick-slider .slick-list {
    padding-inline: 28px;
  }
}
.slick-slider .slick-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;
  background: transparent;
  border: none;
  width: auto;
  height: auto;
  padding: 0;
  left: 24px;
}
.slick-slider .slick-arrow.right {
  left: auto;
  right: 24px;
}
@media (max-width: 575px) {
  .slick-slider .slick-arrow {
    width: 50px !important;
    height: 50px;
  }
}
.slick-slider .slick-arrow img {
  width: 50px;
  height: 50px;
}
@media (max-width: 575px) {
  .slick-slider .slick-arrow img {
    width: 50px;
    height: 50px;
  }
}

.secondary-title {
  margin-bottom: 5px;
  margin-inline-start: 30px;
  font-size: 25px;
  color: var(--c-title);
}

.section-image {
  min-height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.contact-section {
  padding-top: 160px;
}
.contact-section .container {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .contact-section {
    padding-top: 140px;
  }
  .contact-section .container {
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .contact-section .submit-btn {
    width: 100%;
  }
}
.contact-section .map-wrapper {
  position: relative;
}
.contact-section .map-wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(188, 155, 106, 0.9294117647);
}
.contact-section .map-wrapper iframe {
  margin-bottom: -8px;
  opacity: 0.68;
}

.thumb-slider {
  background-color: rgba(188, 155, 106, 0.1490196078);
  padding-block: 50px;
}

.spa-wellness {
  padding-top: 160px;
}
@media (max-width: 991px) {
  .spa-wellness {
    padding-top: 140px;
  }
}

.complimentary-section {
  padding-top: 40px;
  padding-bottom: 80px;
  color: var(--c-primary);
  background-color: rgba(188, 155, 106, 0.1490196078);
  position: relative;
}
.complimentary-section .section-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
@media (max-width: 767px) {
  .complimentary-section .section-icon {
    max-width: 120px;
  }
}
.complimentary-section h2 {
  font-size: 25px;
  text-align: center;
  color: var(--c-primary);
  font-weight: normal;
  margin-bottom: 36px;
}

.attractions-responsive-slider .slick-slide {
  padding-inline: 8px;
}

@media (min-width: 992px) {
  .member-club-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  }
}
.member-club-btn img {
	max-width: 105px;
}
@media (max-width: 575px) {
  .member-club-btn img {
    max-width: 120px;
  }
}

@media (max-width: 575px) {
  .wow {
    animation: none !important;
  }
    .banner-section {
	margin-top: 80px;
	min-height: 50vw;
}
body.home .header::before {
	display: none;
}

}