:root {
    --fontYsabeau: "Ysabeau Infant", sans-serif;
    --fontZen: 'Zen Maru Gothic', serif;
    --black: #000;
    --white: #fff;
    --grey: #404243;
    --primary-color: #6d8d23; /* Green*/
    --primary-color-hover: #aebf83; /*Green Light*/
    --secondary-color: #9fcbed; /*light blue*/
    --dark :#5e751f; /* Green dark*/

    --bdBackground: #f1f4e9; /*lighter green*/
    --transition3s: .3s linear;
}

.secondary-bg {
    background: var(--primary-color);
    color: var(--white);
}
.imgBg-bg {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
}
.imgBg-bg:before {
   background:url(/images/home-bg.jpg) no-repeat center center;
   content:"";
   position:absolute;
   top:0;
   left:0;
   right:0;
   bottom:0;
   z-index:1;
   opacity:.1;
}
@media (max-width: 991px) {
    .imgBg-bg:before {
        background:url(/images/home-bg-sm.jpg) no-repeat center center;
    }
}
.z-index {
    z-index:2;
    position:relative;
}
   
.beige-bg {
    background: var(--bdBackground);
}
.white-color {
  color: var(--white)!important;
} 


html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: auto;
}
body {
    color: var(--black);
    font-family: var(--fontYsabeau);
    text-align: left;
    font-size: 22px;
    line-height:1.4;
    font-weight: 400; 
}
body.bg-icon{
    background: url(/images/logo-icon-opacity.svg) no-repeat;
    background-position: right -30px top 30px;
    background-size: 250px;
}

