/** START OF GENERAL SETTINGS  **/
:root {
    --fontHeadings: "Ysabeau Infant", sans-serif;
    --fontMain: "Alegreya Sans", sans-serif;
    --white: #ffffff;
    --whiteDark: #fafafa;
    --black: #000000;
    --main: #b19b89;
    --main-light: #f4e9dc;
    --main-dark: #5b4c3f;
    --transition3s: 0.3s linear;
    --duration: 2s;
    --plyr-color-main: #b19b89;
    --nav-duration: calc(var(--duration) / 4);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

.bgWhiteDark {
  background: var(--whiteDark);
}

.colorDarkBg {
  background: var(--main);
  color: var(--white);
}
button {
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer; 
}
button:focus,
a:focus {
  box-shadow: none !important;
  outline: none;
}
.form-control:focus,
.form-select:focus,
.form-check-input {
  outline: none;
  box-shadow: none !important;
}
a,
a:hover {
  color: var(--black);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition3s);
}

a:hover {
  color: var(--mainColor);
}
/*
picture {
  display: inline-block;
  width: 100%;
}
picture img {
  width: 100%;
  object-fit: cover;
}*/


/**START OF BODY AND HEADINGS 
==================================== **/
body {
  font-family: var(--fontMain);
  color: var(--black);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
  text-align: start;
  background-color: #f3ece7;
}
body.no-slider {
  padding-top: 80px;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--whiteDark);
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: var(--whiteDark);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--main-light);
}

h1,
.heading1,
h2,
.heading2,
h3,
.heading3,
h4,
.heading4 {
  font-family: var(--fontHeadings);
  line-height: 1;
  color: var(--main-dark);
  font-weight: 200;
  margin-bottom: 1rem;
  position: relative;
  display: block;
  overflow-wrap: break-word;
  text-align: left;
  letter-spacing: 1px;
  text-transform: capitalize;
}
h1,
.heading1 {
  font-size: 62px;
}
h2,
.heading2 {
  font-size: 50px;
}
h3,
.heading3 {
  font-size: 30px;
}
h4,
.heading4 {
  font-size: 26px;
}
.subtitle {
  font-family: var(--fontHeadings);
  color: var(--main);
  background: rgba(0, 0, 0, 0.002);
  font-weight: 300;
  font-size: 26px;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 991px) {
  h1,
  .heading1 {
    font-size: 56px;
  }
  h2,
  .heading2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  h1,
  .heading1 {
    font-size: 46px;
  }
  h2,
  .heading2 {
    font-size: 38px;
  }
}

.bigText {
  font-size: 30px;
}
@media screen and (max-width: 991px) {
  .bigText {
    font-size: 22px;
  }
}

/**END OF BODY AND HEADINGS **/

/** START OF MARGIN & PADDING 
===========================**/
.marginTop {
  margin-top: 100px;
}
.paddingTop {
  padding-top: 100px;
}
.paddings {
  padding: 100px 0px 100px;
}
.paddingTop-sm {
  padding-top: 60px;
}
@media screen and (max-width: 991px) {
  .marginTop {
    margin-top: 70px;
  }
  .paddingTop {
    padding-top: 70px;
  }
  .paddings {
    padding: 70px 0px 70px;
  }
  .paddingTop-sm {
    padding-top: 40px;
  }
}
/** END OF MARGIN & PADDING **/

/** START OF BUTTONS  
===========================*/
/*button - bordered*/

