/**
 * Header 
 * =================================
 * - Header
 * - Navigation
 * - welcome
 * - Header 4
 * - Header 5
 */
/*------header---------*/
/**
 * Global color palette
 * =================================
 * - Generic colors
 * - Color scheme
 * - Common colors
 * - Links
 * - Text selection
 * - <hr>
 * - Any others..
 */
#auto-slider-using-animation-keyframes {
  width: 100%;
  overflow: hidden;
}

#slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0px;
  /* animation duration: 16s : 5x ~3s display image + 5x ~0.2s slide */
  /*   animation: cycle 16s infinite;
      -moz-animation: slide 16s infinite;
      -webkit-animation: slide 16s infinite;
      -o-animation: slide 16s infinite;*/
}

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

.slick-slide {
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  opacity: .2;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

#slider .slick-track {
  height: 300px;
}

/* ------------------------------------------
   RESPONSIVE NAV STYLES
 --------------------------------------------- */
.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}

.nav-collapse li {
  width: 100%;
  display: block;
}

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}

.nav-collapse.opened {
  max-height: 9999px;
}

.disable-pointer-events {
  pointer-events: none !important;
}

.nav-toggle {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

@media screen and (min-width: 40em) {
  .js .nav-collapse {
    position: relative;
  }
  .js .nav-collapse.closed {
    max-height: none;
  }
  .nav-toggle {
    display: none;
  }
}

/* ------------------------------------------
   FIXED HEADER
 --------------------------------------------- */
.header-fixed {
  background: #f4421a;
  position: fixed;
  z-index: 3;
  width: 100%;
  left: 0;
  top: 0;
}

.logo {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  font-weight: bold;
  line-height: 55px;
  padding: 0 20px;
  color: #fff;
  float: left;
}

/* ------------------------------------------
   MASK
 --------------------------------------------- */
.mask {
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  position: fixed;
  opacity: 0;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

.android .mask {
  -webkit-transition: none;
  transition: none;
}

.js-nav-active .mask {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 40em) {
  .mask {
    display: none !important;
    opacity: 0 !important;
  }
}

/* ------------------------------------------
   NAVIGATION STYLES
 --------------------------------------------- */
.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}

.nav-collapse,
.nav-collapse * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.nav-collapse,
.nav-collapse ul {
  list-style: none;
  width: 100%;
  float: left;
}

@media screen and (min-width: 40em) {
  .nav-collapse {
    float: right;
    width: auto;
  }
}

.nav-collapse li {
  float: left;
  width: 100%;
}

@media screen and (min-width: 40em) {
  .nav-collapse li {
    width: auto;
  }
}

.nav-collapse a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-top: 1px solid white;
  text-decoration: none;
  background: #f4421a;
  padding: 0.7em 1em;
  color: #fff;
  width: 100%;
  float: left;
}

.nav-collapse a:active,
.nav-collapse .active a {
  background: #b73214;
}

@media screen and (min-width: 40em) {
  .nav-collapse a {
    border-left: 1px solid white;
    padding: 1.02em 2em;
    text-align: center;
    border-top: 0;
    float: left;
    margin: 0;
  }
}

.nav-collapse ul ul a {
  background: #ca3716;
  padding-left: 2em;
}

@media screen and (min-width: 40em) {
  .nav-collapse ul ul a {
    display: none;
  }
}

/* ------------------------------------------
   NAV TOGGLE STYLES
 --------------------------------------------- */
.nav-toggle {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  text-indent: -300px;
  position: relative;
  overflow: hidden;
  width: 60px;
  height: 55px;
  float: right;
}

.nav-toggle:before {
  color: #fff;
  /* Edit this to change the icon color */
  font: normal 28px/55px "responsivenav";
  /* Edit font-size (28px) to change the icon size */
  text-transform: none;
  text-align: center;
  position: absolute;
  content: "\2261";
  /* Hamburger icon */
  text-indent: 0;
  speak: none;
  width: 100%;
  left: 0;
  top: 0;
}

.nav-toggle.active:before {
  font-size: 24px;
  content: "\78";
  /* Close icon */
}

.simple-nav ul {
  list-style: none;
  background-color: #444;
  text-align: center;
  padding: 0;
  margin: 0;
}

.simple-nav ul li {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2em;
  line-height: 40px;
  height: 40px;
  border-bottom: 1px solid #888;
}

.simple-nav ul li a {
  text-decoration: none;
  color: #fff;
  display: block;
  -webkit-transition: .3s background-color;
  transition: .3s background-color;
}

.simple-nav ul li a :hover {
  background-color: #fff;
}

.simple-nav ul li a .active {
  background-color: #fff;
  color: #444;
  cursor: default;
}

@media screen and (min-width: 600px) {
  .simple-nav li {
    width: 120px;
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
  }
  /* Option 1 - Display Inline */
  .simple-nav li {
    display: inline-block;
    margin-right: -4px;
  }
}

/* Options 2 - Float
    .nav li {
      float: left;
    }
    .nav ul {
      overflow: auto;
      width: 600px;
      margin: 0 auto;
    }
    .nav {
      background-color: #444;
    }*/
.brand a {
  background: #fff;
}

.main-menu {
  background: #ffffff;
}

.menu-header {
  text-align: center;
  float: left;
  position: relative;
  width: 100%;
}

.menu-header a {
  padding: 0;
  display: block;
  text-decoration: none;
}

@media only screen and (max-width: 1000px) {
  .menu-nav > ul > li > a {
    padding: 20px 23px;
  }
}

#header {
  z-index: 9;
}

#header .book-button {
  background: #4a770c;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
}

#header .book-button a {
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
}

#header .book-button a:hover {
  background: #ffffff;
  color: #000000 !important;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  border: 1px solid #ccc;
}

.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #4a770c;
  border-bottom: 1px solid #ececec;
  transition: all ease-in-out 1s;
  -webkit-transition: all ease-in-out 1s;
  -o-transition: all ease-in-out 1s;
  -moz-transition: all ease-in-out 1s;
  z-index: 999;
}

.fixed .brand img {
  width: 200px;
}

.fixed .menu-nav > ul > li.active > a:after,
.fixed .menu-nav > ul > li:hover > a:after {
  left: 10px;
  bottom: 5px;
}

#welcome {
  margin: 50px 0 25px;
  float: left;
  width: 100%;
}

#welcome .welcome-section {
  float: left;
  background: #ffffff;
  padding: 50px 0 0;
  width: 100%;
  position: relative;
}

#welcome .welcome-section h1 {
  font-weight: 500;
  font-family: "Allura", cursive;
  font-size: 48px;
  margin: 0;
}

#welcome .welcome-section p {
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #343434;
  margin: 20px 0;
  line-height: 1.5em;
  margin-right: 50px;
}

#welcome .welcome-section .border {
  position: relative;
}

#welcome .welcome-section .border:after {
  border-right: 1px solid #e9ebf0;
  content: "";
  position: absolute;
  float: left;
  width: 1px;
  height: 70%;
  top: 0;
  margin: 0 auto;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  right: -15px;
}

#accommodation {
  float: left;
  background: #ffffff;
  padding: 0 40px 40px;
  width: 100%;
  position: relative;
}

#accommodation h2 {
  font-weight: 500;
  font-family: "Allura", cursive;
  font-size: 48px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  margin: 50px 0;
}

#accommodation h2 span {
  position: relative;
}

#accommodation h2 span:after {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 35%;
  right: -140px;
  bottom: 30px;
  z-index: 1;
}

#accommodation h2 span:before {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 35%;
  left: -140px;
  bottom: 30px;
  z-index: 1;
}

#accommodation .booking-image img {
  height: 530px;
}

