/**
 * 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: #005f5f;
}

.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;
    }*/
.menu-header {
  text-align: center;
}

.menu-header a {
  padding: 10px 0;
  display: block;
  font-size: 48px;
  text-decoration: none;
  color: #555;
}

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

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

.card {
  border: 1px solid black;
}

.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: #00bcd4;
  padding-top: 40px;
}

footer ul {
  padding-left: 0;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

footer ul li {
  line-height: 2;
  list-style-type: none;
  display: inline-block;
  padding: 18px;
}

footer ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
}

footer ul li a:hover {
  color: #0047ab;
}

footer .social-links {
  color: #ffffff;
  text-align: center;
}

footer .social-links i {
  font-size: 18px;
}

footer .social-links a {
  color: #ffffff;
}

footer .social-links a:hover {
  color: #0047ab;
}

footer .details {
  padding: 1em 0;
  text-align: center;
  width: 100%;
}

footer .details p {
  color: #ffffff;
  font-size: 16px;
  font-family: "Fira Sans", sans-serif;
}

footer .details p a {
  color: #ffffff;
}

footer .details p a:hover {
  color: #0047ab;
}

.footer-details {
  float: left;
  width: 25%;
  list-style-type: none;
  padding-bottom: 30px;
}

.footer-details img {
  width: 70%;
}

.footer-details h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-details address {
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: normal;
}

.footer-details a {
  text-decoration: none;
}

.footer-details a p {
  color: #ffffff;
  line-height: 1;
}

.footer-social ul li {
  float: left;
  font-size: 38px;
  margin-right: 30px;
}

.footer-social ul li .fa-google-plus-square:hover {
  color: #DB4437;
}

.footer-social ul li .fa-facebook-square:hover {
  color: #3B5998;
}

.footer-social ul li .fa-twitter-square:hover {
  color: #1DA1F2;
}

#foot {
  width: 100%;
  float: left;
  background-color: #316161;
  padding-top: 40px;
}

#foot h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 20px;
}

#foot ul {
  padding-left: 0;
}

#foot ul li {
  line-height: 2;
  font-size: 1em;
  list-style-type: none;
}

#foot ul li .i-name {
  margin-left: 8px;
}

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

#foot address {
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 20px;
}

#foot a {
  text-decoration: none;
}

#foot a p {
  color: #ffffff;
  line-height: 1;
}

.copyright {
  color: #ffffff;
  text-align: center;
  line-height: 2;
  width: 100%;
  font-family: "Fira Sans", sans-serif;
  float: left;
  font-size: 14px;
  background-color: #363636;
}

.copyright p {
  margin: 0;
}

.copyright p a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.copyright p a:hover {
  color: #00bcd4;
}

.book-form input[type="text"], .book-form input[type="email"], select#country, select#country1, textarea, input#datepicker {
  width: 98%;
  color: #000;
  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: Helvetica, Arial, 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;
  background: #fff;
  border: 1px solid #666;
  width: 300px;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  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: "Trebuchet MS", Tahoma, Arial, 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;
}

/* demo style */
.arrow-to-top {
  background: #0047ab;
  color: #ffffff;
  font-size: 1.5em;
  text-align: center;
  -webkit-box-shadow: 4px 4px 9px #ccc;
          box-shadow: 4px 4px 9px #ccc;
  /* -------------------------------- */
}

.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: #0047ab;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.arrow-to-top .cd-nugget-info a:hover {
  opacity: .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;
  background: #0047ab url(../../img/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
  transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
  z-index: 9;
  border-radius: 50%;
}

.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 .3s 0s, visibility 0s 0s, background-color .3s 0s;
  transition: opacity .3s 0s, visibility 0s 0s, background-color .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: .5;
}

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

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

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

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

#la .room-section {
  float: left;
  width: 100%;
}

#la .room-section .heading {
  text-align: center;
  position: relative;
  float: left;
  width: 100%;
  padding: 20px 0;
}

#la .room-section .heading h2 {
  font-weight: 300;
  font-family: "Herr Von Muellerhoff", cursive;
  font-size: 140px;
  color: #e6e6e6;
  margin: 0;
  top: -50px;
  width: 100%;
  position: absolute;
}

#la .room-section .heading .head {
  position: relative;
  margin: 0 auto;
  width: 100%;
  bottom: 0;
}

#la .room-section .heading .head h3 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0;
}

#la .room-section .heading .head h4 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  margin: 0;
}