.btnStyle1 {
  position: relative;
  font-family: var(--fontHeadings);
  text-transform: capitalize;
  letter-spacing: 1.5px;
  color: var(--main);
  font-size: 20px;
  font-weight: 400;
  border: 2px solid var(--main);
  padding: 12px 28px;
  transition: var(--transition3s);
}
.btnStyle1.whiteBtn1 {
  color: var(--white);
  background: rgba(0, 0, 0, 0.002);
  border: 2px solid var(--white);
}
.btnStyle1.filled {
  background: var(--main);
  border: 2px solid var(--main);
  color: var(--white);
}
.btnStyle1.filled:hover,
.btnStyle1.filled:focus {
  box-shadow: inset 0 -3.25em 0 0 var(--main-light);
    background: rgba(0, 0, 0, 0.002);
  color: var(--main);
}
.btnStyle1:hover,
.btnStyle1:focus {
  box-shadow: inset 0 -3.25em 0 0 var(--main);
  color: var(--white);
}
.btnStyle1.whiteBtn1:hover,
.btnStyle1.whiteBtn1:focus {
  box-shadow: inset 0 -3.25em 0 0 var(--main);
}
/*more link - underline*/
.btnStyle2 {
  font-family: var(--fontHeadings);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--main);
  background: rgba(0, 0, 0, 0.002);
  text-transform: capitalize;
  position: relative;
  transition: var(--transition3s);
}
.btnStyle2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background-color: var(--main-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.btnStyle2:hover {
  color: var(--main-dark);
}
.btnStyle2:hover::after {
  transform: scaleX(1);
  width: 100%;
}
.btnStyle2.whiteBtn2 {
  color: var(--white);
}
@media screen and (max-width: 1399px) {
  .btnStyle1 {
    padding: 15px 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .btnStyle1 {
    padding: 15px 14px;
    font-size: 18px;
  }
}

/* START OF HEADER  
===============================*/
.ribbon-menu {
    background-color:rgba(244, 233, 220,.8); /*var(--main-light);*/
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    font-family: var(--fontHeadings);
}
header {
  z-index: 100;
  background: transparent;
  transition: var(--transition3s);
}
.headerBg,
.no-slider header {
  background: var(--main);
  transition: var(--transition3s);
}
.header-logo img,
.menu-logo img {
  height: 120px;
  filter: brightness(0) invert(1);
  transition: var(--transition3s);
}
@media screen and (max-width: 991px) {
  .header-logo img {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .header-logo img {
    height: 80px;
  }
}
.headerBg .header-logo img,
.no-slider header .header-logo img{
  height: 70px;
  transition: var(--transition3s);
}
@media screen and (max-width: 991px) {
  .menu-logo img {
    height: 70px;
  }
}

.menu-icon {
  height: 25px;
  width: 50px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: block;
}
.menu-icon__line {
  height: 2px;
  width: 50px;
  display: block;
  background-color: var(--white);
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.5s ease;
  transition: transform 0.2s ease, background-color 0.5s ease, -webkit-transform 0.2s ease;
}
.menu-icon__line-left {
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  width: 30px;
}
.menu-icon__line-right {
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
  width: 30px;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 30px;
}

/* LANGUAGES
=============================== */
.languagesDrop {
  margin-left:20px;
}
@media screen and (min-width: 992px) {
  .languagesDrop {
    background: url(/images/earth-line.svg) no-repeat left center;
    background-size: 24px;
    padding-left: 28px;
    text-transform: uppercase;
  }
}
.languagesDrop .dropdown-toggle {
  color: var(--white);
  font-size: 20px;
  background: rgba(0, 0, 0, 0.002);
}
.languagesDrop .dropdown-toggle::after {
  border: none !important;
  background: url(/images/arrow-down.svg);
  width: 10px;
  height: 5px;
  vertical-align: middle;
  margin-left: 2px;
  filter: brightness(0) invert(1);
}
.languagesDrop a {
  color: var(--white) !important;
  text-decoration: none;
}
.languagesDrop .dropdown-menu {
  top: 0px !important;
  min-width: 40px;
  border-radius: 0;
  background-color: var(--white);
  padding: 4px 8px;
  text-align: left;
  border: 0;
}
.languagesDrop .dropdown-item {
  display: block;
  padding: 0px;
  color: var(--main) !important;
}
.languagesDrop .dropdown-item:hover {
  background: none;
  color: var(--main);
}


@media screen and (max-width: 1199px) {
  header .btnStyle1 {
    text-align: center;
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  header .btnStyle1 {
    padding: 12px 14px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  header .btnStyle1 {
    padding: 10px 12px;
    font-size: 16px;
  }
}

/* START Of MENU 
============================== */
.hidden-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 50px;
  overflow: hidden;
  height: 100%;
  transform: translateX(-100%);
  transition: transform var(--nav-duration);
  background-color: var(--white);
}
@media screen and (max-width: 991px) {
    .hidden-menu {
    padding: 10px 20px;
  }
}
.hidden-menu::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--main-dark);
  background: linear-gradient(
    90deg,
    rgba(91, 76, 63, 1) 0%,
    rgba(91, 76, 63, 1) 70%,
    rgba(91, 76, 63, 0.6) 85%,
    rgba(91, 76, 63, 0.18) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}
@media screen and (max-width: 991px) {
  .hidden-menu::before {
    background: linear-gradient(
      90deg,
      rgba(91, 76, 63, 1) 0%,
      rgba(91, 76, 63, 1) 35%,
      rgba(91, 76, 63, 0.6) 65%,
      rgba(91, 76, 63, 0.18) 100%
    );
  }
}

.hidden-menu nav {
  overflow-y: auto;
  max-height: calc(100vh - 200px); 
  /*width: 80%;*/
  position: relative;
}
.hidden-menu nav::-webkit-scrollbar {
  display: none;
}
.hidden-menu nav ul li a {
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--fontMain);
  font-size: 40px;
  font-weight: 300;
  position: relative;
}
.hidden-menu nav ul li .btnStyle2::after {
  background-color: var(--main-light);
}
.hidden-menu nav ul li a:hover {
  color: var(--main-light);
}
/*Submenu
------------------------*/
.inner-menu {
  margin-top: 5px;
}
.inner-menu li {
  margin-right: 20px;
  margin-bottom: 0;
}
.inner-menu li + li:before {
  padding: 8px;
  color: var(--white);
  content: "/";
  font-size: 26px;
  font-weight: 300;
  margin-right: 20px;
}
.inner-menu li a {
  font-size: 26px !important;
  text-transform: capitalize !important;
}
@media screen and (max-width: 1199px) {
  .hidden-menu nav ul li a {
    font-size: 30px;
  }
  .inner-menu li a,
  .inner-menu li + li:before {
    font-size: 20px !important;
  }
  .inner-menu li,
  .inner-menu li + li:before {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu nav ul li a {
    font-size: 25px;
  }
  .inner-menu li a,
  .inner-menu li + li:before {
    font-size: 18px !important;
  }
  .hidden-menu nav ul li {
    margin-bottom: 10px;
  }
}

/*menu link img
------------------------*/
.menu_img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 33.5%;
  height: calc(100vh - 200px); 
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 991px) {
  .menu_img {
    display:none;
  }
}
.menu_img img {
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
#overlay nav > ul > li:hover .menu_img,
#overlay nav > ul > li:focus .menu_img,
#overlay nav > ul > li.active .menu_img {
  z-index: 4;
  background-color: var(--white-dark1);
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#overlay nav > ul > li.active .menu_img {
    z-index: 3;
}

/*OPEN MENU*/
.show-menu {
  transform: translateX(0);
}
.show-menu .close-button {
  -webkit-animation: show-x .4s .4s forwards;
  animation: show-x .4s .4s forwards;
}
.hidden-menu nav ul li .nav-links {
  opacity: 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .hidden-menu nav ul li .nav-links {
      width: 66.5%;
  }
}

.show-menu li .nav-links{
  animation: menu-item-anim 0.4s forwards ease-in-out;
  animation-delay: calc(.2s + (var(--i) * 0.2s));
}
@-webkit-keyframes show-x {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes show-x {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes menu-item-anim {
  from {
    -webkit-transform: translateY(70%);
    transform: translateY(70%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes menu-item-anim {
  from {
    -webkit-transform: translateY(70%);
    transform: translateY(70%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.close-button {
  width: 25px;
  height: 25px;
  cursor: pointer;
  opacity: 0;
}

/*TEL BUTTON 
================================*/
header .rightCol {
  display:flex;
  justify-content: end;
}
.tel-icon {
    padding-right:15px;
}
.tel-icon a{
    background:transparent url(/images/tel.svg) no-repeat center left;
    background-size:16px;
    padding-left:20px;
    filter: brightness(0) invert(1);
    text-decoration:none;
    color:var(--white);
}
@media (max-width: 991px){
     .tel-icon {
        padding-left:15px;
    }
    .tel-icon span{
        display:none;
    }
   .tel-icon a{
        position:relative;
        width: 20px;
        height: 23px;
        display: inline-block;
        background-size:20px;
        padding-left:0px;
    }
}
@media (max-width: 767px){
     .tel-icon {
        padding-left:10px;
        position: absolute;
        left: 70px;
    }
}

/* START OF CAROUSEL SLIDER
===================================*/
#bigCarousel .carousel-item,
#bigCarousel {
  position: relative;
  height: 100vh;
}
#bigCarousel img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}
.carousel-control-next,
.carousel-control-prev {
  width: 10%;
  opacity: 1;
  bottom: 50px;
  top: unset;
  right: 30px;
}
.carousel-control-prev {
  left: unset;
  bottom: 85px;
}
#bigCarousel .carousel-control-next-icon {
  background-image: url(../images/right-arrow.svg) !important;
}
#bigCarousel .carousel-control-prev-icon {
  background-image: url(../images/left-arrow.svg) !important;
}
#bigCarousel .carousel-control-next-icon,
#bigCarousel .carousel-control-prev-icon {
  display: inline-block;
  width: 60px !important;
  height: 60px !important;
  background: no-repeat 50%/100% 100%;
  filter: brightness(0) invert(1);
  opacity: 1 !important;
}
.carousel-item {
  transition: transform 1.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.9s ease !important;
  will-change: transform, opacity !important;
}
.carousel-item img {
  transform: scale(1);
  transition: transform 6s ease;
}
.carousel-item.active img {
  transform: scale(1.08);
}
@media screen and (max-width: 991px) {
      #bigCarousel .carousel-item,
      #bigCarousel {
        height: auto !important;
      }
}
.contentOverSlider {
  position: absolute;
  z-index: 9;
  color: white;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-family: var(--fontHeadings);
  line-height: 1.2;
  text-align: center;
  background: rgba(0, 0, 0, 0.002);
  color: var(--white);
  display: block;
  font-size: 90px;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .contentOverSlider {
    display: none;
  }
}


/* Video
=================================== */
.mainVideoSlider {
        position: relative;
        height: 100vh;
    }
.mainVideoSlider video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 991px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 450px;
    }
}
@media screen and (max-width: 767px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 400px;
    }
}
@media screen and (max-width: 480px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 350px;
    }
}
.plyr__video-embed iframe {
	top: -20%!important;
	height: 140%!important;
}
@media screen and (min-width: 1480px) {
    .YTvideo-placement {
        height:100vh;
        overflow:hidden;
    }
    .plyr__video-embed iframe {
    	top: -60px!important;
    	height: 100%!important;
    }
}
.YTvideo-placement .plyr__volume input[type=range],
.YTvideo-placement .plyr__controls__item.plyr__menu,
.YTvideo-placement .plyr--fullscreen-enabled [data-plyr=fullscreen]{
    display:none!important;
}
.YTvideo-placement .plyr--video .plyr__controls {
    max-width: 740px;
    margin: auto;
    bottom: 180px;
    background:transparent!important;
}
@media (max-width: 1199px){   
  .YTvideo-placement .plyr--video .plyr__controls {
      max-width: 90%;
    bottom: 20px;
  }
}   
@media (max-width:767px){   
    .YTvideo-placement .plyr--video .plyr__controls {
        bottom: 20px;
    }  
}   
.YTvideo-placement .plyr--video.plyr--hide-controls .plyr__controls {
    opacity: 1!important; 
    pointer-events: none; 
    transform: none!important;
}
/*.YTvideo-placement .plyr--video .plyr__controls,*/
.plyr--full-ui.plyr--video .plyr__control--overlaid{
      display:none!important;
}


/** START OF BOOKING ROW 
==============================*/
.booking-bar {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  border: 2px solid var(--white);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 18px 20px;
}
.booking-field {
  position: relative;
  padding: 0 18px;
  min-height: 56px;
  align-items: center;
  display:flex;
  flex-direction: column;
}
.booking-field label{
  color:#fff;
  width: 100%;
}
.booking-sep {
  border-right: 1px solid var(--white);
}
.booking-input,
.booking-select {
  background: transparent !important;
  border: 0 !important;
  color: var(--white) !important;
  padding: 0;
  font-size: 20px;
  box-shadow: none !important;
}
.booking-input:focus,
.booking-select:focus {
  outline: none;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.85;
}
/* SELECT ARROW */
.booking-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 32px;
  padding-left: 6px;
  cursor: pointer;
}
.select-wrapper {width: 100%;position: relative;}
.select-wrapper::after {
  content: "";
  position: absolute;
  right: 14px;
  top:14px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--white);
  pointer-events: none;
}
.booking-select option {
  background-color: #222;
  color: white;
}