#accommodation .comfort {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: rgba(74, 119, 12, 0.93);
  padding: 2em;
  text-align: center;
  width: 650px;
  height: 99.5%;
}

#accommodation .comfort .box-area {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  float: left;
  display: block;
  padding: 0 2em;
}

#accommodation .comfort h3 {
  position: relative;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  line-height: 1.5em;
  font-size: 32px;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
  border-bottom: 1px solid #ffffff;
}

#accommodation .comfort h5 {
  position: relative;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5em;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
  letter-spacing: 0.05em;
}

#accommodation .comfort h6 {
  position: relative;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5em;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
  letter-spacing: 0.02em;
}

#accommodation .comfort a {
  color: #343434;
  padding: 1em 1em;
  background: #ffffff;
  color: #343434;
  float: left;
  width: 180px;
  position: relative;
  font-family: "Lato", sans-serif;
  text-align: center;
  left: 0;
  right: 0;
  margin: 2em auto;
  border: 1px solid #ffffff;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
}

#accommodation .comfort a a {
  color: #343434;
}

#accommodation .comfort a:hover {
  background: transparent;
  color: #343434;
  float: left;
  position: relative;
  border: 1px solid #ffffff;
  font-family: "Lato", sans-serif;
  text-align: center;
  padding: 1em 1em;
  width: 180px;
  left: 0;
  right: 0;
  margin: 2em auto;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  color: #ffffff;
}

#accommodation .comfort .face {
  display: inline-block;
  float: left;
  position: relative;
  width: 33%;
  margin: 30px 0;
}

#accommodation .comfort .face .face1 {
  width: 54px;
  height: 60px;
  background: url(../../img/sprite.png) -12px -94px;
  display: block;
  position: relative;
}

#accommodation .comfort .face .face1 span {
  width: 20px;
  height: 20px;
  position: absolute;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  padding: 0.2em;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
}

#accommodation .comfort .face .face2 {
  width: 49px;
  height: 60px;
  background: url(../../img/sprite.png) -65px -94px;
  display: block;
  position: relative;
}

#accommodation .comfort .face .face2 span {
  width: 20px;
  height: 20px;
  position: absolute;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  padding: 0.2em;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  right: -10px;
}

#accommodation .comfort .face .face3 {
  width: 52px;
  height: 60px;
  background: url(../../img/sprite.png) -131px -94px;
  display: block;
  position: relative;
}

#accommodation .comfort .face .face3 span {
  width: 20px;
  height: 20px;
  position: absolute;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  padding: 0.2em;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
}

#accommodation .comfort .face .face4 {
  width: 52px;
  height: 60px;
  background: url(../../img/sprite.png) -178px -94px;
  display: block;
  position: relative;
}

#accommodation .comfort .face .face4 span {
  width: 20px;
  height: 20px;
  position: absolute;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  padding: 0.2em;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  right: -10px;
}

#accommodation .comfort .face .face5 {
  width: 52px;
  height: 60px;
  background: url(../../img/sprite.png) -280px -94px;
  display: block;
  position: relative;
}

#accommodation .comfort .face .face5 span {
  width: 20px;
  height: 20px;
  position: absolute;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  padding: 0.2em;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  right: 0px;
}

#booking-section {
  float: left;
  position: relative;
}

#booking-section .booking {
  display: block;
  width: 100%;
  float: left;
  position: relative;
  padding: 40px;
}

#booking-section .booking h3 {
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  margin: 0;
  font-size: 28px;
}

#booking-section .booking h5 {
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #ffffff;
  margin: 0.5em 0 3.2em 0;
}

#booking-section .booking .booking-image img {
  width: 100%;
  background-image: url("../../img/booking-img.jpg");
  background-repeat: no-repeat;
}

#booking-section .booking .para {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(74, 119, 12, 0.93);
  padding: 2em;
  text-align: center;
  width: 650px;
  height: 99.5%;
}

#booking-section .booking .para .book-button {
  background: #ffffff;
  color: #343434;
  position: relative;
  font-family: "Lato", sans-serif;
  text-align: center;
  padding: 1em 3em;
  width: 180px;
  left: 0;
  right: 0;
  border: 1px solid #ffffff;
  margin: 0 auto;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

#booking-section .booking .para .book-button:hover {
  background: transparent;
  color: #343434;
  position: relative;
  font-family: "Lato", sans-serif;
  text-align: center;
  padding: 1em 3em;
  width: 180px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border: 1px solid #ffffff;
  color: #ffffff;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

#booking-section .booking .para h2 {
  position: relative;
  text-align: center;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5em;
  font-size: 40px;
  text-transform: uppercase;
}

#gallery {
  float: left;
  background: #ffffff;
  width: 100%;
  position: relative;
}

#gallery h2 {
  font-weight: 500;
  font-family: "Allura", cursive;
  font-size: 48px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  margin: 50px 0;
}

#gallery h2 span {
  position: relative;
}

#gallery h2 span:after {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 35%;
  right: -140px;
  bottom: 30px;
  z-index: 1;
}

#gallery h2 span:before {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 35%;
  left: -140px;
  bottom: 30px;
  z-index: 1;
}

#gallery .slick-slide img {
  padding: 0 0.5em;
  height: 550px;
}

#gallery .slick-prev {
  left: 2%;
  z-index: 3;
}

#gallery .slick-next {
  right: 2%;
  z-index: 3;
}

#gallery .slick-prev:before, #gallery .slick-next:before {
  color: #f4f4f4;
}

#gallery .gallery {
  display: block;
  float: left;
  width: 100%;
  position: relative;
}

#gallery .gallery:hover .plus-button {
  opacity: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

#gallery .gallery .plus-button {
  background: transparent;
  padding: 1em;
  color: transparent;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  cursor: pointer;
  z-index: 2;
}

#gallery .hours {
  width: 96%;
  height: 550px;
  border: 10px solid #e9ebf0;
  padding: 0 1em;
  margin: 0 auto;
}

#gallery .hours h3 {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin: 1em;
  text-align: center;
}

#gallery .hours h3 span {
  border-bottom: 1px solid #e9ebf0;
}

#gallery .hours .in .clock-in {
  width: 66px;
  height: 101px;
  background: url(../../img/sprite.png) 0 -127px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

#gallery .hours .out .clock-out {
  width: 66px;
  height: 101px;
  background: url(../../img/sprite.png) 0 -127px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

#gallery .hours h4 {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  margin: 0.5em;
  color: #343434;
}

#gallery .hours h5 {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  color: #343434;
}

#facilities {
  float: left;
  background: #ffffff;
  padding: 40px 0;
  width: 100%;
  position: relative;
}

#facilities h2 {
  font-weight: 500;
  font-family: "Allura", cursive;
  font-size: 48px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
}

#facilities h2 span {
  position: relative;
}

#facilities h2 span:after {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 35%;
  right: -120px;
  bottom: 30px;
  z-index: 1;
}

#facilities h2 span:before {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 35%;
  left: -120px;
  bottom: 30px;
  z-index: 1;
}

#facilities .facilities .box {
  background: #ffffff;
  border: 1px solid #e9ebf0;
  font-family: "Lato", sans-serif;
  text-align: center;
  width: 18%;
  float: left;
  margin: 0.5em 0.5em;
  padding: 20px 20px 60px;
  height: 250px;
  position: relative;
}

#facilities .facilities .box h3 {
  font-weight: 500;
  font-family: "Lato", sans-serif;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
}

#facilities .facilities .box .img1 {
  width: 75px;
  height: 90px;
  background: url(../../img/sprite.png) -3px 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}

#facilities .facilities .box .img2 {
  width: 96px;
  height: 98px;
  background: url(../../img/sprite.png) -92px 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}

#facilities .facilities .box .img3 {
  width: 96px;
  height: 108px;
  background: url(../../img/sprite.png) -178px 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}

