@charset "utf-8";

@font-face {
  font-family: "Grayscale Signature";
  src: url("../../../fonts/grayscale/grayscale-signature.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "avenir";
  src: url("../../../fonts/avenir/Avenir35-Light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "avenir";
  src: url("../../../fonts/avenir/Avenir95-Black.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-white: #fff;
  --color-white-transparent: rgba(255, 255, 255, 0.6);

  --color-black: #0a1329;
  --color-filter-icon-primary: brightness(0) saturate(100%) invert(20%) sepia(97%) saturate(1158%) hue-rotate(169deg) brightness(94%) contrast(101%);
  --color-filter-icon-white: brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(0%) hue-rotate(230deg) brightness(109%) contrast(100%);

  /* Color grey: #f8f8f8 */
  --grey-h: 0;
  --grey-s: 0%;
  --grey-l: 97%;
  --color-grey: hsl(var(--grey-h), var(--grey-s), var(--grey-l));
  --color-grey-soft: hsl(var(--grey-h),
      var(--grey-s),
      calc(var(--grey-l) - 5%));

  /* Color primary: #739eba */
  --primary-h: 192;
  --primary-s: 100%;
  --primary-l: 22%;
  --color-primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --color-primary-hover: hsl(var(--primary-h),
      var(--primary-s),
      calc(var(--primary-l) - 5%));

  /* color secundario */

  --filter-color-secondary: brightness(0) saturate(100%) invert(65%) sepia(71%) saturate(219%) hue-rotate(12deg) brightness(92%) contrast(81%);
  --color-secondary: #b4a76c;

  --font-title-size: 44px;
  --font-subtitle-size: 26px;
  --font-subtitle-cursive-size: 30px;
  --font-text-size: 16px;
  --custom-line-height: 30px;
  --font-subtitle-cursive-line-height: 50px;

  --font-text-family: "avenir";
  --font-cursive-family: "Grayscale Signature";

  --container-width: 1170px;
  --container-padding: calc((100vw - var(--container-width)) / 2);
  --litepickerMonthWidth: calc(32px * 7);
  --litepickerDayIsStartBg: var(--color-primary);
  --litepickerDayIsStartColor: #0a1329;
  --litepickerDayIsInRange: #ebebeb;
  --litepickerDayIsEndColor: #0a1329;
  --litepickerDayIsEndBg: var(--color-primary);

  --space-between-sections: 120px;
}

@media (max-width: 992px) {
  :root {
    --custom-line-height: 25px;
    --space-between-sections: 50px
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  :root {
    --font-subtitle-cursive-size: 20px;
    --font-subtitle-cursive-line-height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --font-subtitle-cursive-size: 20px;
    --font-subtitle-cursive-line-height: 40px;
  }

}

::selection {
  background-color: var(--color-primary);
  color: #fff;
}

body {
  padding: 0;
  margin: 0;

  background-color: var(--color-white);
  font-family: var(--font-text-family);
  font-size: 16px;
  color: var(--color-black);
  line-height: normal;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a:hover {
  color: var(--color-primary-hover);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

#wrap {
  float: left;
  width: 100%;
}

button {
  background-color: var(--color-primary);
  color: var(--color-white);
}

button:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-white);
}

.owl-theme .owl-dots .owl-dot span {
  color: var(--color-secondary);
  background: var(--color-primary);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  color: var(--color-secondary);
  background: var(--color-secondary);
}

.owl-theme .owl-dots .owl-dot.active {
  border-color: var(--color-secondary);
}

.owl-theme .owl-dots .owl-dot:before,
.owl-theme .owl-dots .owl-dot:after {
  background: var(--color-secondary);
}

.owl-carousel .owl-item picture,
.owl-carousel .owl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subtitle {
  color: var(--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 400;
}

p {
  font-weight: 200;
}

.container {
  max-width: 1170px;
  padding: 0;
}

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  float: left;
  width: 100%;
  background-color: transparent;
  padding: 20px 40px;
  position: absolute;
  z-index: 4;
  transition: all 0.3s ease-in-out;
}

#header .logo {
  float: left;
  width: 172px;
  margin: 0 40px;
  transition: all 0.3s ease-in-out;
}

#header .logo img {
  width: 100%;
  height: auto;
  filter: var(--color-filter-icon-white);
}

#header.sticky .logo img {
  filter: var(--color-filter-icon-primary);
}

#header .leftNav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-gap: 40px;
  width: calc(50% - 126px);
}

#header .leftNav .hamburger {
  position: relative;
  float: left;
  width: auto;
}

#header .leftNav .hamburger #nav-btn,
#header .leftNav .hamburger #nav-btn+label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  cursor: pointer;
}

#header .leftNav .hamburger #nav-btn {
  position: relative;
  opacity: 0;
  z-index: 100;
}

#header .leftNav .hamburger #nav-btn+label span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: transparent;
  position: relative;
  z-index: 99;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#header .leftNav .hamburger #nav-btn+label span::before,
#header .leftNav .hamburger #nav-btn+label span::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 10px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

#header.sticky .leftNav .hamburger #nav-btn+label span::before,
#header.sticky .leftNav .hamburger #nav-btn+label span::after {
  background-color: var(--color-primary);
}

#header .leftNav .hamburger #nav-btn+label span::before {
  width: 30px;
  top: -6px;
}

#header .leftNav .hamburger #nav-btn+label span::after {
  width: 20px;
  bottom: -6px;
}

#header .leftNav .hamburger #nav-btn:hover+label span,
#header .leftNav .hamburger #nav-btn:hover+label span::before,
#header .leftNav .hamburger #nav-btn:hover+label span::after {
  width: 30px;
}

#header .leftNav .hamburger #nav-btn:checked+label span {
  background-color: var(--color-white);
  border-radius: 10px;
  transform: rotate(45deg);
}

#header.sticky .leftNav .hamburger #nav-btn:checked+label span {
  background-color: var(--color-white);
}

#header .leftNav .hamburger #nav-btn:checked:hover+label span {
  background-color: var(--color-white);
  border-radius: 10px;
}

#header .leftNav .hamburger #nav-btn:checked+label span::before,
#header .leftNav .hamburger #nav-btn:checked+label span::after {
  background-color: var(--color-white);
  width: 30px;
  max-width: 100%;
  top: 0;
  transform: rotate(90deg);
}

#header .leftNav .hamburger #nav-btn:checked+label span::after {
  opacity: 0;
}

#header .leftNav .hamburger #nav-btn:checked~nav {
  visibility: visible;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  overflow: hidden;
}

#header .leftNav .hamburger nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  background: var(--color-primary);
  box-shadow: 13px 0px 87px var(--color-primary);
  opacity: 1;
  z-index: 98;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
  transition: transform 0.5s, visibility 0s 0.5s;
  overflow: hidden;
}

#header .leftNav .hamburger nav .nav_middle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-gap: 40px;
  height: 100%;
  padding: 120px 40px 40px 40px;
  overflow: auto;
}

#header .leftNav .hamburger nav .nav_middle ul.language {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

#header .leftNav .hamburger nav .nav_middle ul.language li {
  position: relative;
  float: left;
  width: auto;
  padding: 0;
  padding-right: 25px;
  font-size: 16px;
  text-transform: uppercase;
  color: rgb(255 255 255 / 70%);
  font-weight: 300;
  line-height: 20px;
}

#header .leftNav .hamburger nav .nav_middle ul.language li:after {
  content: "/";
  position: absolute;
  top: 0;
  right: 10px;
}

#header .leftNav .hamburger nav .nav_middle ul.language li:last-child {
  padding-right: 0;
}

#header .leftNav .hamburger nav .nav_middle ul.language li:last-child:after {
  display: none;
}

#header .leftNav .hamburger nav .nav_middle ul.language li a {
  color: rgb(255 255 255 / 70%);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

#header .leftNav .hamburger nav .nav_middle ul.language>li>a:hover,
#header .leftNav .hamburger nav .nav_middle ul.language>li.current>a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

#header .leftNav .hamburger nav .nav_middle ul.menu {
  padding: 2px;
  margin: 0;
  list-style-type: none;
}

#header .leftNav .hamburger nav .nav_middle ul.menu::-webkit-scrollbar {
  display: none;
  width: 4px;
}

#header .leftNav .hamburger nav .nav_middle ul.menu::-webkit-scrollbar-track {
  background: var(--color-black);
  display: none;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

#header .leftNav .hamburger nav .nav_middle ul.menu::-webkit-scrollbar-thumb {
  display: none;
  min-height: 40px;
  background: rgb(255 255 255 / 40%);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

#header .leftNav .hamburger nav .nav_middle ul.menu li {
  margin: 0 0 20px 0;
  font-family: var(--font-text-family);
  font-size: 22px;
  color: var(--color-white);
  font-weight: 300;
  line-height: 22px;
  text-transform: uppercase;
}

#header .leftNav .hamburger nav .nav_middle ul.menu li:last-child {
  margin-bottom: 0;
}

#header .leftNav .hamburger nav .nav_middle ul.menu li a {
  display: inline-block;
  padding-left: 0;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

#header .leftNav .hamburger nav .nav_middle ul.menu li a:hover {
  padding-left: 4px;
  color: var(--color-white);
  text-decoration: none;
}

#header .leftNav .hamburger nav .nav_middle ul.menu li.current>a {
  color: var(--color-primary);
  text-decoration: none;
}

#header .leftNav .hamburger nav .nav_middle ul.info {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

#header .leftNav .hamburger nav .nav_middle ul.info li {
  position: relative;
  margin: 0 0 10px 0;
  padding: 0 0 0 20px;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 300;
  line-height: 30px;
}

#header .leftNav .hamburger nav .nav_middle ul.info li:last-child {
  margin-bottom: 0;
}

#header .leftNav .hamburger nav .nav_middle ul.info li img {
  position: absolute;
  top: 8px;
  left: 0;
}

#header .leftNav .hamburger nav .nav_middle ul.info li a {
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

#header .leftNav .hamburger nav .nav_middle ul.info li a:hover {
  color: var(--color-white);
  text-decoration: none;
}

#header .leftNav .hamburger nav .nav_middle ul.social {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

#header .leftNav .hamburger nav .nav_middle ul.social li {
  float: left;
  width: auto;
  margin-right: 10px;
}