#la .room-section .card-la {
  float: left;
  width: 100%;
  display: block;
  position: relative;
}

#la .room-section .card-la .row {
  margin: 0 auto;
}

#la .room-section .card-la .card {
  float: left;
  padding: 0 0.7rem;
  width: 100%;
  border: none;
  margin: 0;
}

#la .room-section .card-la .card .menu-content {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#la .room-section .card-la .card .menu-content li {
  display: inline-block;
}

#la .room-section .card-la .card .menu-content a {
  color: #f5f5f5;
}

#la .room-section .card-la .card .menu-content span {
  position: absolute;
  left: 24px;
  top: 0;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  font-family: "Open Sans";
  line-height: 2.2em;
  -webkit-transform: translate(-10%, 0);
  transform: translate(-10%, 0);
}

#la .room-section .card-la .menu-content li span:before {
  content: "";
  width: 50px;
  height: 30px;
  background: url(../../img/facilities.png) -242px -115px;
  display: block;
  margin: 0 auto;
  text-align: center;
  position: relative;
  float: left;
}

#la .room-section .card-la .card .wrapper {
  background-color: #ffffff;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 30px 10px rgba(201, 201, 201, 0.2);
          box-shadow: 0 5px 30px 10px rgba(201, 201, 201, 0.2);
  margin: 0.5em;
}

#la .room-section .card-la .wrapper img {
  min-height: 450px;
}

#la .room-section .card-la .card .wrapper:hover .data {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#la .room-section .card-la .card .data {
  position: absolute;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateY(calc(220px + 1em));
  transform: translateY(calc(220px + 1em));
  transition: -webkit-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

#la .room-section .card-la .card .data .content {
  padding: 1em;
  position: relative;
  z-index: 1;
  float: left;
}

#la .room-section .card-la .card .author {
  font-size: 12px;
}

#la .room-section .card-la .card .title {
  margin: 0;
}

#la .room-section .card-la .card .text {
  height: 260px;
  margin: 0;
  font-size: 15px;
  line-height: 1.4em;
}

#la .room-section .card-la .card .text a {
  color: #363636;
  font-weight: 800;
  text-decoration: underline;
  line-height: 4em;
}

#la .room-section .card-la .card input[type="checkbox"] {
  display: none;
}

#la .room-section .card-la .card input[type="checkbox"]:checked + .menu-content {
  -webkit-transform: translateY(-60px);
  transform: translateY(-60px);
}

#la .room-section .card-la .example-1 .content {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 30px 10px rgba(201, 201, 201, 0.2);
          box-shadow: 0 5px 30px 10px rgba(201, 201, 201, 0.2);
}

#la .room-section .card-la .example-1 .title a {
  color: #0047ab;
  float: left;
  width: 40%;
  margin-bottom: 10px;
}

#la .room-section .card-la .example-1 .menu-button {
  position: absolute;
  z-index: 999;
  top: 16px;
  right: 16px;
  width: 25px;
  text-align: center;
  cursor: pointer;
}

#la .room-section .card-la .example-1 .menu-content {
  text-align: center;
  position: relative;
  top: -5px;
  left: 0;
  float: left;
  width: 60%;
  transition: -webkit-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#la .room-section .card-la .example-1 .menu-content li {
  width: 100%;
  float: left;
  height: 40px;
  position: relative;
}

#la .room-section .card-la .example-1 .menu-content a {
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 24px;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  #la .room-section .card-la .card .wrapper {
    background-color: #ffffff;
    min-height: auto;
    position: relative;
    overflow: visible;
    -webkit-box-shadow: 0 5px 30px 10px rgba(201, 201, 201, 0.2);
            box-shadow: 0 5px 30px 10px rgba(201, 201, 201, 0.2);
    margin: 0.5em;
  }
  #la .room-section .card-la .wrapper img {
    min-height: 200px;
  }
  #la .room-section .card-la .card .wrapper:hover .data {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  #la .room-section .card-la .card input[type="checkbox"]:checked + .menu-content {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  #la .room-section .card-la .card .data {
    position: relative;
    bottom: 0;
    width: 100%;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    transition: -webkit-transform 0.3s;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  #la .room-section .card-la .card .data .content {
    float: left;
  }
  #la .room-section .card-la .card .text {
    height: 350px;
  }
}

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

#rooms .room-section {
  float: left;
  width: 100%;
}