#facilities .facilities .box .img4 {
  width: 92px;
  height: 96px;
  background: url(../../img/sprite.png) -272px 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}

#facilities .facilities .box .img5 {
  width: 93px;
  height: 101px;
  background: url(../../img/sprite.png) -362px 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}

#testimonial {
  float: left;
  background: #ffffff;
  padding: 50px 0;
  width: 100%;
  position: relative;
  float: left;
}

#testimonial h2 {
  font-weight: 500;
  font-family: "Allura", cursive;
  font-size: 48px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  margin: 50px 0 20px;
}

#testimonial h2 span {
  position: relative;
}

#testimonial h2 span:after {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 35%;
  right: -120px;
  bottom: 30px;
  z-index: 1;
}

#testimonial h2 span:before {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 35%;
  left: -120px;
  bottom: 30px;
  z-index: 1;
}

#testimonial .review {
  position: relative;
  text-align: center;
  font-family: "Lato", sans-serif;
  width: 80%;
  margin: 0 auto;
}

#testimonial .review p {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 30px 0;
}

#testimonial .review .name {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

#testimonial .review .place {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

#testimonial .slick-prev:before, #testimonial .slick-next:before {
  color: #9c9c9c;
}

#testimonial .slick-prev, #testimonial .slick-next {
  top: 50%;
}

#testimonial .slick-list {
  z-index: 2;
}

#testimonial .slick-slide {
  margin: 0 1em;
}

#testimonial .slick-active {
  opacity: 1;
}

#testimonial .slick-next {
  right: -20px;
  z-index: 3;
}

#testimonial .slick-prev {
  left: -20px;
  z-index: 3;
}

.card-main {
  width: 100%;
  height: auto;
  text-align: center;
  background-color: white;
}

.card {
  border: 1px solid black;
  margin: 0 15px;
}

.card img {
  width: 100%;
  height: 250px;
}

.card .card-body {
  padding: 30px;
  text-align: left;
}

.card .card-body h3 {
  margin-bottom: 40px;
  font-size: 1.4em;
}

.card .card-body .details {
  margin-bottom: 40px;
  list-style-type: none;
}

.card .card-body .details li {
  line-height: 2;
  position: relative;
}

.card .card-body .details :before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  float: left;
  left: -1.5em;
  top: 0.74em;
  background-color: black;
}

.card .card-body .btn {
  background-color: #148df0;
  color: white;
  text-decoration: none;
  color: #ffffff;
  font-size: 1em;
  padding: 10px;
}

.card .card-body .btn:hover {
  background-color: #000000;
}

.card img:hover {
  opacity: 0.3;
}

footer {
  width: 100%;
  float: left;
  background-color: #ffffff;
  padding: 40px 40px 0;
}

footer .foot {
  border-top: 1px solid #e9ebf0;
}

footer .foot .menu-links {
  float: left;
  position: relative;
  width: 100%;
}

footer .foot .menu-links ul {
  list-style: none;
  display: inline-block;
  float: left;
  padding: 0;
}

footer .foot .menu-links ul li {
  display: block;
  float: left;
  font-family: "Lato", sans-serif;
  padding: 0.5em 2em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

footer .foot .menu-links ul li a {
  color: #000000;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

footer .foot .menu-links ul li a:hover {
  color: #ccc;
}

footer .foot .menu-links ul li:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

footer .foot .info {
  float: left;
  display: block;
  width: 100%;
}

footer .foot .info .address {
  font-family: "Lato", sans-serif;
  float: left;
  position: relative;
}

footer .foot .info .address:before {
  content: "";
  border-top: 1px solid #e9ebf0;
  width: 100%;
  position: relative;
  float: left;
}

footer .foot .info .address p {
  color: #484848;
}

footer .foot .info .mail {
  font-family: "Lato", sans-serif;
  float: left;
  position: relative;
  width: 100%;
  text-align: right;
}

footer .foot .info .mail .content {
  float: right;
}

footer .foot .info .mail .content p {
  color: #484848;
}

footer .foot .info .mail .content:before {
  content: "";
  border-top: 1px solid #e9ebf0;
  width: 100%;
  position: relative;
  float: left;
}

footer .foot .info .phone {
  font-family: "Lato", sans-serif;
  float: right;
  position: relative;
  width: 100%;
  text-align: right;
}

footer .foot .info .phone .content {
  float: right;
}

footer .foot .info .phone .content p {
  color: #484848;
}

footer .foot .info .phone .content:before {
  content: "";
  border-top: 1px solid #e9ebf0;
  width: 100%;
  position: relative;
  float: left;
}

footer .foot .menu-links ul li.active a {
  color: #4a770c;
}

.copyright {
  color: #ffffff;
  text-align: center;
  line-height: 4;
  width: 100%;
  float: left;
  background-color: #4e7c7c;
  font-family: "Lato", sans-serif;
}

.copyright p {
  margin-bottom: 0;
}

.copyright p a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #ffffff;
  background: #000000;
  margin-top: 40px;
}

.footer-bottom .text-footer a {
  color: #4a770c;
}

.footer-bottom p {
  text-align: center;
  margin: 0.5em;
}

.center-foot {
  width: 100%;
  text-align: center;
  float: left;
}

.icon-social {
  display: inline-block;
  float: right;
  text-align: center;
}

.icon-social .icon {
  display: block;
  float: left;
  text-align: center;
  margin: 10px;
  background: #4a770c;
  color: #ffffff;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  padding: 0.3em 0.2em;
}

.icon-social a {
  color: #ffffff;
}

.book-form input[type="text"], .book-form input[type="email"], select#country, select#country1, textarea, input#datepicker {
  width: 98%;
  color: #fff;
  font-size: 0.9em;
  letter-spacing: 0.5px;
  padding: 10px 10px 10px 50px;
  outline: none;
  background: rgba(255, 255, 255, 0);
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.47);
  line-height: 2em;
}

#form {
  margin-bottom: 300px;
}

.bg-agile {
  float: left;
  width: 50%;
  position: absolute;
  padding: 3em 3em 3.5em;
  background: black;
  top: 0;
  margin: 50px;
  right: 0;
}

.book-form {
  margin: 0;
  width: 100%;
}

.book-form .form-text {
  position: relative;
}

.book-form i {
  position: absolute;
  color: #ea2e3e;
  top: 7px;
  left: 0;
  width: 34px;
  line-height: 25px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.47);
}

.book-form input[type="submit"] {
  text-transform: capitalize;
  background: rgba(16, 67, 163, 0.13);
  color: #fff;
  padding: 0.7em 0;
  border: none;
  border: 2px solid #ea2e3e;
  font-weight: bold;
  font-size: 1em;
  margin-top: 1.5em;
  width: 50%;
  float: right;
  outline: none;
  letter-spacing: 8px;
  -webkit-transition: .5s all;
  transition: .5s all;
  cursor: pointer;
}

.book-form input[type="submit"]:hover {
  background: #ea2e3e;
  border-color: #ea2e3e;
  color: #fff;
}

.book-form ::-webkit-input-placeholder {
  color: #fff !important;
}

.book-form :-moz-placeholder {
  color: #fff !important;
}

.book-form :-ms-input-placeholder {
  color: #fff !important;
}

select#country option {
  background: #000;
}

select#country1 option {
  background: #000;
}

.phone_email {
  margin-bottom: 1.5em;
  float: left;
}

.span1_of_1 {
  margin-bottom: 1.5em;
  float: left;
}

.phone_email1 {
  float: right;
}

.book_date {
  position: relative;
}

.section_room {
  position: relative;
}

.agile-reservation-grid {
  background: #f4f4f4;
  padding: 2em;
}