#header .leftNav .hamburger nav .nav_middle ul.social li:last-child {
  margin-right: 0;
}

#header .leftNav .hamburger nav .nav_middle ul.social li a {
  display: block;
  filter: none;
  transition: all 0.3s ease-in-out;
  filter: var(--color-filter-icon-white);
}

#header .leftNav .languageMenu {
  width: 47px;
  position: relative;
  z-index: 1;
}

#header .leftNav .languageMenu label {
  display: block;
  width: 100%;
  margin: 0;
}

#header .leftNav .languageMenu label a {
  display: block;
  padding: 2px 3px;
  padding-right: 10px;
  background: url(../../../images/icons/arrow-language.png) no-repeat right center;
  background-size: 15px;
  font-size: 20px;
  color: #000;
  text-transform: uppercase;
  filter: var(--color-filter-icon-white);
}

#header.sticky .leftNav .languageMenu label a {
  filter: var(--color-filter-icon-primary);
}

#header .leftNav .languageMenu label a.open {
  background-image: url(../../../images/icons/arrow-language-open.png);
  filter: var(--color-filter-icon-white);
}

#header.sticky .leftNav .languageMenu label a.open {
  filter: var(--color-filter-icon-primary);
}

#header .leftNav .languageMenu ul {
  display: none;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style-type: none;
  background-color: var(--color-grey);
  box-shadow: 0 0 15px 0 rgb(41 51 88 / 20%);
  border-radius: 0px;
  position: absolute;
  top: 100%;
  left: 0;
}

#header .leftNav .languageMenu ul li a {
  display: block;
  padding: 5px 10px;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
}

#header .leftNav .languageMenu ul li a:hover {
  color: var(--color-primary-hover);
}

#header .leftNav .phoneIcon {
  display: block;
}

#header .leftNav .phoneIcon a {
  display: block;
}

#header .leftNav .phoneIcon a img {
  filter: var(--color-filter-icon-white);
}

#header.sticky .leftNav .phoneIcon a img {
  filter: var(--color-filter-icon-primary);
}

.explore {
  width: 100%;
  height: auto;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 28px;
  padding-left: 0px;
  color: white;
}

.explore li a {
  color: var(--color-white);
}

#header .rightNavMobile {
  display: none;
  align-items: center;
  justify-content: flex-end;
  width: calc(50% - 126px);
}

#header .rightNavMobile .phoneIcon {
  display: block;
}

#header .rightNavMobile .phoneIcon a {
  display: block;
}

#header .rightNavMobile .phoneIcon a img {
  filter: var(--color-filter-icon-primary);
}

@media (max-width: 959px) {
  #header .rightNavMobile .phoneIcon a img {
    filter: var(--color-filter-icon-white);
  }

  #header.sticky .rightNavMobile .phoneIcon a img {
    filter: var(--color-filter-icon-primary);
  }
}

#header .rightNav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(50% - 126px);
}

#header .rightNav ul {
  display: flex;
  align-items: center;
  grid-gap: 40px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

#header .rightNav ul li {
  float: left;
  width: auto;
}

#header .rightNav ul li a {
  position: relative;
  display: block;
  padding-bottom: 0px;
  font-size: 16px;
  color: var(--color-white);
  line-height: 20px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

#header.sticky .rightNav ul li a {
  color: var(--color-primary);
}

#header .rightNav ul li a:hover {
  color: var(--color-white);
  text-decoration: none;
}

#header.sticky .rightNav ul li a:hover {
  color: var(--color-primary-hover);
}

#header .rightNav ul li a:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  bottom: -15px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

#header.sticky .rightNav ul li a:after {
  background-color: var(--color-primary-hover);
}

#header .rightNav ul li a:hover:after {
  bottom: -10px;
  opacity: 1;
  visibility: visible;
}

#header .rightNav ul li.button a {
  padding: 13px 25px;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 700;
}

#header.sticky .rightNav ul li.button a {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

#header .rightNav ul li.button a:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

#header.sticky .rightNav ul li.button a:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: white;
}

#header .rightNav ul li.button a:after {
  display: none;
}

/*-------------- Sticky Header Start --------------*/
#header.sticky {
  background-color: var(--color-white);
  box-shadow: 0px 10px 20px rgb(0 4 16 / 70%);
  position: fixed;
  top: 0;
}

#header.sticky .logo {
  width: 130px;
}

/*-------------- Sticky Header End --------------*/
#slider {
  position: relative;
  float: left;
  width: 100%;
  overflow: hidden;
  margin-bottom: var(--space-between-sections);
}

#slider>.container {
  position: absolute;
  height: 100%;
  right: 0;
  left: 0;
}

#slider .home-slider {}

#slider,
#slider .home-slider,
#slider .owl-stage-outer,
#slider .owl-stage,
#slider .owl-item {
  width: 100vw;
  height: 100vh;
}

#slider .home-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  overflow: hidden;
}

#slider .home-slider .item:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 21%) url(../../../images/design/slider-bg.png) left bottom repeat-x;
  position: absolute;
  top: 0;
  z-index: 1;
}

#slider .home-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

#slider .home-slider .owl-dots {
  width: 45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}

#slider .home-slider .owl-dots .owl-dot {
  margin: 0px 0;
}

#slider .home-slider .owl-dots .owl-dot:first-child {
  margin-top: 0;
}

#slider .home-slider .owl-dots .owl-dot:last-child {
  margin-bottom: 0;
}

#slider .home-slider .owl-dots .owl-dot.active {
  margin-top: 60px;
  margin-bottom: 60px;
}

#slider .home-slider .owl-dots .owl-dot:before,
#slider .home-slider .owl-dots .owl-dot:after {
  width: 1px;
  height: 0px;
  top: inherit;
}

#slider .home-slider .owl-dots .owl-dot.active:before,
#slider .home-slider .owl-dots .owl-dot.active:after {
  height: 45px;
}

#slider .home-slider .owl-dots .owl-dot:before {
  right: inherit;
  bottom: calc(100% + 15px);
}

#slider .home-slider .owl-dots .owl-dot:after {
  left: inherit;
  top: calc(100% + 15px);
}

#caption {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
  overflow: hidden;
}

#caption .title {
  display: block;
  margin: 0;
  font-family: var(--font-text-family);
  font-size: 72px;
  color: var(--color-white);
  line-height: 72px;
  text-transform: uppercase;
}

#caption .subtitle {
  display: block;
  margin: 20px 0 0 0;
  font-size: 22px;
  color: var(--color-white);
  font-weight: 300;
  line-height: 36px;
}

#caption .subtitle br {
  display: block;
}

#searchForm {
  display: flex;
  align-items: flex-end;
  grid-gap: 30px;
  position: absolute;
  width: 100%;
  bottom: 40px;
  z-index: 2;
}

#searchForm a.searchFormClose {
  display: none;
  width: 15px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}

#searchForm .field {
  position: relative;
  float: left;
  width: 25%;
  padding: 0 0px;
}

#searchForm .field h3 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: var(--color-white);
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}

#searchForm .field.dateinout {
  width: 33%;
}

#searchForm .field.adultschildren {
  width: 33%;
}

#searchForm .field.promocode {
  width: 17%;
}

#searchForm .field.button {
  width: 17%;
}

#searchForm .field .form-control {
  height: 54px;
  padding: 0 20px 0 0;
  border: none;
  border-bottom: 1px solid var(--color-black);
  background-color: transparent;
  background-image: url(../../../images/design/arrow-search-fields.png);
  background-repeat: no-repeat;
  background-position: right center;
  border-radius: 0px;
  font-size: var(--font-text-size);
  color: var(--color-black);
  font-weight: 700;
}

#searchForm .field .form-control::placeholder {
  color: var(--color-black);
}

#searchForm .field button {
  display: block;
  width: 100%;
  padding: 17px 15px;
  outline: 0;
  border: none;
  background-color: var(--color-primary);
  border-radius: 0px;
  font-size: 16px;
  color: #000000;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

#searchForm .field button:hover {
  background-color: var(--color-black);
}

#searchForm .field .popups {
  display: none;
  align-items: center;
  padding: 30px;
  padding-bottom: 160px;
  background-color: var(--color-black);
  background-repeat: no-repeat;
  background-position: center bottom 30px;
  position: absolute;
  min-width: 100%;
  bottom: 100%;
  /*left: 50%;
    transform: translateX(-50%);*/
  z-index: 1;
}

#searchForm .field .popups[style*="display: block"] {
  display: flex !important;
}

#searchForm .field .popups.no-bg {
  padding-bottom: 30px;
  background-image: none;
}

#searchForm .field .popups .popupsCancel {
  width: 15px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}

#searchForm .field .popups .calendar {
  float: left;
  width: 544px;
}

#searchForm .field .popups .calendar .daterangepicker {
  display: block !important;
  float: left;
  width: 100%;
  margin: 0 auto;
  border: none;
  background-color: transparent;
  border-radius: 0;
  font-family: var(--font-text-family);
  font-weight: normal;
  position: static;
}

#searchForm .field .popups .calendar .daterangepicker:before,
#searchForm .field .popups .calendar .daterangepicker:after {
  display: none;
}

#searchForm .field .popups .calendar .daterangepicker .ranges {
  display: none;
}

#searchForm .field .popups .calendar .daterangepicker .drp-calendar.left {
  padding: 0;
  margin-right: 30px;
}

#searchForm .field .popups .calendar .daterangepicker .drp-calendar.right {
  padding: 0;
}

#searchForm .field .popups .calendar .daterangepicker .calendar-table {
  padding: 0;
  border: none;
  border-radius: 0px;
  background-color: transparent;
}

#searchForm .field .popups .calendar .daterangepicker .calendar-table table {
  border-spacing: 4px;
  border-collapse: inherit;
}

#searchForm .field .popups .calendar .daterangepicker .calendar-table th,
#searchForm .field .popups .calendar .daterangepicker .calendar-table td {
  min-width: 32px;
  width: 32px;
  height: 32px;
  border: none;
  background-color: transparent;
  border-radius: 100%;
  font-size: 13px;
  color: rgb(10 19 41 / 80%);
  line-height: normal;
}

