/** START OF GENERAL SETTINGS  **/
:root {
  --fontMain: "Zen Maru Gothic", serif; /*"Ubuntu Sans", sans-serif;*/
  --fontSecondary: "Ysabeau Infant", sans-serif;
  --white: #ffffff;
  --black: #2d2d2d;
  --grey: #f2f2f2;
  --greyDarker:#bcbcbc;
  --mainColor:#8a6e4b; /*c8bc98 hover*/
  --mainColorLight:#b89f7f;
  /*--bgMainOpacity: rgba(176,160,108, .1);*/
  --bgBurgerMenu:#f3f6f8;

  --letterSpacingBtn:1px;    
  --transition3s: 0.3s linear;
  --backdropBlur: blur(1px);
  interpolate-size: allow-keywords;
}
.bg-white {
    background:var(--white);  
}
.bg-section{
    background:var(--grey);
    padding:60px 0;
}
.form-control:focus,
.form-select:focus {
  outline: none;
  box-shadow: none;
}

*,
*::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;
}

button {
  background: rgba(0,0,0,0.005);
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

button:focus,
a:focus {
  box-shadow: none !important;
  outline: none;
}

a,
a:hover {
  color: var(--black);
  text-decoration: none;
  background: rgba(0,0,0,0.005);
}

a:hover {
  color: var(--mainColor);
}

/** FOR MAV IOS **/
input[type="checkbox"],
a[type="submit"] {
  float: none !important;
}

button:focus,
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}
.img-fit{
   height: 100% !important;
    width: 100%;
    object-fit: cover; 
}

/**START OF BODY AND HEADINGS
=====================================**/
body {
    font-family: var(--fontMain);
    color: var(--black);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    background: var(--white);
    text-align: center;
    overflow-x: hidden;
    position: relative;
}
@media screen and (max-width: 480px) {
   body {
       /* font-size: 20px;*/
   }
}
.smallText {
  font-size: 16px;
}

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(--white);
}

body::-webkit-scrollbar {
  width: 5px;
  background-color: var(--white);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--mainColor);
}