.book-appointment h2 {
  text-align: center;
  font-size: 30px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 2em;
  font-weight: 500;
  letter-spacing: 7px;
}

/****form1 scss****/
.form1 {
  width: 100%;
  float: left;
  position: relative;
}

.contact_info {
  padding: 5em 0 0 14em;
}

.contact_info h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
}

.form_contactinfo {
  width: 500px;
  position: relative;
}

.form_contactinfo h5 {
  font-size: 26px;
  margin: 1em 0;
  letter-spacing: 0.03em;
}

.form_contactinfo address {
  font-size: 16px;
  margin-bottom: 20px;
}

.form1 .form_details {
  position: absolute;
  left: 27%;
  bottom: 40%;
}

.form1 .form_details .address_info {
  float: left;
  width: 280px;
  background-color: #c8b29c;
  border-style: solid;
  border-color: #e0cfbd;
  border-width: 1px 0 1px 1px;
  padding: 5px 0 5px 5px;
}

.form1 .form_details .address_info h4 {
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.15em;
}

.form1 .form_details .address_info ul {
  padding-left: 0;
}

.form1 .form_details .address_info ul a {
  text-decoration: none;
}

.form1 .form_details .address_info ul li {
  list-style-type: none;
  line-height: 2;
  color: #fff;
}

.form1 .form_details .address_info ul li .i-name {
  padding-left: 10px;
  letter-spacing: 0.15em;
}

address {
  font-style: normal;
  letter-spacing: 0.15em;
}

.form_bgimg img {
  height: 100%;
}

.address_map {
  background-color: #000;
  width: 120px;
  height: 144px;
  float: left;
  padding-top: 50px;
  text-align: center;
}

.address_map .fa-map-marker-alt {
  font-size: 30px;
  color: #fff;
}

.address_map .map_text {
  background-color: #000;
  border: none;
  color: white;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.padding {
  padding-left: 15px;
  padding-right: 15px;
}

#wrapper {
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border: 10px solid #aaa;
  border-radius: 15px;
  background-clip: padding-box;
  text-align: center;
  float: left;
  display: inline-block;
}

#wrapper p {
  display: inline;
}

.button {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  padding: 5px 10px;
  border: 1px solid #aaa;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f0f0f0));
  background-image: linear-gradient(top, #fff, #f0f0f0);
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  color: #666;
  text-decoration: none;
  text-shadow: 0 1px 0 #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.button:hover {
  border-color: #999;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.button:active {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset;
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
  visibility: hidden;
  opacity: 0;
}

.overlay.light {
  background: rgba(255, 255, 255, 0.5);
}

.overlay .cancel {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: default;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 75px auto;
  padding: 20px 10px;
  background: #fff;
  border: 1px solid #666;
  width: 300px;
  position: relative;
}

.light .popup {
  border-color: #aaa;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.popup h2 {
  margin-top: 0;
  color: #666;
  font-family: "Lato", sans-serif;
}

.popup .close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 20px;
  opacity: 0.8;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #666;
}

.popup .close:hover {
  opacity: 1;
}

.popup .content {
  max-height: 400px;
  overflow: auto;
}

.popup p {
  margin: 0 0 1em;
}

.popup p:last-child {
  margin: 0;
}

/*display-map*/
.map-popup-overlay {
  /*Hides pop-up when there is no "active" class*/
  visibility: hidden;
  position: absolute;
  width: 500px;
  left: 25%;
  top: -50px;
}

.map-popup-overlay .active {
  /*displays pop-up when "active" class is present*/
  visibility: visible;
  text-align: center;
  padding: 0.5em;
  float: left;
  width: 100%;
  background: #fff;
  border: 8px solid #cccccc;
  border-radius: 16px;
}

.map-popup-content {
  /*Hides pop-up content when there is no "active" class */
  visibility: hidden;
}

.map-popup-content .active {
  /*Shows pop-up content when "active" class is present */
  visibility: visible;
}

.map-open {
  display: inline-block;
  vertical-align: middle;
  padding: 0.5em;
  margin: .20rem;
  font-size: 1rem;
  color: #ffffff;
  background: #000000;
  border: none;
}

.map-open :hover {
  border: 1px solid #666666;
  background: #666666;
}

#contact {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  padding-bottom: 50px;
}

#contact .info {
  position: relative;
}

#contact .info .img-size {
  height: 600px;
  width: 100%;
}

#contact .info .mapping {
  position: absolute;
  float: left;
  z-index: 1;
  right: 0px;
  top: 100px;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  width: 300px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5em 1em;
  border: 1px solid #f4f4f4;
  -webkit-box-shadow: 2px 2px 15px #ccc;
          box-shadow: 2px 2px 15px #ccc;
  left: 0;
  margin: 0 auto;
}

#contact .info .mapping .demo-icon {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  outline: none;
  color: #000000;
}

#contact .info .mapping p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  outline: none;
  color: #343434;
}

#contact .info .mapping .open {
  width: 150px;
  height: 40px;
  background: #4a770c;
  margin: 10px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  outline: none;
  color: #fff;
  cursor: pointer;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

#contact .info .mapping .open:hover {
  background: #ffffff;
  color: #343434;
  border: 1px solid #e9ebf0;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

#gallery-page {
  width: 100%;
  float: left;
  text-align: center;
}

#gallery-page h2 {
  font-weight: 500;
  font-family: "Allura", cursive;
  font-size: 48px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  margin: 50px 0;
}

#gallery-page h2 span {
  position: relative;
}

#gallery-page h2 span:after {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 60%;
  right: -90px;
  bottom: 30px;
  z-index: 1;
}

#gallery-page h2 span:before {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 60%;
  left: -90px;
  bottom: 30px;
  z-index: 1;
}

#gallery-page h5 {
  font-weight: 300;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  letter-spacing: 1em;
  font-style: italic;
  text-transform: uppercase;
  margin: 0;
}

#gallery-page ul {
  padding-left: 0;
}

#gallery-page ul li {
  list-style: none;
  padding: 0.5em;
  cursor: pointer;
}

#things-to-do {
  display: block;
  width: 100%;
  float: left;
}

#things-to-do .ipro-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

#things-to-do h2 {
  font-weight: 500;
  font-family: "Allura", cursive;
  font-size: 48px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  margin: 50px 0;
  width: 100%;
}

#things-to-do h2 span {
  position: relative;
}

#things-to-do h2 span:after {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 35%;
  right: -80px;
  bottom: 30px;
  z-index: 1;
}

#things-to-do h2 span:before {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 35%;
  left: -80px;
  bottom: 30px;
  z-index: 1;
}

#things-to-do .attractions {
  padding: 0.9em 0.9em;
  position: relative;
  overflow: hidden;
}

#things-to-do .attractions .info {
  position: relative;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(74, 119, 12, 0.05);
  padding: 1em;
  text-align: left;
  border: 1px solid #e9ebf0;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

#things-to-do .attractions .info .btn {
  position: relative;
  background: #4a770c;
  padding: 12px 20px;
  cursor: pointer;
  color: #ffffff;
  border: none;
  margin: 1em 0;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

#things-to-do .attractions .info .btn:hover {
  background: #ffffff;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  cursor: pointer;
  color: #484848;
  border: none;
}

#things-to-do .attractions h3 {
  position: relative;
  font-size: 24px;
  z-index: 1;
  color: #484848;
  font-family: "Lato", sans-serif;
  text-transform: capitalize;
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.03em;
}

#things-to-do .popup-main {
  width: 100%;
  height: auto;
  display: none;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  overflow: scroll;
  font-family: "Lato", sans-serif;
}

#things-to-do .popup-main .container {
  display: block;
  width: 100%;
  height: auto;
  background: none;
  margin: 15% auto;
  position: relative;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
}

