/* ==============================
   Global styles
   ============================== */
@font-face {
    font-family: 'futura_md_btmedium';
    src: url('../fonts/futura-webfont.woff2') format('woff2'),
         url('../fonts/futura-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
*{
  margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    vertical-align: baseline;
    -webkit-text-size-adjust: 100% /* Prevent font scaling in landscape while allowing user zoom */;
}

html,
body {
  width: 100%;
  height: 100%;
  
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #000000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body ::-moz-selection {
  background: #00b2ca;
  color: #fff;
}
body ::selection {
  background: #00b2ca;
  color: #fff;
}
a,
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}
ul {
  list-style-type: none;
}
img{
  display: inline-block;
  max-width: 100%;
}
/* ==============================
   Typography
   ============================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* ==============================
   Helper clases
   ============================== */
.container{
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.container-fluid{
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.clearlist,
.clearlist li {
  list-style: none;
  padding: 0;
  margin: 0;
  background: none;
}
img.resp {
  width: 100%;
  height: auto;
}

.relative {
  position: relative;
}

.right {
  float: right;
}
.left {
  float: left;
}
.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}
.clearfix{
  clear: both;
}
.noscroll{
  overflow: hidden;
}

/*#desktopLogo
{
	fill:#fff;
	width: 350px;
	height: auto;
}*/
#mobileLogo
{
	display: none;
}

/* ==============================
   Page loaders
   ============================== */
.page-loader {
  display: none;
  background-color: #f0f0f0;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fefefe;
  z-index: 100000;
}
.loader {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 45%;
  left: 50%;
  margin: -25px 0 0 -25px;
  font-size: 10px;
  text-indent: -12345px;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.7);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spinner 700ms infinite linear;
  animation: spinner 700ms infinite linear;
  z-index: 100001;
}
.loader-text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100px;
  height: 30px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 6px;
  color: #777;
}
.mfp-preloader {
  width: 50px !important;
  height: 50px !important;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  top: 50% !important;
  left: 50% !important;
  right: 0;
  margin: -25px 0 0 -25px;
  font-size: 10px;
  text-indent: -12345px;
  border-top: 1px solid rgba(0,0,0,0.4);
  border-right: 1px solid rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(0,0,0,0.4);
  border-left: 1px solid #fff;
  -webkit-animation: spinner 700ms infinite linear;
  animation: spinner 700ms infinite linear;
  z-index: 100001;
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* ==============================
   Navbar
   ============================== */
.nav{
  position: fixed;
  width: 50%;
  height: 100vh;
  background: #fff;
  top: 0;
  right: -50%;
  padding-left: 115px;
  padding-top: 6%;
  display: block;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  overflow: hidden;
}
.slideIn{
  right:0 !important;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.stick-fixed{
  position: fixed;
  top:0;
  left:0;
  z-index: 9999;
}
.main-nav{
  padding: 30px 70px;
  width: 100%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}

.logo img, .logo svg{
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  /*height: 89px;*/
}
.nav-fixed .logo img, .nav-fixed .logo svg{
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  height: 50px;
}
.nav-fixed .nav-icon{
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  margin-top: 15px;
}
.banner-wrap{
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}
.slide__img{
  height: 90vh;
  background-position: center;
    background-size: cover;
    transition: all 9s ease-in-out 0s;
    -webkit-transition: all 9s ease-in-out 0s;
    transform: scale(1);
}
.owl-item.active .slide__img{
  transition: all 9s ease-in-out 0s;
    -webkit-transition: all 9s ease-in-out 0s;
    transform: scale(1.3);
}
.owl-carousel .owl-item{
  overflow: hidden;
}
.bannervideo img{
  width: 69px !important;
    display: inline-block !important;
    margin-top: 25px;
    cursor: pointer;
}
.slideshow .abtvideofull{
  height:100%;
  max-width: none;
    width: auto;
}
.owl-item .slide__title, .owl-item .bannervideo .slide__subtitle{
  transition-duration: 1.5s;
  transition-timing-function: ease;
  opacity: 0;
    transition-property: opacity,transform;
    transform: translate3d(0,50px,0);
}
.owl-item .slide__subtitle,.owl-item .bannervideo img{
  transition-duration: 1.5s;
  transition-timing-function: ease;
  transition-delay: .3s;
  opacity: 0;
    transition-property: opacity,transform;
    transform: translate3d(0,100px,0);
	
}
.owl-item.active .slide__title, .owl-item.active .slide__subtitle, .owl-item.active .bannervideo img{
  opacity: 1;
  transform: translateZ(0);
  background: -webkit-linear-gradient(#d0b23a, #f3e06d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-icon{
  width:35px;
  margin-top: 42px;
  position: fixed;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  z-index: 2;
  height: 27px;
  cursor: pointer;
}
.nav-icon span{
  width:100%;
  height:4px;
  background: #d79c01;
  margin-bottom: 7px;
  display: block;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  opacity: 1;
  position: absolute;
  left:0;
}
.nav li a{
  color:#666666;
  font-family: 'futura_md_btmedium';
  font-size: 24px;
  display: inline-block;
  margin-bottom: 40px;
  position:relative;
}
.nav ul:hover a{
  color: #b1b1b1;
  transition: color .2s;
}
.nav li a:hover{
  color:#666666 !important;
}
.nav li a:after{
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
  transition: transform .4s ease;
  transform: scaleX(0);
  transform-origin: left;
}
.nav li a:hover:after{
  transform: scaleX(1);
}
.nav .social-wrap a{
  display: inline-block;
  margin-right: 20px;
}
.nav-icon span:nth-child(1) {
  top: 0px;
}

.nav-icon span:nth-child(2),.nav-icon span:nth-child(3) {
  top: 11px;
}

.nav-icon span:nth-child(4) {
  top: 14px;
  opacity: 0;
}
.nav-icon.open span{
  background: #d79c01;
}
.nav-icon.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}
/* ==============================
   Banner
   ============================== */
.banner-caption{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  text-align: center;
  width: 100%;
  padding: 0 15px;
}
.banner-caption h2{
  font-size: 1.875em;
  color: #fff;
  font-family: 'futura_md_btmedium';
}
.banner-caption h1{
  font-size: 4.5em;
  color: #fff;
  font-family: 'futura_md_btmedium';
}
.guests {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #f1f2f2;
  display: none;
  left: -5%;
  list-style-type: none;
  top: 85%;
  padding: 30px 15px;
  position: absolute;
  width: 110%;
  z-index: 2;
}
.guests .title {
  color: #967a50;
  font-weight: 500;
  margin-bottom: 20px;
}
.gasteSelect li {
  background: none repeat scroll 0 0 #fff;
  border: 1px solid #f1f2f2;
  cursor: pointer;
  font-weight: 300;
  margin: 8px 0;
  padding: 10px 0;
  font-size: .9rem;
  text-align: center;
}
.gasteSelect li.active {
  background: none repeat scroll 0 0 #967a50;
  color: #fff;
}
.gasteSelect li:hover{
  background-color: #967a50;
  color: #fff;
}
.calendarwrap:hover .guests{
  display: block
}
/* ==============================
   Reserve
   ============================== */
.reservecontainer{
/*   overflow: hidden; */
  padding: 130px 0;
  max-width: 1124px;
}
.reserveleft{
  width:552px;
  float: left;
}
.reservetitle h1{
  font-size: 1.875em;
  font-family: 'futura_md_btmedium';
  margin-bottom: 60px;
  color: #2e2d2d;
}
.reservedesc p{
  color:#292929;
  font-weight: 300;
  line-height: 1.688
}
.knowmorebtn{
  color:#516401;
  font-size:14px;
  font-weight: 300;
  line-height: 2;
  position: relative;
}
.knowmorebtn:after{
  content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #516401;
    transition: transform .4s ease;
    -webkit-transition: transform .4s ease;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform-origin: left;
    -webkit-transform-origin: left;
    border:0;
}
.knowmorebtn:hover:after{
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
}
.reservedesc{
  margin-bottom: 80px
}
.weathericons ul li{
  display: inline-block;
  vertical-align: bottom;
  margin-right: 110px;
  text-align: center;
}
.weathericons ul li:last-child{
  margin-right: 0;
}
.weathericons ul li img{
  margin: 0 auto 30px
}
.weathericons ul li p{
  font-size: 18px;
  font-weight: 500;
}
.calendardates{
    background-color: rgb(239, 239, 239);
    box-shadow: 0px 9px 18px 0px rgba(0, 0, 0, 0.27);
    width: 178px;
    height: 210px;
    padding: 30px 10px 15px;
    cursor: pointer;
}
.kidsnumber .calendardates, .guestnumber .calendardates{
  padding: 20px 10px 18px
}
.kidsnumber .calendarday, .guestnumber .calendarday{
  padding: 18px 15px 30px;
}
.calendarlabel{
  color:#808d4e;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.reserveright{
  float: right;
  padding-right: 8px;
  text-align: center
}
.calendarmonth{
  text-transform: uppercase;
}
.calendarday{
  font-size: 88px;
  font-weight: 100;
  padding: 18px 15px 20px;
  line-height: 1;
}
.calendarwrap{
  float: left;
  margin-right: 55px;
  margin-bottom: 30px;
  position: relative;
}
.departingdates, .kidsnumber{
  margin-right: 0;
}
.uparrow{
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  opacity: 0;
}
.owl-carousel .owl-video-play-icon{
  background: url(../img/play.png) no-repeat;
}
.reservebtn{
  outline: none;
  width: 200px;
  height: 45px;
  text-align: center;
  text-shadow: 0;
  line-height: 45px;
  color:#516401;
  background: #fff;
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  border:1px solid rgb(81, 100, 1);
  float: left;
  margin-top: 25px;
  transition: all 0.25s ease;
  cursor: pointer;
  transition: all 0.3s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.3s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.3s;
  -webkit-transition: all 0.3s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.3s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.3s;
  overflow: hidden;
  position: relative;
}
.reservebtn:hover {
  background: #516401;
}
.reservebtn:before {
  content: "→";
  height: 100%;
  width: 100%;
  position: absolute;
  color: #383736;
  left: -100%;
  opacity: 0;
  -webkit-transition: all 500ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
}
.reservebtn:after {
  content: "RESERVE NOW";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  text-align: center;
  -webkit-transition: all 400ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
}
.reservebtn:hover:before {
  left: 0;
  opacity: 1;
  color: #fff;
}
.reservebtn:hover:after {
  left: 100%;
  opacity: 0;
}
/*Book Stay*/


.bookstaybtn{
  outline: none;
  width: 150px;
  height: 45px;
  text-align: center;
  text-shadow: 0;
  line-height: 45px;
  color:#516401;
  background: #fff;
  font-size: 18px;
  font-weight: 300;
  display: inline-block;
  border:1px solid rgb(81, 100, 1);
  transition: all 0.25s ease;
  cursor: pointer;
  transition: all 0.3s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.3s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.3s;
  -webkit-transition: all 0.3s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.3s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.3s;
  overflow: hidden;
  position: relative;
}
.bookstaybtn:hover {
  background: #516401;
}
.bookstaybtn:before {
  content: "→";
  height: 100%;
  width: 100%;
  position: absolute;
  color: #383736;
  left: -100%;
  opacity: 0;
  -webkit-transition: all 500ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
}
.bookstaybtn:after {
  content: "BOOK STAY";
color:#516401;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  text-align: center;
  -webkit-transition: all 400ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
}
.bookstaybtn:hover:before {
  left: 0;
  opacity: 1;
  color: #fff;
}
.bookstaybtn:hover:after {
  left: 100%;
  opacity: 0;
}
















.srombtn .reservebtn:before {
  content: "→";
}
.srombtn .reservebtn:after{
  content: "SEARCH ROOMS";
}
.onclic {
  width: 54px;
  height: 54px;
  border-color: #bbbbbb;
  border-width: 3px;
  font-size: 0;
  border-radius: 50%;
  border-left-color: #516401;
  -webkit-animation: rotating 2s 0.25s linear infinite;
          animation: rotating 2s 0.25s linear infinite;
}
.onclic:after {
  content: "";
}
.onclic:hover {
  color: #516401;
  background: white;
}

.validate {
  font-size: 13px;
  color: white;
  background: #516401;
}
.validate:after {
  font-family: 'FontAwesome';
  content: "\f00c";
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.datepicker{
  display: none;
}
.hidden{
  display: none !important;
}
.calendardates:hover .datepicker{
  display: block
}
#reserve{
   position: relative;
  z-index: 2; 
/*  overflow: hidden;*/
}
.ui-datepicker .ui-datepicker-title {
  margin: 0;
  line-height: 30px;
  font-size: 18px;
  text-align: center;
  color: #967a50;
    font-weight: 300;
}
.ui-datepicker-prev .ui-icon, .ui-datepicker-next .ui-icon {
  background: url(../img/arrow.png) no-repeat scroll 50% bottom transparent;
  display: block;
  height: 6px!important;
  margin-left: 5.5px!important;
  margin-top: 9px!important;
  position: relative;
  width: 10px!important;
}
.ui-widget-header {
  border: 0;
  background: transparent;}
.ui-datepicker-prev .ui-icon {
  margin-top: 8px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ui-datepicker .ui-datepicker-next span, .ui-datepicker .ui-datepicker-prev span {
  left: 0!important;
  margin-left: 5px!important;
  margin-top: 8px!important;
  top: 0!important;
}
.ui-datepicker-next .ui-icon {
  margin-top: 8px;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {
  border: 1px solid #d2d2d2;
  border-radius: 12px;
  color: #d2d2d2;
  height: 24px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3px;
  width: 24px;
  top: auto;
  background: transparent !important;
  transform: inherit;
  transition: inherit;
  font-size: 0;
  line-height: inherit;
}
.ui-datepicker table {
  font-size: .9rem;
  font-weight: 300;
  table-layout: auto;
  border: none;
}
.ui-datepicker{
  z-index: 9999;
  position: absolute;
  border-radius: 0!important;
  border: 1px solid #ecf0f1!important;
  left: -50px;
  padding: 20px;
}
.ui-datepicker th {
  font-size: .8rem;
  font-weight: 300;
  color: #2f373b;
  padding: .7em .3em 1.2em;
}
.ui-datepicker table thead {
  border-bottom: 1px solid #ecf0f1;
}
.datepicker .ui-state-default {
  background-color: #ffffff;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  background: #fff;
  border: 1px solid #ecf0f1;
  font-weight: 400;
  color: #2f373b;
  display: block;
  padding: 5px 7px;
  text-align: center;
  text-decoration: none;
}
.datepicker .ui-state-active{
  background-color: #967a50;
  color:#fff
}
.ui-datepicker table tbody:before {
  content: "";
  display: block;
  height: 10px;
}
.datepicker .ui-state-hover{
  background-color: #967a50;
  color:#fff;
}
.weatherwidget-io{
  display: none !important
}
/* ==============================
   Paradise
   ============================== */
.paradisecontainer{
  max-width: 1424px;
  text-align: center;
  /*------------------------------------------------------------------------------- margin-bottom: 40px; ----------------------------------------------------------*/
}
.paradisetitile{
  font-family: 'futura_md_btmedium';
  font-size: 48px;
  margin-bottom: 60px;
}
.featureswrap ul{
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-content: center;
}
.featureswrap ul li a{
  display: block;
  position: relative;
  overflow: hidden;
}
.featureswrap ul li a img{
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.featureswrap ul li a:hover img{
  -webkit-transform: scale3d(1.3,1.3,1) translateY(-50px);
  transform: scale3d(1.3,1.3,1) translateY(-50px);
  transition: all 2.3s ease-out;
}
.featuresdescwrap{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  width: 325px;
  opacity: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.featuretitle{
  font-size: 36px;
  font-family: 'futura_md_btmedium';
  line-height: 1.194;
  color:#fff;
  display: block;
}
.featuredesc{
  font-size: 18px;
  font-family: 'futura_md_btmedium';
  line-height: 1.833;
  color:#fff;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  max-width: 325px;
  width: 100%;
  padding: 0 15px;
}
.featureoverlay{
  display: block;
  width: 100%;
  height:100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  top:0;
  left:0;
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.featureswrap ul li a:hover .featuresdescwrap{
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.featureswrap ul li a:hover .featureoverlay{
  opacity: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.paradisedesc{
  padding: 135px 225px 100px;
  text-align: center;
}
.paradisedesc p{
  font-family: 'futura_md_btmedium';
  font-size: 30px;
  line-height: 1.333;
}
.activitieswrap li{
  overflow: hidden;
}
.activitieswrap li a{
  display: block;
  overflow: hidden;
}
.activitiestitle{
  font-size: 100px;
  font-family: 'futura_md_btmedium';
  position: relative;
  overflow: hidden;
  color:#666666;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 1;
}
.activitiestitle:before {
  content: attr(data-title);
  position: absolute;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;

}
.activitieswrap{
  max-width: 1175px;
  margin: 0 auto;
}
.kayaking{
  text-align: left;
}
.kayaking .activitiestitle{
  margin-top: 180px;
  margin-left: -115px;
  float: left;

}
.kayaking .activitiestitle:before{
  width: 118px;
}
.kayaking img{
  float: left;
}
.camping{
  margin-top: -200px;
  clear: both;
}
.camping img{
  float: right;
}
.camping .activitiestitle{
  margin-top: -230px;
  margin-right: 330px;
  float: right;
  color: #fff
}
.camping .activitiestitle:before{
  width: 272px;
  color: #666;
}
.nature{
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
}
.nature img{
  margin-left: -330px;
}
.nature .activitiestitle{
  float: left;
  margin-top: 250px;
  color: #fff;
  margin-left: 65px;
}
.nature .activitiestitle2{
  float: right;
  color: #666;
  position: absolute;
  top: 0;
  right: 35px;
}
.nature .activitiestitle:before{
  width: 135px;
  color: #666;
}
.nature .activitiestitle2:before{
  width: 85px;
  color: #fff;
}
.trekking{
  text-align: left;
  float: left;
}
.trekking .activitiestitle{
  margin-top: 420px;
  margin-left: -240px;
  float: left;

}
.trekking .activitiestitle:before{
  width: 240px;
}
.trekking img{
  float: left;
}

.swimming{
  text-align: right;
  float: right;
  margin-top: -630px;
  margin-bottom: 40px;
}
.swimming .activitiestitle{
  margin-top: 160px;
  margin-left: 240px;
  margin-right: -318px;
  float: right;
  color:#fff
}
.swimming .activitiestitle:before{
  width: 160px;
  color:#666
}
.swimming img{
  float: right;
}
.owl-carousel .owl-video-tn {
  background-size: cover;
  padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
}

.owl-video-frame {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.owl-video-frame iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ==============================
   Organic
   ============================== */
   .organiccontainer{
    max-width: 1424px;
    text-align: center;
  }
.organic-farming{
  background: url(../img/horse-riding.jpg) no-repeat center;
  background-size:cover;
  margin-bottom: 40px;
  background-attachment: fixed;
}
.organiccontainer .activitieswrap {
  max-width: 1260px;
  margin: 0 auto;
}
.organictitle{
  color:#fff;
  font-size: 100px;
  font-family: 'futura_md_btmedium';
  padding: 340px 15px;
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}
.wine img{
  float: right;
}
.wine .activitiestitle{
  margin-top: -550px;
  margin-right: 360px;
  float: right;
  color: #fff
}
.wine .activitiestitle:before{
  width: 270px;
  color: #666;
}
.golf{
  text-align: left;
  margin-top: -365px;
}
.golf .activitiestitle{
  margin-top: 590px;
  margin-left: -410px;
  float: left;

}
.golf .activitiestitle:before{
  width: 410px;
}
.golf img{
  float: left;
}
.dining{
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
  margin-left: 160px;
}
.dining img{
  margin-left: -230px;
}
.dining .activitiestitle{
  float: left;
  margin-top: 250px;
  color: #fff;
  margin-left: 0px;
}
.dining .activitiestitle:before{
  width: 155px;
  color: #666;
}
.fishing{
  text-align: left;
}
.fishing .activitiestitle{
  margin-top: 150px;
  margin-left: -180px;
  float: left;

}
.fishing .activitiestitle:before{
  width: 180px;
}
.fishing img{
  float: left;
}
.cycling{
  margin-top: -200px;
  clear: both;
}
.cycling img{
  float: right;
}
.cycling .activitiestitle{
  margin-top: -230px;
  margin-right: 458px;
  float: right;
  color: #fff
}
.cycling .activitiestitle:before{
  width: 170px;
  color: #666;
}
.bird{
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
  
}
.bird img{
  margin-left: -300px;
}
.bird a{
  padding-left: 95px;
}
.bird .activitiestitle{
  float: left;
  margin-top: 250px;
  color: #fff;
  margin-left: 100px;
}
.bird .activitiestitle:before{
  width: 155px;
  color: #fff;
}
.bird .activitiestitle2{
  float: right;
  color: #fff;
  position: absolute;
  top: 95px;
    left: 0px;
    margin-left: 0;
}
.bird .activitiestitle2:before{
  width: 180px;
  color: #666;
}
/* ==============================
   Spiritual
   ============================== */
.spiritual-tours{
  background: url(../img/spiritual-tours.jpg) no-repeat center;
  background-size:cover;
  overflow: hidden;
  background-attachment: fixed;
}
.spiritualcontent{
  padding: 265px 0 225px;
  float: right;
  width:485px;
}
.spiritualtitle{
  color:#fff;
  font-size: 48px;
  font-family: 'futura_md_btmedium';
  margin-bottom: 35px;
  text-transform: uppercase;
}
.spiritualdec{
  line-height: 1.688;
  font-weight: 300; 
  color:#fff; 
}
/* ==============================
   Events
   ============================== */
.eventscontainer{
  text-align: center;
  padding: 130px 0;
}
.eventstitle{
  font-size: 48px;
  font-family: 'futura_md_btmedium';
  margin-bottom: 35px;
}
.eventsdesc{
  line-height: 1.688;
  font-weight: 300;
  max-width: 610px;
  margin: 0 auto 50px;
  width: 100%;
}
.eventsimgwrap img{
  margin: 0 auto;
}
/* ==============================
   Awards and Reviews
   ============================== */
.awardsandreviewscontainer{
  max-width: 1175px;
  overflow: hidden;
}
.awardswrap{
  width:600px;
  float: left;
  margin-right: 85px;
}
.reviewswrap{
  width:465px;
  float: right;
}
.awardsandreviewstitle{
  font-size: 30px;
  font-family: 'futura_md_btmedium';
  margin-bottom: 50px;
}
.awardslist li{
  display: inline-block;
  vertical-align: bottom;
  margin-right: 50px;
  margin-bottom: 75px;
}
.awardslist li:nth-child(2n){
  margin-right: 0;
}
.guestname{
  font-weight: 500;
  font-size: 18px;
}
.reviewdate{
  font-weight: 300;
}
.ratings{
  font-family: 'futura_md_btmedium';
  color:#fff;
  background-color: rgb(112, 112, 112);
  width: 44px;
  height: 23px;
  border-radius: 10px;
  line-height: 23px;
  display: inline-block;
  text-align: center;
  float: right;
  margin-top: -3px;
}
.reviewdesc{
  font-weight: 300;
  line-height: 1.5;
  color: rgb(102, 102, 102);
  margin-top: 18px;  
}
.reviewslist li{
  margin-bottom: 30px;
}
/* ==============================
   Contact
   ============================== */
.contact{
  margin-top: 0px;
  text-align: center
}
.contacttitle{
  font-size: 30px;
  font-family: 'futura_md_btmedium';
  text-transform: uppercase;
  margin-bottom: 65px;

}
/* ==============================
   Footer
   ============================== */
.footer{
  padding: 15px 15px 15px;
}
.footercontainer{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1170px;
}
.socialwrap li{
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 15px;
  margin-left: 15px;
}
.rightfooter{
  text-align: center;
}
.addresstitle{
  font-size: 18px;
  font-family: 'futura_md_btmedium';
  margin-bottom: 25px;

}
.address{
  margin-bottom: 25px;
}
.footer p, .footer a{
  color:#fff;
  line-height: 1.688;
  font-weight: 500;  
  -webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.copyright a{
  white-space: nowrap;
}
.footer a:hover{
  opacity: .65;
}
.socialwrap a, .social-wrap a{
  width: 25px;
    height: 25px;
    background: #fff;
    display: block;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s;
    -webkit-transition: all 0.4s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s;
}
.social-wrap a{
   background: #666666;
}
.social-wrap a:after{
  display: none !important
}
.socialwrap a:hover, .social-wrap a:hover{
  background: #000;
  transition: all 0.4s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s;
    -webkit-transition: all 0.4s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s;
  opacity: 1;
}
.dotnavwrap{
  position: absolute;
  bottom: 50px;
  left:50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 99999999;
}
.dotnavwrap li{
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
}
.dotnavwrap li span{
  display: block;
  width:15px;
  height:15px;
  border-radius: 50%;
  background: #aaa4a4;
}
.dotnavwrap li.active span{
  background: #ffffff;
}
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon644d.eot?jojn9t');
  src:  url('../fonts/icomoon644d.eot?jojn9t#iefix') format('embedded-opentype'),
    url('../fonts/icomoon644d.ttf?jojn9t') format('truetype'),
    url('../fonts/icomoon644d.woff?jojn9t') format('woff'),
    url('../fonts/icomoon644d.svg?jojn9t#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
  content: "\ea90";
}
.icon-instagram:before {
  content: "\ea92";
}
.icon{
  display: block;
  font-size: 13px;
  color:#555;
  transition: all 0.4s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s;
    -webkit-transition: all 0.4s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s;
  padding-top: 6px;
}
.social-wrap a .icon{
  color:#fff;
}
.socialwrap a:hover span, .social-wrap a:hover span{
  color:#fff;
  transition: all 0.4s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s;
    -webkit-transition: all 0.4s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s;
}
/* ==============================
   About Page
   ============================== */
.bannerContainer{
  max-width: 1200px;
  text-align: left;
  top: 62%;
}
.abtdesccontainer{
  max-width: 830px;
  text-align: center;
  padding: 200px 0;
}
.abtTitle{
  font-size: 30px;
  margin-bottom: 60px;
  font-family: 'futura_md_btmedium';
  color: #2e2d2d;
}
.abtdesccontainer p{
  font-weight: 300;
  line-height: 1.688;
  margin-bottom: 35px;
  color:#292929;
}
.videodesc{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  text-align: center;
  width: 100%;
    padding: 0 15px;
}
.videodesc h1{
  font-size: 72px;
  margin-bottom: 20px;
  font-family: 'futura_md_btmedium';
  color:#fff;
}
.abtvideoimg{
  margin: 0 auto
}
.abtvideo{
  text-align: center;
  margin-bottom: 145px;
  overflow: hidden;
}
.abtfeaturescontainer{
  max-width: 1170px;
  overflow: hidden;
}
.abtfeatureeco, .abtfeaturenature{
  overflow: hidden;
}
.rightalighimg{
  text-align: right
}
.leftabtfeature img{
  margin-bottom: 40px
}
.leftabtfeature{
  float: left;
  width: 500px;
  margin-right: 30px;
}
.rightabtdesc{
  padding: 35px 30px 25px;
}
.rightabtdesc h1{
  font-size: 48px;
  margin-bottom: 45px;
  line-height: 1.021;
  font-family: 'futura_md_btmedium';
}
.rightabtdesc p{
  line-height: 1.688;
  font-weight: 300;
  color:#292929  
}
.rightabtfeature{
  float: left;
    width: 635px;
}
.abtfeaturenature .rightabtfeature{
  float: left;
    width: 500px;
}
.abtfeaturenature .leftabtfeature{
  float: left;
  width: 635px;
  margin-right: 30px;
}
.abtfeaturenature .rightabtfeature img{
  margin-bottom: 40px
}
.abtfeaturenature{
  margin-top: 175px;
  margin-bottom: 140px;
  overflow: hidden;
}
.abtfeaturenature .rightabtdesc{
  width: 510px;
  float: right
}
.coexist{
  background: url(../img/natureabt.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.coexist .container{
  max-width: 1170px;
}
.coextdesc{
  max-width: 465px;
  width: 100%;
  padding: 315px 0;
  color:#fff
}
.coextdesc h1{
  font-family: 'futura_md_btmedium';
  font-size: 48px;
  margin-bottom: 40px
}
.coextdesc p{
  font-weight: 300;
  line-height: 1.688;
}
.abtsmalcontainer{
  max-width: 630px;
  margin-top: 145px;
}
.abtsmalcontainer p{
  font-family: 'futura_md_btmedium';
  line-height: 1.333;
  font-size: 30px;
  text-align: center
}
.aboutPage .banner-wrap{
  background: url(../img/aboutBg.jpg) no-repeat center;
  background-size: cover;
  height: 90vh;
}
/* ==============================
   Biodiversity Page
   ============================== */
.bioPage .banner-wrap{
  background: url(../img/bioBg.jpg) no-repeat center;
  background-size: cover;
  height: 90vh;
}
.biodesccontainer{
  max-width: 1345px;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 90px;
}
.biodescleft{
  width: 545px;
  float: left;
  margin-top: 200px;
}
.biodescleft h1{
  color:#2e2d2d;
  font-family: 'futura_md_btmedium';
  font-size: 30px;
  margin-bottom: 60px;
}
.biodescright{
  float: left;
  width:800px;
}
.biodescleft p{
  line-height: 1.688;
  font-weight: 300;
  color:#292929  
}
.lakewrap{
  background: url(../img/lake.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed
}
.bannerwidtextdesc{
  padding: 150px 0 450px;
  max-width: 520px;
    width: 100%;
  color:#fff
}
.bannerwidtextdesc h1{
  font-size: 100px;
  font-family: 'futura_md_btmedium';
  color:#fff;
  margin-bottom: 55px;
}
.bannerwidtextdesc p{
  font-weight: 300;
  line-height: 1.688;
}
.bioPage .rightabtdesc {
  width: 545px;
  float: right;
}
.bioPage .biopagetitleleft{
  position: absolute;
  top: 50px;
  left: 320px;
  width: max-content;
  color: #292929;
}
.bioPage .biopagetitleright{
  position: absolute;
  top: 50px;
  left: -185px;
  width: max-content;
  color: #fff;
}
.bioPage .biopagetitleright:before{
  width: 175px;
  color: #292929;
}
.bioPage .biopagetitleleft:before{
  width: 180px;
}
.bioPage .rightabtdesc p{
  margin-top: 150px
}
.forestwrap{
  background: url(../img/forest.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.bookingPage .banner-wrap{
  background: url(../img/bookingbg.jpg) no-repeat center;
  background-size: cover;
  height: 90vh;
}
.bookingPage .abtsmalcontainer p{
  color:#2e2f3f;
}
.bookingPage .abtsmalcontainer{
  max-width: 875px;
  margin-bottom: 145px;
}
.bookingPage .reserveright{
  float:none;
  padding: 0;
  margin: 0 auto;
}
.bookingPage .calendarwrap{
  margin: 0 25px;
  float: none;
  display: inline-block;
}
.bookingPage .reservebtn{
  float: none;
    margin-top: 65px;
    margin-bottom: 75px;
}
.roomsconatiner{
  max-width: 1270px;
  overflow: auto;
}
.roomsimgswrap{
  float: left;
  width:685px;
  margin-right: 85px;
  position: relative;
}
.roomdescwrap{
  float: left;
  width:500px;
}
.roomdescwrap h1{
  font-size: 48px;
  font-family: 'futura_md_btmedium';
  color:#000;
  line-height: 1.063;
  margin-bottom: 15px;
}
.roomdescwrap p{
  color:#000;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 20px;
}
.amenitieswrap h3{
  font-weight: 700;
  color:#000;
  margin-bottom: 10px;
}
.amenitieswrap ul{
  display: flex;
    justify-content: space-between;
}
.amenitieswrap li{
  color:#000;
  font-weight: 300;
  line-height: 1.25;
  /* margin-right: 55px;
  display: inline-block;
  vertical-align: middle; */
  font-size: 14px;
}
.amenitieswrap li:last-child{
  margin-right: 0;
}
.bedrumwrap{
  margin-top: 40px;
}
.roomdescwrap h2{
  font-weight: 700;
  font-size: 24px;
  color:#555;
  margin-bottom: 45px;
}
.reserveandcancel .reservebtn{
  margin: 0 125px 0 0;
  text-transform: uppercase;
    width: 200px;
    text-align: center;
    vertical-align: middle;
}
.reserveandcancel .reservebtn:before{
  content: "→";
}
.reserveandcancel .reservebtn:after{
  content: "RESERVE";
}
.cancelpolicy{
  font-size: 14px;
  font-weight: 300;
  color:#848484;
  display: inline-block;
    vertical-align: middle;
    transition: all 0.4s ease;
}
.cancelpolicy:hover{
  opacity: 0.65;
}
.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #efde26;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}
.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  outline: 0;
  background: transparent;
}
.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
  background: #efde26;
}
.owl-dots{
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 5px;
}
.roomtypes{
  overflow: hidden;
  margin-bottom: 100px;
}
.roomtypes .owl-carousel .owl-item img{
  display: block;
  -webkit-transition: all 2.3s ease-out;
  transition: all 2.3s ease-out;
}
.roomtypes .owl-carousel .owl-item img:hover {
  -webkit-transform: scale3d(1.3,1.3,1) translateY(-50px);
  transform: scale3d(1.3,1.3,1) translateY(-50px);
  transition: all 2.3s ease-out;
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-section {
  min-height: 100%;
  position: relative;
  padding: 2em 0;
}
.cd-section:nth-of-type(odd) {
  background-color: #3e3947;
}
.cd-section:nth-of-type(odd) p {
  color: #898099;
}
.cd-section:nth-of-type(even) {
  background-color: #745360;
}
.cd-section:nth-of-type(even) p {
  color: #bda3ad;
}
.cd-section h1, .cd-section p {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 768px;
  text-align: center;
}
.cd-section h1 {
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
}
.cd-section p {
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .cd-section h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-section p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
  }
}

.cd-scroll-down {
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
  width: 38px;
  height: 44px;
  background: url("../img/cd-arrow-bottom.html") no-repeat center center;
}

/* No Touch devices */
.cd-nav-trigger {
  display: none;
}

.no-touch #cd-vertical-nav {
  position: fixed;
  left: 40px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  display: none;
}
.no-touch #cd-vertical-nav li {
  text-align: left;
  margin-bottom: 15px;
}
.no-touch #cd-vertical-nav a {
  display: inline-block;
  /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.no-touch #cd-vertical-nav a:after {
  content: "";
  display: table;
  clear: both;
}
.no-touch #cd-vertical-nav a span {
  float: left;
  display: inline-block;
  
}
.no-touch #cd-vertical-nav a:hover span.cd-dot {
  /* -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); */
}
.no-touch #cd-vertical-nav a:hover .cd-label {
  opacity: 1;
}
.no-touch #cd-vertical-nav a.is-selected .cd-dot {
  background-color: #626262;
}
.no-touch #cd-vertical-nav a.is-selected .cd-label{
  opacity: 1;
}
.no-touch #cd-vertical-nav .cd-dot {
  position: relative;
  /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
  top: 8px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #d7d7d7;
  -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
  -moz-transition: -moz-transform 0.2s, background-color 0.5s;
  transition: transform 0.2s, background-color 0.5s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  /* -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6); */
}
.no-touch #cd-vertical-nav .cd-label {
  position: relative;
  margin-left: 10px;
  padding: .4em .5em;
  color: black;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  color: #fff;
  background: #0a0a0b;
  overflow: hidden;
}
.cb-bg{
  position: absolute;
    width: 100%;
    height: 100%;
    background: #0a0a0b;
    top: 0;
    left: 0;
}
.no-touch #cd-vertical-nav a:hover .cb-bg{
  left: 100%;
  transition:left .2s cubic-bezier(.23,1,.32,1) .1s;
  -webkit-transition:left .2s cubic-bezier(.23,1,.32,1) .1s;
}
.no-touch #cd-vertical-nav a.is-selected .cb-bg{
  left: 100%;
  transition:left .2s cubic-bezier(.23,1,.32,1) .1s;
  -webkit-transition:left .2s cubic-bezier(.23,1,.32,1) .1s;
}

/* Touch devices */
.touch .cd-nav-trigger {
  display: block;
  z-index: 2;
  position: fixed;
  bottom: 30px;
  right: 5%;
  height: 44px;
  width: 44px;
  border-radius: 0.25em;
  background: rgba(255, 255, 255, 0.9);
}
.touch .cd-nav-trigger span {
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: #3e3947;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.touch .cd-nav-trigger span::before, .touch .cd-nav-trigger span::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
}
.touch .cd-nav-trigger span::before {
  top: -9px;
}
.touch .cd-nav-trigger span::after {
  bottom: -9px;
}

.touch #cd-vertical-nav {
  position: fixed;
  z-index: 1;
  right: 5%;
  bottom: 30px;
  width: 90%;
  max-width: 400px;
  max-height: 90%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  border-radius: 0.25em;
  background-color: rgba(255, 255, 255, 0.9);
}
.touch #cd-vertical-nav a {
  display: block;
  padding: 1em;
  border-bottom: 1px solid rgba(62, 57, 71, 0.1);
}
.touch #cd-vertical-nav a span:first-child {
  display: none;
}
.touch #cd-vertical-nav a.is-selected span:last-child {
  color: #d88683;
}
.touch #cd-vertical-nav.open {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger {
  background-color: transparent;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span {
  background-color: rgba(62, 57, 71, 0);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before, .touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  background-color: #3e3947;
  height: 3px;
  width: 20px;
  border-radius: 0;
  left: -8px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 0;
}
.touch #cd-vertical-nav li:last-child a {
  border-bottom: none;
}
@font-face {
  font-family: 'weather';
  src: url('../fonts/artill_clean_icons-webfont.eot');
  src: url('../fonts/artill_clean_icons-webfontd41d.eot?#iefix') format('embedded-opentype'),
       url('../fonts/artill_clean_icons-webfont.woff') format('woff'),
       url('../fonts/artill_clean_icons-webfont.ttf') format('truetype'),
       url('../fonts/artill_clean_icons-webfont.svg#artill_clean_weather_iconsRg') format('svg');
  font-weight: normal;
  font-style: normal;
}