button {
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer; 
}
button:focus,
.btn.focus, 
.btn:focus{
    outline:0;
    box-shadow: none;
}
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease 0s; 
  /*  word-break:break-word;*/
    
}
a:hover, a:focus {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

.fit-img{
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

/*HEADINGS
===========================*/
h1, h2, h3, h4,
.h1, .h2, .h3, .h4{
    font-family: var(--fontZen);
    color: var(--primary-color);
    font-weight: 400;
    margin: 0px 0 30px 0;
    text-transform: uppercase;
    line-height:1;
}
h1, .h1{
    font-size: 46px;
}
h2, .h2{
    font-size: 40px;
}
h3, .h3,
h4{
    font-size: 34px;
}
@media (max-width: 991px) {
    h1, .h1{
        font-size: 34px;
    }
    h2, .h2{
        font-size: 30px;
    }
    h3, .h3,
    h4{
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    h1, h2, h3, h4,
    .h1, .h2, .h3, .h4{
        margin: 0px 0 20px 0;
    }
    h1, .h1{
        font-size: 28px;
    }
    h2, .h2{
        font-size: 26px;
    }
    h3, .h3,
    h4{
        font-size: 24px;
    }
}
.header-container span{
    display: block;
    font-size: 20px;
    letter-spacing: 2px; 
    padding-top: 10px;
    margin-bottom: 5px;
    font-family: var(--fontZen);
    background:rgba(0, 0, 0, .005 );
}

@media (max-width: 767px) {
    .header-container span{
        font-size: 18px;
    }
}

.header-container.icon span{
    position: relative;
    color: var(--black);
    font-weight: 400;
}
.header-container.icon span:before{
  content: "";
  height: 1px;
  position: absolute;
  left:0px;
  top: -15px;
  width: 25px;
  height: 25px;
  background: url("/images/logo-icon.svg") no-repeat;
  background-size: 25px;    
}
.header-container.icon.white-color {
    background:rgba(0, 0, 0, .005 );
}


.header-container.icon.white-color span{
    color: var(--white);
}
.header-container.icon.white-color span:before{
 /*   filter: brightness(0) invert(1);*/
}
@media (min-width: 992px) {
    .text-lg-end .header-container.icon span:before{
          right: 0;
          left:unset;
    }
}
/*Button
=============================*/
.btn {
    font-family: var(--fontZen);
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    transition: border 0.3s ease;
    line-height: 1.2;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    color: var(--white);
    transition: var(--transition3s);
    position:relative;
    background:rgba(0, 0, 0, .005);
}
.btn:before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
    background-color: var(--primary-color);
}
.btn.white {
    color: var(--primary-color); 
    border: 1px solid var(--primary-color);    
}
.btn.white:not(:hover):before {
     background-color: var(--white);
}
.header .btn {
    background-color: transparent; 
    color: var(--primary-color);
    border: 1px solid var(--primary-color-hover); 
}
.header .btn:before {
    display:none;
}
.scrolled .header .btn,
.no-slider .header .btn {
    background-color: var(--primary-color);
    color: var(--white);
}


.btn:hover, 
.btn:focus, 
.btn:active {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color); 
}
.secondary-bg .btn:hover{
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

@media screen and (max-width: 991px) {
  .btn {
    padding: 10px;
    font-size: 15px;
  }
}
.section-padding {
    padding: 80px 0px;
}
.marginTop {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
    .section-padding {
        padding: 60px 0px;
    }
    .marginTop {
        margin-top: 60px;
    }
}

/*HEADER
============================ */
.header {
    transition: top 0.5s ease-in-out;
    font-size: 16px;
    font-weight:500;
    color: var(--primary-color);
}
body:not(.no-slider) .header:not(.headerBg):before {
    content:"";
    position: absolute;
    z-index: -1;
    top: 0%;
    bottom: 0%;
    height: 100%;
    width: 100%;
  background:linear-gradient(
    to bottom,
    hsla(0, 0%, 0%, 0.68) 0%,
    hsla(0, 0%, 0%, 0.671) 8.1%,
    hsla(0, 0%, 0%, 0.647) 15.5%,
    hsla(0, 0%, 0%, 0.609) 22.5%,
    hsla(0, 0%, 0%, 0.561) 29%,
    hsla(0, 0%, 0%, 0.504) 35.3%,
    hsla(0, 0%, 0%, 0.441) 41.2%,
    hsla(0, 0%, 0%, 0.374) 47.1%,
    hsla(0, 0%, 0%, 0.306) 52.9%,
    hsla(0, 0%, 0%, 0.239) 58.8%,
    hsla(0, 0%, 0%, 0.176) 64.7%,
    hsla(0, 0%, 0%, 0.119) 71%,
    hsla(0, 0%, 0%, 0.071) 77.5%,
    hsla(0, 0%, 0%, 0.033) 84.5%,
    hsla(0, 0%, 0%, 0.009) 91.9%,
    hsla(0, 0%, 0%, 0) 100%
  );

}

.header.headerBg,
.no-slider header{
      background: rgba(255, 255, 255, 0.95);   
}

/*body:not(.no-slider) .header:not(.headerBg) .logo img, */
body:not(.no-slider) .header:not(.headerBg) .call img{
        filter: brightness(0) invert(1);
}
body:not(.no-slider) .header:not(.headerBg),
body:not(.no-slider) .header:not(.headerBg) .btn,
body:not(.no-slider) .header:not(.headerBg) .call a,
body:not(.no-slider) .header:not(.headerBg) .languagesDrop a{
    color:var(--white);
}
body:not(.no-slider) .header:not(.headerBg) .menu__btn > span, 
body:not(.no-slider) .header:not(.headerBg) .menu__btn > span::before, 
body:not(.no-slider) .header:not(.headerBg) .menu__btn > span::after {
   background-color: var(--white); 
}

body:not(.no-slider) .header:not(.headerBg) .languagesDrop {
    border-left: 1px solid var(--white);
}



.call{
    margin-left: 20px;
}
.call a{
    color: var(--primary-color);
    text-decoration: none;
    transition: all .3s linear;
}
.call img{
    width: 20px;
    margin-right:5px;
    margin-top:auto;
   /* filter: brightness(0) invert(1);*/
}  
@media (max-width: 1199px) {
    .call span{
        display:none;
    }
}
@media (max-width: 575px) {
    .call{
        margin-right: 10px;
        margin-left: 0px;
    }
}
.languagesDrop {
  margin-right: 1px;
  color:var(--primary-color);
  margin-left: 10px;
  border-left: 1px solid var(--primary-color);
  font-weight:500;
}
.languagesDrop .dropdown-toggle{
    padding: 0px 10px 0px 10px;
    border-radius: 0px;
    color:var(--primary-color);
    font-size: 16px;
    display:inline-block;
}
.languagesDrop a {
  color: #3b4b31;
  text-decoration: none;
}
.languagesDrop .dropdown-item {
    width: 40px;
    display: block;
    padding: 0px;
    clear: both;
    font-weight: 400;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background: 0 0;
    border: 0;
}
.languagesDrop .dropdown-menu {
  min-width: 60px;
  border-radius: 0;
  top: -30px;
  background-color: transparent;
  border: 0;
}
.logo img{
    height: 100px;
    transition:all .5s ease;
}
.header_nav.headerBg .logo img{
    height:80px;
}
@media (max-width: 991px){
    .header_nav.headerBg .logo img{
        height:70px;
    }
}
@media (max-width: 767px){
    
    .logo img{
        height: 60px;
    }
    .header_nav.headerBg .logo img{
        height:50px;
    }
    .logo img{
        
    }
}
@media (max-width: 480px){
   .header .btn{
        font-size: 14px;
        padding:7px 8px 8px;
   } 
}
/*SLIDER
=============================== */
.noTopMedia,
.noSlider-holder{
    height: 132px;
}

@media (max-width: 767px){
    .noTopMedia,
    .noSlider-holder{
        height: 80px;
    }
}

@media (min-width: 768px) {
    .topMedia {
      height: 100vh;
      position: relative; 
    }
    .topMediaInner {
        height: -moz-calc(100vh - 140px);
        height: -webkit-calc(100vh - 140px);
        height: calc(100vh - 140px);
        position: relative;
    }
    .topMedia img,
    .topMediaInner img {
        height: 100% !important;
        width: 100%;
      object-fit: cover;
    }
    #bigCarousel.carousel,
	#bigCarousel .carousel-inner,
	#bigCarousel .carousel-item {
	  height: inherit;
	}
}
	
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 50px;
    top: 0;
    bottom: 0;
}
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  visibility: visible; 
}
.carousel .carousel-control-prev {
  left: 0px;
}
.carousel .carousel-control-next {
    right: 0;
}
@media (max-width: 767px) {
  .carousel .carousel-control-prev {
    left: 5px;
  }
  .carousel .carousel-control-next {
    right: 5px;
  }
}
.carousel-control-next-icon, 
.carousel-control-prev-icon {
   background-image:none;
    background:url(../images/arrow.svg) no-repeat center center;
    background-size:100%;
    width: 50px;
    height: 50px;
}
@media (max-width: 991px) {
    .carousel-control-next-icon, 
    .carousel-control-prev-icon {
        width:20px;
        height:40px;
    }    
}
.carousel-control-prev-icon {
   -moz-transform:rotate(180deg);  
  -webkit-transform:rotate(180deg);  
  -o-transform:rotate(180deg);  
  -ms-transform:rotate(180deg);    
}