#things-to-do .popup-main .container .popup {
  display: block;
  width: 100px;
  height: 350px;
  background: #fff;
  border: 1px solid #CCC;
  overflow: hidden;
  font-size: 20px;
  -webkit-transition: 0.85s ease;
  transition: 0.85s ease;
  margin: auto;
  padding: 0;
  z-index: -2;
  font-family: "Lato", sans-serif;
  padding-bottom: 20px;
}

#things-to-do .popup-main .container h4 {
  display: none;
  color: #ffffff;
  padding: 0.8em 0.5em;
  font-size: 24px;
  background: #8bc34a;
  margin-top: 0;
  margin-bottom: 0.8em;
  text-transform: capitalize;
}

#things-to-do .popup-main .container .popup-para {
  display: none;
  color: #484848;
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 0 1em;
  line-height: 1.4em;
  text-align: justify;
}

#things-to-do .popup-main .container .popup-list {
  display: none;
  text-align: justify;
}

#things-to-do .popup-main .container .popup-list li {
  color: #484848;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.4em;
}

#things-to-do .popup-main .container .close {
  position: absolute;
  right: 25%;
  top: 0;
  width: 32px;
  height: 32px;
  padding: 0.3em;
  cursor: pointer;
  background: #4a770c;
}

#things-to-do .popup-main .container .close:before, #things-to-do .popup-main .container .close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 20px;
  width: 2px;
  background-color: #ffffff;
}

#things-to-do .popup-main .container .close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#things-to-do .popup-main .container .close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#accommodation-page {
  width: 100%;
  float: left;
  text-align: center;
  padding: 0 40px;
}

#accommodation-page .slick-prev {
  left: 0;
}

#accommodation-page .slick-next {
  right: auto;
  left: 41px;
}

#accommodation-page h2 {
  font-weight: 500;
  font-family: "Allura", cursive;
  font-size: 48px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  margin: 50px 0;
}

#accommodation-page h2 span {
  position: relative;
}

#accommodation-page h2 span:after {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 35%;
  right: -95px;
  bottom: 30px;
  z-index: 1;
}

#accommodation-page h2 span:before {
  border-bottom: 1px solid #000000;
  bottom: 0;
  content: "";
  position: absolute;
  float: left;
  height: 1px;
  width: 35%;
  left: -95px;
  bottom: 30px;
  z-index: 1;
}

#accommodation-page .accommodation-gallery {
  position: relative;
}

#accommodation-page .accommodation-gallery .images {
  position: relative;
  width: 100%;
}

#accommodation-page .accommodation-gallery .images .slick-slide img {
  height: 530px;
}

#accommodation-page .accommodation-gallery .details {
  float: left;
  display: block;
  width: 650px;
  background: rgba(74, 119, 12, 0.85);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 529px;
}

#accommodation-page .accommodation-gallery .details .comfort {
  width: 100%;
  padding: 2em;
}

#accommodation-page .accommodation-gallery .details .comfort .box-area {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  float: left;
  display: block;
  padding: 0 2em;
}

#accommodation-page .accommodation-gallery .details .comfort h3 {
  position: relative;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  line-height: 1.5em;
  font-size: 32px;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
  border-bottom: 1px solid #ffffff;
}

#accommodation-page .accommodation-gallery .details .comfort h5 {
  position: relative;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5em;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
  letter-spacing: 0.02em;
}

#accommodation-page .accommodation-gallery .details .comfort h6 {
  position: relative;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5em;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
  letter-spacing: 0.02em;
}

#accommodation-page .accommodation-gallery .details .comfort .book-button {
  background: #ffffff;
  color: #343434;
  float: left;
  position: relative;
  font-family: "Lato", sans-serif;
  text-align: center;
  padding: 1em 1em;
  width: 180px;
  left: 0;
  right: 0;
  margin: 2em auto;
  cursor: pointer;
  border: 1px solid #ffffff;
  text-transform: uppercase;
  font-weight: 600;
}

#accommodation-page .accommodation-gallery .details .comfort .book-button a {
  color: #343434;
  padding: 1em 1em;
}

#accommodation-page .accommodation-gallery .details .comfort .book-button:hover {
  background: transparent;
  color: #343434;
  float: left;
  position: relative;
  border: 1px solid #ffffff;
  font-family: "Lato", sans-serif;
  text-align: center;
  padding: 1em 1em;
  width: 180px;
  left: 0;
  right: 0;
  margin: 2em auto;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  color: #ffffff;
}

#accommodation-page .accommodation-gallery .details .comfort .face {
  display: inline-block;
  float: left;
  position: relative;
  width: 33%;
  margin: 30px 0;
}

#accommodation-page .accommodation-gallery .details .comfort .face .face1 {
  width: 54px;
  height: 60px;
  background: url(../../img/sprite.png) -12px -94px;
  display: block;
  position: relative;
}

#accommodation-page .accommodation-gallery .details .comfort .face .face1 span {
  width: 20px;
  height: 20px;
  position: absolute;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  padding: 0.2em;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
}

#accommodation-page .accommodation-gallery .details .comfort .face .face2 {
  width: 49px;
  height: 60px;
  background: url(../../img/sprite.png) -65px -94px;
  display: block;
  position: relative;
}

#accommodation-page .accommodation-gallery .details .comfort .face .face2 span {
  width: 20px;
  height: 20px;
  position: absolute;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  padding: 0.2em;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
}

#accommodation-page .accommodation-gallery .details .comfort .face .face3 {
  width: 52px;
  height: 60px;
  background: url(../../img/sprite.png) -131px -94px;
  display: block;
  position: relative;
}

#accommodation-page .accommodation-gallery .details .comfort .face .face3 span {
  width: 20px;
  height: 20px;
  position: absolute;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  padding: 0.2em;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
}

#accommodation-page .accommodation-gallery .details .comfort .face .face4 {
  width: 52px;
  height: 60px;
  background: url(../../img/sprite.png) -178px -94px;
  display: block;
  position: relative;
}

#accommodation-page .accommodation-gallery .details .comfort .face .face4 span {
  width: 20px;
  height: 20px;
  position: absolute;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  padding: 0.2em;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
}

#accommodation-page .accommodation-gallery .details .comfort .face .face5 {
  width: 52px;
  height: 60px;
  background: url(../../img/sprite.png) -280px -94px;
  display: block;
  position: relative;
}

#accommodation-page .accommodation-gallery .details .comfort .face .face5 span {
  width: 20px;
  height: 20px;
  position: absolute;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  padding: 0.2em;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
}

#accommodation-page .facilities .content {
  text-align: left;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  color: #343434;
  padding: 20px 0;
}

#accommodation-page .facilities .content h3 {
  font-size: 24px;
  color: #343434;
  font-family: "Lato", sans-serif;
  font-weight: 800;
}

#accommodation-page .facilities .details {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

#accommodation-page .facilities .details h3 {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  color: #343434;
  font-weight: 800;
}

#accommodation-page .facilities .details .listing {
  position: relative;
  float: left;
  list-style: none;
  text-align: left;
  line-height: 1.5em;
  font-size: 16px;
  letter-spacing: 0.05em;
  width: 100%;
  padding-left: 80px;
  color: #343434;
  margin: 0;
}

#accommodation-page .facilities .details .listing li {
  line-height: 1.5em;
  position: relative;
  color: #343434;
}

#accommodation-page .facilities .details .listing li:before {
  content: "";
  position: absolute;
  float: left;
  left: -25px;
  height: 8px;
  width: 8px;
  top: 10px;
  border-style: solid;
  border-color: #888888;
  border-width: 0px 2px 2px 0px;
  transform: rotate(-50deg);
  -webkit-transform: rotate(-50deg);
}