#rooms .room-section .heading {
  text-align: center;
  position: relative;
  float: left;
  width: 100%;
  padding: 20px 0;
}

#rooms .room-section .heading h2 {
  font-weight: 300;
  font-family: "Herr Von Muellerhoff", cursive;
  font-size: 140px;
  color: #e6e6e6;
  margin: 0;
  top: -50px;
  width: 100%;
  position: absolute;
}

#rooms .room-section .heading .head {
  position: relative;
  margin: 0 auto;
  width: 100%;
  bottom: 0;
}

#rooms .room-section .heading .head h3 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0;
}

#rooms .room-section .heading .head h4 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  margin: 0;
}

#rooms .room-section .room-description {
  float: left;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
  background: #f5f5f5;
  overflow: hidden;
}

#rooms .room-section .room-description .room-face {
  float: left;
  width: 98%;
  margin: 1em 0.5em 0;
  position: relative;
  background: #f5f5f5;
}

#rooms .room-section .room-description .room-face span {
  position: absolute;
  font-size: 12px;
  background: #00bcd4;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #ffffff;
  right: -2px;
  padding: 0.25em;
}

#rooms .room-section .room-description .room-face .user {
  width: 50px;
  height: 50px;
  background: url("../../img/facilities.png") -7px -55px;
  display: block;
  margin: 0 auto;
  text-align: center;
  position: relative;
  float: left;
}

#rooms .room-section .room-description .room-face .bunk {
  width: 50px;
  height: 50px;
  background: url("../../img/facilities.png") -85px -55px;
  display: block;
  margin: 0 auto;
  text-align: center;
  float: left;
  position: relative;
}

#rooms .room-section .room-description .room-face .bed {
  width: 50px;
  height: 50px;
  background: url("../../img/facilities.png") -44px -55px;
  display: block;
  margin: 0 auto;
  text-align: center;
  float: left;
  position: relative;
}

#rooms .room-section .room-description .room-face .single {
  width: 50px;
  height: 50px;
  background: url("../../img/facilities.png") -125px -55px;
  display: block;
  margin: 0 auto;
  text-align: center;
  float: left;
  position: relative;
}

#rooms .room-section .room-description .room-face h6 {
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
  font-family: "Fira Sans", sans-serif;
  margin-bottom: 0;
}

#rooms .room-section .room-description .room1 {
  width: 100%;
  background: url("../../img/cabin/room1.jpg") center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 620px;
  margin: 0 auto;
  text-align: center;
  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;
}

#rooms .room-section .room-description .room1:hover {
  cursor: pointer;
  opacity: 0.5;
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  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;
}

#rooms .room-section .room-description .room5 {
  width: 100%;
  background: url("../../img/cabin/caravan.jpg") center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 620px;
  margin: 0 auto;
  text-align: center;
  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;
}

#rooms .room-section .room-description .room5:hover {
  cursor: pointer;
  opacity: 0.5;
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  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;
}

#rooms .room-section .room-description .room2 {
  width: 100%;
  background: url("../../img/cabin/chalet1.jpg") center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 620px;
  margin: 0 auto;
  text-align: center;
  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;
}

#rooms .room-section .room-description .room2:hover {
  cursor: pointer;
  opacity: 0.5;
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  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;
}

#rooms .room-section .room-description .room3 {
  width: 100%;
  background: url("../../img/cabin/chalet2.jpg") center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 620px;
  margin: 0 auto;
  text-align: center;
  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;
}

#rooms .room-section .room-description .room3:hover {
  cursor: pointer;
  opacity: 0.5;
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  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;
}

#rooms .room-section .room-description .room4 {
  width: 100%;
  background: url("../../img/cabin/chalet3.jpg") center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 620px;
  margin: 0 auto;
  text-align: center;
  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;
}

#rooms .room-section .room-description .room4:hover {
  opacity: 0.5;
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  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;
  cursor: pointer;
}

#rooms .room-section .room-description .details {
  position: relative;
  padding: 0 2em;
  display: block;
}

#rooms .room-section .room-description .details ul {
  line-height: 2;
  float: left;
  display: block;
  width: 100%;
}

#rooms .room-section .room-description .details ul li {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

#rooms .room-section .room-description .details h2 {
  font-size: 28px;
  padding: 0.5em 0;
  font-family: "Playfair Display", serif;
  color: #0047ab;
  margin: 0 auto;
  padding: 20px 0 0;
}