@media (max-width: 767px) {
    .carousel-control-next-icon, .carousel-control-prev-icon {
        visibility: hidden;
    }
}

.contentOverSlider {
    position: absolute;
    z-index: 9;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:100%;
    font-family: var(--fontYsabeau);
    font-weight: 200;
    color: var(--white);
    font-size: 50px;
    line-height:1;
    text-align: center;
    background:rgba(0,0,0,0.001);
    text-transform: uppercase;
}
@media (max-width: 1199px) {
    .contentOverSlider {
        font-size: 48px;
    }
}
@media (max-width: 991px){
    .contentOverSlider {
        font-size: 48px;
    }
}
@media (max-width: 575px) {
    .contentOverSlider {
        font-size: 30px;
    }
}



/* Video
=================================== */
.mainVideoSlider {
        position: relative;
        height: 100vh;
    }
.mainVideoSlider video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 991px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 450px;
    }
}
@media screen and (max-width: 767px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 400px;
    }
}
@media screen and (max-width: 480px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 350px;
    }
}
  /*     
.plyr__video-embed iframe {
	top: -20%!important;
	height: 140%!important;
}*/        


@media screen and (min-width: 1480px) {
    .YTvideo-placement:not(.square) {
        height:100vh;
        overflow:hidden;
    }
    .YTvideo-placement:not(.square) .plyr__video-embed iframe {
    	top: -60px!important;
    	height: 100%!important;
    }
}