.section-body-text,
.rooms-carousel,
.section-why,
.section-categories-carousel,
.section-slidingCarousel{
    animation: fade-in-up 1s ease;
    animation-play-state: paused;
}
.animated {
  animation-play-state: running;
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 /*
.section-body-text img {
animation: image-appear ease-in both;
  animation-timeline: view();
  animation-range: entry 50% 100vh;
  animation-duration: 1ms;
}

@keyframes image-appear {
  from {
    filter: saturate(0) contrast(4) brightness(.1) blur(1px);
    opacity: 0;
    scale: .95;
    translate: 0 2rem;
  }
}*/




/**START OF HEADINGS
=====================================**/
h1, .h1,
h2, .h2,
h3, .h3 {
  font-family: var(--fontSecondary);
  margin-bottom: 20px;
  line-height: 1;
  color: var(--black);
  font-weight: 200;
  /*display: block;
  overflow-wrap: break-word;
    text-transform: uppercase;*/
}
h1, .h1 {
  font-size: 58px;
}
h2, .h2 {
  font-size: 52px;
}

h3, .h3 {
  font-size: 40px;
}
h1 span, .h1 span,
h2 span, .h2 span{
    display:block;
    font-size:22px;
    color: var(--mainColor);
    background: rgba(0,0,0,0.005);
}
@media screen and (max-width: 991px) {
  h1, .h1 {
    font-size: 40px;
  }
  h2, .h2 {
    font-size: 44px;
  }
  h3, .h3 {
    font-size: 34px;
  }
}
@media screen and (max-width: 575px) {
  h1, .h1 {
    font-size: 40px;
  }
  h2, .h2 {
    font-size: 35px;
  }
  h3, .h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  h1, .h1 {
    font-size: 34px;
  }
  h2, .h2 {
    font-size: 30px;
  }
  h3, .h3 {
    font-size: 28px;
  }
}


/** START OF MARGIN  
============================== **/
.mt-offset{
    margin-top:120px;
}
.mt-offset-half{
    margin-top:60px;
}
.pt-offset {
    padding-top: 80px;
}
.py-offset {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media screen and (max-width: 575px) {
    .mt-offset{
        margin-top: 80px;
    }
    .mt-offset-half{
        margin-top:40px;
    }
    .pt-offset {
        padding-top: 60px;
    }
    .py-offset {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* START OF BUTTONS  
====================================*/
.button,
.btn-more{
    font-family: var(--fontSecondary);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: var(--letterSpacingBtn);
    line-height: 1;
    position: relative;
    cursor: pointer;
    display:inline-block;
    padding: 12px 0px;
}
/*
@media screen and (max-width: 575px) {
    .button {
        font-size: 15px;
    }
}*/
.button {  
  color: var(--black);
  border: 1px solid var(--black);
  text-decoration: none;
   padding: 12px 18px;
  -webkit-transition: 0.15s ease-in-out;
  -o-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  z-index:0;
}
.button::after,
.button::before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left:0;
    transition: all 0.5s ease;
}
.button:before {
    width: 100%;
    background: transparent;
    z-index:-2;
}
.button:after {
  width: 0;
  left: 100%;
  z-index: -1;
}
.button:hover {
    color:var(--white);
    border: 1px solid var(--white);
}
.button:hover:after {
  width: 100%;
  left: 0;
  background: var(--mainColor);
  transition: width 0.5s ease;
}

.button.white {
  color: var(--white);
  border: 1px solid var(--white);
}
.button.white:hover{
    color: var(--mainColor)!important;
}
.button.white:hover:after,
.button.white:hover:after{
    background: var(--white);
}
.btn-more{
    color: var(--mainColor);
    transition: var(--transition3s);
    padding-right: 38px;
}
.btn-more:before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    margin-right: 10px;
    position: relative;
    top: -5px;
    background-color: var(--mainColor);
    transition: var(--transition3s);
}
.btn-more:hover {
  color: var(--black);
}
.btn-more:hover:before {
    width: 38px;
    background-color: var(--black);
}



.header .button {
  color: var(--white);
  border: 1px solid var(--white);
}
.header .button:before {
    background:var(--black)!important;
}
.header .button:hover {
    color: var(--black)!important;
}
.header .button:hover:after,
.header .button:hover:after {
    background: var(--white);
}
.header.headerScroll .button,
.no-slider .header .button {
    color: var(--black)!important;
}
.header.headerScroll .button:before,
.no-slider .header .button:before{
    background:var(--white)!important;
}
.header.headerScroll .button:after,
.no-slider .header .button:after {
    background:var(--black)!important;
}
.header.headerScroll .button:hover,
.no-slider .header .button:hover{
    color: var(--white)!important;
}
@media screen and (max-width: 575px) {
    .header .button {
        padding: 10px 12px;
    }
}


/* START OF HEADER  
============================*/
.header {
  background-color: transparent;
  color: var(--white);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header:not(.headerScroll):not(:hover):before{
    content:" ";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: -1;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 3%, rgba(0, 0, 0, 0.08167016806722693) 19%, rgba(0, 0, 0, 0.28895308123249297) 63%, rgba(0, 0, 0, 0.5606617647058824) 100%);
}
.no-slider .header:not(.headerScroll):not(:hover):before{
    background:none;
}
.headerScroll,
.header:hover,
.no-slider header {
  background-color: var(--black);
}

.header .img-logo {
  height: 90px;
  filter: brightness(0) invert(1);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin:5px 0;
}
.header .header-menu {
   margin-left:70px;
   font-family: var(--fontSecondary);
}
@media (max-width: 1199px) {
   .header .header-menu {
       margin-left:80px;
   }
}
@media (max-width: 767px) {
   .header .header-menu{
       height: 50px;
       margin-left:60px;
   }
}
.header.headerScroll .img-logo {
    height: 70px;
}
@media (max-width: 767px) {
    .header .header-menu {
        margin:0 0 0 60px;
    }
}
@media (max-width: 575px) {
   .header .img-logo {
       height: 50px;
   }
   .header.headerScroll .img-logo {
        height: 60px;
    }
}
.header-menu {
    display:none;
    padding-left: 0;
    list-style: none;
}
@media (min-width: 1480px) {
    .header-menu {
        display: flex !important;
       /* align-items: center !important;
        justify-content: center!important;*/
    }
}
.header-menu li a {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-right: 20px;
}
.header-menu li a:hover,
.header-menu li a.active{
  text-decoration: underline;
}
@media (min-width: 1400px) and (max-width: 1599px){
    .header-menu li a {
        font-size: 16px;
    }
}
@media (min-width: 1200px) and (max-width: 1399px){
    .header-menu li a {
        font-size: 14px;
    }
}

.right-col .header-menu {
    margin-left:0;
}
/* LANGUAGES  
-----------------------*/
.languagesDrop {
    margin-right: 20px;
    position:relative;
}
.languagesDrop .dropdown-toggle {
    color: var(--white);
    font-weight: 400;
    font-size: 15px;
    transition: var(--transition3s);
}
.languagesDrop .dropdown-menu {
    min-width: 40px;
    border-radius: 0;
    padding: 5px 0px;
    font-size: 15px;
    left: -10px !important;
    top:30px!important;
    background-color: var(--black);
    border: 0;
}
.languagesDrop .dropdown-menu a{
    color: var(--white);
    text-align: left;
}
.languagesDrop .dropdown-menu a:hover{
    background: none;
    color: var(--bgBurgerMenu);
}
/* END OF HEADER  */

@media (min-width: 768px) {
    .checkin-btn {
        position:absolute;
        color: var(--white);
        font-size: 14px;
        font-weight: 400;
        top:12px;
        -webkit-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .checkin-btn:hover{
         color: var(--white);
         text-decoration:underline;
    }
    .header .right-col {
        margin-top:14px;
    }
    .headerScroll .checkin-btn {
        top:7px;
    }
    .checkin-btn {
        right: 1.5rem !important;
    }
}
@media (max-width: 767px) {
  .header .checkin-btn {
      display:none;
  }
  
    
 /* .checkin-btn {
        top:8px;
   }
   .headerScroll .checkin-btn {
        top:5px;
    }*/
    .overlay-menu .checkin-btn {
        color: var(--black);
        padding: 8px 16px;
        font-size: 18px;
        letter-spacing: 0.15rem;
        background: var(--grey);
    }
}



/*=== MAIN MENU 
========================================*/
/*@media screen and (min-width: 1480px) {
    .overlay-menu {
        display:none;
    }
}*/
.menu-btn {
    top: 36px;
    left: 16px;
    display: inline-block;
    background-color: transparent;
    cursor: pointer;
    z-index: 3;
    position: fixed;
    font-size: 14px;
    margin-right: 8px;
    color: var(--white);
    line-height: 1;
    transition: 0.3s ease-in-out;
}
.menu-btn.active {
    color: var(--black);
}
.scrolled .menu-btn {
    top: 26px;
}
@media (max-width: 767px){
    .menu-btn {
        font-size: 11px;
        left: 10px;
        top: 18px;
    }
}
@media (max-width: 575px){
    .scrolled .menu-btn {
        top: 6px;
    }
}
.menu-btn .menu-word {
    display:none;
}
.menu-btn .bar {
  background-color: var(--white);
  width: 42px;
  height: 2px;
  margin: 10px auto;
  transition: background-color 0.4s ease-in, transform 0.4s ease-in,
  width 0.4s ease-in;
      cursor: pointer;
}
.menu-btn .bar:nth-child(2) {
    width:28px;
    margin: 10px auto 10px 0;
}
@media (max-width: 767px){
    .menu-btn .bar {
        width: 35px;
    }
}
.menu-btn.active .bar{
 /*  background-color: var(--black); */
}
.menu-btn.active .bar.top {
  -webkit-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
}
.menu-btn.active .bar.middle {
  opacity: 0;
}
.menu-btn.active .bar.bottom {
  -webkit-transform: translateY(-16px) rotate(-45deg);
    -ms-transform: translateY(-16px) rotate(-45deg);
    transform: translateY(-16px) rotate(-45deg);
}
.overlay-menu  {
    position: fixed;
    top: 0;
    left: 0;
    right:0;
    z-index: 100000;
    transition: 0.5s linear;
    overflow: hidden;
    overflow-y: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
.overlay-menu.opened  {
    height: 100%;
    width: 100%;
}
.aside-section {
    height: 100%;
    width: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    background-color: var(--white);
    overflow-y: auto;
    -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
    transform: translateY(-100%);
}
.overlay-menu.opened .aside-section {
    top: 0%;
    transform: translateY(0%);
}
@media (min-width: 768px){
    .aside-section .row-container {
        height:calc(100%);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        margin:0;
    }
}
@media (max-width: 991px){
    .aside-section {
        position: fixed; 
        overflow-y: scroll;
    }
}

/*---- menu links ---------*/
.aside-list,
.menu-right-holder{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 10%;
    text-align: left;
    padding: 80px 20px 80px 0;
    transition: 0.5s linear;
}
.aside-list li,
.menu-right-holder li{
    margin-bottom: 20px;
}
@media (max-width: 767px){
    .aside-list,
    .menu-right-holder{
        padding: 80px 20px 60px 0;
    }
}
@media (max-width: 991px){
    .aside-list li,
    .menu-right-holder li{
        margin-bottom: 14px;
    }
}
.aside-anchor {
    color: var(--white);
    font-size: 28px;
    position: relative;
}
.aside-anchor:after {
  position: absolute;
  content: "";
  bottom:-4px;
  left: -20px;
  width: 45px;
  height: 1px;
  opacity: 1;
  background-color: var(--white);
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.aside-anchor:hover:after,
.aside-anchor:focus:after,
.aside-anchor.active:after{
  height: 1px;
  opacity: 1;
  left: -20px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
    .aside-anchor{
        font-size: 24px;
    }
}
@media (max-width: 575px){
    .aside-anchor{
        font-size: 22px;
    }
}
@media screen and (max-height: 600px) {
    .aside-anchor{
        font-size: 22px;
    }
}
.aside-anchor:hover {
    color: var(--mainColor)!important;
}

@media (min-width: 768px){
    .menu-col,
    .menu-col-right{
        align-items:center;
    }
}

.menu-col {
    position:relative;
    background: var(--black);
}
@media (min-width: 768px){
    .menu-col-right,
    .menu-col{
        background: none;
    }
    .menu-col{
        background: var(--black);
    }
}

.menu-right-holder img {
    margin-bottom:50px;
    width:120px;
}
.collection-heading {
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--mainColor);
    font-weight: 100;
}

.menu-right-holder{
    font-size:18px;
}
.menu-right-holder a{
    color:var(--black);
}
.menu-right-holder a:hover{
    color:var(--mainColor);
}
.menu-right-holder ul {
    font-size:24px;
}
@media screen and (max-width: 1199px) {
    .menu-right-holder ul {
        font-size: 22px;
    }
}
@media (max-width: 575px){
    .menu-right-holder ul {
        font-size: 20px;
    }
}
.menu-right-holder li {
    background:url(/images/logo-icon.svg) no-repeat left 10px;
   /* filter: brightness(0) invert(1);*/
    background-size:14px;
    padding-left:24px;
}
.menu-right-holder li span{
 font-size:18px;
 display:block;
}


/* END OF NAVIOGATION
==========================*/


/*=== Carousel Slider
=====================================*/
.noSlider-holder {
    height:116px;
}
@media (max-width: 575px) {
    .noSlider-holder {
        height: 77px;
    }
}
#bigCarousel .carousel-item,
#bigCarousel {
    position: relative;
}
@media screen and (min-width: 992px) {
    #bigCarousel .carousel-item,
    #bigCarousel {
        height: 100vh;
    } 
    #bigCarousel img {
       height: 100% !important;
        width: 100%;
        object-fit: cover;
    }
}
@media screen and (max-width: 991px) {
     #bigCarousel img {
        width: 100%;
        height: auto;
     }
}