.booking-bar .btnStyle1 {
  border: none;
}
@media (max-width: 767.98px) {
  .booking-field {
    padding: 12px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  .booking-btn {
    width: 100%;
    padding: 16px;
    text-align: center;
    font-size: 1.8rem;
  }
}

/* START OF SWIPER CAROUSELS 
====================================*/
.swiper-button-prev svg,
.swiper-button-next svg{
  display:none;
}
.swiper-button-prev,
.swiper-button-next {
  opacity: 1 !important;
  width: 60px;
  height: 30px;
  bottom: 0px;
  left: unset !important;
  right: unset;
  top: unset !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next {
  background: url("../images/right-arrow.svg") no-repeat;
}
.swiper-button-prev {
  background: url("../images/left-arrow.svg") no-repeat;
}

/*Arrows Below Centered*/
.swiper.arrows-center-below{
  padding-bottom:50px;
}
.swiper.arrows-center-below .swiper-button-next,
.swiper.arrows-center-below .swiper-button-prev{
    top: unset !important;
    bottom: 0px!important;
}
.swiper.arrows-center-below .swiper-button-prev{
    left:calc(50% - 80px)!important;
}
.swiper.arrows-center-below .swiper-button-next {
    right:calc(50% - 80px);
}
@media screen and (min-width: 992px) {
  .swiper.arrows-center-below.right .swiper-button-prev{
      left:calc(100% - 240px)!important;
  }
  .swiper.arrows-center-below.right .swiper-button-next {
      right:calc(80px);
  }
  }


.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    margin: 6px 3px !important;
    background-color: var(--main-light) !important;
    opacity: .5!important;
}
.swiper .swiper-pagination.dark .swiper-pagination-bullet {
      background-color: var(--main-dark) !important;
}
.swiper .swiper-pagination-bullet-active {
  opacity:1!important;
}
.swiper.bullets-above .swiper-pagination {
  margin-left: 20px;
  margin-right: 20px;
  width: calc(100% - 40px);
  justify-content: end;  
}

/*section*/
.fullwidth .swiper.bullets-above .swiper-pagination {
  justify-content: start; 
}
.fullwidth .revertRow .swiper.bullets-above .swiper-pagination {
  justify-content: end; 
}


.testimonialsSwiper .swiper-pagination-clickable .swiper-pagination-bullet {
  background-color: var(--btn-main-color);
}

/* START WHY BOOK WITH US  
===============================*/
.whyBookWithUs img {
  max-height: 100px;
}
.whyBookWithUs .reason {
  font-family: var(--fontHeadings);
  font-size: 22px;
  font-weight: 300;
  display: block;
  color: var(--main-dark);
  width: 240px;
  margin-top: 5px;
}

/* START INSTAGRAM SECTION 
.instaImages picture {
  margin: 15px;
}

@media screen and (max-width: 1399px) {
  .instaImages picture:nth-child(5) {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .instaImages picture:nth-child(4) {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .instaImages picture:nth-child(3) {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .instaImages picture:nth-child(2) {
    display: none;
  }
}

.instaImages picture img {
  height: 350px;
}

.instaHastag {
  font-family: var(--fontHeadings);
  color: var(--main-light);
  background: rgba(0, 0, 0, 0.002);
  font-size: 26px;
  letter-spacing: 1px;
  font-weight: 300;
}
 */
/*-----------------------*/
.instagram-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding: 20px;
}
.insta-item {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  background: #eee;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.insta-item:hover img {
  transform: scale(1.08);
}