.YTvideo-placement .plyr__volume input[type=range],
.YTvideo-placement .plyr__controls__item.plyr__menu,
.YTvideo-placement .plyr--fullscreen-enabled [data-plyr=fullscreen]{
    display:none!important;
}
.YTvideo-placement .plyr--video .plyr__controls {
    max-width: 740px;
    margin: auto;
    bottom: 140px;
    background:transparent!important;
}
@media (max-width: 1199px){   
  .YTvideo-placement .plyr--video .plyr__controls {
      max-width: 90%;
    bottom: 40px;
  }
}
    
@media (max-width:767px){   
    .YTvideo-placement .plyr--video .plyr__controls {
        bottom: 20px;
    }  
}
    
.YTvideo-placement .plyr--video.plyr--hide-controls .plyr__controls {
    opacity: 1!important; 
    pointer-events: none; 
    transform: none!important;
}
/*
@media (max-width:575px){   
    .YTvideo-placement {
        margin-top: 56px;
    }
}     */
.YTvideo-placement.square .plyr--video .plyr__controls {
     bottom: 20px!important;
}        
.ytp-hide-controls:not(.ytp-mweb-player) .ytp-watermark {
    display:none!important;
}
/* BOOKING
======================*/

.bookingForm {
    font-size:16px;
    position: absolute;
    bottom: 0%;
    z-index: 90;
    left: 0px;
    right: 0px;
    padding: 10px 0px;
    background: #fff;
    background: rgba(255, 255, 255, 0.8);
}
.bookingForm .form-group {
    padding: 5px 15px;
    border: 1px solid #595959; 
    color: #aa7d4b;
}
.bookingForm .form-group label {
    font-weight: 600;
    color:#595959;
        display: block;
    line-height: normal;
}
.bookingForm .form-group input, 
.bookingForm  .form-group select {
    font-weight: 300;
    color: #595959;
    padding: 5px 15px 0px 0px;
    margin: 0;
    width: 100%;
    border: 0;
    font-family: "Open Sans", sans-serif;
    background-color: transparent; 
   height:30px;
}
.bookingForm  .form-group select option{
    font-weight: 300;
}
.bookingForm form .form-group .form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

.bookingForm button[type=submit] {
    margin: 0;
    width:100%;
    display: block;
    height: 100%;

}


/* MAIN 
======================= */
.main-content-intro {
  background: url(/images/logo-icon-opacity.svg) no-repeat;
  background-position: right -30px top 15px;
  background-size: 180px;
  padding-top: 130px !important;
}

.main-content.bg-icon-left {
  background: url(/images/logo-icon-opacity.svg) no-repeat;
  background-position: left -30px top 15px;
  background-size: 180px;
  padding-top: 130px !important;
}
@media (max-width: 767px) {
   .main-content-intro,
   .main-content.bg-icon-left{
      background-size: 140px; 
       padding-top: 90px !important;
   }
}

/*==== BG OVER Images ===*/
.img-gradient {
  position: relative;
}
.img-gradient picture{
    display:block;
    position: relative;
    width: 100%;
}

.img-gradient picture::before,
.RowBgImg:before
{
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}
.offers-listing .img-gradient picture::before {
    background-color: rgba(0, 0, 0, 0.36);
    opacity: 0;
    transition: var(--transition3s);
}
.offers-listing a:hover .img-gradient picture::before {
  opacity: 1;
}

.offers-listing a.offerBox {
  color: var(--black);
}

/*==== Content Section: img + text ===*/
.RowBgImg {
  display: inline-block;
  vertical-align: middle;
}
.RowBgImg {
    position:relative;
/*	min-height:80vh;*/
}
/*

@media (max-width: 767px) {
	.RowBgImg {
		min-height:50vh;
	}	
}*/
.RowBgImg .thumb-OverBg {
  /*width: 500px;*/
  position: absolute;
  z-index: 2;
  top: 0;
    bottom: 0;
}
/*
.RowBgImg .thumb-OverBg img {
    object-fit: cover;
    height: 400px;
}*/