#bigCarousel .carousel-control-prev,
#bigCarousel .carousel-control-next {
    visibility: hidden; }
#bigCarousel:hover .carousel-control-prev,
#bigCarousel:hover .carousel-control-next {
    visibility: visible; }
    


.carousel-control-next, .carousel-control-prev {
    width:10%;
}
#bigCarousel .carousel-control-next-icon {
  background-image: url(../images/arrow-right.svg)!important;

}
#bigCarousel .carousel-control-prev-icon {
  background-image: url(../images/arrow-right.svg)!important;
    transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);

}
#bigCarousel .carousel-control-next-icon, 
#bigCarousel .carousel-control-prev-icon {
  display: inline-block;
  width: 50px!important;
  height: 50px!important;
  background: no-repeat 50%/100% 100%;
}
/*
@media screen and (max-width: 991px) {
      #bigCarousel .carousel-item,
      #bigCarousel {
        height: 500px !important;
      }
}
@media screen and (max-width: 575px) {
  #bigCarousel .carousel-item,
  #bigCarousel {
    height: 350px;
  }
}*/

.contentOverSlider {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 0px 20px;
    background:rgba(0,0,0,0.001);
    font-size: 54px;
    color: var(--white);
    font-weight: 100;
    line-height: 1.2;
    text-shadow: 1px 1px 2px #000000;
}
@media screen and (max-width: 1399px) {
  .contentOverSlider {
    font-size: 48px;
  }
}
@media screen and (max-width: 991px) {
  .contentOverSlider {
    font-size: 32px;
    line-height: 1.1;
  }
}