#rooms .room-section .room-description .details p {
  font-size: 16px;
  padding: 0.5em 0;
  font-family: "Fira Sans", sans-serif;
  color: #363636;
  margin: 0;
}

#rooms .room-section .room-description .details .btn-primary {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  width: 150px;
  padding: 1em;
  text-align: center;
  margin: 0.5em;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  background: #0047ab;
  float: left;
}

#rooms .room-section .room-description .details .btn-primary a {
  color: #ffffff;
  text-decoration: none;
}

#rooms .room-section .room-description .details .btn-primary:hover {
  background: #00bcd4;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

#contact {
  position: relative;
  float: left;
  display: block;
  width: 100%;
  padding: 0 0 50px 0;
  /* Clearfix */
}

#contact .map {
  margin-bottom: 80px;
}

#contact .heading {
  text-align: center;
  position: relative;
  float: left;
  width: 100%;
  margin: 20px 0;
}

#contact .heading h2 {
  font-weight: 300;
  font-family: "Herr Von Muellerhoff", cursive;
  font-size: 140px;
  color: #e6e6e6;
  margin: 0;
  top: -50px;
  width: 100%;
  position: absolute;
}

#contact .heading .head {
  position: relative;
  margin: 0 auto;
  width: 100%;
  bottom: 0;
}

#contact .heading .head h3 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0;
}

#contact .heading .head h4 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  margin: 0;
}

#contact .whole-box {
  float: left;
  width: 100%;
  background: #238cab;
  padding: 20px;
  margin: 25px 0;
  display: block;
  position: relative;
}

#contact .whole-box .content {
  position: relative;
  background: #ffffff;
  padding: 1em;
  border-radius: 10px;
  margin: 0 0.5em;
  color: #363636;
}

#contact .whole-box .content .info i {
  font-size: 24px;
  border-radius: 5px;
  float: left;
  padding: 0 0.5em 0 0;
  display: block;
}

#contact .whole-box .content .info a {
  font-family: "Fira Sans", sans-serif;
  color: #363636;
}

#contact .whole-box .content .info h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0 20px;
  line-height: 2;
}

#contact .whole-box .content .info h4 span {
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
  line-height: 2;
  font-size: 16px;
}

#contact #form {
  margin: 0px auto;
  width: 100%;
}

#contact #form form input,
#contact #form form textarea, #contact #form form select {
  border: 0;
  outline: 0;
  padding: 0.5em;
  border-radius: 0.2em;
  display: block;
  width: 99.5%;
  margin: 0.3em 0em;
  font-family: "Fira Sans", sans-serif;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  resize: none;
  background: #ffffff;
}

#contact #form .captcha {
  color: #ffffff;
}

#contact #form .form-group .inquriy_heading {
  display: none !important;
}

#contact #form .form-group {
  margin-bottom: 0;
}

#contact #form form input {
  height: 47px;
}

#contact #form .form-group select {
  height: 48px;
}

#contact #form form input:focus,
#contact #form form textarea:focus {
  -webkit-box-shadow: 0 0px 2px #0047ab !important;
  box-shadow: 0 0px 2px #0047ab !important;
}

#contact #form form #btnSendMail {
  color: white;
  background: #0047ab;
  cursor: pointer;
  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;
  padding: 1em;
  width: 100%;
  float: left;
}

#contact #form form #btnSendMail:hover {
  background: #363636;
  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;
}

#contact #form form textarea {
  height: 100px;
}

#contact #form .half {
  float: left;
  width: 48%;
  margin-bottom: 1em;
}

#contact #form .right {
  width: 50%;
}

#contact #form .left {
  margin-right: 2%;
}

@media (max-width: 480px) {
  #contact .half {
    width: 100%;
    float: none;
    margin-bottom: 0;
  }
}

#contact .cf:before,
#contact .cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

#contact .cf:after {
  clear: both;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Fira Sans", sans-serif !important;
}

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

a:focus,
a:hover {
  text-decoration: none !important;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

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

#slider-box {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0px;
}

.widgettitle {
  margin: 0 !important;
}

.widgetheading {
  background: #0047ab;
  color: #fff;
  padding: 1.5em;
  font-size: 24px;
  text-align: center;
}

.zion-btn {
  padding: 1.35em !important;
}

.zion-btn.active.focus,
.zion-btn.active:focus,
.zion-btn.focus,
.zion-btn:active.focus,
.zion-btn:active:focus,
.zion-btn:focus {
  outline: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  outline-offset: 0 !important;
}