.RowBgImg .thumb-OverBg {
  left: -100px;
}
.RowBgImg.revert .thumb-OverBg {
    left:unset;
  right: -100px;
}
/*
@media screen and (max-width: 1479px) {
  .RowBgImg .thumb-OverBg  {
    width: 400px;
  }
}*/
@media screen and (max-width:991px) {
    .RowBgImg .thumb-OverBg  {
        display: none!important;
    }
}


/*ACCOM SECTION
=======================*/
.roomSliderBoxes .roomBox{
   position: relative;   
}
.roomSlider.carousel,
.roomSlider .carousel-inner,
.roomSlider .carousel-item {
  width: 100%;
  position: relative;
}
.roomSliderBoxes .roomBox::before,
.roomSlider .carousel-item::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}
.roomSlider .carousel-indicators {
  position: absolute;
  right: -30px;
  bottom: 50%;
  left: unset;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  list-style: none;
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
    .roomSlider .carousel-indicators {
          right: -50px;
    }
}

.roomSlider .textBlock,
.roomSliderBoxes .roomBox .textBlock{
  position: absolute;
  z-index: 10;
  left: 8%;
  top: 50%;
  color: var(--white);
  transform: translate(-5%, -50%);
}
@media screen and (max-width: 767px) {
    .roomSlider .textBlock,
    .roomSliderBoxes .roomBox .textBlock{  
        left: 15px;
        transform: translate(0, -50%);
        width: calc(100% - 80px) !important;
    }
}
.room-details strong{
    font-weight:400;
}
@media screen and (max-width: 991px) {
    .roomSliderBoxes{
        gap:30px;
    }
}
@media screen and (max-width: 1199px) {
    .header-container h2 {
        font-size: 32px;
    }
}

/*REASONS
================================= */
.whyBook {
    line-height:1.2;
}
.whyBook .num{
  font-family: var(--fontZen);
  font-size: 72px;
  color: var(--white);
}
@media (max-width:991px){
     .whyBook .num{
        font-size: 48px;
        line-height: 1;
    }
}
@media (max-width:575px){
     .whyBook .num{
        font-size: 32px;
    }
}
.whyBook-List li {
  position: relative;
  padding: 6px 0;
} 
/* ====================================== */

.box-link-above {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index:2;
}
.listing-box {
    position: relative;
    transition: var(--transition3s);
  /*  min-height:600px;*/
}
/*
@media (max-width:767px){
 .listing-box {
     min-height:500px;
 }
}
@media (max-width:575px){
 .listing-box {
     min-height:420px;
 }
}*/
.listing-box:hover {
  filter: drop-shadow(2px 4px 6px var(--secondary-color));
}

.listing-box::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}
.listing-box picture {
      z-index:1;
}
.listing-box .text-over {
    position:absolute;
    z-index:3;
}
@media (min-width:1680px){
    .listing-box .text-over .header-container{
        width:50%;
    }
}
.listing-box .btn{
    position:relative;
    z-index:4;
} 


/* INSTAGRAM - REVIEWS
========================= */
#reviewsCarousel {
    padding-bottom:30px;
}
#reviewsCarousel .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin:0;
}
#reviewsCarousel .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: var(--black);
}
.rName {
        font-style: italic;
} 
.Instagram h2 {
    word-wrap: break-word;
}




/* FOOTER 
========================= */
.footer-section h3 {
  color: var(--primary-color);
}
.footer-section h3 span {
  font-size: 24px;
    display: block;
    padding-bottom: 5px;
}
@media (max-width: 991px) {
    .footer-section h3 span {
        font-size: 18px;
    }
}
.social img{
    height:26px;
    margin:0 8px;
 /*   filter: brightness(0) invert(1);*/
}
@media (max-width: 767px) {
    .social{
        margin-top:10px;
    }
}
.contact-details a{
    color: var(--primary-color);
    text-decoration:underline;
        background:rgba(0, 0, 0, .005);
}
.contact-details a:hover{
    color: var(--grey);
    text-decoration:none;
}
.mhte {
    font-size:18px;
}
footer{
    color: var(--white);
    
}