/* START OF FOOTER  
===============================*/
footer {
  background: var(--main);
  padding: 90px 50px 30px;
  color: var(--white);
}
footer a,
footer .heading3 {
  color: var(--white);
}

.footer-logo img {
  height: 130px;
  filter: brightness(0) invert(1);
}
/*NEWSLETTER
===========================*/
.newsletter {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.newsletterform .form-control {
  box-shadow: none;
  border-radius: 0;
  font-size: 20px;
  border: 1px solid var(--white);
  background: transparent;
  padding-left: 20px;
}
.newsletterform .form-control::placeholder {
  color: var(--white);
  background: rgba(0, 0, 0, 0.002);
}
.newsletterform .form-agree {
  background: rgba(0, 0, 0, 0.002);
}
.newsletterform .v-no {
    display:none;
}
.newsletterform .btnStyle1 {
  border: none;
  color: var(--white);
  line-height:1.2;
  padding: 5px 8px 8px 8px;
  background: rgba(0, 0, 0, 0.002);
}
.newsletterform .btnStyle1:hover,
.newsletterform .btnStyle1:focus {
  box-shadow: inset 0 -3.25em 0 0 var(--main-light);
  color: var(--white);
}



/*FOOTER
==================================*/
.footer-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
}
.footer-details {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--fontHeadings);
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
}
.footer-social li {
  margin-bottom: 15px;
}
.footer-social img{
  height:30px;
  width:30px;
  filter:brightness(0) invert(1);
}
.footer-social ul{
    padding-left: 0;
    list-style: none;
}
@media screen and (max-width: 767px) {
  .footer-social ul{
      display: flex !important;
      justify-content: center;
  }
  .footer-social li {
    margin: 0px 8px;
  }
}