#searchForm .field .popups .calendar .daterangepicker .calendar-table th {
  color: #0a1329;
  font-family: var(--font-text-family);
  font-size: 11px;
  font-weight: normal;
}

#searchForm .field .popups .calendar .daterangepicker .calendar-table th.month {
  width: auto;
  font-family: var(--font-text-family)ext-family)ext-family)ext-family);
  font-size: 16px;
  color: #0a1329;
  text-transform: uppercase;
}

#searchForm .field .popups .calendar .daterangepicker .calendar-table .next span,
#searchForm .field .popups .calendar .daterangepicker .calendar-table .prev span {
  border-color: #0a1329;
}

#searchForm .field .popups .calendar .daterangepicker .calendar-table .next:hover span,
#searchForm .field .popups .calendar .daterangepicker .calendar-table .prev:hover span {
  border-color: var(--color-black);
}

#searchForm .field .popups .calendar .daterangepicker .calendar-table th.available:hover,
#searchForm .field .popups .calendar .daterangepicker .calendar-table td.available:hover {
  background-color: #0a1329;
  color: var(--color-black);
}

#searchForm .field .popups .calendar .daterangepicker .calendar-table td.off,
#searchForm .field .popups .calendar .daterangepicker .calendar-table td.off.in-range,
#searchForm .field .popups .calendar .daterangepicker .calendar-table td.off.start-date,
#searchForm .field .popups .calendar .daterangepicker .calendar-table td.off.end-date {
  background-color: transparent;
  color: rgb(10 19 41 / 20%);
}

#searchForm .field .popups .calendar .daterangepicker .calendar-table td.in-range {
  background-color: #ebebeb;
  border-color: transparent;
  color: #0c2340;
}

#searchForm .field .popups .calendar .daterangepicker .calendar-table td.active,
#searchForm .field .popups .calendar .daterangepicker .calendar-table td.active:hover {
  background-color: var(--color-primary);
  color: #0a1329;
}

#searchForm .field .popups .calendar .daterangepicker .drp-buttons {
  padding: 10px 0 0 0;
  border-color: rgb(255 255 255 / 20%);
}

#searchForm .field .popups .calendar .daterangepicker .drp-selected {
  font-size: 13px;
  color: var(--color-black);
}

#searchForm .field .popups .calendar .daterangepicker .drp-buttons .btn {
  padding: 4px 15px;
  box-shadow: none;
  font-family: var(--font-text-family);
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
}

#searchForm .field .popups .calendar .daterangepicker .drp-buttons .btn:hover {
  border-color: #0ed6ef;
  background-color: #0ed6ef;
  color: #0c2340;
}

#searchForm .field .popups .roomsbox {
  float: left;
  width: 537px;
  margin-top: 10px;
}

#searchForm .field .popups .roomsbox #rooms {
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
  min-height: 153px;
  max-height: 153px;
  padding-right: 30px;
  overflow-y: auto;
}

#searchForm .field .popups .roomsbox #rooms::-webkit-scrollbar {
  width: 2px;
}

#searchForm .field .popups .roomsbox #rooms::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 20%);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

#searchForm .field .popups .roomsbox #rooms::-webkit-scrollbar-thumb {
  min-height: 40px;
  background: #0e1933;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

#searchForm .field .popups .roomsbox #rooms .room {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 30px;
}

#searchForm .field .popups .roomsbox #rooms .room .room-title {
  display: flex;
  align-items: center;
  min-width: 70px;
  max-width: 70px;
  font-size: 16px;
  color: #3d3d3d;
  font-weight: 400;
  line-height: 20px;
}

#searchForm .field .popups .roomsbox #rooms .room .icon.adult,
#searchForm .field .popups .roomsbox #rooms .room .icon.child,
#searchForm .field .popups .roomsbox #rooms .room .icon.baby {
  position: relative;
}

#searchForm .field .popups .roomsbox #rooms .room .icon.adult::after,
#searchForm .field .popups .roomsbox #rooms .room .icon.child::after,
#searchForm .field .popups .roomsbox #rooms .room .icon.baby::after {
  content: "";
  width: 17px;
  height: 17px;
  background-size: cover;
  position: absolute;
  top: 6px;
  right: 25px;
}

#searchForm .field .popups .roomsbox #rooms .room .icon.adult::after {
  background-image: url("../../../images/icons/adult-icon.png");
}

#searchForm .field .popups .roomsbox #rooms .room .icon.child::after {
  background-image: url("../../../images/icons/children-icon.png");
}

#searchForm .field .popups .roomsbox #rooms .room .icon.baby::after {
  background-image: url("../../../images/icons/baby-icon.png");
}

#searchForm .field .popups .roomsbox #rooms .room select {
  width: 115px;
  padding: 5px 10px;
  outline: 0;
  border: none;
  border-bottom: 1px solid #0a1329;
  background-color: transparent;
  background-position: right 0px center;
  font-size: 16px;
  color: #3d3d3d;
  font-weight: 400;
  line-height: 20px;
}

#searchForm .field .popups .roomsbox #rooms .room .icon.remove {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0a1329;
  text-decoration: none;
  position: absolute;
  top: 7px;
  right: -22px;
}

#searchForm .field .popups .roomsbox #rooms .room .ages-inputs {
  display: flex;
  align-items: center;
  grid-gap: 30px;
  width: 100%;
}

#searchForm .field .popups .roomsbox #rooms .room .ages-inputs .ages-label {
  display: flex;
  align-items: center;
  min-width: 70px;
  max-width: 70px;
}

#searchForm .field .popups .roomsbox #rooms .room .ages-inputs .ages-container {
  display: flex;
  align-items: center;
  grid-gap: 30px;
}

#searchForm .roomsbox .action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 15px;
  margin-top: 30px;
}

#searchForm .roomsbox .action-buttons .plus,
#searchForm .roomsbox .action-buttons .accept {
  display: inline-block;
  width: auto;
  padding: 10px 20px;
  border: 1px solid #020815;
  background-color: transparent;
  font-size: 16px;
  color: #020815;
  font-weight: 400;
  line-height: 20px;
  text-transform: none;
}

#searchForm .roomsbox .action-buttons .plus:hover,
#searchForm .roomsbox .action-buttons .accept:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #000000;
}

#searchForm .roomsbox .action-buttons .accept {
  background-color: #020815;
  color: var(--color-black);
}

#searchForm .field .popups .promocodebox {
  float: left;
  width: 210px;
  text-align: center;
}

#searchForm .field .popups .promocodebox .form-control {
  display: block;
  width: 100%;
  height: 40px;
  margin-top: 10px;
  padding: 7px 20px;
  border: none;
  border-bottom: 1px solid #0a1329;
  background-color: transparent;
  background-image: none;
  border-radius: 0px;
  font-size: 14px;
  color: #0a1329;
  font-weight: 400;
  text-align: center;
}

#searchForm .field .popups .promocodebox .form-control::placeholder {
  color: #0a1329;
}

#searchForm .field .popups .promocodebox .apply-btn {
  display: inline-block;
  width: auto;
  margin-top: 30px;
  padding: 10px 37px;
  background-color: #020815;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 400;
  line-height: 20px;
  text-transform: none;
}

#searchForm .field .popups .promocodebox .apply-btn:hover {
  background-color: var(--color-primary);
  color: #000000;
}

#searchFormBtn {
  display: none;
  width: calc(100% - 30px);
  position: absolute;
  bottom: 15px;
  z-index: 3;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-delay: 0.2s;
}

#searchFormBtn.sticky {
  width: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-delay: 0.2s;
}

#searchFormBtn button {
  width: 100%;
  padding: 17px 15px;
  background-color: var(--color-primary);
  font-size: 16px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

#middle {
  float: left;
  width: 100%;
}

#advantagesSec {
  position: relative;
  margin-bottom: var(--space-between-sections);
}

#advantagesSec span.title {
  display: block;
  margin: 0 0 25px 0;
  font-size: 14px;
  color: var(--color-black);
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
}

#advantagesSec .advantages-slider .item {
  position: relative;
  padding: 20px 0;
  text-align: center;
}

#advantagesSec .advantages-slider .item:after {
  content: "";
  width: 270px;
  height: 100%;
  background-color: var(--color-grey);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#advantagesSec .advantages-slider .item img {
  width: auto;
  height: auto;
  margin: 0 auto 40px auto;
  aspect-ratio: 1/1;
  max-width: 64px;
  filter: var(--filter-color-secondary);
}

#advantagesSec .advantages-slider .item .infotitle {
  display: block;
  margin: 0 0 10px 0;
  font-family: var(--font-text-family);
  font-weight: normal;
  font-size: 24px;
  color: var(--color-black);
  line-height: 27px;
}

#advantagesSec .advantages-slider .item .infodecs {
  display: block;
  margin: 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: normal;
  line-height: 20px;
}

#advantagesSec .customNav {
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

#advantagesSec .customNav button {
  width: 17px;
  padding: 0;
  background-color: transparent;
  filter: var(--color-filter-icon-primary);
}

#advantagesSec .customNav #counter {
  width: 80px;
  margin: 0 5px;
  font-family: var(--font-text-family);
  font-weight: normal;
  font-size: 17px;
  color: var(--color-black);
  line-height: 17px;
  text-align: center;
}

#advantagesSec .customNav #counter span {
  font-family: "var(--font-text-family)";
  color: var(--color-primary);
  font-weight: 900;
}

#welcomeSec {
  position: relative;
  margin-bottom: var(--space-between-sections);
  overflow: hidden;
}

#welcomeSec span.verticalTitle {
  font-size: 14px;
  color: var(--color-black);
  line-height: 20px;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 30px;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(-180deg);
}

#welcomeSec span.verticalTitle:before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: var(--color-black);
  position: absolute;
  top: calc(100% + 17px);
  left: 50%;
}

#welcomeSec span.verticalTitle:after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: var(--color-black);
  position: absolute;
  bottom: calc(100% + 17px);
  left: 50%;
}

#welcomeSec .welcome {
  display: flex;
  float: left;
  width: 100%;
  padding-bottom: 150px;
  position: relative;
  z-index: 2;
}

#welcomeSec .welcome .image {
  position: relative;
  float: left;
  width: calc(100% + var(--container-padding));
  display: flex;
  justify-content: center;
  overflow: hidden;
}

