@font-face {
    font-family: "Canicule Light";
    src:  url('/font/Canicule/CaniculeDisplayv0.3-Light.woff2') format('woff2'),
          url('/font/Canicule/CaniculeDisplayv0.3-Light.woff') format('woff');
  /*font-weight: 400;*/
  font-style: normal;
}
@font-face {
    font-family: "Canicule Light Italic";
    src:  url('/font/Canicule/CaniculeDisplayv0.3-LightItalic.woff2') format('woff2'),
          url('/font/Canicule/CaniculeDisplayv0.3-LightItalic.woff') format('woff');
  /*font-weight: 400;*/
  font-style: normal;
}

:root {
    --fontCaniculeLight: "Canicule Light", serif;
    --fontCaniculeLightItalic: "Canicule Light Italic", serif;
    --fontManrope: 'Manrope', sans-serif;
    --white: #fff;
    --black: #000;
    --black2b: #2b2e34;
    --brown: #95785e;/*yes*/
    --brownF8: #F8F3EF ;/*yes*/
    --greyF5: #f5f5f5;/*yes*/
    --grey9E: #9e9e9e;
    --greyF4: #f4f4f4;
    
    --letterSpacing36: 0.36px;
    interpolate-size: allow-keywords;
}


.bgBrown {
    background-color: var(--brownF8);
}
.brownColor{
    color: var(--brown);
}
.bgGrey {
    background-color: var(--greyF5);
}
.black2bColor{
    color: var(--black2b);
}
.whiteColor{
    background-color: var(--white);
}



html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: auto;
}
body {
    font-family: var(--fontManrope);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: var(--black2b);
    text-align: left;
    transition: background-color .5s;
    line-height:1.6;
    cursor: auto;
}

@media screen and (max-width: 991px) {

}  
button, .btn {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
button:focus,
.btn.focus,
.btn:focus,
input:focus,
select:focus,
textarea:focus{
  outline: 0;
  box-shadow: none !important;
}

a{
  text-decoration: underline;
  color: var(--black2b);
  transition: transform 0.25s ease-out;
}
a:hover{
  text-decoration: none;
 /* opacity: .9;*/
    color: var(--brown)!important;
    transition: transform 0.25s ease-out;
}

/*a:link,*/
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
   /* display: none;
    -webkit-appearance: none;*/
    opacity:0;
}

/*Button
=============================*/
.button,
.MoreLink,
.Discover,
.BookInner {
    font-family: var(--fontManrope);
    color: var(--black2b);
    border-radius: 0px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.button {
    border: 1px solid var(--black2b);
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    transition: all 0.3s;
    z-index: 1;
    position:relative;
    -webkit-transition: border-color 0.4s, color 0.4s;
	transition: border-color 0.4s, color 0.4s;
  }
.button:after,
.button:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
	z-index: -1;
	opacity: 0;
	-webkit-transform: scale3d(0.7, 1, 1);
	transform: scale3d(0.7, 1, 1);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button:hover {
    color: #fff!important;
    border-color: var(--white);
}
.button:hover:before {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

@media (max-width: 767px){
    .button { 
        font-size: 16px;
    }
}

.MoreLink,
.Discover {
    line-height: 2;
    position: relative;
    display: inline-block;
    transition: .3s linear;
    padding: 0px;
    letter-spacing: 1.3px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black2b);
    text-decoration: none;
}
.MoreLink:hover,
.Discover:hover{
    color: var(--brown)!important;   
}

.MoreLink {
    /*align-items: center!important;
    display: inline-flex!important;*/
    margin: 0 0 0 60px;
}
.MoreLink::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--black2b);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.MoreLink::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    padding: 17px;
    top: -10px;
    left: -60px;
    background: url(../images/arrow-right.svg) no-repeat center center var(--brown);
    border-radius: 50px;
}
.MoreLink:hover:after{
    background-color: var(--brown);
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  .Discover::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(1);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brown);
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
}
.Discover:hover:after {
    background-color: var(--brown);
    transform: scaleX(0);
    transform-origin: bottom right;
  }