.footer-menu ul {
  padding-left: 0;
  list-style: none;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-menu ul {
      display: flex !important;
      justify-content: center !important;
  }
}
.footer-menu ul li {
  margin: 8px 30px;
}

.footer-menu ul li a {
  color: var(--white);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
  font-size: 16px;
}

.footer-copyright span {
  text-align: end;
}

@media screen and (max-width: 991px) {
  footer {
    padding: 50px 20px 30px;
  }
  .footer-logo img {
    height: 100px;
  }

  .newsletter-box .form-control {
    padding: 20px;
    border-bottom: 1px solid var(--white);
    border-right: 0;
    margin-bottom: 20px;
  }

  .newsletter-box {
    padding: 20px;
  }

  .footer-contact {
    padding-top: 0px;
  }
  .footer-details {
    border: none;
  }

  .footer-social {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer-copyright span {
    text-align: center;
    max-width: unset;
  }
}
/* END OF FOOTER  */

/* START SCROLL TO TOP  */
.toTop {
  text-align: right;
}

a.scrollup {
  position: fixed;
  right: 0px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.7) url("../images/left-arrow.svg") no-repeat
    center center;
  background-size: 70%;
  transform: rotate(90deg);
  width: 60px;
  height: 30px;
  z-index: 100;
  display: none;
}