@media screen and (max-width: 575px) {
  .contentOverSlider {
    font-size: 26px;
  }
}
/*
.videoModal .modal-dialog {
  max-width: 900px;
}

.videoModal .btn-close {
  font-size: var(--fontGeologica);
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--white);
  background: var(--mainColor);
  width: 20px;
  height: 20px;
  border-radius: 0px;
  z-index: 3;
  display: flex;
  font-size: 20px;
  font-weight: 300;
  justify-content: center;
  align-items: center;
}
*/


/* END OF FIRST SCREEN  */






/* START OF SWIPER CAROUSELS 
====================================*/
.swiper-button-next,
.swiper-button-prev {
  top: 50% !important;
  color: var(--black);
  border: 1px solid var(--white);
  padding: 25px;
  border-radius: 30px;
      background:var(--black) url(/images/arrow-line-right.svg) no-repeat center center;
    background-size: 34%;
}
.swiper-button-prev {
    transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);
}
.swiper-button-next:after,
.swiper-button-prev:after {
    display:none;
}
.swiper-pagination {
  bottom: 0px !important;
  display: flex;
    align-items: center;
    justify-content:center;
}
.swiper.bullets-below .swiper-pagination {
    padding-top:20px; 
    position:relative;  
}
.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 7px;
    margin: 0 4px;
}
.swiper-pagination-bullet-active {
    background-color: var(--mainColor);
 /*   height: 16px;
    border-radius:8px;
    width:16px;*/
}
.swiper-text,
.box-text{
  width: 95%;
  margin: auto;
}
.swiper-text.bg-white,
.box-text.bg-white{
    width: 100%;
    padding:20px 1.5rem;
    box-shadow: 0 0 29px rgba(67, 86, 97, 0.04);
}
.swiper-text .title,
.box-text .title{
  font-size: 28px;
  margin-bottom: 20px;
  font-weight:300;
}
.swiper-text .description,
.box-text .description{
     margin-bottom: 20px; 
}
    

/* END OF SWIPER CAROUSELS */

/* START OF FOOTER  
========================*/
.f-logos{
    border-top: solid 1px var(--greyDarker) !important;
    border-bottom: solid 1px var(--greyDarker) !important;
    padding-top: 3rem;
    padding-bottom:2rem;
}
.f-logos h3{
    font-size:28px;
    margin-bottom:15px;
}
@media (max-width: 575px) {
    .f-logos h3{
      font-size:24px;  
    }
}
.f-logos .umb-block-list{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    
}
.f-logos img{
    height: 94px;
    margin: 20px 30px;
}
.f-logos > div > div:first-child {
    width:100%;
    margin-top:-80px;
}
.f-logos > div > div:not(:first-child) {
    min-width: 295px;
}
.f-logos > div > div:first-child img {
    background:#fff;
    margin:0 20px 30px;
    height:90px;  
}
@media (max-width: 991px) {
    .f-logos > div > div:not(:first-child) {
        min-width: 245px;
    }  
    .f-logos > div div:not(:first-child) img{
          height: 74px;
    }  
}