.zion-btn,
.zion-btn.focus,
.zion-btn:focus,
.zion-btn:hover {
  background: none;
  color: #ffffff !important;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.zion-form-control[disabled],
.zion-form-control[readonly],
fieldset[disabled] .zion-form-control,
.zion-form-control {
  background-color: #363636 !important;
  opacity: 1;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
  border-bottom: 1px solid #fff !important;
  border-radius: 0px !important;
  color: #fff !important;
}

.widgetbutton {
  text-align: center;
  width: 100%;
  font-size: 24px !important;
}

.labelWeight {
  font-size: 24px;
}

.zion-arrival-date,
.zion-departure-date,
.zion-adult-child-room-label {
  padding-top: 1em !important;
}

#welcome {
  padding: 100px 0;
  float: left;
  width: 100%;
  background: #ffffff;
}

#welcome .welcome-section {
  float: left;
  width: 100%;
}

#welcome .welcome-section .heading {
  text-align: center;
  position: relative;
  float: left;
  width: 100%;
}

#welcome .welcome-section .heading h2 {
  font-weight: 300;
  font-family: "Herr Von Muellerhoff", cursive;
  font-size: 140px;
  color: #e6e6e6;
  margin: 0;
  top: -50px;
  width: 100%;
  position: absolute;
}

#welcome .welcome-section .heading .head {
  position: relative;
  margin: 0 auto;
  width: 100%;
  bottom: 0;
}

#welcome .welcome-section .heading .head h3 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0;
}

#welcome .welcome-section .heading .head h4 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  margin: 0;
}

#welcome .welcome-section .welcome-area {
  float: left;
  width: 100%;
  position: relative;
  display: block;
  margin: 50px 0 0;
}

#welcome .welcome-section .welcome-area .beach {
  position: relative;
}

#welcome .welcome-section .welcome-area .beach .box {
  background: rgba(54, 54, 54, 0.4);
  font-family: "Playfair Display", serif;
  color: #ffffff;
  position: absolute;
  top: 80px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  margin: 0 80px;
  text-align: center;
  right: 0;
  left: 0;
  border: 5px solid #fff;
}

#welcome .welcome-section .welcome-area .beach .box h5 {
  width: auto;
  font-size: 28px;
  text-align: center;
  padding: 0.5em;
  text-transform: uppercase;
}

#welcome .welcome-section .welcome-area p.text {
  font-family: "Fira Sans", sans-serif;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-top: 1em;
  background: #ffffff;
  padding: 1em;
  margin: 10px -50px;
  line-height: 2;
  border-radius: 5px;
  -webkit-box-shadow: 5px 5px 34px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 5px 5px 34px 2px rgba(0, 0, 0, 0.25);
}

#amenities {
  background: #f5f5f5;
  float: left;
  width: 100%;
  padding: 100px 0;
}

#amenities .heading {
  text-align: center;
  position: relative;
  float: left;
  width: 100%;
}

#amenities .heading h2 {
  font-weight: 300;
  font-family: "Herr Von Muellerhoff", cursive;
  font-size: 140px;
  color: #e6e6e6;
  margin: 0;
  top: -50px;
  width: 100%;
  position: absolute;
}

#amenities .heading .head {
  position: relative;
  margin: 20px auto;
  width: 100%;
}

#amenities .heading .head h3 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0;
}

#amenities .heading .head h4 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  margin: 0;
}

.facility-box {
  width: 100%;
  float: left;
}

.facility-box .box {
  border-radius: 5px;
  text-align: center;
  background: #ffffff;
  width: 18%;
  margin: 1em 0.5em;
  padding: 1em 0;
}