.scrollup.is-visible {
  display: inline;
  opacity: 1;
}

@media screen and (max-width: 991px) {
  a.scrollup {
    bottom: 18px;
  }
}
/* END SCROLL TO TOP  */

/*Start Breadcrumb */
.breadcrumb {
  color: var(--main-light);
  font-family: var(--fontHeadings);
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0;
}

.breadcrumb li {
  background: rgba(0, 0, 0, 0.002);
    color: var(--main);
}

.breadcrumb li + li:before {
  padding: 8px;
  color: var(--main);
  content: "\276F";
  font-size: 16px;
  font-weight: 300;
  margin-left: 8px;
}

.breadcrumb a {
  color: var(--main-dark);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition3s);
}
.breadcrumb a:hover {
  color: var(--main);
  text-decoration: none;
}
.colorDarkBg .breadcrumb li + li:before {
  color: var(--main-dark);
}
.colorDarkBg .breadcrumb a {
  color: var(--white);
}
.colorDarkBg .breadcrumb li,
.colorDarkBg .breadcrumb a:hover {
  color: var(--main-dark);
}

/* End Breadcrumb */

/* ROOMS LIST PAGE && Listing Boxes
========================================*/
.listing-boxes{
  --bs-gutter-x: 0rem;
  --bs-gutter-y: 0rem;
}
@media screen and (min-width: 768px) {
  .listing-boxes{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }
}
.listing-boxes-col,
.roomsList .roomsList-col {
  padding-bottom:3rem;
}
@media screen and (min-width: 992px) {
  .roomsList .roomsList-col:nth-child(odd){
    padding-right:1.5rem;
  }
  .roomsList .roomsList-col:nth-child(even){
    padding-left:1.5rem;
  }
  .listing-boxes{
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
  }
}
.img-holder,
.roomsList .roomList-img  {
      margin-bottom: 1.5rem;
}
.listing-boxes-col .description,
.roomsList .description{
    padding-top: .5rem;
    margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
.listing-boxes-col .description,
  .roomsList .description{
      margin-bottom: 1rem;
  }
}
@media screen and (min-width: 576px) {
  .listing-boxes-col .room-details,
  .roomsList .room-details {
    position: absolute;
    left: 1.5rem;
    top: .7rem;
  }
}
@media screen and (min-width: 992px) {
  .listing-boxes-col .room-details,
  .roomsList .room-details {
    position: absolute;
    left: 2.5rem;
    top: 1.7rem;
  }
}
.room-details {
  display:flex;
  margin-left:0px!important;
}
.room-details span.title {
  display: none;
}
.room-details li {
  background: var(--main);
  padding: 15px;
  color: var(--white);
  opacity: 0.9;
  margin: 0px 10px 10px 0px;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .room-details {
    padding-top: .5rem;
  }
  .room-details li {
    padding: 10px;
    margin: 0px 5px 10px 0px;
  }
}
.img-holder,
.roomsList .roomList-img {
  position: relative;
  overflow: hidden;
}
.img-holder img,
.roomsList .roomList-img img {
    /*opacity: 1;*/
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all .5s ease-in-out;

}
.img-holder img:hover,
.roomsList .roomList-img img:hover {
 transform: scale(1.05);
 /*opacity: 0.9;*/
  transition: all .5s ease-in-out;
}

/* Room Gallery
-----------------------------------*/
 @media screen and (min-width: 768px) {
  .accomGallery picture img {
      width: 100%;
      object-fit: cover;
  }
  .accomGallery picture img {
        height: 480px;
  }
}
@media screen and (min-width: 1400px) {
  .accomGallery picture img {
    height: 555px;
  }
}
@media screen and (min-width: 1680px) {
  .accomGallery picture img {
    height: 655px;
  }
}
/* Room Facilities with icons
-------------------------------  */
.facilitiesSwiper .swiper-slide{
    column-count: 2;
    column-gap: 20px;
}
.facilitiesSwiper .swiper-slide > div {
  margin-bottom: 30px;
  text-align: center;
}
.facilitiesSwiper .swiper-slide img {
  display: block;
  margin: auto;
  height: 50px;
  margin-bottom: 10px;
}

/*Text over image section
===============================*/

.imagebg-section img {
    opacity: 0.8;
}