#welcomeSec .welcome .image:after {
  content: "";
  width: 84%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  background: linear-gradient(-90deg,      rgba(255, 255, 255, 0) 5%,      var(--color-white-transparent) 40%,      var(--color-white) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

#welcomeSec .welcome .image picture {
  max-width: inherit;
  width: inherit;
  height: 100%;
}

#welcomeSec .welcome .thumb {
  width: 570px;
  position: absolute;
  right: 0;
  bottom: 5%;
  z-index: 1;
}

#welcomeSec .welcome .thumb img {
  width: 100%;
  height: auto;
}

#welcomeSec .welcome .content {
  position: relative;
  float: left;
  width: 50%;
  margin-left: calc(-100% - var(--container-padding));
  padding: 70px 0;
  align-self: center;
}

#welcomeSec .welcome .content span.title {
  display: block;
  margin: 0 0 40px -70px;
  font-family: var(--font-cursive-family);
  font-size: var(--font-subtitle-cursive-size);
  line-height: var(--font-subtitle-cursive-line-height);
  color: var(--color-secondary);
}

#welcomeSec .welcome .content h1 {
  width: 130%;
  margin: 0 0 40px 0;
  font-family: var(--font-text-family);
  font-size: var(--font-title-size);
  color: var(--color-black);
  text-transform: uppercase;
}

#welcomeSec .welcome .content p {
  width: 80%;
  margin: 0 0 20px 0;
  font-size: var(--font-text-size);
  color: var(--color-black);
  font-weight: 400;
  line-height: var(--custom-line-height);
}

#welcomeSec .welcome .content p:last-child {
  margin-bottom: 0;
}

#welcomeSec .welcome .content a.link {
  display: inline-flex;
  align-items: center;
  grid-gap: 20px;
  margin: 20px 0 0 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#welcomeSec .welcome .content a.link:after {
  content: "";
  width: 40px;
  border-top: 1px solid;
  transition: all 0.3s ease-in-out;
  color: var(--color-secondary);
}

#welcomeSec .welcome .content a.link:hover {
  color: var(--color-primary-hover);
}

#welcomeSec .welcome .content a.link:hover:after {
  width: 60px;
}

#residencesSec {
  position: relative;
  padding-top: var(--space-between-sections);
  padding-bottom: var(--space-between-sections);
  margin-bottom: var(--space-between-sections);
  background-color: var(--color-grey);
  overflow: hidden;
}

#residencesSec span.verticalTitle {
  font-size: 14px;
  color: var(--color-black);
  line-height: 20px;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 30px;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(-180deg);
}

#residencesSec span.verticalTitle:before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: var(--color-black);
  position: absolute;
  top: calc(100% + 17px);
  left: 50%;
}

#residencesSec span.verticalTitle:after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: var(--color-black);
  position: absolute;
  bottom: calc(100% + 17px);
  left: 50%;
}

#residencesSec span.title {
  display: block;
  margin: 0 0 40px 0;
  font-family: var(--font-cursive-family);
  font-size: var(--font-subtitle-cursive-size);
  line-height: var(--font-subtitle-cursive-line-height);
  color: var(--color-secondary);
  text-align: center;
}

#residencesSec h2 {
  float: right;
  width: 50%;
  margin: 0 0 20px 0;
  font-family: var(--font-text-family);
  font-size: var(--font-title-size);
  color: var(--color-black);
  line-height: 58px;
  text-transform: uppercase;
}

#residencesSec .relaxBox {
  float: left;
  margin-left: calc(0px - var(--container-padding));
  font-family: var(--font-text-family);
  font-size: 200px;
  color: var(--color-grey-soft);
  line-height: 170px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

#residencesSec .seeall {
  float: right;
  width: 50%;
  margin: 0 0 40px 0;
  clear: both;
}

#residencesSec .seeall a {
  display: inline-flex;
  align-items: center;
  grid-gap: 20px;
  margin: 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#residencesSec .seeall a:after {
  content: "";
  width: 40px;
  border-top: 1px solid;
  transition: all 0.3s ease-in-out;
  color: var(--color-secondary);
}

#residencesSec .seeall a:hover {
  color: var(--color-primary-hover);
}

#residencesSec .seeall a:hover:after {
  width: 60px;
}

#residencesSec .residences {
  display: flex;
  float: left;
  width: 100%;
  position: relative;
  z-index: 2;
}

#residencesSec .residences .slider {
  align-self: flex-start;
  float: left;
  width: 65%;
  padding-bottom: 125px;
}

#residencesSec .residences .slider .residences-slider .owl-dots {
  position: absolute;
  bottom: -85px;
  left: 0;
}

@media (max-width: 767px) {
  #residencesSec .residences .slider .residences-slider .owl-dots {
    bottom: -65px;
  }
}

#residencesSec .residences .content {
  position: relative;
  float: left;
  width: 35%;
  margin-top: 170px;
  padding: 40px;
  padding-right: 0;
}

#residencesSec .residences .content .bgBox {
  background: var(--color-grey-soft);
  position: absolute;
  top: 0;
  right: calc(0px - var(--container-padding));
  bottom: 0;
  left: -100px;
  z-index: -1;
}

#residencesSec .residences .content .residences-info h3 {
  margin: 0 0 20px 0;
  font-family: var(--font-text-family);
  font-size: 32px;
  line-height: 42px;
  color: var(--color-black);
  text-transform: uppercase;
}

#residencesSec .residences .content .residences-info p {
  margin: 0 0 20px 0;
  font-size: var(--font-text-size);
  color: var(--color-black);
  font-weight: 400;
  line-height: var(--custom-line-height);
}

#residencesSec .residences .content .residences-info p:last-child {
  margin-bottom: 0;
}

#residencesSec .residences .content .residences-info a.button {
  display: inline-block;
  margin: 10px 0 0 0;
  padding: 15px 20px;
  background-color: var(--color-secondary);
  font-size: 16px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

#residencesSec .residences .content .residences-info a.button:hover {
  color: var(#fff);
  background-color: var(--color-primary-hover);
}

#facilitiesSec {
  position: relative;
  margin-bottom: var(--space-between-sections);
  overflow: hidden;
}

#facilitiesSec span.verticalTitle {
  font-size: 14px;
  color: var(--color-black);
  line-height: 20px;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 30px;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(-180deg);
}

#facilitiesSec span.verticalTitle:before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: var(--color-black);
  position: absolute;
  top: calc(100% + 17px);
  left: 50%;
}

#facilitiesSec span.verticalTitle:after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: var(--color-black);
  position: absolute;
  bottom: calc(100% + 17px);
  left: 50%;
}

#facilitiesSec .bgBox {
  width: 55%;
  height: 380px;
  background: var(--color-grey);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

#facilitiesSec .slider {
  padding-bottom: 125px;
}

#facilitiesSec .slider .facilities-slider .owl-stage-outer {
  overflow: visible;
}

#facilitiesSec .slider .facilities-slider .owl-stage-outer:before,
#facilitiesSec .slider .facilities-slider .owl-stage-outer:after {
  content: "";
  width: 215px;
  height: 100%;
  background: rgb(2 8 21 / 50%);
  position: absolute;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

#facilitiesSec .slider .facilities-slider .owl-stage-outer:before {
  background: linear-gradient(-90deg,
      rgba(2, 8, 21, 0) 5%,
      var(--color-white-transparent) 65%,
      var(--color-white) 95%);
  left: calc(0px - var(--container-padding));
}

#facilitiesSec .slider .facilities-slider .owl-stage-outer:after {
  background: linear-gradient(90deg,
      rgba(2, 8, 21, 0) 5%,
      var(--color-white-transparent) 65%,
      var(--color-white) 95%);
  right: calc(0px - var(--container-padding));
}

#facilitiesSec .slider .facilities-slider .item {
  position: relative;
  overflow: hidden;
}

#facilitiesSec .slider .facilities-slider .item:after {
  pointer-events: none;
  content: "";
  width: 100%;
  height: 35%;
  background: rgb(2 8 21 / 50%);
  background: linear-gradient(180deg,
      rgba(2, 8, 21, 0) 0%,
      var(--color-white-transparent) 50%,
      var(--color-white) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  animation-delay: 0s;
}

#facilitiesSec .slider .facilities-slider .center .item:after {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-delay: 0.5s;
}

#facilitiesSec .slider .facilities-slider .item img {
  transform: scale(1);
  transition: all 0.7s ease-in-out;
}

#facilitiesSec .slider .facilities-slider .item:hover img {
  transform: scale(1.05);
}

#facilitiesSec .slider .facilities-slider .item .info {
  pointer-events: none;
  position: absolute;
  bottom: 15px;
  right: 15px;
  left: 15px;
  z-index: 2;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
  animation-delay: 0s;
}

#facilitiesSec .slider .facilities-slider .center .item .info {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-delay: 0.5s;
}

#facilitiesSec .slider .facilities-slider .item .info span.name {
  display: block;
  margin: 0;
  font-family: var(--font-text-family);
  font-size: 30px;
  color: var(--color-black);
  line-height: 30px;
  text-transform: uppercase;
}

#facilitiesSec .slider .facilities-slider .owl-dots {
  position: absolute;
  bottom: -85px;
  left: 0;
}

#facilitiesSec .seeall {
  float: right;
  width: fit-content;
  margin-top: -78px;
  position: relative;
  z-index: 1;
}

#facilitiesSec .seeall a {
  display: inline-flex;
  align-items: center;
  grid-gap: 20px;
  margin: 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#facilitiesSec .seeall a:before,
#facilitiesSec .seeall a:after {
  content: "";
  width: 40px;
  border-top: 1px solid;
  transition: all 0.3s ease-in-out;
}

#facilitiesSec .seeall a:before {
  display: none;
}

#facilitiesSec .seeall a:hover {
  color: var(--color-black);
}

#facilitiesSec .seeall a:hover:before,
#facilitiesSec .seeall a:hover:after {
  width: 60px;
}

.text-center span.title {
  display: block;
  margin: 0 0 40px 0;
  font-family: var(--font-cursive-family);
  font-size: var(--font-subtitle-cursive-size);
  line-height: var(--font-subtitle-cursive-line-height);
  color: var(--color-secondary);
  text-align: center;
}