#weather {
  width: 500px;
  margin: 0px auto;
  text-align: center;
  text-transform: uppercase;
}

i {
  color: #676767;
  font-size: 60px;
  margin-bottom: 30px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.0;
  text-transform: none;
}

.icon-0:before { content: ":"; }
.icon-1:before { content: "p"; }
.icon-2:before { content: "S"; }
.icon-3:before { content: "Q"; }
.icon-4:before { content: "S"; }
.icon-5:before { content: "W"; }
.icon-6:before { content: "W"; }
.icon-7:before { content: "W"; }
.icon-8:before { content: "W"; }
.icon-9:before { content: "I"; }
.icon-10:before { content: "W"; }
.icon-11:before { content: "I"; }
.icon-12:before { content: "I"; }
.icon-13:before { content: "I"; }
.icon-14:before { content: "I"; }
.icon-15:before { content: "W"; }
.icon-16:before { content: "I"; }
.icon-17:before { content: "W"; }
.icon-18:before { content: "U"; }
.icon-19:before { content: "Z"; }
.icon-20:before { content: "Z"; }
.icon-21:before { content: "Z"; }
.icon-22:before { content: "Z"; }
.icon-23:before { content: "Z"; }
.icon-24:before { content: "E"; }
.icon-25:before { content: "E"; }
.icon-26:before { content: "3"; }
.icon-27:before { content: "a"; }
.icon-28:before { content: "A"; }
.icon-29:before { content: "a"; }
.icon-30:before { content: "A"; }
.icon-31:before { content: "6"; }
.icon-32:before { content: "1"; }
.icon-33:before { content: "6"; }
.icon-34:before { content: "1"; }
.icon-35:before { content: "W"; }
.icon-36:before { content: "1"; }
.icon-37:before { content: "S"; }
.icon-38:before { content: "S"; }
.icon-39:before { content: "S"; }
.icon-40:before { content: "M"; }
.icon-41:before { content: "W"; }
.icon-42:before { content: "I"; }
.icon-43:before { content: "W"; }
.icon-44:before { content: "a"; }
.icon-45:before { content: "S"; }
.icon-46:before { content: "U"; }
.icon-47:before { content: "S"; }