@media (max-width: 575px) {
    .f-logos > div > div:first-child {
    padding-bottom:20px;
    }
    .f-logos > div > div:first-child img {
        margin: 0 20px 20px;
        height: 80px; 
    }
    .f-logos{
        padding-bottom:10px;
    }
    .f-logos > div div:not(:first-child) img{
        margin: 20px 15px;
    }
}
.footer {
    font-size:18px;
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align:left;
    background: var(--black);
    color:var(--white);
}
.footer a{
    color:var(--white);
}
.footer .h3-sm-header {
    font-size: 22px;
    font-weight: 400;
    padding: 0px 0 10px 0;
    margin:0px;
    text-align:left;
}
/*
.footer .centered, 
.footer .centered .h3-sm-header {
     text-align:center;   
}*/
.footer-logo img {
  height: 80px;
  margin-bottom:30px;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 991px) {
    .contact-details,
    .contact-details .h3-sm-header{
        text-align:center;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .newsletter{
        margin-right:50px;
    }
}
@media screen and (max-width: 767px) {
    .footer,
    .footer .h3-sm-header,
    .footer-logo {
        text-align:center
    }
    .newsletter{
        max-width:340px;
        margin:auto;
    }
}

.mhte {
    font-size:16px;
    margin-top:10px;
}
.social a {
    display: inline-block;
    padding: 12px 12px 12px 0;
    margin:0 4px;
    transition: all 0.5s linear;
}
@media screen and (max-width: 767px) {
  .social a {
    padding: 12px;
  }
}
.social img{
  width: 24px;
  height: 24px;
    filter: brightness(0) invert(1);
}
.social a:hover {
  opacity: 0.6;
    transition: all 0.5s linear;
}
.footer-nav {
    text-align:center;
    font-size:18px;
    padding-bottom:15px;
    margin-bottom:60px;
    border-bottom: solid 1px #403e3e !important;
}

.footer-nav a{
    color: var(--mainColorLight);
    text-decoration: none;
    padding: 10px 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-nav a:hover,
.footer-nav a:focus{
    color: var(--mainColor)!important;
    text-decoration: none;
}
.copyright {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    font-size: 14px;
    line-height: 1.2;
    background-color:var(--grey);
}
.copyright a {
    text-decoration: none;
    color: var(--black);
}
.copyright a:hover {
    text-decoration:underline;
}
@media screen and (max-width: 767px) {
    .copyright {
        padding-bottom: 80px;
    }
}
/* 
====END OF FOOTER =========== */



/* START SCROLL UP  */
#progress {
    position: fixed;
    bottom: 10px;
    right: 10px;
    height: 44px;
    width: 44px;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
@media screen and (max-width: 992px) {
    #progress {
        bottom: 0px;
    }
}
#progress-value {
  display: block;
  height: calc(100% - 5px);
  width: calc(100% - 5px);
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#progress-value img {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(68%) sepia(20%) saturate(354%)
    hue-rotate(359deg) brightness(90%) contrast(87%);
}

/* START OF BREADCRUMB 
====================*/

.breadcrumb {
    margin-bottom: 0;
    justify-content: center;
}

.breadcrumb {
    color: var(--mainColor);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
}
.breadcrumb li+li:before {
    padding: 8px;
    color:  var(--mainColor);
    content: "/";
    font-size: 12px;
    font-weight: 400;
}
.breadcrumb a {
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
 }
.breadcrumb a:hover {
    color: var(--black);
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .breadcrumb {
        font-size:14px;
    }    
} 
/* END OF BREADCRUMB */


/*CONTENT
======================== */
/*
.intro-text h1{
    text-align:center;
}
.bigText {
  font-size: 34px;
  font-weight: 200;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 991px) {
  .bigText {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
 .bigText {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
 .bigText {
    font-size: 24px;
  }
}*/

.rooms-carousel,
.roomsListing,
.room-gallery,
.section-subpages-listing,
.section-categories-carousel,
.other-carousel{
    background:var(--grey);
}
.rooms-carousel h2{
    text-align:center;
}
.roomsSwiper .swiper-slide-next, 
.roomsSwiper .swiper-slide-prev {
    opacity: 0.3;
    margin-top: 30px;
}
.roomsSwiper .swiper-button-next,
.roomsSwiper .swiper-button-prev {
    color: var(--black);
    border: 1px solid var(--black);
}
@media screen and (min-width: 768px) {   
    .roomsSwiper .swiper-button-next {
            right: 5%;
    }
    .roomsSwiper .swiper-button-prev {
            left: 4%;   
    }
}
@media screen and (min-width: 992px) {   
    .roomsSwiper .swiper-button-next {
            right: calc(25% - 45px);
    }
    .roomsSwiper .swiper-button-prev {
            left: calc(25% - 45px);   
    }
}
    
@media screen and (min-width: 1200px) {   
    .roomsSwiper .swiper-button-next {
            right: calc(33% - 40px);
    }
    .roomsSwiper .swiper-button-prev {
            left: calc(33% - 40px);   
    }
}

.roomsListing .box-text{
    height:100%;   
    display:flex;
    align-items:start;
    justify-content:center;
    flex-direction:column;
     padding:20px 1.5rem;

}
@media screen and (min-width: 1200px) { 
    .roomsListing .box-text{
        padding:20px 3rem;
    }
}

@media screen and (min-width: 768px) {
     .image-box {
        transform-origin: left; /*bottom left*/
    }
}
.section-subpages-listing .image-box {
    margin-bottom:25px;
}
.img-holder {
    position:relative;
    overflow: hidden;
}
.image-box img {
  transition: transform .5s;
}
.image-box:hover img {
  transform: scale(1.09, 1.09);
  filter: brightness(70%);

}

.room-details {
    padding-bottom:25px;
    font-size:18px;
    color:var(--mainColor);
}
@media screen and (min-width: 768px) {
    .room-details {
      display:flex;
      justify-content: center;
    }
    .room-details div {
       padding:0 10px; 
    }
    .room-details div:not(:last-child){
        border-right:solid 1px var(--greyDarker);
    }
}


.gallerySectionSwiper.swiper {
    position: relative;
    width: 100%;
}
.gallerySectionSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(0.8);
  }
.gallerySectionSwiper .swiper-slide.swiper-slide-active {
    transform: scale(1.1);
}
@media (max-width: 767px){
    .gallerySectionSwiper .swiper-slide.swiper-slide-active {
        transform: scale(1)!important;
      }
}
  
  
.section-text-only,
.section-text-only h2,
.section-categories-carousel h2{
    text-align:center;
}