/* filled btn & submit*/
.BookInner {
    color: var(--white);
    border: 1px solid var(--brown);
    background: var(--brown);
    display: inline-block;
    padding: 15px 28px;
    font-size: 14px;
    transition: all 0.3s;
    letter-spacing: 1.3px;
    z-index: 1;
    position:relative;
    -webkit-transition: border-color 0.4s, color 0.4s;
	transition: border-color 0.4s, color 0.4s;
}
.BookInner:after,
.BookInner:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.BookInner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
	z-index: -1;
	opacity: 0;
	-webkit-transform: scale3d(0.7, 1, 1);
	transform: scale3d(0.7, 1, 1);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.BookInner:hover {
    color: var(--brown);
    background: var(--brown);
    border-color: var(--brown);
}
.BookInner:hover:before {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

@media (max-width: 767px){
    .MoreLink { 
        font-size: 16px;
    }
}

@media (max-width: 1199px){
    html:lang(ru) .button,
    html:lang(ru) .MoreLink{
        font-size:16px;
    }
    html:lang(ru) .button {
        padding: 10px 16px;
    }
}
  
/*HEADERS
===================== */
h1, .h1,
h2, .h2,
h3, .h3 {
    font-family: var(--fontCaniculeLight);
    /*font-family: var(--fontManrope);*/
    color: var(--black2b);
   /* font-weight: 200;*/
    font-weight: normal;
    word-wrap: break-word;
    line-height:1;
    margin: 0px 0 30px;
   /* text-transform: uppercase;*/
}

h1, .h1 {
    font-size: 74px;
    color: var(--white);
    letter-spacing: 4px;    
}
h1 img{
    width: 200px;
}
h2, .h2{
    font-size: 40px;
    letter-spacing: 2px;
}

h2 span,
.h2 span{
    display: block;
  /*  font-weight: 600;*/
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 1.8px;
    padding: 20px 0 10px 0;
}

h3, .h3{
    font-size: 34px;
    letter-spacing: 1.5px;
}
.h3.smaller {
       font-size: 28px;
}

@media (max-width: 1199px) {
    h1, .h1 {
        font-size: 60px;
    }
    h2, .h2 {
        font-size: 36px;
    }
    h3, .h3{
        font-size: 32px;
    }
    .h3.smaller {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    h1, .h1 {
        font-size: 36px;
    }
    h2, .h2 {
        font-size: 30px;
    }
    h3, .h3{
        font-size: 26px;
    }
}
@media (max-width: 575px) {
    h1, .h1 {
        font-size: 34px;
    }
    h2, .h2 {
        font-size: 28px;
    }
    h3, .h3{
        font-size: 24px;
    }
}

.h3-sm-header {
   /* font-weight: 600;*/
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 1.9px;
    padding: 0px 0 10px 0;
    margin:0px;
}


.mt-offset{
   /* margin-top:120px;*/
    margin-top:90px;
}
.margin-neg-left {
    margin-left: -60px!important;
        z-index:1;
    }

@media (max-width: 1199px) and (min-width: 992px){
   .margin-neg-left {
    margin-left: -60px!important;
        z-index:1;
    } 
}

@media (max-width: 1199px) {
    .mt-offset{
        margin-top:80px;
    }   
}
@media (max-width: 991px) and (min-width: 768px){
    .margin-neg-left {
    margin-left: 0px!important;
    }
}
@media (max-width: 767px) {
    .mt-offset{
        margin-top:60px;
    }   
    .margin-neg-left {
    margin-left: 0px!important;
    }

}

@media (min-width: 992px) {
    .margin-neg-left{
        margin-left:0px;
        z-index:1;
    }
    .margin-neg-right{
        margin-left:-80px;
        z-index:1;
    }
}
.paddingY-bg{
    padding-top:100px;
    padding-bottom:100px;
}
@media (max-width: 991px){
    .paddingY-bg{
        padding-top:80px;
        padding-bottom:80px;
    }  
}
@media (max-width: 767px){
    .paddingY-bg{
        padding-top:60px;
        padding-bottom:60px;
    }  
}


/*HEADER
=================================*/
header{
    z-index: 1020 !important;
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
    padding-top:15px;
    padding-bottom:15px;
    font-size:14px;
    font-family: var(--fontManrope);
}
.headerBg,
.noSlider header{
    background-color: rgba(0, 0, 0, 0.9);
}
.revertColor .headerBg{
    background-color: rgba(255, 255, 255, 0.9);
}
header.headerBg {
    padding-top:10px;
    padding-bottom:10px; 
}
.logo img{
    filter: brightness(0) invert(1); 
    height: 62px;
}


.revertColor .logo img{
    filter: brightness(0) saturate(100%) invert(52%) sepia(4%) saturate(2891%) hue-rotate(347deg) brightness(93%) contrast(86%);
     height: 62px;
 }
.revertColor header a {
    color: var(--black2b)!important;
}
header.headerBg .logo img{
    height:36px;
}
@media (max-width: 767px){
    header{
        padding-top:10px;
        padding-bottom:10px;
    }
    .logo img{
        height: 40px;
    }
    header.headerBg .logo img{
        height:32px;
    }
}
@media (max-width: 360px){
    .logo img{
        height: 30px;
    }
    header.headerBg .logo img{
        height:28px;
    }
}
header a{
    color:var(--white)!important;
    background: rgba(0,0,0,0.005);
}
.header-ribbon{
    line-height:1.2;
}

.SmallTopMenu {
    font-size:13px;
    text-transform:uppercase;
    letter-spacing: 1.3px;
}
.SmallTopMenu a{
    padding-right:10px;
    color: var(--white);
    text-decoration: none;
}
.SmallTopMenu a:hover{
    color: var(--white)!important;
    text-decoration: none;
}

.revertColor .SmallTopMenu img{
    filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(1047%) hue-rotate(182deg) brightness(96%) contrast(86%);
}
.revertColor .SmallTopMenu a:hover{
    color: var(--black2b)!important;
}
@media (max-width: 767px){
    .SmallTopMenu {
        font-size:10px;
        padding-right:0px;
        padding-bottom:4px;
    }  
}
@media (max-width: 575px){
    .SmallTopMenu {
        font-size:8px;
    }  
}
/* MAIN NAVIGATION
=============================== 

/** START OF WEATHER WIDGET
================================= **/
.booked-wzsp-prime-data {
    width: auto !important;
}
.weather-booked-vertical-one-prime {
    width: 120px !important;
}
.booked-wzsp-prime-in *, 
.booked-wzsp-prime-in .booked-wzsp-day-val .booked-wzsp-day-number,
.booked-wzsp-prime-in .booked-wzsp-prime-data .booked-wzsp-day-dergee-val
{
    color: var(--white)!important;
    font-size: 14px!important;
    font-weight: 400!important;
    font-family: var(--fontManrope)!important;
}
.booked-wzsp-prime-in .booked-wzsp-day-val .booked-wzsp-day-number,
.booked-wzsp-prime-in .booked-wzsp-day-val .booked-wzsp-day-dergee {
    background: rgba(0,0,0,0.005);
}
.revertColor .booked-wzsp-prime-in *, 
.revertColor .booked-wzsp-prime-in .booked-wzsp-day-val .booked-wzsp-day-number,
.revertColor .booked-wzsp-prime-in .booked-wzsp-prime-data .booked-wzsp-day-dergee-val
{
    color: var(--black2b)!important;
}
.booked-wzsp-prime-data .booked-wzsp-prime-img {
    /*background-image: url(https://static.bookcdn.com/images/weather/bwc-ico-g48x48.png)!important;*/
    height: 30px!important;
    background-size: cover!important;
    width: 28px;
    padding: 0px!important;
    filter: brightness(0) invert(1); 
}
.revertColor .booked-wzsp-prime-data .booked-wzsp-prime-img {
     filter: brightness(0.6);
}
.booked-wzsp-prime-data .booked-wzsp-day-dergee {
     flex-direction: row!important;
}
/** END OF WEATHER WIDGET **/
  

  
/* LANGUAGES
=============================== */ 
.languagesDrop .dropdown-toggle {
    color: var(--white)!important;
    letter-spacing: 2px;
    font-size: 12px;
}
.languagesDrop .dropdown-toggle::after {
    border: none !important;
    background: url(../images/arrow-down.svg);
    width: 10px;
    height: 5px;
    vertical-align: middle;
    margin-left: 2px;
}
.languagesDrop a {
    color: var(--white)!important;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.8px; 
}
 .languagesDrop .dropdown-menu{
    top:20px!important;
    min-width: 40px;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.9);
    padding:4px 8px;
    text-align:left;
 }
 .languagesDrop .dropdown-item {
    display: block;
    padding: 0px;
 }
 .languagesDrop .dropdown-item:hover {
    background:none;
    color: var(--brown)!important;
 }
.revertColor .languagesDrop .dropdown-toggle {
    color: var(--black2b)!important;
}
.revertColor .languagesDrop .dropdown-menu {
    background:transparent;
}
.revertColor .languagesDrop .dropdown-toggle::after {
    filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(1047%) hue-rotate(182deg) brightness(96%) contrast(86%);
}
 @media (max-width: 767px){
    .languagesDrop .dropdown-toggle,
    .languagesDrop a {
        font-size: 11px;
        letter-spacing: 1.2px;
    }
 }


/*SLIDER
=============================== */
.noTopMedia,
.noSlider-holder{
    height: 92px;
}
@media (max-width: 767px){
    .noTopMedia {
        height: 70px;
    }
}
@media (max-width: 480px){
    .noTopMedia {
        height: 63px;
    }
}
.topMedia {
    height: 100%;
    position: relative; 
}
/*=== Carousel Slider ===*/
#bigCarousel .carousel-item,
#bigCarousel {
  position: relative;
  height: 100vh;
}
#bigCarousel .carousel-control-prev,
#bigCarousel .carousel-control-next {
    visibility: hidden; }