.imagebg-section .text-over {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width:80%;
}
.parallax h2,
.imagebg-section .text-over h2,
.imagebg-section .text-over {
  color:#fff;
}

.parallax {
  position: relative;
  min-height: 100vh;
  background: #000;
}
.parallax__media {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden; 
  background: #000; /* fallback */
}
.parallax__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: rgb(18 40 72 / 0.5);
}
.parallax__media picture,
.parallax__media img {
  display: block;
  width: 100%;
  height: 100%;
}
.parallax__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translate3d(0, calc(-50% + var(--shift, 0px)), 0);
  object-fit: cover;
  will-change: transform;
  z-index: 0; 
}
.parallax__content {
  position: relative;
  top: -500px;
  z-index: 2; 
  min-height: 500px;
  width: 60vw;
  margin: auto;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .parallax__content {
    top: -400px;
    min-height: 700px;
    width: 90vw;
  }
}


/* START OF CONTACT PAGE  
================================*/
.contactForm label {
  font-size: 20px;
  color: var(--black);
  font-weight: 300;
}
.contactForm .form-control {
  border: 1px solid var(--main) !important;
  border-radius: 0;
  padding: 12px;
  color: var(--black) !important;
  transition: var(--transition3s);

}
.contactForm .form-control:focus {
  border: 1px solid var(--main-light);
}

.form-agree input {
  border: 1px solid var(--main) !important;
  border-radius: 0px !important;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.field-validation-valid {
    display: none;
    color: red;
}
.field-validation-error {
    display: block;
    color: red;
    text-align: left;
    font-size: 12px;
}
.field-validation-error:empty {
    display: none;
}
.asterisk span {
    display: inline;
    font-size: 14px;
}
.form-agree label {
    display: inline;
}

.form-agree .field-validation-error {
    display: inline-block;
}
.form-agree {
    font-size:16px;
}
.form-agree a {
    text-decoration: underline;
    padding-bottom: 0px;
    border-bottom: 0px solid var(--black);
}
.form-agree a:hover {
    text-decoration: none;
}
.contactForm .submit-holder {
  margin-top:20px;
}
#json-msg {
    padding-top: 20px;
}
.status-failure,
.status-busy {
    margin: 6px 0 0 0;
}
.status-busy img {
    height: 10px;
}
@media screen and (min-width: 768px) {
  .contactForm .form-row {
    display: flex;
    flex-wrap:wrap;
  }
  .contactForm .form-label {
      width:25%;
  }
  .contactForm .form-input {
      width:75%;
  }
  .contactForm .form-agree,
  .contactForm .submit-holder,
  .status-failure,
  .status-busy {
     width:75%;
     margin-left:25%;
  }

}


/*ROW SECTIONS
================================*/

/* Caousel 3 boxes & other pages 
-----------------------------------------*/
.threeColsSection .swiper-slide picture {
  display: block;
}
.threeColsSection .swiper-slide h3{
  margin-top:30px;
}
@media screen and (min-width: 992px) {
    .threeColsSection .swiper-slide-next picture {
        transform: scaleY(0.9);
        transform-origin: top;
        /*clip-path: inset(0 0 1rem 0);*/
    }
    .threeColsSection .swiper-slide.swiper-slide-next h3{
      margin-top:-30px;
    }
}