.arrow-to-top {
  color: #ffffff;
  font-size: 1.5em;
  text-align: center;
  z-index: 9;
  display: block;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 10px;
  float: right;
  /* -------------------------------- */
}

.arrow-to-top .cd-nugget-info {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 50px;
  line-height: 50px;
  top: 0;
  left: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.arrow-to-top .cd-nugget-info a {
  position: relative;
  font-size: 14px;
  color: #4a770c;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.arrow-to-top .cd-nugget-info a:hover {
  opacity: 0.8;
}

.arrow-to-top .cd-nugget-info span {
  vertical-align: middle;
  display: inline-block;
}

.arrow-to-top .cd-nugget-info span svg {
  display: block;
}

.arrow-to-top .cd-nugget-info .cd-nugget-info-arrow {
  fill: #ffffff;
}

.arrow-to-top .cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  border: 1px solid #e9ebf0;
  background: #ffffff url(../../img/sprite.png) no-repeat -242px -112px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, background-color 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, background-color 0.3s 0s;
  z-index: 9;
}

.arrow-to-top .cd-top.cd-top--show,
.arrow-to-top .cd-top.cd-top--fade-out,
.arrow-to-top .cd-top:hover {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, background-color 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, background-color 0.3s 0s;
}

.arrow-to-top .cd-top.cd-top--show {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}

.arrow-to-top .cd-top.cd-top--fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: 0.5;
}

.arrow-to-top .cd-top:hover {
  background-color: #ffffff;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .arrow-to-top .cd-top, .arrow-to-top .arrow-to-top {
    right: 20px;
    bottom: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .arrow-to-top .cd-top, .arrow-to-top .arrow-to-top {
    height: 40px;
    width: 40px;
    right: 30px;
    bottom: 30px;
  }
}

@media only screen and (max-width: 1539px) {
  /*think to do page*/
  #things-to-do .popup-main .container .popup {
    height: 380px;
  }
  /*footer section*/
}

@media only screen and (max-width: 1366px) {
  #header .brand {
    width: 200px;
    margin: 10px auto;
  }
  .menu-nav li a {
    padding: 10px 20px;
  }
  .brand a {
    background: transparent;
  }
  /*think to do page*/
  #things-to-do .popup-main .container .popup {
    height: 450px;
  }
  #things-to-do .popup-main .container h4 {
    font-size: 30px;
  }
}

/*homepage booking section*/
@media only screen and (max-width: 1280px) {
  .menu-nav li a {
    padding: 10px;
  }
}

@media (max-width: 1239px) {
  /*homepage booking section*/
  #booking-section .booking h3 {
    font-size: 26px;
  }
  #booking-section .booking .para h2 {
    font-size: 34px;
    letter-spacing: 0.05em;
    margin: 20px 0;
  }
  #booking-section .booking .para .book-button {
    padding: 1em 3em;
  }
  /*think to do page*/
  #things-to-do .popup-main .container h4 {
    font-size: 26px;
  }
  #things-to-do .info .btn {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1024px) {
  #facilities {
    padding: 20px;
  }
  #facilities .facilities .box {
    width: 17%;
    height: 150px;
    padding: 0;
  }
  #facilities .facilities .box h3 {
    position: relative;
    bottom: 0;
  }
  #facilities .facilities .box .img1 {
    width: 78px;
    height: 69px;
    background: url(../../img/sprite.png) 0 -234px;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  #facilities .facilities .box .img2 {
    width: 64px;
    height: 69px;
    background: url(../../img/sprite.png) -71px -236px;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  #facilities .facilities .box .img3 {
    width: 64px;
    height: 69px;
    background: url(../../img/sprite.png) -128px -236px;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  #facilities .facilities .box .img4 {
    width: 64px;
    height: 69px;
    background: url(../../img/sprite.png) -186px -236px;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  #facilities .facilities .box .img5 {
    width: 64px;
    height: 69px;
    background: url(../../img/sprite.png) -244px -236px;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  #accommodation-page .facilities .details h3 {
    text-align: left;
  }
}

@media only screen and (max-width: 1023px) {
  #header .menu-header {
    z-index: 9 !important;
    float: left;
    display: block;
    width: 100%;
  }
  #header .book-button {
    margin: 0.5em;
  }
  #header .book-button a {
    padding: 1em;
  }
  .menu-nav > ul > li.active:after {
    width: 100%;
  }
  #welcome .welcome-section .border:after {
    display: none;
  }
  #welcome .welcome-section p {
    margin-right: 0;
  }
  #header .book-button a {
    background: #ffffff;
    color: #343434 !important;
    border: 1px solid #e9ebf0;
  }
  #accommodation .booking-image img {
    height: auto;
  }
  #accommodation .comfort {
    position: relative;
    float: left;
    width: 100%;
    height: auto;
  }
  #accommodation .comfort h3 {
    font-size: 28px;
  }
  #accommodation .comfort .box-area {
    padding: 0;
  }
  #accommodation .comfort .box-area .face {
    width: 33%;
    margin: 20px 0;
  }
  /*homepage booking section*/
  #booking-section .booking h3 {
    font-size: 24px;
  }
  #booking-section .booking h5 {
    margin-bottom: 40px;
  }
  #booking-section .booking .para {
    position: static;
    width: 100%;
  }
  #booking-section .booking .para h2 {
    font-size: 32px;
    letter-spacing: 0.05em;
    margin: 20px 0;
  }
  #booking-section .booking .para .book-button {
    -webkit-transform: none;
            transform: none;
    position: static;
  }
  #accommodation-page .accommodation-gallery .images .slick-slide img {
    height: 300px;
  }
  #accommodation-page .accommodation-gallery .details {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
  }
  #accommodation-page .accommodation-gallery .details .comfort h3 {
    font-size: 28px;
  }
  #accommodation-page .accommodation-gallery .details .comfort .box-area {
    padding: 0;
  }
  #accommodation-page .accommodation-gallery .details .comfort .box-area .face {
    width: 33%;
    margin: 20px 0;
  }
  #accommodation .comfort h5 {
    font-size: 14px;
  }
  /*think to do page*/
  #things-to-do h2 span:after,
  #things-to-do h2 span:before {
    display: none;
  }
  #things-to-do .attractions h3 {
    font-size: 22px;
  }
  /*contact page*/
  #contact .image img {
    height: auto;
  }
  /*footer section*/
}

@media only screen and (max-width: 992px) {
  #testimonial .slick-prev {
    left: 20px;
  }
  #accommodation-page {
    padding: 0 10px;
  }
  #testimonial .slick-next {
    right: 20px;
  }
  #welcome {
    padding: 0 20px;
  }
  footer {
    padding: 20px;
  }
  footer .icon-social,
  footer .foot .info .mail .content,
  footer .foot .info .phone .content {
    float: left;
    text-align: left;
    width: 100%;
  }
  footer .foot .info .address {
    width: 100%;
  }
  footer .foot .menu-links ul li {
    padding: 1em;
  }
  #contact .info .img-size {
    width: 100%;
    height: 350px;
  }
  #contact .info .mapping {
    top: 0;
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
  }
}