#bigCarousel:hover .carousel-control-prev,
#bigCarousel:hover .carousel-control-next {
    visibility: visible; }
    
    
#bigCarousel img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.GradientBg{
    position: absolute;
    z-index: 2;
    top: 0%;
    bottom: 0%;
    height: 100%;
    width: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.22452731092436973) 46%, rgba(0,0,0,0.44021358543417366) 70%, rgba(0,0,0,0.8239670868347339) 100%);
}
.BlurBg{
    backdrop-filter: blur(10px);
}
.contentOverSlider {
    position: absolute;
    z-index: 9;
    color: white;
    /*top: 40%;*/
    bottom: 0%;
    height: 50%;
    width: 100%;
    font-family: var(--fontManrope);
    font-weight: 200;
    color: var(--white);
    font-size: 76px;
    line-height:1;
    text-align: center;
    /*text-transform: uppercase;*/
}
.contentOverSlider .button {
    padding: 18px 37px;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 14px;
    letter-spacing: 1.3px;
}
.contentOverSlider .button:hover {
    color: var(--black)!important;
    border-color: var(--white);
    background-color: var(--white); 
}
.contentOverSlider .button:hover::before{
    background-color: var(--white);
}
@media (max-width: 1480px) {
  .contentOverSlider {
    height: 60%;
  }
}
@media (max-width: 1199px) {
    .contentOverSlider {
        font-size: 48px;
    }
}
@media (max-width: 991px) and (min-width: 768px){
    .contentOverSlider {
        height: 70%;
        font-size: 48px;
    }
}

@media (max-width: 767px){
    .contentOverSlider {
        height: 70%;
        font-size: 48px;
    }
    .contentOverSlider .button {
        padding: 8px 14px;
        font-size: 12px!important;
        letter-spacing: 1.4px;
    }
}
@media (max-width: 575px) {
    .contentOverSlider {
        height: 90%;
        font-size: 30px;
    }
    .contentOverSlider .button {
        padding: 8px 10px;
        letter-spacing: 1px;
        margin-top: 0px;
    }
}
@media (max-width: 480px){
    .contentOverSlider .button {
        padding: 6px 8px;
        letter-spacing: 0px;
    }
}
@media (max-width: 360px){
    .contentOverSlider .button {
        padding: 5px 6px;
        font-size: 9px!important;
    }
}

.carousel-control-next, .carousel-control-prev {
    width:10%;
}
#bigCarousel .carousel-control-next-icon {
  background-image: url(../images/right-arrow.svg)!important;
}
#bigCarousel .carousel-control-prev-icon {
  background-image: url(../images/right-arrow.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;
  }
}
.carousel-indicators {
    bottom: 15%; 
}
.carousel-indicators [data-bs-target] {
    opacity: 0.6;
    width: 36px;
    height: 0px;
    margin:0px 0;
    text-indent: 0;
}
@media screen and (max-width: 767px) {
    .carousel-indicators {
        bottom: 8%; 
    }
}

.carousel-indicators .active{
    opacity: 1;
}
.carousel-indicators span{
    opacity: 0.6;
    display:block;
    margin:0px;
    font-size:14px;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}
.carousel-indicators .active span{
    opacity: 1;
}

.ScrollOverSlider{
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 1.5px;
    color: var(--white);
    /* margin-top: 70px; */
    text-align: center;
    padding: 0px 0 70px 0;
}

.left-hr {
    position: absolute;
    z-index: 2;
    width: 1px;
    border: none;
    opacity: .8;
    margin: 0px;
    bottom: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    overflow: visible;
    height: 100px;
    border-left: 1px solid rgba(0, 0, 0);
}
.left-hr::before {
    position: absolute;
    width: 1px;
    content: '';
    height: 50%;
    top: 0px;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    background: rgb(255, 255, 255);
}

.center-hr {
    width: 1px;
    border: none;
    opacity: 1;
    left: 0px;
    right: 0;
    top: 0px;
    margin: 0 auto;
    border-right: 1px solid var(--black2b);
    height: 40px;
    margin-bottom: 20px;   
    background:transparent;
}
@media (max-width: 991px) and (min-width: 768px){
    .left-hr{
        bottom: -30px;
        height: 60px;
    }
}
@media (max-width: 767px){
    .left-hr{
        bottom: -30px;
        height: 60px;
    }
}