.section-text-only .bg {
    position:relative;
}
.section-text-only .bg:before{
    content:"";
    position:absolute;
    top:30px;
    left:0;
    right:0;
    bottom:0;
    background: var(--grey);
    z-index: -1;
}

.expSwiper {
    margin-top:30px;
}
@media (max-width: 767px){
    .swiper-asFlex > div{
        margin-bottom:30px;
    }
}

/*SLIDING CAROUSEL
-----------------------------------*/
.carousel-box {
    position: relative;
    background-color:  black;
    overflow:hidden;
} 
.carousel-box img{
    opacity: 1;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transition:all .35s linear;
    transition:all .35s linear;
    width: 100%;
}
.carousel-box:hover img{
    opacity: 0.7;
    transition: opacity 0.35s, transform 0.35s;
    -ms-transform:scale(1.1);
-webkit-transform:scale(1.1);
transform:scale(1.1);
}
.carousel-box .text-over {
  position: absolute;
  top:15px;
  bottom:15px;
  left:15px;
  right:15px;
}
.carousel-box .text-over .hovered{
    opacity:0;
    -webkit-transform:translatey(100px);
    -ms-transform:translatey(100px);
    transform:translatey(100px);
    -webkit-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;    
}
.carousel-box .text-over:hover .hovered{
    opacity:1;
    filter:alpha(opacity=100);
    -ms-transform:translatey(0);
    -webkit-transform:translatey(0);
    transform:translatey(0); 
}
.box-link-above {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
@media screen and (min-width: 768px) {
    .two-cols {
        display:flex;
        text-align:left;
        align-items:center;
    }
    .two-cols .heading,
    .two-cols > div{
        width:50%;
    }
}
.carousel-box .text-over .text-holder{
  display: none;
}
.carousel-box .text-over:hover .text-holder {
     display: block;
  animation-duration: .5s;
  animation-name: slide-in;
 /* animation-iteration-count: infinite;*/
    background:rgba(255,255,255,.8);
    
}
@keyframes slide-in {
  from {
    translate: 0 150vh;
    scale: 1 200%;
  }

  to {
    translate: 0 0;
    scale: 1 100% ;
  }
}
@media screen and (min-width: 1024px) {
    .full-width {
        width:100%;
    }
    .slidingCarousel{
          height: 70vh;
    }
   /* .slidingCarousel .carousel-box img{
        display:none;
    }*/
    .slidingCarousel .carousel-box {
          flex: 1;
          -ms-flex: 1;
          -webkit-flex: 1;
          height: 100%;
          transition: flex 0.8s ease;
          margin:0 1px;
    }
    .slidingCarousel .carousel-box:hover {
        flex: 5;
        -ms-flex: 5;
        -webkit-flex: 5;
    }
    .slidingCarousel .carousel-box:first-child{
        margin-left:0;
    }
    .slidingCarousel .carousel-box:last-child{
        margin-right:0;
    }
    .slidingCarousel .carousel-box .box-holder{
        height: 100%;
    }
    .slidingCarousel .carousel-box picture{
        height: 100%;
        display:block;
    }
    .slidingCarousel .carousel-box img{
        height: 100%;
        object-fit: cover;
    }
    .slidingCarousel .swiper-pagination {
        display:none;
    }
}
@media screen and (max-width: 1023px) {
   /* .slidingCarousel .carousel-box{
        background:transparent!important;
    }*/
}
.slidingCarousel .title{
    color:var(--white);
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 1);
}


/*WHY BOOK
==========================*/
.section-why picture{
    display:none;
} 
@media (min-width: 768px) {
    .section-why picture{
        max-width: 34%;
        left: 50%;
        transform: translateX(-50%);   
        display:block;
        position:relative;
        z-index:-1;
    }
    .section-why .rounded-img{
        border-radius:50%;
    }
    .why-text {
        position:absolute;
        top: 8%;
        left: 0;
        right: 0;
        bottom: 8%;
        z-index:1;
    }
}
.why-text em{
    font-size:20px;
}
.counter {
    counter-reset: num;
}
.counter ul {
    margin:0px;
    list-style:none;
}
.counter li:before{
    color: var(--mainColor);
    content: counter(num) ". ";
    counter-increment: num;
    font-size: 34px;
    display: block;
    text-align: center;
    margin: auto;
}
@media (max-width: 767px) {
    .counter li:not(:last-child){
        margin-bottom:22px;
    }
}
@media (min-width: 768px) {
    .counter {
        font-size: 32px;
        height:100%;
    }
    .counter ul{
        height:100%;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .counter li{
        display:flex;
        width:40%;
        position: relative;
        line-height: 1.2;
        padding-top:30px;
    }
    .counter li:nth-child(3),
    .counter li:nth-child(4){
        margin-top: auto;
    }
    
    .counter li:nth-child(1),
    .counter li:nth-child(3){
        margin-right:10%;
        padding-right: 100px;
        justify-content: end;
        flex-direction: row-reverse;
    }
    .counter li:nth-child(2),
    .counter li:nth-child(4){
        margin-left:10%;
        padding-left: 100px;
        justify-content: start;
    }
    .counter li:nth-child(1):before,
    .counter li:nth-child(3):before{
        left:unset;
        right:0;
    }    
    .counter li:before{
        font-size: 42px;
        width: 100px;
        height: 100px;
        background: #fff;
        border-radius: 50%;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position:absolute;
        left:0;
        top:0;
    }
}
@media (min-width: 768px) and (max-width: 1199px){
    .counter {
        font-size: 22px;
    } 
    .counter li:before{
        font-size: 32px;
        width: 80px;
        height: 80px;
        
    }
    .counter li {
        padding-top: 24px;
    }
}
@media (min-width: 1200px) and (max-width: 1480px){
     .counter {
        font-size: 30px;
    }  

}
/*REVIEWS & INSTAGRAM
==========================*/
.instagram-section {
    position:relative;
}
.instagram-section h2 {
        text-transform: uppercase;
}
.instagram-section .imgs {
    gap: 1px;
    flex-wrap: wrap;
}

.instagram-section img{
    filter: brightness(70%);  
    transition: all 0.25s linear;
}
.instagram-section .InstaThumb:hover img{
    filter: unset;
}
.instagram-section .InstaThumb {
    width:calc(50% - 1px);
}
@media screen and (min-width: 575px) {
    .instagram-section .InstaThumb {
        width:calc(25% - 1px);
    }
}



.testimonials h2 {
    text-align:center; 
    margin-bottom:30px;
}
@media (min-width: 992px) {
   .testimonials h2 {
        text-align:left; 
        width: 33.33333333%;
        align-items: center;
         margin-bottom:0px;
    } 
    .testimonialsSwiper  {
         width: 60%;
         margin-left:6.6666666%;
    }
}
.testimonialsSwiper  {
    transition: 500ms all ease;
    position: relative;
}
.testimonialsSwiper .swiper-button-prev,
.testimonialsSwiper .swiper-button-next {
  left: calc(50% - 20px);
  right: 0;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  background-color:transparent;
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
  transform: rotate(-90deg);
}
.testimonialsSwiper .swiper-button-prev {
    top: 0!important;
    bottom: initial!important;
}
.testimonialsSwiper .swiper-button-next {
    top:initial!important;
    bottom: 0;
    transform: rotate(90deg);
}
 .testimonialsSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
 }