.text-center h2 {
  width: 80%;
  margin: 0 auto 40px auto;
  font-family: var(--font-text-family);
  font-size: 48px;
  color: var(--color-black);
  line-height: 58px;
  text-transform: uppercase;
  text-align: center;
}

#inspirationSec {
  position: relative;
  padding-top: var(--space-between-sections);
  padding-bottom: var(--space-between-sections);
  margin-bottom: var(--space-between-sections);
  overflow: hidden;
  background-color: var(--color-grey);
}

#inspirationSec span.verticalTitle {
  font-size: 14px;
  color: var(--color-black);
  line-height: 20px;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 30px;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(-180deg);
}

#inspirationSec span.verticalTitle:before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: var(--color-black);
  position: absolute;
  top: calc(100% + 17px);
  left: 50%;
}

#inspirationSec span.verticalTitle:after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: var(--color-black);
  position: absolute;
  bottom: calc(100% + 17px);
  left: 50%;
}

#inspirationSec .enjoyBox {
  float: right;
  margin-right: calc(0px - var(--container-padding));
  font-family: var(--font-text-family);
  font-size: 170px;
  color: var(--color-grey-soft);
  line-height: 140px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

#inspirationSec .bgBox {
  width: 50%;
  height: 380px;
  background: var(--color-grey-soft);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

#inspirationSec .inspiration {
  float: left;
  width: 100%;
  position: relative;
  z-index: 2;
}

#inspirationSec .inspiration .content {
  float: left;
  width: 50%;
  padding-right: 25px;
}

#inspirationSec .inspiration .content span.title {
  display: block;
  margin: 0 0 40px -70px;
  font-family: var(--font-cursive-family);
  font-size: var(--font-subtitle-cursive-size);
  line-height: var(--font-subtitle-cursive-line-height);
  color: var(--color-secondary);
}

#inspirationSec .inspiration .content h2 {
  margin: 0 0 40px 0;
  font-family: var(--font-text-family);
  font-size: 48px;
  color: var(--color-black);
  line-height: 58px;
  text-transform: uppercase;
}

#inspirationSec .inspiration .content .inspiration-info {
  padding-right: 25px;
}

#inspirationSec .inspiration .content .inspiration-info h3 {
  margin: 0 0 40px 0;
  font-family: var(--font-text-family);
  font-size: 32px;
  color: var(--color-black);
  line-height: 42px;
  text-transform: uppercase;
}

#inspirationSec .inspiration .content .inspiration-info p {
  margin: 0 0 20px 0;
  font-size: var(--font-text-size);
  color: var(--color-black);
  font-weight: 400;
  line-height: var(--custom-line-height);
}

#inspirationSec .inspiration .content .inspiration-info p:last-child {
  margin-bottom: 0;
}

#inspirationSec .inspiration .content .inspiration-info a.link {
  display: inline-flex;
  align-items: center;
  grid-gap: 20px;
  margin: 20px 0 0 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#inspirationSec .inspiration .content .inspiration-info a.link:after {
  content: "";
  width: 40px;
  border-top: 1px solid;
  transition: all 0.3s ease-in-out;
  color: var(--color-secondary);
}

#inspirationSec .inspiration .content .inspiration-info a.link:hover {
  color: var(--color-primary);
}

#inspirationSec .inspiration .content .inspiration-info a.link:hover:after {
  width: 60px;
}

#inspirationSec .inspiration .slider {
  float: left;
  width: 50%;
  padding-left: 85px;
}

#inspirationSec .inspiration .slider .inspiration-slider .desktop {
  display: block;
}

#inspirationSec .inspiration .slider .inspiration-slider .mobile {
  display: none;
}

#inspirationSec .inspiration .slider .inspiration-slider .owl-stage-outer {
  width: calc(100% + var(--container-padding));
  -webkit-mask-image: url(../../../images/design/inspiration-slider-mask.png);
  mask-image: url(../../../images/design/inspiration-slider-mask.png);
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: contain;
  mask-size: contain;
}

#inspirationSec .inspiration .slider .inspiration-slider .owl-dots {
  position: absolute;
  bottom: -85px;
  left: 0;
}

#locationSec {
  position: relative;
  margin-bottom: var(--space-between-sections);
  overflow: hidden;
}

#locationSec .travelBox {
  float: right;
  margin-right: calc(0px - var(--container-padding));
  font-family: var(--font-text-family);
  font-size: 170px;
  color: var(--color-grey-soft);
  line-height: 140px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

#locationSec .beHappyBox {
  float: left;
  margin-left: calc(0px - var(--container-padding));
  padding: 70px 0 70px 140px;
  font-family: var(--font-text-family);
  font-size: 170px;
  color: var(--color-grey-soft);
  line-height: 140px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

#locationSec .bgBox {
  width: 385px;
  background: var(--color-grey);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

#locationSec .location {
  float: left;
  width: 100%;
  position: relative;
  z-index: 2;
}

#locationSec .location span.title {
  display: block;
  margin: -70px 0 40px 0;
  font-family: var(--font-cursive-family);
  font-size: var(--font-subtitle-cursive-size);
  line-height: var(--font-subtitle-cursive-line-height);
  color: var(--color-secondary);
  text-align: center;
}

#locationSec .location .content {
  float: right;
  width: 50%;
}

#locationSec .location .content h3 {
  margin: 0 0 40px 0;
  font-family: var(--font-text-family);
  font-size: 48px;
  color: var(--color-black);
  line-height: 58px;
  text-transform: uppercase;
}

#locationSec .location .content p {
  margin: 0 0 20px 0;
  font-size: var(--font-text-size);
  color: var(--color-black);
  font-weight: 400;
  line-height: var(--custom-line-height);
}

#locationSec .location .content p:last-child {
  margin-bottom: 0;
}

#locationSec .location .content a.link {
  display: inline-flex;
  align-items: center;
  grid-gap: 20px;
  margin: 20px 0 0 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 700;
  line-height: var(--custom-line-height);
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#locationSec .location .content a.link:after {
  content: "";
  width: 40px;
  border-top: 1px solid;
  transition: all 0.3s ease-in-out;
  color: var(--color-secondary);
}

#locationSec .location .content a.link:hover {
  color: var(--color-primary);
}

#locationSec .location .content a.link:hover:after {
  width: 60px;
}

#locationSec .location .image {
  position: relative;
  float: left;
  width: calc(50% + var(--container-padding));
  margin-left: calc(0px - var(--container-padding));
}

#locationSec .location .image:after {
  content: "";
  width: 70%;
  height: 100%;
  background: rgb(2 8 21 / 50%);
  background: linear-gradient(90deg,
      rgba(2, 8, 21, 0) 5%,
      var(--color-white-transparent) 65%,
      var(--color-white) 95%);
  position: absolute;
  top: 0;
  right: 0;
}

#locationSec .location .image img {
  width: 100%;
  height: auto;
}

/*#locationSec .location .image img.desktop { display: block; }
#locationSec .location .image img.mobile { display: none; }*/
#newsletterSec {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: var(--color-grey);
}

#newsletterSec .newsform {
  display: flex;
  align-items: center;
  gap: 30px;
}

#newsletterSec h3 {
  text-align: center;
}

#newsletterSec .newsform h3 {
  width: 50%;
  margin: 0;
  font-family: var(--font-text-family);
  font-weight: normal;
  font-size: var(--font-title-size);
  color: var(--color-black);
  text-transform: uppercase;
}

#newsletterSec .newsform .newsformBox {
  width: 50%;
}

#newsletterSec .newsform .newsformBox .form-group {
  display: flex;
  grid-gap: 20px;
  margin-top: 20px;
  margin-bottom: 0;
}

#newsletterSec .newsform .newsformBox .form-group:first-child {
  margin-top: 0;
}

#newsletterSec .newsform .newsformBox .form-group .form-control {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  height: 56px;
  padding: 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-black);
  border-radius: 0px;
  font-size: var(--font-text-size);
  color: var(--color-black);
  font-weight: 400;
}

#newsletterSec .newsform .newsformBox .form-group .form-control::placeholder {
  color: var(--color-black);
}

#newsletterSec .newsform .newsformBox .form-group label.checkbox {
  position: relative;
  margin: 0;
  padding-left: 40px;
  font-size: 14px;
  color: var(--color-black);
  line-height: 22px;
}

#newsletterSec .newsform .newsformBox .form-group label input {
  appearance: none;
  width: 22px;
  height: 22px;
  outline: 0;
  border: 1px solid var(--color-black);
  background-color: var(--color-grey);
  vertical-align: text-top;
  position: absolute;
  top: 0;
  left: 0;
}

#newsletterSec .newsform .newsformBox .form-group label input:checked {
  background-image: url(../../../images/icons/checkbox-icon.png);
  background-repeat: no-repeat;
  background-position: center center;
}

#newsletterSec .newsform .newsformBox .form-group label a {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#newsletterSec .newsform .newsformBox .form-group label a:hover {
  color: var(--color-black);
  text-decoration: none;
}

#newsletterSec .newsform .newsformBox .form-group button {
  padding: 15px 40px;
  background-color: var(--color-primary);
  border-radius: 0;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#newsletterSec .newsform .newsformBox .form-group button:hover {
  background-color: var(--color-primary-hover);
}

#footer {
  position: relative;
  float: left;
  width: 100%;
  background-color: var(--color-primary);
  overflow: hidden;
}

@media (max-width: 992px) {
  #footer {
    margin-bottom: 40px;
  }
}

.footerSection {
  float: left;
  width: 100%;
  padding-top: 70px;
  padding-bottom: 70px;
}

.footerSection .ftr_info .logo {
  margin-bottom: 30px;
  filter: var(--color-filter-icon-white);
}

.footerSection .ftr_social {
  float: left;
  width: 100%;
}

.footerSection .ftr_social ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.footerSection .ftr_social ul li {
  display: inline-block;
  width: auto;
  margin: 0 10px 0 0;
}

.footerSection .ftr_social ul li a {
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-in-out;
}