/* 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;
    }
}

/* TwoBox-Image
=================================== */
.HoverZoom-Image{
    /*width: 100%;
    height: 57vh;*/
    position: relative;
    overflow: hidden; 
}
.HoverZoom-Image a{
    display: inline-block;
}
.HoverZoom-Image img{
    position: relative;
    width: 100%;
    z-index: 1;
    transform: scale(1);
    transition: transform 1s ease;
}
.HoverZoom-Image img:hover {
    transform: scale(1.1);
}


/*BackgroundFullImg
==========================*/
.BackgroundFullImg{
    /*background: url(../images/background-image.jpg) no-repeat center center;
    background-size: cover;*/
    height: 85vh;
}
.BackgroundFullImg img{
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}  

@media (max-width: 1199px) and (min-width: 992px){
    .BackgroundFullImg{
        height: 70vh;
    }
}
@media (max-width: 991px){
    .BackgroundFullImg{
        /*height: 60vh;*/
        height:unset;
    }
}
/*
@media (max-width: 575px){
    .BackgroundFullImg{
        height: 40vh;
    }
}*/

/*Small Boxes Listing
================================= */
/*Boxes spacing between*/

@media (min-width: 768px){
    .px-box {
        padding-left:25px;
        padding-right:25px;
    }
    .box-text-holder {
        margin:auto;
        width:60%;
    }
}
@media (min-width: 576px) and (max-width: 768px){
    .gallery-page .px-box{
        padding-left:10px;
        padding-right:10px;
    }
}

/*MiniBoxes
================================= */
.miniboxesSwiper{
    margin-bottom: 40px;
}
.box-text-below{
    margin-top: 20px;
    font-size: 16px;/*14px*/ 
}
/*
.slider-Details span{
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 1.9px;
    padding: 0px 0 10px 0;
}*/
.box-text-below .sm-header {
    /*font-weight: 600;
    font-size: 18px;*/
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 1.9px;
    padding: 0px 0 10px 0;
    margin:0px;
    
}
/*
.swiper.miniboxesSwiper,
.swiper.dragIcon{
    cursor:none;
  }
  .swiper.miniboxesSwiper .cursor2,
  .swiper.dragIcon .cursor2{
    display: none;
    
  }
  .swiper.miniboxesSwiper:hover .cursor2,
    .swiper.dragIcon:hover .cursor2 {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 0px solid black;
    background-color: rgba(149, 120, 94, 0.8);
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    z-index: 400;
    padding: 40px 16px;
    font-size: 10px;
    color: #fff;
    letter-spacing: 1.3px;
    transform: translate(calc(-50% + 15px), -50%);
  }

  .swiper.miniboxesSwiper .cursor2 img,
  .swiper.dragIcon .cursor2 img{
    width: 13px;
  }*/
  





/*News
================================= */
/*
.NewsBody{
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}*/
.MoreLink-holder {
    display:none;
}
.section-news h2.section-news-header {
    text-transform: lowercase;
}
/*.section-news h2.section-news-header:first-line */
.section-news h2.section-news-header:first-letter{
  text-transform: uppercase;
}
    
@media (min-width: 768px){
    .section-news .row{
        position:relative;
    }
    .VerticalColumn {
        padding-top: 95px;
    }
    .section-news h2.section-news-header {
        position: absolute;
        right: calc(1.1rem);
        width: 40%;
    }


    .StickyBox{
        position: sticky;
        top: 100px;
        margin-bottom: 0;
        height: calc(100vh - 3rem); 
    }
    .StickyBox .px-box{
        height: calc(100% - 60px); 
    }
    .MoreLink-holder {
        display:block;
        text-align: right;
        margin-right:3.2rem;
    }
}

.section-news a{
    text-decoration: none!important;
}

@media (max-width: 767px){
    .bgBrown {
        padding: 0px 0 30px 0;
    }
}

/* FOOTER
=============================== */
footer a{
text-decoration: none;
}
.footerMenu{
    display: flex;
}
.footerMenu a,
.footerMenu button{
    font-size: 16px;  
    letter-spacing: var(--letterSpacing36);
    color: var(--black);
    text-decoration: none;
    font-family: var(--fontManrope);
    text-transform: uppercase;
}
.footerMenu a:hover,
.footerMenu a:focus,
.footerMenu button:hover{
    color: var(--brown)!important;
}

footer {
  font-size: 14px;   
}
.footer-logo img{
      width: 250px;
}
@media (max-width: 575px) {
    .footer-logo img{
          width: 220px
    }
    .footerMenu{
        display: block;
    }
}


.contact-details {
    line-height: 26px;
}

.contact-details a{
    text-decoration:none;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--brown);
}

.social a {
    display: inline-block;
    padding: 12px;
    margin:0 4px;
    transition: all 0.5s linear;
}
.social img{
  width: 24px;
  height: 24px;
}
.social a:hover {
  opacity: 0.6;
    transition: all 0.5s linear;
}
.copyright {
    font-size: 12px;
    /*text-align: left;*/
    color: var(--grey9E);
    line-height: 1.2;
    background: rgba(0,0,0,0.005);
}
.copyright a {
    text-decoration: none;
    color: var(--grey9E);
}
/*=========== To Top =========== */
.toTop {
  text-align: right; }
      
a.scrollup {
    background: url(../images/arrow-up.svg) no-repeat center center;
    bottom: 10px;
    display: none;
    position: fixed;
    right: 10px;
    text-indent: -9999px;
    width: 33px;
    height: 40px;
    text-decoration: none;
    padding: 0px 0px 0;
    z-index: 10000;
    transition: height 350ms ease-in-out, opacity 750ms ease-in-out;
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
 }
.scrollup.is-visible {
	display: inline;
  	opacity: 1;
}