/*Simple with white BG
-------------------------*/
.row-section .boxText {
      padding: 50px;
      width:100%;
}
@media screen and (min-width: 992px) {
  .row-section .colImg {
    padding-top:45px;
  }
  .row-section .revertRow {
    flex-direction: row-reverse;
  }
  .row-section:not(.no-img) .bgWhiteDark {
    right: 0px;
    top: 0px;
    position: absolute;
    min-height: calc(100% - 45px);
    z-index: 1;
  }
  .row-section:not(.no-img) .revertRow .bgWhiteDark {
    left: 0;
    right: unset;
  }
  .row-section.no-img .bgWhiteDark {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 575px) {
  .row-section .boxText {
        padding: 5%;
  }
}
@media screen and (min-width: 992px) {
  .row-section.fullwidth:not(.no-img) .bgWhiteDark {
    right: unset;
    left: 45%;
  }
  .row-section.fullwidth:not(.no-img) .revertRow .bgWhiteDark {
    left: unset;
    right: 45%;
  }
}
@media (max-width: 991px) {
  .row-section.fullwidth {
    margin-left: auto;
    margin-right: auto;
  }
}


/*Only Text Section with white BG
-----------------------*/
.section-text-only .bgWhiteDark {
  padding: 3%;
}


/*Wider - restaurant page
-----------------------------*/
  .section-imgs-row.no-img,
  .section-imgs-row.no-img .text-col {
    margin-left: auto;
    margin-right: auto;
  }
@media (max-width: 991px) {
  .section-imgs-row {
    margin-left: auto;
    margin-right: auto;
  }
  .section-imgs-row .text-col {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .section-imgs-row {
    width: calc(95.33333333% - 3rem);
  }
  .section-imgs-row .text-col {
    padding-top: 50px;
  }
}
@media (min-width: 1200px) {
  .section-imgs-row {
    width: calc(86.66666667% - 3rem);
  }
}
@media (min-width: 1400px) {
  .section-imgs-row {
    width: calc(82.33333333% - 3rem);
  }
}
@media (min-width: 1600px) {
  .section-imgs-row {
    width: calc(81.33333333% - 3rem);
  }
}

/*Subpages as boxes
==============================*/
.subpages-boxes-row {
  --bs-gutter-x: 5rem;
}
@media (min-width: 992px) {

  .subpages-boxes-row .subpages-boxes-col h2{
      text-align: right;
  }
}

/*Text Lists
===============================*/
.umb-block-list ul {
    margin-left: 25px;
}
.umb-block-list ul li p{
  margin: 0;
}

.list-as-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}


/*FAQ
---------------------------*/
.faqs {
  margin-top:30px;
}
.faq {
    border-top: 1px solid var(--main);
}
.faq:last-child{
    border-bottom: 1px solid var(--main);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary { 
    background-color: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 22px;
    padding: 1rem 2.5rem 1rem 1rem; 
    position: relative;
    list-style: none;
    color: var(--main-dark);   
}
@media (min-width: 576px) {
    .faq summary { 
        font-size: 24px;
    }
}
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 1.8rem;
  width:12px;
  height: 12px;
  border-right: 2px solid #282828;
  border-bottom: 2px solid #282828;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.35s ease;
}
.faq[open] summary {
    color: var(--main);   
}
.faq[open] summary::after {
  transform: translateY(-50%) rotate(225deg);
}
.faq .answer {
    padding:0px 30px 30px 12px;
}
.faq::details-content {
    transition: height 0.5s ease, content-visibility 0.5s ease allow-discrete;
    height: 0;
    overflow: clip;
}
@supports (interpolate-size: allow-keywords) {
   .faq[open]::details-content {
    height: auto;
  }
}


/* GALLERY PAGE  
======================================*/
.filters {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}
.filter {
    color: var(--main);
    line-height: 1.5;
    letter-spacing: 1.5px;
    font-weight: 400;
    font-size: 22px;
    margin:0 15px;
    transition: var(--transition3s);
    background: rgba(0, 0, 0, 0.002);
    position: relative;
}
.filter::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--main-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.filter:hover,
.filter.active {
    cursor: pointer;
    color: var(--main-dark);
}
.filter.active::after,
.filter:hover::after {
  transform: scaleX(1);
  width: 100%;
}
.show-items {
   animation: fade-in 0.3s forwards;
}

.hide-items {
       animation: fade-out 0.3s forwards;
}

@keyframes fade-out {
    100% {
        opacity: 0;
        display: none;
    }
}
@keyframes fade-in {
    100% {
        opacity: 1;
        display: block;
    }
}

.photoColumn img{
    margin-bottom:22px;
}

/*Awards Section
===========================*/
.hotel-awards h2{
  text-align: center;
}
.hotel-awards ul{
    margin:0px;
    list-style:none;
}
.hotel-awards ul li{
    padding:30px 30px 0px;
}
@media (max-width: 767px) {
    .hotel-awards ul li{
        padding:15px 15px 0px;
    }
   .hotel-awards img{
       height:80px;
   } 
}


/*POPUP
==========================*/
.modal {
  z-index: 10500;
}
.modal .modal-content {
  -webkit-box-shadow: 0px 20px 20px #00000045;
          box-shadow: 0px 20px 20px #00000045;
  border-radius: 0px;
  border: none;
  text-align: left;
}
.modal-content.padding{
    /*padding: 20px;*/
    background: var(--main-light);
}
.modal .modal-header {
  padding: 0px;
  border: none;
  border-radius: 0px;
}
.modal .close {
    align-self:end;
  text-shadow: none;
    font-size: 28px;
    opacity: 1;
    margin-left: auto;
    font-weight: 400;
    line-height: 1;
}
.modal .btn-close {
    position:absolute;
    right:10px;
}
@media screen and (max-width: 991px) {
  .modal .modal-content {
    font-size:16px;
  }
}
.modal .text .margin{
    margin:30px;
}
@media screen and (max-width: 767px) {
     .modal .text .margin{
        margin:15px 0 0 0;
    }   
}

.wordbreak a{
     word-break: break-word;  
}