footer .h3 {
    color: var(--white);
    font-family: var(--fontYsabeau);
    font-size: 22px;
    font-weight: 200;
    margin-bottom:20px;
}
footer .map {
  height: 420px;
}
@media (max-width: 991px) {
     footer .map {
      height: 250px;
    }   
}
@media (max-width: 575px) {
    footer .map {
      height: 150px;
    }  
}
.footermenu > ul {
  display: block;
  list-style: none;
  line-height: 1.4;
  font-weight:300;
}



@media (min-width: 768px) {
    .footermenu > ul {
        columns: 3;
        column-gap: 20px;
    }
    .footermenu ul li {
        margin: 0 0px 20px 0px;
    }
}
@media screen and (min-width: 992px) {
    .footermenu > ul {
        columns: 2;
    }
}
@media screen and (min-width: 1400px) {
    .footermenu > ul {
        columns: 3;
    }
}

.footermenu li {
    break-inside: avoid;
}
.footermenu .submenu {
    display: inline-block;
}
@media (max-width: 767px) {
    .footermenu ul li{
        display:inline-block;
        padding:2px 15px;
        text-align:center;
    }
    .footermenu .submenu {
        display: none;
    }   
}
.footermenu ul li a{
    color: var(--white);
    transition: var(--transition3s);
    font-size: 22px;
    text-decoration: none;
    padding: 0;
        background:rgba(0, 0, 0, .005);
}
@media (min-width: 992px) and (max-width: 1199px) {
    .footermenu ul li a{
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .footermenu ul li {
        display: block;
        padding: 2px 10px;
    }    
    .footermenu ul li a{
         font-size: 18px;
    }
}
.footermenu ul li a:hover,
.footermenu ul li a.active{
    color: var(--primary-color-hover);
    transition: ease .5s;
}
.footermenu ul li > ul {
  margin-top: 0px;
  list-style: none;
}
.footermenu ul li > ul li {
  margin-bottom: 5px;
}

.footermenu ul li > ul li a {
  font-size: 18px;
  padding: 0px 10px;
  display:inline-block;
}

.footer-logo img{
    height:100px;
    /*filter: brightness(0) invert(1);
    filter: brightness(80%);*/
}

@media (max-width: 767px) {
    .footer-logo,
    .Copyright {
        text-align:center;
    }
    .footer-logo img{
        height: 80px;
           margin-bottom:20px;
    }
}
.Copyright{
    font-size:14px;
    color: var(--white);
          background:rgba(0, 0, 0, .005);
}
.Copyright a{
  color: var(--white);
  transition: var(--transition3s);

}
.Copyright a:hover {
  color: var(--primary-color);
}

/*Newsletter
============================= */
.newsletterform  {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 575px) {
  .newsletterform {
    width: 100%;
  }
}
.newsletter .form-group {
    margin-bottom: 0px; 
}
.newsletter input.form-control,
.newsletter .submitBtn {
    border-radius: 0px; 
    outline: none;    
      box-shadow: none;
}
.newsletter input.form-control {
  color: var(--grey);
  border-radius: 0;
  font-size: 18px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--grey);
  transition: var(--transition3s);
}
.newsletter input:focus {
    border-bottom: 1px solid var(--white) !important;
}
@media (max-width: 575px) {
    .newsletter input.form-control {
        margin-bottom:10px;
    }
}


.field-validation-valid {
  display: none;
  color: red; }
.field-validation-error {
  display: block;
  color: red;
  font-size: 12px;
  text-align: left; }
  .field-validation-error:empty {
	display: none;
}  
.note {
  font-size: 12px; }
label span {
  color: red; }
label.required:after {
  content: " *";
  color: #FF0000; }
  
.asterisk {
	text-align:left;
	font-size:13px;
}
.form-agree label {
	display:inline;
    font-size: 18px;
}
.form-agree .field-validation-error {
	display: inline-block;
}
.form-agree a {
    text-decoration:underline;
    color: #3b4b31;
}
.form-agree a:hover {
    text-decoration:none;
}
.grecaptcha-badge {
  display: none !important; }


/* FORMS
====================================== */
.contactform {
	font-size:16px;
}
.contactform .form-control {
    color: var(--grey);
    border-radius: 0;
    font-size: 16px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--grey);
    transition: var(--transition3s);
        border-radius: 0px; 
    outline: none;    
      box-shadow: none;
}
.contactform .form-control:focus {
    border-bottom: 1px solid var(--primary-color);
}
.contactform select.form-control {
	color:#989898;
}