/* SWIPER - GENERAL intro
=============================== */
/*.swiper {
    width: 100%;
    height: 100%;
}*/
.swiper-slide {
    text-align: center;
}
.swiper-button-next,
.swiper-button-prev {
    background: url(../images/right-arrow.svg) no-repeat center center !important;
    width:40px;
    height:40px;
    top:calc(100% - 20px);
}
.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 {
     right: calc(50% - 50px);
}
.swiper-button-prev {
     left: calc(50% - 50px);
}
.swiper-button-next:after,
.swiper-button-prev:after {
    display:none;  
}       
@media (min-width: 992px){
    .swiper-button-next,
    .swiper-button-prev {
        position:absolute;
        position: absolute;
        top: 40%;
        left: auto;
        right: calc(20% - 80px);
        width:80px;
        height:80px;
    }
    .swiper-button-prev {
        top:calc(40% - 100px);
    }
}
.swiper-pagination {
    bottom: 0px!important;
    line-height: 0;
}
/*.swiper-pagination-bullet {
    background-color: rgba(112, 112, 112, 0.6);
    height: 30px;
    width: 30px;
    opacity:.8;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color:transparent;
        border: 3px solid rgba(112, 112, 112, 0.6);
        opacity:0.6;
}*/
.swiper-pagination,
.swiper-pagination.small {
    bottom: 40px !important;
    color: white;
    background: rgba(0,0,0,0.005);
    font-size: 14px;
}
.swiper-pagination.small .swiper-pagination-bullet {
    height: 18px;
    width: 18px;
}
/*
@media (max-width: 1400px) {
.swiper-pagination {
    bottom: 35px!important;
    }
}
@media (max-width: 1200px) {
.swiper-pagination {
    bottom: 92px!important;
    }
}
@media (max-width: 992px) {
.swiper-pagination {
    bottom: 140px!important;
    }
}
*/



@media (max-width: 1199px) and (min-width: 992px){
    /*.swiper-pagination {
       bottom: 0px!important;
       text-align: left;
    }*/

}
@media (max-width: 991px) and (min-width: 768px){
    /*.swiper-pagination {
       bottom: 80px!important;
    }*/
}
@media (max-width: 767px){
    .swiper-pagination-bullet {
        height: 16px;
        width: 16px;
    }
    .swiper-pagination.small .swiper-pagination-bullet {
        height: 16px;
        width: 16px;
    }
   /* .swiper-pagination {
       bottom: 20px!important;
    }*/
}
/*
@media (max-width: 565px){
    .swiper-pagination {
       bottom: 40px!important;
    }
}
*/


/*Row Section Gallery Carousel
===================================*/
.gallerySectionSwiper.swiper {
    position: relative;
    width: 100%;
    padding-bottom: 80px;
    margin-bottom: 40px;
}
.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);
  }
/*.swiper-slide__content {
    height: 300px;
  }*/
.slider-Title{
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-bottom: 0px;
    font-size: 12px;
}
.gallerySectionSwiper.swiper .swiper-pagination{
    bottom: 100px !important;
}
.gallerySectionSwiper.swiper .swiper-pagination .paginationborder:before {
    content: '';
    position: relative;
    width: 40px;
    border-bottom: 1px solid var(--white);
    display: inline-block;
    vertical-align: bottom;
    margin: 0 10px;
}
@media (max-width: 767px){
    .gallerySectionSwiper .swiper-slide.swiper-slide-active {
        transform: scale(1)!important;
      }
}

/*.swiper.gallerySectionSwiper {
    cursor: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }*/
  
/*  .swiper.gallerySectionSwiper{
    cursor:none;
  }
  .swiper.gallerySectionSwiper .cursor {
    display: none;
    
  }
  .swiper.gallerySectionSwiper:hover .cursor {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 0px solid black;
    background-color: rgba(149, 120, 94, 0.8);
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    z-index: 400;
    padding: 40px 16px;
    font-size: 10px;
    color: #fff;
    letter-spacing: 1.3px;
    transform: translate(calc(-50% + 15px), -50%);
  }

  .swiper.gallerySectionSwiper .cursor img{
    width: 13px;
  }*/

.genSwiper.swiper {
    position: relative;
    width: 100%;
    /* height: 690px; */
    /*padding-bottom: 50px;*/
    margin-bottom: 0px;
}
.genSwiper.swiper .swiper-pagination, 
.swiper-pagination.small {
   /* bottom: 90px !important;*/
   bottom:calc(90px + 3rem) !important;
    color: white;
    font-size: 14px;
}
.genSwiper.swiper .slider-Title {
    position: absolute;
    bottom: -40px;
}