@media only screen and (max-width: 991px) {
  #accommodation-page .facilities .details .listing {
    padding-left: 40px;
  }
  .menu-nav > ul > li > a:hover, footer .foot .menu-links ul li:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
  }
  #header li.brand {
    display: none;
  }
  #gallery {
    padding: 10px;
  }
  /*think to do page*/
  #things-to-do .attractions h3 {
    font-size: 20px;
  }
  #things-to-do .attractions .popup-main {
    overflow: scroll;
  }
  #things-to-do .attractions .container .close {
    right: 10%;
  }
  #things-to-do .attractions .container .popup {
    height: auto;
  }
  #facilities h2 span::after, #facilities h2 span::before,
  #accommodation h2 span::after,
  #accommodation h2 span::before,
  #gallery h2 span::after,
  #gallery h2 span::before,
  #testimonial h2 span::after,
  #testimonial h2 span::before,
  #accommodation-page h2 span::after,
  #accommodation-page h2 span::before,
  #gallery-page h2 span::after,
  #gallery-page h2 span::before {
    display: none;
  }
  /*contact page*/
  #contact h2 span::after, #contact h2 span::before {
    display: none;
  }
  #contact .container .popup-close {
    right: 10%;
  }
  #testimonial .review p {
    padding: 20px 0;
    margin: 0;
  }
  /*footer section*/
  footer .foot .info {
    padding-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  /*homepage booking section*/
  #booking-section .booking h3 {
    font-size: 22px;
  }
  #booking-section .booking h5 {
    margin-bottom: 30px;
  }
  #booking-section .booking .para {
    padding-top: 1em;
  }
  #booking-section .booking .para h2 {
    font-size: 28px;
  }
  #booking-section .booking .para .book-button {
    -webkit-transform: none;
            transform: none;
    width: 25%;
  }
  /*facilities section*/
  #facilities h2 {
    font-size: 44px;
  }
  /*homepage accommodation section*/
  #accommodation h2 {
    font-size: 42px;
  }
  /*think to do page*/
  #things-to-do h2 {
    font-size: 42px;
    margin: 40px 0;
  }
  #things-to-do .attractions h3 {
    font-size: 22px;
  }
  #facilities .facilities .box {
    width: 30%;
  }
  /*gallery section*/
  #gallery h2 {
    font-size: 42px;
  }
  #gallery .slick-slide img {
    height: auto;
  }
  /*thinks to do page*/
  #things-to-do .attractions {
    display: block;
  }
  /*contact page*/
  #contact .container .popup {
    height: 450px;
  }
  #contact .image #map iframe {
    height: 390px;
  }
}

@media only screen and (max-width: 559px) {
  /*header*/
  .menu-nav > ul > li {
    margin: 0;
  }
  #header .book-button a {
    background: #ffffff;
    color: #4a770c !important;
    border: 1px solid #e9ebf0;
    font-weight: 600;
  }
  #header .book-button a {
    padding: 0.5em;
  }
  .menu-nav.mobile .menu-toggle,
  .menu-nav.mobile.light ul {
    top: -20px !important;
  }
  #slider-box .slick-slide img {
    height: 200px;
  }
  #welcome .welcome-section {
    padding: 15px 0;
  }
  #welcome .welcome-section h1 {
    font-size: 38px;
  }
  /*homepage accommodatio section*/
  #accommodation {
    padding: 15px;
  }
  #accommodation h2 {
    font-size: 36px;
    margin: 25px 0;
  }
  #accommodation .booking-image img {
    height: 200px;
  }
  #accommodation .comfort {
    padding: 2em 0.8em;
  }
  #accommodation .comfort .box-area {
    padding: 0;
  }
  #accommodation .comfort .box-area h3 {
    font-size: 24px;
  }
  #accommodation .comfort .box-area .face {
    width: 50%;
    margin: 18px 0;
  }
  /*facilities section*/
  #facilities h2 {
    font-size: 38px;
  }
  #facilities .facilities .box {
    width: 44%;
  }
  /*homepage booking section*/
  #booking-section .booking {
    padding: 30px 15px;
    margin: 0;
  }
  #booking-section .booking .booking-image img {
    height: 150px;
  }
  #booking-section .booking h3 {
    font-size: 20px;
  }
  #booking-section .booking h5 {
    font-size: 14px;
  }
  #booking-section .booking .para {
    padding-top: 1em;
  }
  #booking-section .booking .para h2 {
    font-size: 22px;
  }
  #booking-section .booking .para .book-button {
    -webkit-transform: none;
            transform: none;
    width: 58%;
  }
  /*gallery section*/
  #gallery-page h2 {
    font-size: 40px;
    margin: 30px 0;
  }
  #gallery h2 {
    font-size: 36px;
  }
  /*accommodation page*/
  #accommodation-page {
    padding: 0 15px;
  }
  #accommodation-page h2 {
    font-size: 40px;
    margin: 30px 0;
  }
  #accommodation-page h2 span::after {
    right: -46px;
    width: 20%;
    top: 24px;
  }
  #accommodation-page h2 span::before {
    left: -46px;
    width: 20%;
    top: 24px;
  }
  #accommodation-page .accommodation-gallery .images .slick-slide img {
    height: 200px;
  }
  #accommodation-page .accommodation-gallery .details {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
  }
  #accommodation-page .accommodation-gallery .details .comfort {
    padding: 2em 0.8em;
  }
  #accommodation-page .accommodation-gallery .details .comfort h3 {
    font-size: 22px;
  }
  #accommodation-page .accommodation-gallery .details .comfort h5 {
    font-size: 14px;
  }
  #accommodation-page .accommodation-gallery .details .comfort h6 {
    font-size: 14px;
  }
  #accommodation-page .accommodation-gallery .details .comfort .box-area {
    padding: 0;
  }
  #accommodation-page .accommodation-gallery .details .comfort .box-area .face {
    width: 50%;
    margin: 20px 0;
  }
  #accommodation-page .facilities .details .listing li {
    padding-left: 25px;
  }
  #accommodation-page .facilities .details .listing li::before {
    left: 0;
  }
  /*think to do page*/
  #things-to-do h2 {
    font-size: 34px;
    margin: 25px 0;
  }
  #things-to-do h2 span:after {
    right: -60px;
    top: 18px;
  }
  #things-to-do h2 span:before {
    left: -60px;
    top: 18px;
  }
  #things-to-do .attractions h3 {
    font-size: 20px;
  }
  #things-to-do .popup-main .container h4 {
    font-size: 22px;
  }
  /*contact page*/
  #contact h2 {
    font-size: 40px;
  }
  #contact .image img {
    height: 400px;
  }
  #contact .image .mapping {
    top: 30%;
  }
  #testimonial {
    padding: 20px 0;
  }
  #testimonial h2 {
    font-size: 40px;
    margin: 20px 0;
  }
  #testimonial .review p {
    padding: 10px 0 20px 0;
    margin: 0;
  }
  footer .foot .menu-links ul li {
    padding: 0.5em 0;
    width: 100%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  #slider-banner .scroll {
    bottom: -22px !important;
  }
  #slider-banner .scroll img {
    height: 120px;
  }
  #slider-box .cinfo .content .call,
  #slider-box .cinfo .content .address {
    font-size: 10.7px;
    margin-top: 5px !important;
  }
}

@font-face {
  font-family: "fontello";
  src: url("/assets/vendor/icon-fontello/font/fontello.eot");
  src: url("/assets/vendor/icon-fontello/font/fontello.eot?95500281#iefix") format("embedded-opentype"), url("/assets/vendor/icon-fontello/font/fontello.woff?95500281") format("woff"), url("/assets/vendor/icon-fontello/font/fontello.ttf?95500281") format("truetype"), url("/assets/vendor/icon-fontello/font/fontello.svg?95500281#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif !important;
  overflow-y: scroll;
  overflow-x: hidden;
}

:focus {
  outline: none;
}

a {
  color: #ffffff;
  text-decoration: none;
}

.menu-nav.mobile .menu-toggle {
  position: relative;
  top: -70px;
}

.slick-slide {
  margin: 0px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  opacity: 1;
}

.slick-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: black;
  line-height: 5px !important;
  font-family: serif !important;
}