.footerSection .ftr_social ul li a:hover {
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.footerSection .ftr_menu h3 {
  margin: 0 0 20px 0;
  font-family: var(--font-text-family);
  font-weight: normal;
  font-size: var(--font-text-size);
  line-height: 28px;
  color: var(--color-white);
  text-transform: uppercase;
}

.footerSection .ftr_menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.footerSection .ftr_menu ul li {
  margin: 0;
  font-size: var(--font-text-size);
  color: var(--color-white);
  font-weight: 300;
  line-height: 36px;
}

.footerSection .ftr_menu ul li:last-child {
  margin-bottom: 0;
}

.footerSection .ftr_menu ul li a {
  position: relative;
  display: inline-block;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footerSection .ftr_menu ul li a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.footerSection .ftr_menu ul li a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-white);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: -8px;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.footerSection .ftr_menu ul li a:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.footerSection .ftr_contact h3 {
  margin: 0 0 20px 0;
  font-family: var(--font-text-family);
  font-weight: normal;
  font-size: var(--font-text-size);
  color: var(--color-white);
  line-height: 28px;
  text-transform: uppercase;
}

.footerSection .ftr_contact ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.footerSection .ftr_contact ul li {
  position: relative;
  margin: 0;
  padding: 0 0 0 20px;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 300;
  line-height: 36px;
}

.footerSection .ftr_contact ul li:last-child {
  margin-bottom: 0;
}

.footerSection .ftr_contact ul li img {
  position: absolute;
  top: 12px;
  left: 0;
}

.footerSection .ftr_contact ul li a {
  position: relative;
  display: inline-block;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footerSection .ftr_contact ul li a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.footerSection .ftr_contact ul li a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-white);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: -8px;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.footerSection .ftr_contact ul li a:hover::after {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.footerSection .model-cartel img {
  margin-top: 25px;
  max-width: 200px;
}

.footerBottom {
  float: left;
  width: 100%;
  padding-top: 0px;
  padding-bottom: 30px;
}

.footerBottom .copy_text {
  float: left;
  width: 100%;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: self-end;
  gap: 10px;
}

.footerBottom .copy_text br {
  display: none;
}

@media (max-width: 992px) {
  .footerBottom .copy_text {
    flex-direction: column;
    align-items: center;
  }
}

.footerBottom .copyright {}

.footerBottom .copyright__logo {
  display: inline-flex;
}

/*----------------- Inner Pages -----------------*/
#innerBanner {
  position: relative;
  float: left;
  width: 100%;
  overflow: hidden;
  margin-bottom: var(--space-between-sections);
}

#innerBanner>.container {
  position: absolute;
  height: 100%;
  right: 0;
  left: 0;
}

#innerBanner .inner-slider .desktop {
  display: block;
}

#innerBanner .inner-slider .tablet {
  display: none;
}

#innerBanner .inner-slider .mobile {
  display: none;
}

#innerBanner,
#innerBanner .inner-slider,
#innerBanner .owl-stage-outer,
#innerBanner .owl-stage,
#innerBanner .owl-item {
  width: 100vw;
  height: 75vh;
}

#innerBanner .inner-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#innerBanner .inner-slider .item:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 10%) url(../../../images/design/slider-bg.png) left bottom repeat-x;
  position: absolute;
  top: 0;
  z-index: 1;
}

#innerBanner .inner-slider .owl-dots {
  width: 45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}

#innerBanner .inner-slider .owl-dots .owl-dot {
  margin: 0px 0;
}

#innerBanner .inner-slider .owl-dots .owl-dot:first-child {
  margin-top: 0;
}

#innerBanner .inner-slider .owl-dots .owl-dot:last-child {
  margin-bottom: 0;
}

#innerBanner .inner-slider .owl-dots .owl-dot.active {
  margin-top: 60px;
  margin-bottom: 60px;
}

#innerBanner .inner-slider .owl-dots .owl-dot:before,
#innerBanner .inner-slider .owl-dots .owl-dot:after {
  width: 1px;
  height: 0px;
  top: inherit;
}

#innerBanner .inner-slider .owl-dots .owl-dot.active:before,
#innerBanner .inner-slider .owl-dots .owl-dot.active:after {
  height: 45px;
}

#innerBanner .inner-slider .owl-dots .owl-dot:before {
  right: inherit;
  bottom: calc(100% + 15px);
}

#innerBanner .inner-slider .owl-dots .owl-dot:after {
  left: inherit;
  top: calc(100% + 15px);
}

/*----------------- Other Blocks -----------------*/

#restingplaceSec .more .content a.link {
  display: inline-flex;
  align-items: center;
  grid-gap: 20px;
  margin: 20px 0 0 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#restingplaceSec .more .content a.link:after {
  content: "";
  width: 40px;
  border-top: 1px solid;
  transition: all 0.3s ease-in-out;
}

#restingplaceSec .more .content a.link:hover {
  color: var(--color-primary-hover);
}

#restingplaceSec .more .content a.link:hover:after {
  width: 60px;
}

#restingplaceSec {
  position: relative;
  margin-bottom: var(--space-between-sections);
  overflow: hidden;
}

#restingplaceSec .content {
  float: left;
  width: 100%;
}

#restingplaceSec .content .enjoyBox {
  float: left;
  margin-left: calc(0px - var(--container-padding));
  font-family: var(--font-text-family);
  font-size: 170px;
  color: rgb(255 255 255 / 2%);
  line-height: 140px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

#restingplaceSec .content span.title {
  display: block;
  margin: 0 0 40px 17%;
  font-family: var(--font-cursive-family);
  font-size: var(--font-subtitle-cursive-size);
  line-height: var(--font-subtitle-cursive-line-height);
  color: var(--color-secondary);
  line-height: 50px;
}

#restingplaceSec .content h1 {
  margin: 0 0 40px 17%;
  font-family: var(--font-text-family);
  font-size: 48px;
  color: var(--color-black);
  line-height: 58px;
  text-transform: uppercase;
}

#restingplaceSec .content h2 {
  float: right;
  width: 68%;
  margin: 0 0 20px 0;
  font-family: var(--font-text-family);
  font-size: 32px;
  color: var(--color-primary);
  line-height: 42px;
  text-transform: uppercase;
}

#restingplaceSec .content p {
  float: right;
  width: 68%;
  margin: 0 0 20px 0;
  font-size: var(--font-text-size);
  color: var(--color-black);
  font-weight: 400;
  line-height: var(--custom-line-height);
}

body.only-text #restingplaceSec .content h1,
body.only-text #restingplaceSec .content h2 {
  margin-left: 0;
}
body.only-text #restingplaceSec .content p {
  width: 100%;
}

#restingplaceSec .container p {
  line-height: var(--custom-line-height);
}

#restingplaceSec .content p:last-child {
  margin-bottom: 0;
}

#restingplaceSec .content .readmore {
  float: right;
  width: 68%;
  margin: 0;
  clear: both;
}

#restingplaceSec .content .readmore a {
  display: inline-flex;
  align-items: center;
  grid-gap: 20px;
  margin: 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#restingplaceSec .content .readmore a:after {
  content: "";
  width: 40px;
  border-top: 1px solid;
  transition: all 0.3s ease-in-out;
  color: var(--color-secondary);
}

#restingplaceSec .content .readmore a:hover {
  color: var(--color-black);
}

#restingplaceSec .content .readmore a:hover:after {
  width: 60px;
}

#restingplaceSec .restingplace {
  display: flex;
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 170px;
}

#restingplaceSec .restingplace:last-child {
  margin-bottom: 0;
}

#restingplaceSec .restingplace .bgBoxMainRight {
  width: calc(65% + var(--container-padding) - 100px);
  height: calc(200% + (170px * 2));
  background: var(--color-grey);
  position: absolute;
  top: 50%;
  right: calc(0px - var(--container-padding));
  z-index: -1;
}

#restingplaceSec .restingplace .bgBoxMainLeft {
  width: calc(65% + var(--container-padding) - 100px);
  height: calc(200% + (170px * 2));
  background: var(--color-grey);
  position: absolute;
  top: 50%;
  left: calc(0px - var(--container-padding));
  z-index: -1;
}

#restingplaceSec .restingplace .rightTextBox {
  font-family: var(--font-text-family);
  font-size: 170px;
  color: var(--color-grey-soft);
  line-height: 140px;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  right: calc(0px - var(--container-padding));
  z-index: 1;
}

#restingplaceSec .restingplace .leftTextBox {
  font-family: var(--font-text-family);
  font-size: 170px;
  color: var(--color-grey-soft);
  line-height: 140px;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  left: calc(0px - var(--container-padding));
  z-index: 1;
}

#restingplaceSec .restingplace .slider {
  align-self: flex-start;
  float: left;
  width: 49%;
}

#restingplaceSec .restingplace .slider .customNav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 23px;
}

#restingplaceSec .restingplace .slider .customNav button {
  width: 17px;
  padding: 0;
  background-color: transparent;
  filter: var(--color-filter-icon-primary);
}

#restingplaceSec .restingplace .slider .customNav #counter {
  width: 80px;
  margin: 0 5px;
  font-family: var(--font-text-family);
  font-weight: normal;
  font-size: 17px;
  color: var(--color-black);
  line-height: 17px;
  text-align: center;
}

#restingplaceSec .restingplace .slider .customNav #counter span {
  font-family: "var(--font-text-family)";
  color: var(--color-primary);
  font-weight: 900;
}

#restingplaceSec .restingplace .info {
  position: relative;
  float: left;
  width: 51%;
  margin-top: 55px;
  padding: 40px;
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#restingplaceSec .restingplace .info .bgBox {
  background: var(--color-grey-soft);
  position: absolute;
  top: 0;
  right: calc(0px - var(--container-padding));
  bottom: 0;
  left: -100px;
  z-index: -1;
}

#restingplaceSec .restingplace .info .restingplace-info h3 {
  margin: 0 0 20px 0;
  font-family: var(--font-text-family);
  font-size: 32px;
  color: var(--color-black);
  line-height: 42px;
  text-transform: uppercase;
}

#restingplaceSec .more a.link {
  display: inline-flex;
  align-items: center;
  grid-gap: 20px;
  margin: 20px 0 0 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#restingplaceSec .more a.link:after {
  content: "";
  width: 40px;
  border-top: 1px solid;
  transition: all 0.3s ease-in-out;
  color: var(--color-secondary);
}