.genSwiper.swiper .swiper-button-next,
.genSwiper.swiper .swiper-button-prev {    
    background-color: rgba(149, 120, 94, 0.7)!important;
    background-image: url(../images/arrow-small.svg) !important;
    background-repeat: no-repeat;
    background-position: center center;
    width:40px;
    height:40px;
    top:calc(100% - 20px);
    border-radius: 50px 0px 0px 50px
}
.genSwiper.swiper .swiper-button-prev {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
@media (min-width: 992px){
    .genSwiper.swiper .swiper-button-next,
    .genSwiper.swiper .swiper-button-prev {
        position: absolute;
        top: 45%;
        right: 0px;
        width: 60px;
        height: 100px;
    }
    .genSwiper.swiper .swiper-button-prev {
        left: 0px;
    }
}
@media (max-width: 991px) and (min-width: 768px){
    .genSwiper.swiper .swiper-button-next, .genSwiper.swiper .swiper-button-prev {
        width: 50px;
        height: 100px;
    }
    .genSwiper.swiper .swiper-button-next,
    .genSwiper.swiper .swiper-button-prev {
        top: 45%;
        right: 0px;
    }
    .genSwiper.swiper .swiper-button-prev {
        left: 0px;
    }
}
@media (max-width: 767px){
    .genSwiper.swiper .swiper-button-next, .genSwiper.swiper .swiper-button-prev {
        width: 40px;
        height: 70px;
    }
    .genSwiper.swiper .swiper-button-next,
    .genSwiper.swiper .swiper-button-prev {
        top: 40%;
        right: 0px;
    }
    .genSwiper.swiper .swiper-button-prev {
        left: 0px;
    }
}


@media (max-width: 767px){
    .slider-Title {
        position:relative;
        bottom:unset;
    }
}
/*INNER PAGES
================================= */
.hotel-logo{
    max-width:200px;
}


/*BLOCKLISTS
================================= */
@media (min-width: 768px){
    .two-images {
        padding-bottom:10%;
        padding-right: 15%;
    }
    .two-images picture:nth-child(1){
        position:relative;
    }
    .two-images picture:nth-child(2){
        position:absolute;
        bottom:0;
        right:0px;
        width:50%;
        
    }
}
@media (max-width: 767px){
    .two-images picture:nth-child(2){
        display:none;
    }
}

/*MAP BLOCK*/
.fit-img img{
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}


/*OUR HOTELS
================================= */
/*
.ImageBody{
    position: relative;
    padding: 0 100px 100px 0px;
}
.ImageBodyImage{
    height: 80vh;
}

.ImageBody picture{
    position: absolute;
    bottom: 0px;
}
@media (max-width: 1200px){
    .ImageBodyImage {
        height: 60vh;
    }
}

@media (max-width: 1199px) and (min-width: 768px){
.ImageBody {
    position: relative;
    padding: 0 40px 40px 0px;
}
}

@media (max-width: 767px){
.ImageBody{
    padding: 0 0px 0px 0px;
}
.ImageBodyImage{
    display: none;
}
.ImageBody picture{
position: relative;
}
}
*/


.ListHeader{
    text-align: left;
    font-size: 30px;
}
.room-amenities-section ul,
ul.amenities{
    margin: 30px 0 0 0;
    padding: 0;
}
.room-amenities-section li,
ul.amenities li{
    text-align: left;
    display: block;
    list-style-type: none;
    margin-bottom: 10px;
    background: url(../images/check.jpg) no-repeat left 4px;
    padding-left: 34px;
}

@media (max-width: 767px){
    
.room-amenities-section ul,
ul.amenities {
    margin: 0px 0 0 0;
    padding: 0;
}
.room-amenities-section ul {
    margin-left:25%;
}
}
@media (max-width: 480px){
 .room-amenities-section ul {
    margin-left:15%;
}   
}


/*
.gallerySwiper .swiper-wrapper{
    padding-bottom:25px;
}
*/



/*  Filters Accommodation
====================================*/

.filters {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;

}
.filter {
  padding: 10px 20px;
  border-bottom: 1px solid var(--brown);
  letter-spacing: 1.5px;
}
.filter:hover {
  cursor: pointer;
}
.filter.active {
    font-weight:600;
}


.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 { /* 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);    
  }
}

/*.all-rooms .group:first-child{*/
.all-rooms .group{
    padding-top:60px;
}


/*Room type
==========================*/
.BorderBox{
    border-top:1px solid #e4e4e4;
    border-bottom:1px solid #e4e4e4;
    border-right:1px solid #e4e4e4;
}
.BorderBox:last-child{
    border-top:1px solid #e4e4e4;
    border-bottom:1px solid #e4e4e4;
    border-right:0px solid #e4e4e4;
}

.BorderBoxInner{
    border-right:1px solid #e4e4e4;
}
.BorderBoxInner:last-child{
    border-right:0px solid #e4e4e4;
}
.details{
    font-size: 14px;
}
.details span{
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 1.6px;
    padding: 10px;
    text-transform:uppercase;
}
@media (max-width: 991px) and (min-width: 768px){
    .details {
        font-size: 12px;
    }
    .details span {
        font-size: 16px;
        padding: 10px 0 0px 0;
    }
}

@media (max-width: 767px){
    .details {
        font-size: 14px;
        padding-bottom: 10px;
    }
    .details span {
        font-size: 18px;
        padding: 10px 0 0px 0;
        line-height: 22px;
    }
    .BorderBoxInner{
        border-right:0px solid #e4e4e4;
    }
}
@media (max-width: 575px){
    .BorderBox{
        border-top:1px solid #e4e4e4;
        border-bottom:0px solid #e4e4e4;
        border-right:0px solid #e4e4e4;
    }
}

 /*GALLERY PAGE
======================*/
.gallery-bg {
    position: absolute;
    z-index:0;
    height:100%;
    min-height:100vh;
    width:100%;
}

.gallery-bg img{
    height: 100% !important;
    width: 100%;
    object-fit: cover;
     
}
.gallery-contentOver-bg{
    position: relative;
    z-index: 1;
    padding-top:120px;
    padding-bottom:20px;
}
.gallery-contentOver-bg.color-white {
    color:var(--white)!important;
}
.gallery-contentOver-bg .color-black{
    color: var(--black2b)!important;
}
.gallery-contentOver-bg.color-white .sm-header {
    color:var(--white)!important;    
}

.img-title {
    font-size: 12px;
}
/*CONTACT PAGE
======================*/
.contact-page a {
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--brown);
}


/*FORMS
======================*/
.newsletterform .form-control {
    background: transparent;
    border-radius: 0px;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid var(--brown);
    color: var(--grey9E);
    font-weight: 300;
    letter-spacing: 0.32px;
}
.newsletterform ::-webkit-input-placeholder {
 	color: var(--grey9E);
}
.newsletterform :-moz-placeholder { 
   color: var(--grey9E);
}
.newsletterform ::-moz-placeholder {  
   color: var(--grey9E);
}
.newsletterform :-ms-input-placeholder { 
   color: var(--grey9E);
}
.newsletterform .form-agree label {
    font-size:14px;
}
.newsletterform .form-agree label a {
    color: var(--black);
    text-align:underline;
}
/*.newsletterform .MoreLink{
    margin-top: 10px;
}*/

/*Submit
=======================*/
.Submit {
    line-height: 2;
    position: relative;
    display: inline-block;
    transition: .3s linear;
    padding: 0px;
    letter-spacing: 1.3px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black2b);
    text-decoration: none;
    width: 50px;
    height: 50px;
}

.Submit::before {
    content: '';
    position: absolute;
    width: 50px;
    /* transform: scaleX(0); */
    height: 50px;
    padding: 17px;
    top: 0px;
    left: 0px;
    background: url(../images/arrow-right-brown.svg) no-repeat center center;
    border-radius: 50px;
    border: 1px solid  var(--brown);
    transition-duration: 0.5s;
}
.Submit:hover:before{
    background: url(../images/arrow-right.svg) no-repeat center center var(--brown);
    transition-duration: 0.5s;
  }