.facility-box .img-fridge {
  width: 60px;
  height: 60px;
  background: url("../../img/facilities.png") -4px -96px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.facility-box .img-stove {
  width: 60px;
  height: 60px;
  background: url("../../img/facilities.png") -45px -96px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.facility-box .img-wifi {
  width: 40px;
  height: 60px;
  background: url("../../img/facilities.png") -138px -96px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.facility-box .img-laundry {
  width: 40px;
  height: 60px;
  background: url("../../img/facilities.png") -92px -96px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.facility-box .img-pet {
  width: 60px;
  height: 60px;
  background: url("../../img/facilities.png") -178px -96px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.facility-box .img-shower {
  width: 60px;
  height: 60px;
  background: url("../../img/facilities.png") -149px 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.facility-box .img-microwave {
  width: 60px;
  height: 60px;
  background: url("../../img/facilities.png") 85px 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.facility-box .img-barbeque {
  width: 60px;
  height: 60px;
  background: url("../../img/facilities.png") 0 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.facility-box .img-ac {
  width: 60px;
  height: 60px;
  background: url("../../img/facilities.png") 285px 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.facility-box .img-tv {
  width: 60px;
  height: 60px;
  background: url("../../img/facilities.png") 133px 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.facility-box .img-parking {
  width: 60px;
  height: 60px;
  background: url("../../img/facilities.png") 230px 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}

#accommodation {
  width: 100%;
  float: left;
}

#accommodation .slider {
  position: relative;
  margin: 0;
}

#accommodation .slider .slick-slide img {
  padding: 0 0.5em;
}

#accommodation h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  padding: 0 1em 0.5em 0;
  border-bottom: 1px solid #fff;
  margin: 0.5em 0.5em;
}

#accommodation .room-face {
  float: left;
  width: 98%;
  margin: 0 0.5em;
  position: relative;
  background: #f5f5f5;
}

#accommodation .room-face span {
  position: absolute;
  font-size: 14px;
  background: #00bcd4;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #ffffff;
  right: -2px;
  padding: 0.25em;
}

#accommodation .room-face .user {
  width: 50px;
  height: 50px;
  background: url("../../img/facilities.png") -7px -55px;
  display: block;
  margin: 0 auto;
  text-align: center;
  position: relative;
  float: left;
}

#accommodation .room-face .bunk {
  width: 50px;
  height: 50px;
  background: url("../../img/facilities.png") -85px -55px;
  display: block;
  margin: 0 auto;
  text-align: center;
  float: left;
  position: relative;
}

#accommodation .room-face .bed {
  width: 50px;
  height: 50px;
  background: url("../../img/facilities.png") -44px -55px;
  display: block;
  margin: 0 auto;
  text-align: center;
  float: left;
  position: relative;
}

#accommodation .room-face .single {
  width: 50px;
  height: 50px;
  background: url("../../img/facilities.png") -125px -55px;
  display: block;
  margin: 0 auto;
  text-align: center;
  float: left;
  position: relative;
}

#accommodation .room-face h6 {
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
  font-family: "Fira Sans", sans-serif;
}

#gallery {
  width: 100%;
  float: left;
  padding: 100px 0 0;
}

#gallery .heading {
  text-align: center;
  position: relative;
  float: left;
  width: 100%;
}

#gallery .heading h2 {
  font-weight: 300;
  font-family: "Herr Von Muellerhoff", cursive;
  font-size: 140px;
  color: #e6e6e6;
  margin: 0;
  top: -50px;
  width: 100%;
  position: absolute;
}

#gallery .heading .head {
  position: relative;
  margin: 0px auto 50px;
  width: 100%;
}

#gallery .heading .head h3 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0;
}

#gallery .heading .head h4 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  margin: 0;
}

#gallery .review {
  padding: 2px;
}

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

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

#testimonial .heading {
  text-align: center;
  position: relative;
  float: left;
  width: 100%;
}

#testimonial .heading h2 {
  font-weight: 300;
  font-family: "Herr Von Muellerhoff", cursive;
  font-size: 140px;
  color: #e6e6e6;
  margin: 0;
  top: -50px;
  width: 100%;
  position: absolute;
}

#testimonial .heading .head {
  position: relative;
  margin: 0px auto 50px;
  width: 100%;
}

#testimonial .heading .head h3 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0;
}

#testimonial .heading .head h4 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  margin: 0;
}

#testimonial .slick-prev:before,
#testimonial .slick-next:before {
  color: #0047ab !important;
}

#testimonial .slick-prev,
#testimonial .slick-next {
  top: 50px !important;
}

#testimonial .slick-prev {
  left: 0 !important;
}

#testimonial .slick-next {
  right: 0 !important;
}

#testimonial .review {
  text-align: center;
  width: 100%;
}

#testimonial .review h2 {
  font-family: "Playfair Display", serif;
  color: #00bcd4;
}

#testimonial .review p {
  color: #363636;
  font-weight: 300;
  font-family: "Fira Sans", sans-serif;
  font-size: 20px;
  padding: 0 50px;
}