#weather h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 100px;
  font-weight: 300;
  text-align: center;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
}

#weather ul {
  margin: 0;
  padding: 0;
}

#weather li {
  background: #000;
  background: rgba(255,255,255,0.90);
  padding: 20px;
  display: inline-block;
  border-radius: 5px;
}

#weather .currently {
  margin: 0 20px;
}

.abtvideofull{
  display: none;
  width: 100%;
    max-width: 1600px;
}
.eventsimgwrap{
  margin: 0 auto;
  width: 100%;
  position: relative;
  max-width: 1165px;
}
.owl-nav{
  position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}
.owl-nav span{
  display: none
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
  background: url(../img/leftarrow.png) no-repeat;
  width: 18px;
  height: 34px;
  outline: 0 !important
}
.owl-carousel .owl-nav button.owl-next{
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
@media only screen and (min-width: 768px) {
  .touch .cd-nav-trigger, .touch #cd-vertical-nav {
    bottom: 40px;
  }
}

@media only screen and (max-width: 1599px) {
  .banner-wrap,.slideshow{
    height: 90vh !important;
    max-height: none; 
  }
  /*.logo{
    width: 205px;
    display: inline-block;
  }*/
  .nav-icon{
    right:70px;
    margin-top: 35px;
  }
  .banner-caption h1, .videodesc h1{
    font-size: 68px;
  }
  .banner-caption h2 {
    font-size: 33px;
  }
  .bioPage .container{
    max-width: 1170px;
    padding: 0 30px;
  }
  .biodescright{
    width: 55%;
  }
  .biodescleft{
    width: 45%;
  }
  .rightabtfeature, .abtfeaturenature .leftabtfeature{
    width: 580px;
  }
}
@media only screen and (max-width: 1400px) {
  .featureswrap li{
    width:380px;
  }
  .paradisecontainer{
    max-width: 1175px;
  }
  .paradisedesc{
    padding: 135px 125px;
  }
  .spiritualcontent{
    margin-right: 70px;
  }
  .nav li a{
    font-size: 20px;
    margin-bottom: 30px;
  }
  .roomsconatiner{
    max-width: 1170px;
  }
  .roomsimgswrap{
    width: 640px;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 1279px) { 
  .main-nav{
    padding: 30px 30px;
  }
  .nav-fixed {
    padding: 15px 30px;
  }
  .nav-icon{
    right: 30px;
  }
  .banner-caption h2 {
    font-size: 20px;
  }
  .reservetitle h1{
    font-size: 30px;
    margin-bottom: 30px;
  }
  .banner-caption h1, .videodesc h1 {
    font-size: 50px;
  }
  .banner-caption{
    /* top: 40%; */
    padding: 0 60px;
  }
  .reservecontainer{
    padding: 80px 30px;
    max-width: 1000px;
  }
  #cd-vertical-nav{
    display: none !important;
  }
  .reservedesc {
    margin-bottom: 50px;
  }
  .weathericons ul li{
    margin-right: 70px;
  }
  .reserveleft{
    width: 400px;
  }
  .paradisetitile, .spiritualtitle, .coextdesc h1{
    font-size: 40px;
    margin-bottom: 30px;
  }
  .bannerwidtextdesc h1{
    font-size: 80px;
    margin-bottom: 40px
  }
  .bannerwidtextdesc {
    padding: 150px 0 250px;}
  .featureswrap li {
    width: 300px;
  }
  .bioPage .biopagetitleright{
    left: -145px;
  }
  .bioPage .biopagetitleright:before {
    width: 145px;}
  .paradisecontainer {
    max-width: 100%;
    padding: 0 30px;
  }
  .paradisedesc {
    padding: 80px 30px;
  }
  .paradisedesc p{
    font-size: 24px;
  }
  .contacttitle{
    font-size: 24px;
    margin-bottom: 30px;
  }
  .activitieswrap, .organiccontainer .activitieswrap {
    max-width: 940px;
  }
  .footer{
    padding: 100px 30px 80px;
  }
  .spiritualcontent {
    margin-right: 30px;
    padding: 200px 0 185px;
  }
  .organictitle{
    font-size: 80px;
    padding: 240px 15px;
  }
  .activitiestitle{
    font-size: 80px;
  }
  .kayaking .activitiestitle{
    margin-left: -90px;
  }
  .kayaking .activitiestitle:before {
    width: 90px;
  }
  .camping{
    margin-top: 40px;
  }
  .camping .activitiestitle{
    margin-right: 354px;
  }
  .camping .activitiestitle:before {
    width: 220px;
  }
  .nature img {
    margin-left: -315px;
    width: 600px;
  }
  .nature .activitiestitle:before {
    width: 105px;
  }
  .nature .activitiestitle2{
    right: 80px;
  }
  .nature .activitiestitle2:before{
    width: 64px;
  }
  .swimming{
    margin-top: 40px;
  }
  .trekking .activitiestitle{
    margin-left: -190px;
  }
  .trekking .activitiestitle:before {
    width: 190px;
  }
  .swimming .activitiestitle{
    margin-right: -255px;
  }
  .swimming .activitiestitle:before{
    width: 130px;
  }
  .wine .activitiestitle{
    margin-right: 405px;
  }
  .wine .activitiestitle:before{
    width: 200px;
  }
  .nature .activitiestitle{
    margin-top: 140px;
  }
  .golf,.cycling{
    margin-top: 40px;
  }
  .golf .activitiestitle{
    margin-left: -328px;
  }
  .golf .activitiestitle:before {
    width: 330px;
  }
  .dining img {
    margin-left: 72px;
    margin-top: -295px;
    width: 600px;
  }
  .dining .activitiestitle:before{
    width: 125px;
  }
  .fishing .activitiestitle:before {
    width: 140px;
  }
  .fishing .activitiestitle{
    margin-left: -140px;
  }
  .cycling .activitiestitle:before{
    width: 135px;
  }
  .cycling .activitiestitle{
    margin-right: 492px;
  }
  .bird .activitiestitle:before{
    width: 0
  }
  .bird .activitiestitle{
    margin-top: 130px;
    margin-left: 219px;
  }
  .bird img {
    margin-left: -175px;
    width: 600px;
  }
  .bird .activitiestitle2:before{
    width: 180px;
  }
  .bird .activitiestitle2{
    left: -87px;
  }
  .eventscontainer{
    padding: 80px 0;
  }
  .awardsandreviewscontainer {
    max-width: 940px;
  }
  .awardswrap{
    width: 100%;
    text-align: center
  }
  .awardslist li{
    margin: 0 25px 75px;
  }
  .reviewswrap{
    width: 100%;
  }
  .contact{
    margin-top: 60px;
  }
  .eventstitle{
    font-size: 30px;
  }
  .abtdesccontainer{
    padding: 100px 0;
  }
  .abtTitle{
    margin-bottom: 30px;
  }
  .abtdesccontainer p{
    margin-bottom: 20px
  }
  .abtvideo{
    margin-bottom: 100px;
  }
  .abtfeaturescontainer{
    max-width: 960px;
  }
  .leftabtfeature{
    width: 430px;
  }
  .rightabtfeature{
    width: 500px;
  }
  .rightabtdesc h1{
    font-size: 40px;
    margin-bottom: 35px;
  }
  .abtfeaturenature{
    margin-top: 100px;
    margin-bottom: 80px;
  }
  .abtfeaturenature .rightabtfeature{
    width: 430px;
  }
  .abtfeaturenature .leftabtfeature{
    width: 500px;
  }
  .coexist .container {
    max-width: 960px;
  }
  .coextdesc{
    padding: 200px 0;
  }
  .abtsmalcontainer p{
    font-size: 26px;
  }
  .abtsmalcontainer{
    margin-top: 100px;
  }
  .bioPage .abtfeaturescontainer{
    max-width: 1024px;
  }
  .bioPage .biopagetitleleft{
    left: 290px;
  }
  .bioPage .biopagetitleleft:before {
    width: 150px;
  }
  .roomsconatiner {
    max-width: 970px;
  }
  .roomsimgswrap {
    width: 475px;
    margin-right: 20px;
  }
  .roomdescwrap {
    width: 475px;
}
.roomdescwrap h1{
  font-size: 40px
}
.boxnav__item--next {
  right: 10px !important;
}
.boxnav__item--prev {
  left: 10px !important;
}
}
@media only screen and (max-width: 1023px) { 
  .logo img{
    height:60px;
  }
  .bookingPage .calendarwrap{
    float: left;
      margin-right: 55px;
      margin-bottom: 30px;
      margin-left: 0;
  }
  .bookingPage .departingdates,.bookingPage .kidsnumber {
    margin-right: 0 !important;
  }
  .bookingPage .guestnumber{
    clear: both;
  }
  .roomsimgswrap {
    max-width: 640px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
}
.roomdescwrap {
  max-width: 475px;
  width: 100%;

}
  .main-nav {
    padding: 15px 0;
  }
	
.nav-fixed.main-nav {
    padding: 8px 0;
  }	
  .nav-icon {
    right: 15px;
    margin-top: 25px;
  }
  .nav{
    padding-left: 30px;
  }
  .reservecontainer,.abtdesccontainer{
    padding: 50px 15px;
    text-align: center;
  }
  .reserveleft {
    width: 100%;
    margin-bottom: 40px;

  }
  .reserveright {
    float: none;
    padding-right: 0;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    clear: both;
  }
  .reservebtn{
    margin: 25px auto 0;
    float: none;
  }
  .featureswrap li {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 20px;
  }
  .featureswrap ul{
    flex-direction: column
  }
  .activitieswrap li{
    text-align: center;
  }
  .activitieswrap li img{
    float: none;
    margin: 0 auto;
  }
  .activitieswrap li .activitiestitle{
    color: #666666;
    float: none;
    margin: 0 auto;
  }
  .activitieswrap li .activitiestitle:before{
    display: none;
  }
  .nature a,.dining a, .bird a{
    display: flex !important;
    flex-direction: column-reverse;
  }
  /* .nature .activitiestitle2 {
    right: 0;
    position: relative;
  } */
  .trekking, .swimming {
    text-align: center;
    float: none;
  }
  .dining{
    margin-left: auto;
  }
  .bird a {
     padding-left: 0;
  }
  .bird .activitiestitle2,.nature .activitiestitle2 {
    top: 68%;
    left: 50%;
  }
  .spiritualcontent{
    padding: 200px 0 185px;
    float: none;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding:150px 15px;
    max-width: 485px;
  }
  .awardsandreviewscontainer,.paradisecontainer,.organiccontainer{
    padding: 0 15px;
  }
  .container{
    padding-left: 15px;
    padding-right: 15px;
  }
  .roomsconatiner{
    max-width: 640px;
  }
  .rightabtfeature,.abtfeaturenature .rightabtfeature {
    width: 372px;
  }
  .leftabtfeature,.abtfeaturenature .leftabtfeature {
    width: 350px;
    margin-right: 15px;
  }
  .leftabtfeature img {
    margin-bottom: 20px;
  }
  .rightabtdesc h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }
  #googleMap{
    height: 300px !important;
  }
  .footer {
    padding: 80px 0px 60px;
  }
  .activitiestitle, .organictitle {
    font-size: 60px;
  }
  .activitieswrap li a{
    position: relative;
  }
  .activitiestitle{
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    color: #fff !important;
    transform: translate(-50%,-50%) !important;
    -webkit-transform: translate(-50%,-50%) !important;
  }
  .banner-caption h1, .videodesc h1 {
    font-size: 40px;
  }
  .banner-caption{
    padding: 0 15px;
  }
  .biodescleft{
    margin-top: 0;
  }
  .leftabtfeature, .abtfeaturenature .leftabtfeature {
    width: 100%;
    margin-right: auto;
    text-align: center;
  }
  .bioPage .biopagetitleleft:before{
    display: none;
  }
  .bioPage .biopagetitleleft {
    left: auto;
    width: 100%;
    top: auto;
    bottom: -75px;
  }
  .rightabtfeature, .abtfeaturenature .rightabtfeature {
    width: 100%;
    float: none;
    text-align: center;
  }
  .bioPage .rightabtdesc {
    width: 100%;
    float: right;
  }
  .bioPage .rightabtdesc p {
    margin-top: 65px;
  }
  .bioPage .biopagetitleright {
    left: 0;
    color: #292929;
    width: 100%;
    top: 5px;
  }
  .lakewrap{
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
	
	#desktopLogo
	{
		display: none;
	}
	#mobileLogo
	{
		display: block;
		/*fill:#fff;
		width: 100px;*/
	}
	
  .organic-farming, .forestwrap, .lakewrap, .coexist, .spiritual-tours{
    background-attachment: initial;
  }
  
  .biodescleft,.biodescright{
    width: 100%;
  }
  .footercontainer{
    display: block;
    text-align: center;
  }
  .rightfooter {
    text-align: center;
    margin-top: 25px;
  }
  .leftabtfeature, .abtfeaturenature .leftabtfeature {
    width: 100%;
    text-align: center;
    margin-right: auto;
  }
  .rightabtfeature, .abtfeaturenature .rightabtfeature,.abtfeaturenature .rightabtdesc {
    width: 100%;
    float: none;
    text-align: center;
  }
  .abtfeaturenature {
    margin-top: 80px;
    margin-bottom: 60px;
  }
  .biodescleft h1,.biodescleft p{
    margin-bottom: 20px;
  }
} 
@media only screen and (max-width: 639px) { 
  .bannerwidtextdesc h1 {
    font-size: 60px;
    margin-bottom: 30px;
}
.roomdescwrap h1 {
  font-size: 30px;
}
.bedrumwrap {
  margin-top: 20px;
}
.roomdescwrap h2{
  font-size: 20px;
  margin-bottom: 25px;
}
  .nav{
    width: 70%;
    right: -70%;
    padding-top: 60px;
	padding-right: 10px;
  }
  .nav li a {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .activitiestitle, .organictitle {
    font-size: 50px;
  }
  .organictitle, .spiritualcontent,.coextdesc{
    padding: 140px 15px;
  }
  .footer {
    padding: 50px 0;
  }
  .banner-caption h1, .videodesc h1{
    font-size: 30px;
  }
  .abtsmalcontainer {
    margin-top: 40px;
  }
  .contact {
    margin-top: 40px;
}
.rightabtdesc h1 {
  font-size: 26px;
  margin-bottom: 20px;
}
.abtfeaturenature {
  margin-top: 60px;
  margin-bottom: 40px;
}
}
@media only screen and (max-width: 479px) {



  .slideshow .abtvideofull{
    max-width: 100%;
  }
  .nav{
    width: 100%;
    right: -100%;
  }
  .footer {
    padding: 10px 0;
}
  .bannerwidtextdesc h1 {
    font-size: 40px;
    margin-bottom: 20px;
}
  .reservetitle h1,.abtTitle,.rightabtdesc h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .abtfeaturenature {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .abtvideoimg {
    margin: 0 auto;
    max-width: none;
    width: 200%;
  }
  .reservedesc {
    margin-bottom: 25px;
  }
  .weathericons ul li {
    margin-right: 25px;
  }
  .weathericons ul{
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
  }
  i{
    font-size: 45px;
    margin-bottom: 15px;
  }
  .weathericons ul li img {
    margin: 0 auto 15px;
    max-height: 45px;
  }
  .weathericons ul li p {
    font-size: 16px;
  }
  .slideshow .banner-caption h2 {
    font-size: 18px;
}
#logo{ width:40%;}
.slideshow .slide__subtitle {
  font-size: 20px;
}

  .calendarwrap,.bookingPage .calendarwrap {
      /* float: none;
      margin-right: auto; */
      margin-right: 15px;
  }
  .calendarday{
    font-size: 45px;
    padding: 18px 15px 24px;
  }
  .cancelpolicy{
    display: block;
    margin-top: 10px;
  }
  .bookingPage .abtsmalcontainer{
    margin-bottom: 45px;
  }
  .bookingPage .reservebtn{
    margin-top: 25px;
    margin-bottom: 5px;
  }
  .roomtypes{
    margin-bottom: 60px;
  }
  .calendardates{
    margin: 0 auto;
    height: 160px;
    width: 135px;
    padding: 20px 10px 15px;
  }
  .paradisetitile, .spiritualtitle,.coextdesc h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .featuretitle{
    font-size: 30px;
  }
  .departingdates, .kidsnumber {
    margin-right: 0;
}
  .featureswrap ul li a:hover img {
    -webkit-transform: scale3d(1.3,1.3,1) translateY(-20px);
    transform: scale3d(1.3,1.3,1) translateY(-20px);
  }
  .paradisedesc {
    padding: 30px 0px;
  }
  .paradisedesc p,.abtsmalcontainer p {
    font-size: 20px;
  }
  .activitiestitle, .organictitle {
    font-size: 36px;
  }
  .awardslist li:nth-child(2n) {
    margin-right: 25px;
  }
  .guestname{
    display: block;
  }
  #datepicker2 .ui-datepicker{
    left: -145px;
  }
  #datepicker .ui-datepicker{
    left: 0px;
  }
  .calendarwrap:hover .guests {
    display: none;
}
.slide_video{
  background-position: 15% center;
}
.guests{
  top:0;
}
}