.Submit:hover{
    color: var(--brown)!important;   
}
@media (max-width: 767px){
    .newsletterform {
        max-width:300px;
        margin:auto;
    }
}


footer .h3{
    display: inline-block;
    /*font-weight: 600;*/
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 1.9px;
    padding: 0px 0 10px 0;
}

/* FORMS
====================================== */
.form-placement {
    font-size: 14px;
    padding: 60px 70px;
    font-weight: 400;  
}
@media (max-width: 767px){
    .form-placement {
        padding: 20px;
    }    
}
.contactform {
    font-size:16px;
}
.contactform .form-floating>label {
    left:10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
}
.contactform .form-control {
    border-radius: 0px;
    border:0;
    border-bottom: 1px solid rgba(193, 192, 192, 1);
    outline: none;
    color: var(--black);
    padding: 20px;
    font-size: 16px;
}
::-webkit-input-placeholder {
 	color: var(--black);
}
:-moz-placeholder { 
    color: var(--black);
}
::-moz-placeholder {  
    color: var(--black);
}
:-ms-input-placeholder { 
    color: var(--black);
}
.contactform select.form-control {
    color: var(--black);
}
.contactform textarea.form-control {
  height: auto;
}
.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;
    border-bottom: 0px solid var(--brown);
}
.form-agree a:hover {
    text-decoration:none;
}
.grecaptcha-badge {
	display: none !important;
}

input[type="file"] {
/*    padding:6px;*/

}
.attachment-field{
    min-width: 140px;
    background: url(/images/upload-icon.svg) no-repeat top left;
    background-size: 20px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.4px;
    padding-bottom: 8px;
    padding-left: 30px;
}
.contactform .button{
    font-size:16px;
}

.label-form {
    font-weight:bold;
}
.note-sm-italic {
    font-size:14px;
    font-style: italic;
}

/*MAP
===============================
  .ContactDetailsBox{
    min-height: 340px;
    padding: 20px;
    background: #F4F3F3;
    position:relative;
	z-index:1;
  }
  .ContactDetailsBox img{
    width: 70px;
    text-align: center;
    margin: 10px auto;
}
@media (max-width: 991px) and (min-width: 768px){
    .ContactDetailsBox img{
        width: 50px;
    }
}
@media (max-width: 767px){
    .ContactDetailsBox {
        min-height: auto;
        padding: 10px 10px;
        font-size:16px;
    }
    .ContactDetailsBox img {
        width: 30px;
        margin: 0px auto;
    }
}
.map_link {
	display:block;
	z-index: 0;
    position: relative;
}

.map_link.inner {
	background:url(/images/map.jpg) no-repeat center center;	
	background-size: cover;
	min-height:550px;
	width:100%;
	margin-top:-150px;

}
@media screen and (max-width: 992px) {
    .map_link.inner {
        min-height:450px;
    }   
}
@media screen and (max-width: 767px) {
    .map_link.inner {
        min-height:350px;
        margin-bottom:30px;
    }   
}*/


/* CUSTOM CURSOR
================================ */
.sliderContainer{
    overflow:hidden;
}
.cursor {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 5;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.cursor-dot {
    position: relative;
    display: flex;
    width: 6.25rem;
    height: 6.25rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(149, 120, 94, .8);
    opacity: 0;
    transition: height 300ms ease, width 300ms ease, opacity 300ms ease;
}
.text-wrapper {
    overflow: hidden;
    height: 1rem;
}
.cursor-text {
    transition: transform 300ms ease;
    font-size: 1rem;
    line-height: 1;
    color:#fff;
    font-size:12px;
    font-weight:300;
    letter-spacing:2px;
}
.cursor-dot-accent {
    position: absolute;
    transition: opacity 300ms ease;
}

.cursor-dot-accent.left {
    left:5px;
    /*background: url(../images/arrow-left.svg) no-repeat;*/
    background: url(../images/arrow-right.svg) no-repeat;
    transform: scaleX(-1);
    width: 15px;
    height: 13px;
}
.cursor-dot-accent.right {
    width: 15px;
    height: 13px;
    right:5px;
    background: url(../images/arrow-right.svg) no-repeat;
}
.no-click{
    pointer-events: none;
    touch-action: none;
}
.can-click{
    pointer-events: auto;
    touch-action: auto;
}
.cursor-dot.show{
 	opacity: 1;
}
.cursor-dot.active{
  	width: 4rem;
    height: 4rem;
}
.cursor-dot.active .cursor-text{
  	transform: translateY(-100%)
}
.cursor-dot.active .cursor-dot-accent{
  	opacity: 1;
}


/*fslightbox*/
.fslightbox-container {
    background: linear-gradient(rgb(255 255 255 / 90%),#fff 1810%)!important; 
}
.fslightbox-toolbar {
    background:none!important;
}
.fslightbox-toolbar .fslightbox-svg-path,
.fslightbox-toolbar .fslightbox-svg-path:hover{
    fill: #000!important;
}
.fslightbox-toolbar svg{
    width:38px!important;
}
.fslightbox-slide-btn {
    background: rgba(149, 120, 94,.88)!important;
}
.fslightbox-svg-path {
    fill:#fff!important;
}
.fslightbox-slide-btn{
    border-radius: 50%!important;
}
@media screen and (min-width: 992px) {
    .fslightbox-slide-btn svg{
        width: 30px!important;
    }
    .fslightbox-slide-btn{
        padding: 22px!important;
        border-radius: 50%!important;
    }
}
    
    
ul.TextListCenter{
    margin: 30px 0 0 0;
    padding: 0;
}
ul.TextListCenter li{
    text-align: center;
    display: block;
    list-style-type: none;
    margin-bottom: 10px;
    
}

ul.TextListCenter li:before{
    position: absolute;
    content: "";
    background: url(../images/check.jpg) no-repeat 2px 5px;
    margin-left: -30px;
    width: 10px;
    height: 20px;
    padding-left: 23px;
}
    
.sitemap {
    text-transform:uppercase;
}    
.sitemap a{
    text-decoration:none;
}
.sitemap a:hover{
    text-decoration:underline;
}

   /* filter: brightness(0) invert(1); */
  
  
/** TABS CONTENT 
=======================*/   
/*
.tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}*/
.tabs label {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    display: block;
    padding: 1rem 1rem;
    margin-right: 0.2rem;
    cursor: pointer;
    background: var(--greyF4);
    font-weight: bold;
    -webkit-transition: background ease 0.2s;
    transition: background ease 0.2s;
    color: var(--black2b);
    margin-bottom: 0;
    border: var(--greyF4) solid 1px;
    font-weight:600;
}
.tabs > .tab {
    -webkit-box-ordinal-group: 100;
    -webkit-order: 99;
    -ms-flex-order: 99;
    order: 99;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 1rem;
    /*background: #f4f4f4;*/
    border: var(--greyF4) solid 1px;
    margin-top: -1px;
}
.tabs > input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.tabs > input[type="radio"]:checked + label { 
  /*background:#ebf0ed;*/
  background:transparent;
  border: var(--greyF4) solid 1px;
    position: relative;
    z-index: 0;
    color: var(--brown);
    border-bottom: 1px solid #fff;
}
.tabs > input[type="radio"]:checked + label + .tab { display: block; }

@media (max-width: 767px) {
    .tabs .tab,  .tabs label {
        -webkit-box-ordinal-group: NaN;
        -webkit-order: initial;
        -ms-flex-order: initial;
        order: initial;
    }
    .tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem;
    }
}
 
.tabs .tab ul{
    margin: 0px 0 0 20px;
    padding: 0;
}  
.tabs .tab .text img{
    max-width: 100%;
    height: auto;
}  
@media (min-width: 1480px) {
   .tabs .tab .text img{
    max-width: 1300px;
   }
}
@media (min-width: 1680px) {
   .tabs .tab .text img{
    max-width: 1580px;
   }
}
   
  
/** START OF MODAL 
=======================*/
.modal {
  z-index: 20000;
}
  .modal .modal-dialog {
    max-width:640px;
  }
.modal .modal-content {
  border-radius: 0px;
}
.modal .btn-close {
  position: absolute;
  width: 2em;
  height: 2em;
  right: 0px;
  top: 0px;
  opacity: .8;
  border-radius: 0px;
}
@media screen and (max-width: 767px) {
    .modal .btn-close {
        filter: brightness(1) invert(1);
    }
  .modal .modal-body .imgCol {
    height: 300px !important;
  }
    .modal .modal-dialog {
        max-width:400px;
        margin-left: auto;
        margin-right: auto;
    }
} 
@media screen and (max-width: 575px) {
    .modal .modal-dialog {
        max-width:90%;
    }
}
#newsletterFormModal  .modal-dialog {
    min-height:600px;
}