.testimonialsSwiper .swiper-slide:not(.swiper-slide-active) {
    opacity:0!important; 
}
.review-item .rTitle{
    font-weight:400;
    margin-bottom:15px;
}
.review-item .rText{
    font-style:italic;
    margin-bottom:0px;
}
.review-item .rText p{
    margin:0;
}
.review-item .rName{
    font-weight:100;
    text-transform: uppercase;
    font-size:18px;
}

.awards-section {
    margin-top:40px;
}
.awards-section h2{
    text-align:center;
}
.awards-section img{
    max-height:100px;
}
.awardsSwiper {
    padding-top:15px;
    padding-bottom: 45px;
    margin-bottom: 30px;
}
/*.awardsSwiper .swiper-pagination-bullet {
    background:var(--white);
}*/



/*LISTS
==========================*/
.TwoColsList {
  column-count: 2;
 list-style: none;
}

.TwoColsList li {
  margin-bottom: 7px;
}

@media screen and (max-width: 575px) {
  .TwoColsList {
    column-count: 1;
  }
}

/*--- text list ---*/
ul.text-list,
.room-page .section-text-only ul,
.facilities-list{
    padding: 0 0 0 24px;
}
.text-list li,
.room-page .section-text-only li,
.facilities-list li{
    padding-bottom:10px;
}
.room-page .section-text-only ul,
.facilities-list {
    text-align:left;  
    
}
@media screen and (max-width: 767px) {
    .room-page .section-text-only ul,
     .facilities-list {
        text-align:center; 
        list-style-position: inside;
    }   
}
@media screen and (min-width: 768px) {
    .room-page .section-text-only ul,
    .facilities-list {
          column-count: 2;
    }
    .room-page .section-text-only li,
    .facilities-list li{
        margin:0px 15px;   
    }
    .room-page .section-text-only ul{
        margin:0 auto;
        width:70%;
    }
}
@media screen and (min-width: 992px) {
    .room-page .section-text-only div{
        text-align:center;
    }
    
    .room-page .section-text-only ul,
    .facilities-list {
          column-count: 2;

    }
}

/*GALLERY
==========================*/
.expand-icon:hover a:after {
    content: "";
    position: absolute;
    background: url(/images/expand.svg) no-repeat center center;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 50px;
}
.gallery-page a {
    transition: var(--transition3s);
    display:block;
    
}
.gallery-page a:hover{
  filter: brightness(0.7);
}

/*  Filters GALLERY
====================================*/

.photoColumn img{
    margin-bottom:22px;
}

.filters {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;

}
.filter {
  padding: 10px 20px;
    color: var(--black);
  line-height: 1.5;
    border: 1px solid var(--black);
        font-weight: 400;
    font-size: 16px;
    margin:0 15px;
}
.filter:hover {
  cursor: pointer;
}
.filter.active {
    font-weight:600;
    background: var(--grey);
}


.hide { /* You can play with the seconds to change the "animation" */
  animation: hide .3s ease 0s 1 normal forwards;
  transform-origin: center;
  padding:0px;
}
.show:not(.collapse) { /* You can play with the seconds to change the "animation" */
    animation: show .3s ease 0s 1 normal forwards;    
    transform-origin: center;
}

@keyframes hide {
  0%{
    transform: scale(1);        
  }
  100% {
    transform: scale(0);        
    width: 0;
    height: 0;
    margin: 0;
  }
}
@keyframes show {
  0%{
    transform: scale(0);     
    width: 0;
    height: 0;
    margin: 0;   
  }
  100% {
    transform: scale(1);    
  }
}

.languagesDrop .dropdown-toggle.show,
.modal.show{
    animation: none!important;
}