#restingplaceSec .more a.link:hover {
  color: var(--color-primary-hover);
}

#restingplaceSec .more a.link:hover:after {
  width: 60px;
}

.facilities-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0 0 20px 0;
  padding: 10px;
}

.facility-item {
  display: flex;
  align-items: center;
  margin: 0 0 13px 0;
  color: #ffffff;
  position: relative;

}

.facility-item:nth-child(2n) {
  margin-right: 0;
}

.facility-item:after {
  content: "|";
  margin-left: 20px;
  margin-right: 20px;
  color: var(--color-black);
}

/* Aplica truncamiento solo al primer ítem de la primera habitación */
.facilities-list:first-of-type .facility-item:first-child .facility-text {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 150px;
}

.facilities-list .facility-item:last-child:after {
  content: "";
  margin-left: 0;
}

.facility-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.facility-text {
  font-size: 13px;
  color: var(--color-black);
  /* Elimina truncamiento aquí para que no afecte a todos los ítems */
}

@media (max-width: 992px) {
  .facility-text {
    font-size: 13px;
  }
}


#restingplaceSec .restingplace .info .restingplace-info p {
  margin: 0 0 20px 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 400;
  line-height: 30px;
}

#restingplaceSec .restingplace .info .restingplace-info p:last-child {
  margin-bottom: 0;
}

#restingplaceSec .restingplace .info .restingplace-info a.button {
  display: inline-block;
  margin: 10px 0 0 0;
  padding: 15px 20px;
  background-color: var(--color-secondary);
  font-size: 16px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

#restingplaceSec .restingplace .info .restingplace-info a.button:hover {
  color: var(--color-white);
  background-color: var(--color-primary-hover);
}

#restingplaceSec .restingplace:nth-child(even) .slider {
  order: 2;
}

#restingplaceSec .restingplace:nth-child(even) .slider .customNav {
  justify-content: flex-end;
}

#restingplaceSec .restingplace:nth-child(even) .info {
  padding-right: 40px;
  padding-left: 0;
}

#restingplaceSec .restingplace:nth-child(even) .info .bgBox {
  right: -100px;
  left: calc(0px - var(--container-padding));
}

#gallerySec {
  position: relative;
  margin-bottom: var(--space-between-sections);
  overflow: hidden;
}

#gallerySec .gallery-slider .owl-stage-outer {
  overflow: visible;
  height: 570px;
}

#gallerySec .gallery-slider .owl-stage {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  height: 100%;
}

#gallerySec .gallery-slider .owl-item {
  height: 385px;
  opacity: 0.5;
  transform: none;
  transition: all 0.3s ease-out;
}

#gallerySec .gallery-slider .owl-item.active.center {
  height: 570px;
  opacity: 1;
}

#gallerySec .gallery-slider .item {
  position: relative;
  height: 100%;
  overflow: hidden;
}

#gallerySec .gallery-slider .item img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#gallerySec .customNav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

#gallerySec .customNav button {
  width: 17px;
  padding: 0;
  background-color: transparent;
  filter: var(--color-filter-icon-primary);
}

#gallerySec .customNav #counter {
  width: 80px;
  margin: 0 5px;
  font-family: var(--font-text-family);
  font-weight: normal;
  font-size: 17px;
  color: var(--color-black);
  line-height: 17px;
  text-align: center;
}

#gallerySec .customNav #counter span {
  font-family: "var(--font-text-family)";
  color: var(--color-primary);
  font-weight: 900;
}

#videoSec {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
}

#videoSec .content-mobile {
  display: none;
  width: 100%;
  margin-bottom: 30px;
}

#videoSec .content-mobile h2 {
  margin: 0 0 20px 0;
  font-family: var(--font-text-family);
  font-size: 48px;
  color: var(--color-black);
  line-height: 58px;
  text-transform: uppercase;
}

#videoSec .content-mobile p {
  margin: 0 0 20px 0;
  font-size: 16px;
  color: var(--color-white-transparent);
  font-weight: 400;
  line-height: 30px;
}

#videoSec .content-mobile p:last-child {
  margin-bottom: 0;
}

#videoSec .video {
  position: relative;
  width: 100%;
  min-height: 600px;
  padding: 40px 0;
  background-image: url(../../../images/dummy/video-img.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

#videoSec .video:after {
  content: "";
  width: 100%;
  height: 60%;
  background: rgb(2 8 21 / 50%);
  background: linear-gradient(180deg,
      rgba(2, 8, 21, 0) 0%,
      rgba(2, 8, 21, 0.7) 50%,
      rgba(2, 8, 21, 1) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

#videoSec .video .container {
  display: flex;
  grid-gap: 40px;
  height: 100%;
  position: relative;
  z-index: 1;
}

#videoSec .video .container:before,
#videoSec .video .container:after {
  display: none;
}

#videoSec .video .content {
  align-self: flex-end;
  width: 60%;
}

#videoSec .video .content h2 {
  margin: 0 0 20px 0;
  font-family: var(--font-text-family);
  font-size: 48px;
  color: var(--color-white);
  line-height: 58px;
  text-transform: uppercase;
}

#videoSec .video .content p {
  margin: 0 0 20px 0;
  font-size: 16px;
  color: var(--color-white-transparent);
  font-weight: 400;
  line-height: 30px;
}

#videoSec .video .content p:last-child {
  margin-bottom: 0;
}

#videoSec .video .playbtn {
  align-self: center;
  width: 40%;
}

#videoSec .video .playbtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border: 1px solid var(--color-white);
  background-color: rgb(255 255 255 / 15%);
  border-radius: 100%;
  font-size: 40px;
  color: var(--color-white);
}

#facilitiesMoreSec {
  position: relative;
  padding-top: 70px;
  padding-bottom: 0px;
  margin-bottom: 70px;
  overflow: hidden;
}

#facilitiesMoreSec span.title {
  display: block;
  margin: 0 0 40px 0;
  font-family: var(--font-cursive-family);
  font-size: 30px;
  color: var(--color-primary);
  text-align: center;
}

#facilitiesMoreSec h2 {
  width: 80%;
  margin: 0 auto 40px auto;
  font-family: var(--font-text-family);
  font-size: 48px;
  color: var(--color-black);
  line-height: 58px;
  text-transform: uppercase;
  text-align: center;
}

#facilitiesMoreSec .bgBox {
  width: 55%;
  height: 380px;
  background: var(--color-grey);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

#facilitiesMoreSec .slider {
  padding-bottom: 30px;
}

#facilitiesMoreSec .slider .facilities-more-slider .owl-stage-outer {
  overflow: visible;
}

#facilitiesMoreSec .slider .facilities-more-slider .owl-stage-outer:before,
#facilitiesMoreSec .slider .facilities-more-slider .owl-stage-outer:after {
  content: "";
  width: 120px;
  height: 100%;
  background: rgb(2 8 21 / 50%);
  position: absolute;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

#facilitiesMoreSec .slider .facilities-more-slider .owl-stage-outer:before {
  background: linear-gradient(-90deg,
      rgba(2, 8, 21, 0) 5%,
      rgba(2, 8, 21, 0.7) 65%,
      rgba(2, 8, 21, 1) 95%);
  left: calc(0px - var(--container-padding));
}

#facilitiesMoreSec .slider .facilities-more-slider .owl-stage-outer:after {
  background: linear-gradient(90deg,
      rgba(2, 8, 21, 0) 5%,
      rgba(2, 8, 21, 0.7) 65%,
      rgba(2, 8, 21, 1) 95%);
  right: calc(0px - var(--container-padding));
}

#facilitiesMoreSec .slider .facilities-more-slider .item {
  position: relative;
  overflow: hidden;
}

#facilitiesMoreSec .slider .facilities-more-slider .item .image {
  position: relative;
}

#facilitiesMoreSec .slider .facilities-more-slider .item .image:after {
  pointer-events: none;
  content: "";
  width: 100%;
  height: 45%;
  background: rgb(2 8 21 / 50%);
  background: linear-gradient(180deg,
      rgba(2, 8, 21, 0) 0%,
      rgba(2, 8, 21, 0.7) 50%,
      rgba(2, 8, 21, 1) 85%);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  animation-delay: 0s;
}

#facilitiesMoreSec .slider .facilities-more-slider .center .item .image:after {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-delay: 0.5s;
}

#facilitiesMoreSec .slider .facilities-more-slider .item .info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: absolute;
  bottom: 20px;
  right: 70px;
  left: 70px;
  z-index: 2;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
  animation-delay: 0s;
}

#facilitiesMoreSec .slider .facilities-more-slider .center .item .info {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-delay: 0.5s;
}

#facilitiesMoreSec .slider .facilities-more-slider .item .info h3 {
  width: 100%;
  margin: 0 0 10px 0;
  font-family: var(--font-text-family);
  font-weight: 800;
  font-size: 30px;
  color: var(--color-white);
  line-height: 30px;
  text-transform: uppercase;
}

#facilitiesMoreSec .slider .facilities-more-slider .item .info .text {
  width: calc(100% - 250px);
  margin-right: 70px;
}

#facilitiesMoreSec .slider .facilities-more-slider .item .info p {
  margin: 20px 0 0 0;
  font-size: var(--font-text-size);
  color: var(--color-white-transparent);
  font-weight: 400;
  line-height: 30px;
}

#facilitiesMoreSec .slider .facilities-more-slider .item .info a.link {
  display: inline-flex;
  align-items: center;
  grid-gap: 20px;
  width: 180px;
  margin: 20px 0 0 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#facilitiesMoreSec .slider .facilities-more-slider .item .info a.link:after {
  content: "";
  width: 40px;
  border-top: 1px solid;
  transition: all 0.3s ease-in-out;
}

#facilitiesMoreSec .slider .facilities-more-slider .item .info a.link:hover {
  color: var(--color-black);
}

#facilitiesMoreSec .slider .facilities-more-slider .item .info a.link:hover:after {
  width: 60px;
}

#facilitiesMoreSec .slider .customNav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

#facilitiesMoreSec .slider .customNav button {
  width: 17px;
  padding: 0;
  background-color: transparent;
  filter: var(--color-filter-icon-primary);
}