.slick-prev {
  left: 0;
  z-index: 1;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

header {
  float: left;
  width: 100%;
  font-family: "Lato", sans-serif;
}

header .top-bar {
  background: #4a770c;
  float: left;
  width: 100%;
  display: block;
  margin: 0;
  margin-bottom: 0;
  padding: 0.5em;
}

header .top-bar ul {
  text-align: center;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  margin: 0;
}

header .top-bar ul li a {
  color: #fff;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
}

header .top-bar ul .call {
  padding: 1em;
  position: relative;
}

header .top-bar ul .call a {
  width: 200px;
  border: 1px solid;
  padding: 0.5em;
}

header #main-nav {
  font-family: "Lato", sans-serif;
  font-size: 14px;
}

header #main-nav .call .icon-phone-1:before {
  content: "\e803";
  -webkit-transform: rotate(38deg);
          transform: rotate(38deg);
  font-size: 14px;
}

header #main-nav .hide-show {
  display: none;
}

.header-left {
  display: inline-block;
  padding: 0.8em;
}

.header-left span {
  padding: 0 1em;
}

.header-left a {
  color: #ffffff;
}

.header-left a:hover,
.header-left a:focus {
  color: #ffffff !important;
  opacity: 0.9;
}

.header-left i.demo-icon {
  padding: 0 1em 0 0;
}

.header-right {
  text-align: center;
  font-family: "Lato", sans-serif;
}

.header-right .btn-primary {
  background-color: #4a770c;
  padding: 0.8em 0;
  width: 80%;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  border: none;
}

#slider-banner {
  position: relative;
  float: left;
  width: 100%;
}

#slider-banner .scroll {
  position: absolute;
  width: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -50px;
  text-align: center;
}

#slider-box {
  width: 97%;
  overflow: hidden;
  position: relative;
  padding: 0 0 23px 0;
  margin: 0 auto;
}

#slider-box .slick-prev {
  left: auto;
  right: 41px;
}

#slider-box .slick-next {
  right: 0px;
}

#slider-box .cinfo .content .address {
  color: #b8b8b8;
  margin: 0;
  font-size: 12px;
}

#slider-box .cinfo .content .call {
  color: #b8b8b8;
  text-align: right;
  margin: 0;
  font-size: 12px;
}

#gallery-section {
  float: left;
  display: block;
  width: 100%;
}

#gallery-section h5 {
  font-weight: 300;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  letter-spacing: 1em;
  font-style: italic;
  text-transform: uppercase;
  margin: 0;
}

#gallery-section h2 {
  font-weight: 900;
  font-family: "Lato", sans-serif;
  font-size: 36px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

#gallery-section .gallery {
  margin: 50px 0;
}

#gallery-section .gallery .gimages {
  padding: 0 20px;
}

#gallery-section .gallery .slick-dots {
  bottom: -50px;
  left: 0;
}

#gallery-section .section-change {
  position: relative;
  float: right;
  right: 15%;
}

#gallery-section .section-change .count {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-family: "Lato", sans-serif;
}

#gallery-section .section-change .underline {
  width: 200px;
  height: 1px;
  background: #343434;
  display: block;
}

#gallery-section .section-change .name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5em;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  text-align: right;
  margin: 10px;
}

.slider {
  position: relative;
}

/*contact-form*/
#contact-form .form-new {
  float: left;
  margin: 50px 0;
}

.focus ~ .help-block {
  display: block;
  position: absolute;
  bottom: 0;
}

.help-block {
  color: red;
  font-size: 12px;
  display: none;
}

.help-block ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.help-block ul li {
  font-size: 12px;
  font-weight: 600;
  padding: 0;
  margin: 5px;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  bottom: -20px;
}

.form-2 {
  float: left;
  margin: 20px 0;
}

.form-pad {
  padding-left: 30px;
}

#hire {
  width: 100%;
  margin: 0 auto;
  background: #e9ebf0;
  float: left;
  padding: 2em;
}

#hire .full-width {
  width: 99%;
}

.address-area {
  float: left;
  text-align: center;
  width: 100%;
  padding: 100px 20px;
  background: #ccfff0;
  transform: translateY(35%);
  -webkit-transform: translateY(35%);
}

.address-area i {
  color: #ccfff0;
  font-size: 40px;
}

.address-area p {
  color: #ffffff;
  font-family: "Lato", sans-serif;
}

.button-width {
  float: left;
  margin: 0.5em;
}

/*gallery-page*/
#gallery .content {
  float: left;
}

#gallery .content .grid {
  float: left;
}

/*local-attraction*/
#local-attraction {
  position: relative;
  float: left;
  width: 100%;
  padding: 2em;
  color: #555;
}

#local-attraction p {
  line-height: 2em;
  letter-spacing: 0.005em;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

.la {
  position: relative;
  font-family: "Open Sans", sans-serif;
  margin: 0;
}

.la ul {
  padding-left: 50px;
}

.la ul li {
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  padding: 0.8em 0;
  list-style-type: circle;
  font-weight: 600;
}

.la h2 {
  font-family: "Open Sans", sans-serif;
}

#main-items,
#main-items2 {
  float: left;
  width: 100%;
  padding: 20px 0;
  background: #e9ebf0;
}

#main-items .heading,
#main-items2 .heading {
  margin-top: 1em;
  margin-bottom: 1em;
}

#main-items .grid,
#main-items2 .grid {
  margin: 20px auto;
}

#main-items .place-name,
#main-items2 .place-name {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  width: 100%;
  float: left;
}

#main-items .place-name h3,
#main-items2 .place-name h3 {
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  padding: 0.5em;
  margin: 0;
  color: #000000;
  letter-spacing: 0.05em;
  position: relative;
  font-family: "Open Sans", sans-serif;
}

.local-areas .parent-sample {
  display: inline-block;
}

.local-areas .parent-sample img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  margin: 5px;
}

.local-areas .parent-sample img:hover {
  opacity: 1 !important;
}

.local-areas .parent-sample:hover img {
  opacity: 0.4;
}

#main-items2 {
  float: left;
  width: 100%;
  padding: 20px 0;
  background: #ffffff;
}

.photo-container .place-name,
.photo-container2 .place-name {
  display: none;
}

.photo-container .stage .place-name,
.photo-container .stage2 .place-name,
.photo-container2 .stage .place-name,
.photo-container2 .stage2 .place-name {
  display: block;
  position: absolute;
  bottom: 1em;
  background: #ccfff0;
  right: 0;
  width: 100%;
}

.photo-container .stage .place-name h3,
.photo-container .stage2 .place-name h3,
.photo-container2 .stage .place-name h3,
.photo-container2 .stage2 .place-name h3 {
  font-size: 18px;
  padding: 0.5em;
  font-family: "Lato", sans-serif;
  margin: 0;
  color: #ffffff;
}

.topbar-icon {
  text-align: center;
}

.text-center {
  text-align: center;
}

.user {
  width: 250px;
  margin: 0 auto;
}

#arial-view .book {
  width: 80%;
  padding: 4em;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
}

#arial-view h3 {
  margin: 0 0 1.5em 0;
  font-size: 24px;
  font-weight: 800;
}

#arial-view .btn-primary {
  background-color: #ff7300;
  padding: 0.8em;
  width: 200px;
  text-align: center;
  margin: 0 auto;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  border: none;
  color: #ffffff;
  font-size: 14px;
}

#arial-view .btn-primary:hover {
  background-color: #ccfff0;
  border-color: #ccfff0;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
}

#lg-download {
  display: none;
}

.no-padding {
  padding: 0 !important;
}

/*slider*/
@media only screen and (min-width: 1024px) {
  .hide-large {
    display: none !important;
  }
  .visible-large {
    display: block !important;
  }
}

@media only screen and (max-width: 1023px) {
  .hide-small {
    display: none !important;
  }
  .visible-small {
    display: block !important;
  }
}
/*# sourceMappingURL=custom.css.map */