#newsletterFormModal  iframe {
    height:900px;
}

/*ROOM STICKER
====================*/
.px-ForSticker {
    padding-left:120px;
    padding-right:120px;
}

.room-sticker {
    position: absolute;
    right: 0px;
    top: 0px;
   /* background: url(/images/sticker.svg) no-repeat center center;*/
    width: 115px;
    height: 115px;
    padding: 15px;
    font-size: 1rem;
    font-weight: 100;
    color:#fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    word-spacing: 100vw;
    line-height: 1.1;
    justify-content: center;
    z-index:3;
}
.room-sticker:before {
    position: absolute;
    right: 0px;
    top: 0px;  
    width: 100%;
    height:  100%;
    content:"";  
    background: url(/images/sticker-circle.svg) no-repeat center center;
    z-index:-1;
}
.room-sticker:after {
    position: absolute;
    right: 0px;
    top: 0px;
    content:"";   
    background: url(/images/sticker-lines.svg) no-repeat center center;
    width: 100%;
    height:  100%;
    animation: rotation 8s infinite linear;
}

@media (min-width: 992px) and (max-width: 1479px) {
   .px-ForSticker {
        padding-left:100px;
        padding-right:100px;
    } 
    .room-sticker {
        width: 100px;
        height: 100px;
        font-size: .9rem;
    }
}
@media (max-width: 991px) {
    .px-ForSticker {
        padding-left:0px;
        padding-right:0px;
    } 
    .room-sticker {
        width: 100px;
        height: 100px;
        font-size: .9rem;
        top: -127px;
        color:#8b715b;
    }
    .room-sticker:before,
    .room-sticker:after{
        filter: brightness(0) invert(1);
    }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/*For room page*/
.room-sticker.revert-header  {
    position:relative;
    color:#8b715b;
    text-transform:none;
    margin: auto;
    letter-spacing: 0;
}
.room-sticker.revert-header:before,
.room-sticker.revert-header:after{
    filter: brightness(0) invert(1);
}
@media (max-width: 991px) {
    .room-sticker.revert-header {
        top: 0;
    }
}

.slh img{
    width:100px;

}
.hidden-area{
    display:none;
}
.hidden-area.visible-area{
    display:block;
}

/*RESPONSIVE TABLE
================================= */
.responsive-table {
  border: 0;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;    
}
.responsive-table tr > * {
    padding: .35em;
    border-bottom: 1px solid #ddd;
}
.responsive-table thead tr > *,
.responsive-table tr:nth-of-type(even)>* {
    background-color: #f8f8f8;
}
@media (max-width: 767px) {
    .responsive-table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    .responsive-table td.mob-center{
        text-align:center;
        font-weight: bold;
    }
    .responsive-table tr {
        border: 1px solid #ddd;
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: 30px;
    }
   .responsive-table td {
        display: block;
        text-align: right;
    }
    .responsive-table td::before {
        /* aria-label has no advantage, it won't be read inside a table
        content: attr(aria-label);
        */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }
    .responsive-table td:last-child {
        border-bottom: 0;
    }
}
  
.simpleList {
    margin-left: 40px;
}

.capTable {
    border: 1px solid;
    margin: 0 auto;
}

.capTable th,
.capTable td {
    padding: 20px 0;
    border: 1px solid;
    width: 200px;
}