#testimonial .review .name {
  text-align: center;
  width: 100%;
}

#testimonial .review .name h3 {
  color: #363636;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin: 0;
}

#testimonial .review .name h3 span {
  color: #0047ab;
  font-weight: 300;
  font-family: "Fira Sans", sans-serif;
  font-size: 20px;
}

#testimonial .review .name h5 {
  color: #363636;
  font-weight: 300;
  font-family: "Fira Sans", sans-serif;
  font-size: 20px;
  margin: 0;
}

#booking {
  background: url("../../img/booking.jpg") center center;
  float: left;
  width: 100%;
  background-size: cover;
  /*  background-attachment: fixed;*/
  background-position: center;
  background-repeat: no-repeat;
}

#booking .booking-content {
  background: white;
  background: transparent\9;
  background: rgba(255, 255, 255, 0.8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ccffffff,endColorstr=#ccffffff);
  color: #ffffff;
  margin: 30px auto;
  text-align: center;
  padding: 30px 0;
  width: 750px;
}

#booking .booking-content h3 {
  color: #363636;
  font-weight: 500;
  font-family: "Fira Sans", sans-serif;
  font-size: 30px;
  margin: 0;
}

#booking .booking-content h2 {
  color: #363636;
  font-weight: 900;
  font-family: "Fira Sans", sans-serif;
  font-size: 50px;
  margin: 0;
}

#booking .booking-content .btn-primary {
  background-color: #00bcd4;
  padding: 0.8em;
  width: 200px;
  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;
  margin: 0.8em auto;
  font-size: 20px;
}

a #booking .booking-content .btn-primary:hover {
  text-decoration: none;
}

#booking .booking-content .btn-primary:hover {
  background-color: #0047ab;
  text-decoration: none;
}

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

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

.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: #0047ab;
  transform: translateY(35%);
  -webkit-transform: translateY(35%);
}

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

.address-area p {
  color: #ffffff;
  font-family: "Fira Sans", 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: #f5f5f5;
}

#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: #363636;
  letter-spacing: 0.05em;
  position: relative;
  font-family: "Open Sans", sans-serif;
}

.ipro-brand {
  padding: 1em 0;
}

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

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

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

.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;
}

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

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

header {
  float: left;
  width: 100%;
}

header .brand {
  float: left;
}

header .brand img {
  width: 200px;
}

header .brand .logo-main2 {
  display: none;
}

header #main-nav {
  font-family: "Fira Sans", sans-serif;
}

header #main-nav .button-book a {
  padding: 5px 15px;
}

header #main-nav .button-book a:after {
  display: none;
}

header #main-nav .btn-primary {
  background-color: #00bcd4;
  padding: 0.75em 1em;
  width: 100%;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 300;
  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: 18px;
}

header #main-nav .btn-primary:hover {
  background-color: #0047ab;
  border-color: #0047ab;
  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 #main-nav .hide-show {
  display: none;
}

header .menu-header a {
  padding: 0;
}

.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #ffffff;
  z-index: 99;
  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-bottom: 2px solid #f8f8f8;
}

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

.fixed .brand .logo-main2 {
  display: block;
  margin: 0.4em auto;
  text-align: center;
}

.fixed .brand .logo-main {
  display: none;
}

.fixed .brnd-width {
  width: 20%;
}

.fixed .menu-width {
  width: 80%;
}

.fixed .menu-width .menu-nav ul {
  width: 100%;
  margin: 0 auto;
  padding: 0.5em 0;
}

.fixed .menu-width .menu-nav > ul > li > a {
  padding: 15px 10px;
}

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

.fixed #main-nav .hide-show {
  display: block;
  float: right;
}

.fixed #main-nav .hide-show .button-book a {
  padding: 5px 15px;
}

.fixed #main-nav .hide-show .button-book a:after {
  display: none;
}

.fixed #main-nav .hide-show .btn-primary {
  background-color: #ff7300;
  padding: 0.8em;
  width: 100%;
  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;
}

.fixed #main-nav .hide-show .btn-primary:hover {
  background-color: #00bcd4;
  border-color: #00bcd4;
  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;
}

.datepicker-dropdown.datepicker-orient-bottom:before {
  display: none;
}

#testimonial {
  margin: 80px 0;
  width: 100%;
  padding: 50px 0;
  float: left;
}

#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;
}

#lg-download {
  display: none;
}

/*slider*/
/*# sourceMappingURL=custom.css.map */