#facilitiesMoreSec .slider .customNav #counter {
  width: 80px;
  margin: 0 5px;
  font-family: var(--font-text-family);
  font-weight: normal;
  font-size: 17px;
  color: var(--color-black);
  line-height: 17px;
  text-align: center;
}

#facilitiesMoreSec .slider .customNav #counter span {
  font-family: "var(--font-text-family)";
  color: var(--color-primary);
  font-weight: 900;
}

#feachersSec {
  position: relative;
  margin-bottom: var(--space-between-sections);
  overflow: hidden;
}

#feachersSec .feachers {
  display: flex;
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 170px;
}

#feachersSec .feachers:last-child {
  margin-bottom: 0;
}

#feachersSec .feachers .bgBoxMainRight1 {
  width: 50%;
  height: 70px;
  background: var(--color-grey);
  position: absolute;
  top: 70px;
  right: calc(0px - var(--container-padding));
  z-index: -1;
}



#feachersSec .feachers .bgBoxMainRight2 {
  width: var(--container-padding);
  height: 50%;
  background: var(--color-grey);
  position: absolute;
  bottom: -70px;
  right: calc(0px - var(--container-padding));
  z-index: -1;
}

#feachersSec .feachers .bgBoxMainLeft1 {
  width: var(--container-padding);
  height: 70%;
  background: var(--color-grey);
  position: absolute;
  top: 0;
  left: calc(0px - var(--container-padding));
  z-index: -1;
}

#feachersSec .feachers .bgBoxMainLeft2 {
  width: var(--container-padding);
  height: 70%;
  background: var(--color-grey);
  position: absolute;
  top: 140px;
  left: calc(0px - var(--container-padding));
  z-index: -1;
}

#feachersSec .feachers .image {
  align-self: flex-start;
  position: relative;
  float: left;
  width: calc(50% + var(--container-padding));
  margin-left: calc(0px - var(--container-padding));
  margin-bottom: 70px;
  overflow: hidden;
}

#feachersSec .feachers .image img {
  width: 100%;
}

#feachersSec .feachers:nth-child(even) .image img {
  height: 850px;
  object-fit: cover;
}

#feachersSec .feachers .image:after {
  content: "";
  background: rgb(2 8 21 / 50%);
  position: absolute;
}

#feachersSec .feachers .image.shadowTop:after {
  width: 100%;
  height: 45%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 5%,
      var(--color-white-transparent) 65%,
      var(--color-white) 95%);
  top: 0;
  left: 0;
}

#feachersSec .feachers .image.shadowRight:after {
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 5%,
      var(--color-white-transparent) 65%,
      var(--color-white) 95%);
  top: 0;
  right: 0;
}

#feachersSec .feachers .image.shadowBottom:after {
  width: 100%;
  height: 45%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 5%,
      var(--color-white-transparent) 65%,
      var(--color-white) 95%);
  bottom: 0;
  left: 0;
}

#feachersSec .feachers .image.shadowLeft:after {
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 5%,
      var(--color-white-transparent) 65%,
      var(--color-white) 95%);
  top: 0;
  left: 0;
}

#feachersSec .feachers .content {
  position: relative;
  display: flex;
  flex-direction: column;
  float: left;
  width: calc(50% + var(--container-padding));
  margin-left: calc(0px - var(--container-padding));
  margin-top: 140px;
  padding: 70px 70px;
  padding-left: calc(var(--container-padding) + 30px);
  border: 1px solid var(--color-primary);
}

#feachersSec .feachers .content span.title {
  display: block;
  margin: 0 0 20px 0;
  font-family: var(--font-cursive-family);
  font-size: 30px;
  color: var(--color-primary);

}

#feachersSec .feachers .content h2 {
  margin: 0 0 20px 0;
  font-family: var(--font-text-family);
  font-size: 48px;
  color: var(--color-black);
  line-height: 58px;
  text-transform: uppercase;
}

#feachersSec .feachers .content p {
  margin: 0 0 20px 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 400;
  line-height: 30px;
}

#feachersSec .feachers .content p:last-child {
  margin-bottom: 0;
}

#feachersSec .feachers .content a.link {
  display: inline-flex;
  align-items: center;
  grid-gap: 20px;
  width: max-content;
  margin: 10px 0 0 0;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#feachersSec .feachers .content a.link:after {
  content: "";
  width: 40px;
  border-top: 1px solid;
  transition: all 0.3s ease-in-out;
  color: var(--color-secondary);
}

#feachersSec .feachers .content a.link:hover {
  color: var(--color-primary-hover);
}

#feachersSec .feachers .content a.link:hover:after {
  width: 60px;
}

#feachersSec .feachers:nth-child(even) .image {
  order: 2;
  margin-left: 0;
  margin-right: calc(0px - var(--container-padding));
}

#feachersSec .feachers:nth-child(even) .content {
  margin-left: 0;
  margin-right: calc(0px - var(--container-padding));
  padding-left: 70px;
  padding-right: calc(var(--container-padding) + 30px);
}

#feachersSec .feachers.vertical .image {
  width: 50%;
  margin-left: 0;
}

#feachersSec .feachers.vertical .content {
  width: calc(50% + 70px);
  margin-left: -70px;
  margin-top: 70px;
  padding-left: calc(70px + 30px);
}

#feachersSec .feachers.vertical:nth-child(even) .image {
  margin-right: 0;
}

#feachersSec .feachers.vertical:nth-child(even) .content {
  margin-left: 0;
  margin-right: -70px;
  padding-left: 70px;
  padding-right: calc(70px + 30px);
}

#feachersSec .feachers.vertical .content p {
  margin-top: auto;
}

#feachersSec .feachers .content .buttons-more {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  #feachersSec .feachers:nth-child(even) .image img {
    height: 260px;
  }

  #feachersSec .content ul {
    line-height: 28px;
  }
}

#inspirationMoreSec {
  position: relative;
  padding-top: 140px;
  padding-bottom: 70px;
  overflow: hidden;
}

#inspirationMoreSec .enjoyBox {
  font-family: var(--font-text-family);
  font-size: 170px;
  color: var(--color-grey-soft);
  line-height: 140px;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#inspirationMoreSec span.title {
  display: block;
  margin: 0 0 40px 0;
  font-family: var(--font-cursive-family);
  font-size: 30px;
  color: var(--color-primary);
  text-align: center;
}

#inspirationMoreSec h2 {
  width: 67%;
  margin: 0 auto 40px auto;
  font-family: var(--font-text-family);
  font-size: 48px;
  color: var(--color-black);
  line-height: 58px;
  text-transform: uppercase;
  text-align: center;
}

#inspirationMoreSec p {
  width: 67%;
  margin: 0 auto 20px auto;
  font-size: var(--font-text-size);
  color: var(--color-black);
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

#inspirationMoreSec p:last-child {
  margin-bottom: 0;
}

#inspirationMoreSec .inspiration-more-slider {
  margin-top: 40px;
}

#inspirationMoreSec .inspiration-more-slider .image {
  overflow: hidden;
}

#inspirationMoreSec .inspiration-more-slider .image img {
  opacity: 0.7;
  transform: scale(1);
  transition: all 0.7s ease-in-out;
}

#inspirationMoreSec .inspiration-more-slider .image:hover img {
  opacity: 1;
  transform: scale(1.05);
}

#inspirationMoreSec .inspiration-more-slider .info {
  margin-top: 30px;
}

#inspirationMoreSec .inspiration-more-slider .info span.name {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 20px;
  margin: 0;
  font-family: var(--font-text-family);
  font-size: 30px;
  color: var(--color-black);
  line-height: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#inspirationMoreSec .inspiration-more-slider .info span.name:after {
  content: "";
  width: 40px;
  border-top: 1px solid;
  transition: all 0.3s ease-in-out;
}

#inspirationMoreSec .customNav {
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

#inspirationMoreSec .customNav button {
  width: 17px;
  padding: 0;
  background-color: transparent;
}

#inspirationMoreSec .customNav #counter {
  width: 80px;
  margin: 0 5px;
  font-family: var(--font-text-family);
  font-weight: normal;
  font-size: 17px;
  color: var(--color-black);
  line-height: 17px;
  text-align: center;
}

#inspirationMoreSec .customNav #counter span {
  font-family: "var(--font-text-family)";
  color: var(--color-primary);
  font-weight: 900;
}

/* RECAPTCHA */
.grecaptcha-badge {
  display: none !important;
}

/* SCRIPT PARA LA NEWSLETTER */

#r0c0m0i1 {
  border: 0;
  border-bottom: 0;
  border-color: transparent;
}

#form-acm_48218 .bee-form .bee-form-row .bee-field {
  margin-bottom: 20px;
}

#form-acm_48218 input:not([type="checkbox"]):not([type="radio"]) {
  background-color: transparent;
}

#form-acm_48218 input:not([type="checkbox"]):not([type="radio"]):focus {
  outline: none;
  border: none;
  border-bottom: 1px solid #000;
}

#form-acm_48218 .bee-form-row-1 .bee-col-1 .bee-block-1 .bee-field.bee-inline-field input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  outline: 0;
  border: 1px solid var(--color-black);
  background-color: var(--color-grey);
  vertical-align: text-top;
  position: relative;
  top: 4px;
  left: 0;
  cursor: pointer;
}

#form-acm_48218 .bee-form .bee-form-row .bee-field .bee-form-option-wrapper {
  margin-bottom: 20px;
}

#form-acm_48218 .bee-form-row-1 .bee-col-1 .bee-block-1 button {
  background-color: var(--color-primary);
}

/* Añadir estilos para cuando el checkbox está marcado */
#form-acm_48218 .bee-form-row-1 .bee-col-1 .bee-block-1 .bee-field.bee-inline-field input[type="checkbox"]:checked {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: white;
}

#form-acm_48218 .bee-form-row-1 .bee-col-1 .bee-block-1 .bee-field.bee-inline-field input[type="checkbox"]:checked::before {
  content: "✔";
  display: block;
  text-align: center;
  line-height: 22px;
  font-size: 16px;
  color: white;
}

/* END SCRIPT PARA LA NEWSLETTER */

.description-rooms p:nth-child(n + 3) {
  display: none !important;
}

.description-rooms ul {
  display: none !important;
}

#restingplaceSec .description-rooms .more a.link {
  margin-bottom: 20px;
}