.contactform textarea.form-control {
  height: auto;
}
.asterisk {
	text-align:left;
	font-size:13px;
}
.map-container {
    height:260px;
    margin-bottom:30px;
}
.map_link {
    background: url(/images/map.jpg) no-repeat center center;
    height: inherit;
    display: block;
    background-size:100%;
}
.map_link.inner {
    background: url(/images/map-inner.jpg) no-repeat center center;
}
@media screen and (max-width: 1199px) {
    .map_link.inner {
        background-size:100%;
    }
}
@media screen and (max-width: 991px) {
    .map-container {
        height:240px;
    }   
}
@media screen and (max-width: 575px) {
    .map-container {
        height:160px;
    }   
}

.map-container.footer-map {
    height:240px; 
    margin-bottom:20px;
}

.map-container.footer-map .map_link {
    background-size:contain;
}

/*INNER PAGES
============================= */
  
  
.text-section ul{
  margin-left:30px;
  padding-left:0;
}
.submenu-row {
    text-align:center;
            gap: 2px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
}
.submenu-row a{
    padding:8px 15px;
    display: inline-block;
    color: var(--white);
    border: 1px solid var(--primary-color);
    font-weight: 500;
    transition: var(--transition3s);
    position:relative;
    background:rgba(0, 0, 0, .005);
} 
.submenu-row a:before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
    background-color: var(--primary-color);
}
.submenu-row a.active,
.submenu-row a:hover{
    border: 1px solid var(--secondary-color);
    color: var(--white);
    text-decoration:none;
}
.submenu-row a.active:before,
.submenu-row a:hover:before{
    background-color: var(--secondary-color);
}
@media (max-width: 767px) {
    .submenu-row {
        font-size:18px;
    }
    .submenu-row a{
        padding:4px 12px;
    }
}


.main-content ul{
        margin:0 0 15px 0px;
        list-style-position:inside;
}
.content-asRow ul,
.facilities ul,
.privacyList ul{
    margin:0 0 15px 30px;
}
@media (min-width: 992px) {
    .content-asRow .text-lg-end ul{
        direction: rtl;
    }
}
.facilities ul li,
.content-asRow ul li,
.privacyList li{
    list-style: circle;
}
@media (max-width: 767px) {
    .facilities ul{
        margin:0 0 0px 25px;
    }
}

/*GALLERY
==================================*/
@media (max-width: 575.98px) {
  .gallery {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    column-count: 2; 
  }
}