/*FORM
==========================*/
/* START OF NEWSLETTER  
----------------------------*/
.contactForm {
       font-size: 18px;
}
.contactForm .form-control {
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--black);
}
.newsletter {
  color: var(--white);
   font-size: 16px;
}
.newsletter form .form-control {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--white);
  border-radius: 0;
  padding: 12px 15px;
  color: var(--white);
  font-size: 16px;
  font-weight:200;
}
.attachment-field{
    min-width: 140px;
  /*  background: url(/images/upload-icon.svg) no-repeat top left;
    background-size: 20px;
    font-weight: 600;
    font-size: 14px;
    padding-bottom: 8px;
    padding-left: 30px;*/
}

.newsletter form .form-control::placeholder {
  color: var(--white);
}
.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 a {
    text-decoration:underline;
    padding-bottom: 0px;
}
.form-agree a:hover {
    text-decoration:none;
}

input[type="date"]:not(.has-value):before{
  content: attr(placeholder);
}

#json-msg {
    padding-top:20px;
}
.status-failure,
.status-busy {
    margin:6px 0 0 0;
}
.status-busy img{
   height: 10px;
}

.map-holder {
    margin-top:60px;
}


/*Career Positions Details -
=============================*/
.accordion_page .accordion-item:first-of-type,
.accordion_page .accordion-item:first-of-type .accordion-button,
.accordion_page .accordion-item:last-of-type,
.accordion_page .accordion-item:last-of-type .accordion-button{
    border-radius:0;
}
.accordion-header .accordion-button {
    background: var(--greyF4);
    padding:0px;
    text-decoration:none;
      font-size: 22px;
      padding:12px;
      font-weight:400;
      
}  
.accordion-header .accordion-button:hover {
    background: var(--grey);
}
.accordion-button:not(.collapsed) {
    color: var(--mainColor);
}
.accordion-header h3 {
    margin:0;
}
.accordion-header a:hover{
    text-decoration:none;
}
.accordion_page .accordion-button::after {
    margin-right:15px;
}
.accordion_page .accordion-body {
      padding:15px;  
}
@media (max-width:1199px){
    .accordion_page .accordion-body {
          padding:20px;  
    }
}
.accordion_page .accordion-body ul{
    margin: 0 0 15px 30px;
}
.accordion_page .accordion-body .note {
    font-style: italic;
    font-size: 15px;
    color: var(--mainColor);
    font-weight: 600;
    padding-top: 15px;
}

.form-holder {
  background:var(--grey);  
  padding:5%;
}


/*Privacy Policy
============================*/
.privacyList {
    text-align:start;
}
.wordbreak a{
     word-break: break-word;  
}
.privacyList ul{
    margin: 0 0 15px 20px;
}
.privacyList ul ul{
    margin:0 0 15px 40px;
}
.privacyList li{
    list-style: disc;
}
.privacyList ul ul li{
    list-style: circle;
}
@media (min-width: 768px) {
 .wordbreak h2{
     font-size:2rem;
 }   
}
.espa-placeholder {
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 10;
    display: flex;
}
@media (max-width: 767px) {
    .espa-placeholder {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .espa-placeholder {
        max-width: 240px;
    }
}


.royalty {
    gap:15px;
    display:flex;
    flex-wrap: wrap;
}
@media (min-width: 768px) {
  .royalty div {
      width:calc(33.333% - 15px);
  }
}
.royalty div {
    padding:10px;
}
.royalty div:nth-child(1){
    background:#f1f1f1;   
}
.royalty div:nth-child(2){
    background:#faf6e7;   
}
.royalty div:nth-child(3){
    background:#e6e5e3;   
}

.list-property-details {
    list-style:none;
    display:flex;
    justify-content:center;
    margin-top:20px;
    flex-wrap: wrap;
}
.list-property-details li{
    padding:8px 15px;
}
@media (min-width: 768px) {
     .list-property-details li{
        padding:15px 30px;
    }   
}
@media (max-width: 575px) {
   .list-property-details li{
       width:50%;
   }
}
.list-property-details .num{
    display:block;
    font-size:2rem;
    color: var(--mainColor);
}
/** START OF MODAL 
=======================*/
.modal {
  z-index: 200000;
  font-size:18px;
          background: rgba(0, 0, 0, 0.4);
}
  .modal .modal-dialog {
    max-width:740px;
  }
.modal .modal-content {
  -webkit-box-shadow: 0px 20px 20px #00000045;
          box-shadow: 0px 20px 20px #00000045;
  padding: 20px;
  border-radius: 0px;
  border: none;
  text-align: left;
}
#popupModal .modal-content.padding{
      padding: 0px;
}
#popupModal .modal-content.padding .modal-body{
      padding: 0px;
}
.modal .btn-close {
  position: absolute;
  width: 2em;
  height: 2em;
  right: 0px;
  top: 0px;
  opacity: .8;
  border-radius: 0px;
}
@media screen and (min-width: 768px) {
    .modal .img {
        display:flex;
    }
    .modal .img img{
        height: 100% !important;
        width: 100%;
        object-fit: cover; 
    }
}
@media screen and (max-width: 767px) {
    .modal .modal-dialog {
        max-width:540px;
        margin-left: auto;
        margin-right: auto;
    }
}
.modal .btn-holder {
    position:relative;
    z-index:2;
}

.modal h2,
.modal .h3 {
    font-size: 32px;
}

.visually-hidden {
    background: rgba(0,0,0,0.005);
}