@media (min-width: 576px) {
  .gallery {
    margin-left: -3rem;
    margin-right: -3rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 576px) {
  .gallery {
    column-count: 2 !important;
    column-gap: 1rem !important;
  }
}

@media (min-width: 768px) {
  .gallery {
    column-count: 3 !important;
  }
}
@media (min-width: 992px) {
  .gallery {
    column-count: 4 !important;
  }
}
@media (min-width: 1200px) {
  .gallery {
    column-count: 5 !important;
  }
}

.gallery .item {
  break-inside: avoid;
  margin-bottom: 1rem;
  display: block;
}

/*POPUP
==========================*/
.modal {
  z-index: 10500;
}
.modal .modal-content {
  -webkit-box-shadow: 0px 20px 20px #00000045;
          box-shadow: 0px 20px 20px #00000045;
  border-radius: 0px;
  border: none;
  text-align: left;
}
.modal-content.padding{
    /*padding: 20px;*/
}
.modal .modal-header {
  padding: 0px;
  border: none;
  border-radius: 0px;
}

.modal .close {
    align-self:end;
  text-shadow: none;
    font-size: 28px;
    opacity: 1;
    margin-left: auto;
    font-weight: 400;
    line-height: 1;
}
.modal .btn-close {
    position:absolute;
    right:10px;
}
@media screen and (max-width: 991px) {
  .modal .modal-content {
    font-size:16px;
  }
}
.modal .text .margin{
    margin:30px;
}
@media screen and (max-width: 767px) {
     .modal .text .margin{
        margin:15px 0 0 0;
    }   
}

.wordbreak a{
     word-break: break-word;  
}

/*SCROLL UP */
.toTop {
    text-align: right;
          background:rgba(0, 0, 0, .005);
  }
a.scrollup,
a.scrollup::before {
    display: none;
    align-items: center;
    width:30px;
    height:30px;
    background:url(/images/right-blue.svg) no-repeat center center!important;
    bottom: 50px;
    position: fixed;
    right: 10px;
    transform: rotate(-90deg);
    text-indent: -9999px;
    text-decoration: none;
    padding: 0px 0px;
    z-index: 10;
    color:var(--black);
}
.el .scrollup {
    font-size:14px;
    bottom: 64px;
}
.scrollup.is-visible {
	display: inline-flex;
  	opacity: 1;
}
@media (max-width: 575px) {
    a.scrollup,
    a.scrollup::before {
        right: 0px;
    }
}

.hotel-awards ul{
    margin:0px;
    list-style:none;
}
.hotel-awards ul li{
    padding:0px 30px 30px;
}
@media (max-width: 767px) {
    .hotel-awards ul li{
        padding:0px 15px 15px;
    }
   .hotel-awards img{
       height:80px;
   } 
}

.top-sm-menu li{
    list-style:none;
}

.top-sm-menu li a{ 
    padding: 0;
    color: #fff;
    transition: .5s linear;
}
.top-sm-menu li a:hover { 
    color: #AA834F;
}
.cookie-icon {
    position:fixed;
    left:10px;
    bottom:10px;
    opacity: 1;
    width:46px;
    height:46px;
    border-radius: 50%;
    background: rgba(255,255,255,.8);
    padding:6px;
    font-size:8px;
    z-index: 10;
}

.awards-footer img{
    max-height:80px!important;
}

/*Tables
============================= */
.responsive-table  table{
	width:100%;
	margin-bottom:20px;
}
.responsive-table th { 
    text-align: center;
    font-weight: 500;
    background: var(--bdBackground);
}
.responsive-table thead{
	border-top: 1px solid #d6d2c8;
    border-right: 1px solid #d6d2c8;
    border-left: 1px solid #d6d2c8;
}
.responsive-table th{
    border: 1px solid #d6d2c8;
}
.responsive-table tr { 
	border: 1px solid #d6d2c8;
	background-color: transparent;
}
.responsive-table td { 
	border: none;
	border: 1px solid #d6d2c8;
	text-align:center;			
}
.responsive-table td, 
.responsive-table th { 
    padding: 8px 6px; 
}
@media screen and (min-width: 768px) {
    .responsive-table tbody tr:nth-child(even){ 
      background: var(--bdBackground);
    }
}
/*
.responsive-table tbody tr:nth-of-type(odd) { 
  background: var(--bdBackground);
}
*/
@media screen and (max-width: 767px) {
  /* Force table to not be like tables anymore */
	.responsive-table table, 
	.responsive-table thead, 
	.responsive-table tbody, 
	.responsive-table th, 
	.responsive-table td, 
	.responsive-table tr { 
		display: block; 
	}
     .responsive-table tbody tr:nth-of-type(odd) { 
      background: var(--bdBackground);
    }
	/* Hide table headers (but not display: none;, for accessibility) */
	.responsive-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 	.responsive-table tr { border: 1px solid #c1bcb1; }
 	.responsive-table td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
		white-space: normal;
		text-align:center;
	}
 	.responsive-table td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
	}
	.responsive-table thead{
		border: none;
	}
	 .responsive-table tr:nth-of-type(odd) td{ 
	  border-bottom: 1px solid #fff; 
	}
	/*
	Label the data
	*/
	.responsive-table td:before { content: attr(data-title); }

}
@media screen and (max-width: 575px) {
    .responsive-table td:before {
     	white-space: normal;
        text-align: left;
        font-weight: bold;
        line-height: 1;
        font-size: 19px;   
    }
}

/*# sourceMappingURL=style.css.map */
