:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #931824;
  /* primary */
  --primary-dark: #76151e;
  /* primary-dark */
  --primary-light: #af3742;

  /* primary-light */

  --primary-light-rgb: 175, 55, 66;
  /* primary-light RGB to be used for rgba with css and CSS var Ponyfill*/

  --grey: #c9c9c9;
  --green: #358a00;
  --ada: #0563ae;
}

* {
  margin: 0;
  padding: 0;
}

/* MAIN FONT USED BY BODY */
@font-face {
  font-family: "Didact Gothic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Didact Gothic Regular"), local("DidactGothic-Regular"),
    url(../fonts/DidactGothic-Regular.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
/* END OF MAIN FONT USED BY BODY */

@font-face {
  font-family: Schwarzwald_Regular;
  src: url(../fonts/Schwarzwald_Regular.ttf) format("truetype");
  font-display: swap;
}

@font-face {
    font-family: Cinzel;
    src: url(../fonts/Cinzel-Regular.ttf) format('truetype');
    font-display: swap;
}

html {
  -webkit-font-smoothing: antialiased;
}

.weather-bg {
	background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url(../img/weather-bg.jpg) no-repeat !important;
}

body {
  font-family: "Didact Gothic", sans-serif;
  font-size: 16px;
}

/* OBJECT FIT POLYFILL REQUIRED CLASS FOR IMG */
.object-fit {
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
/* END OF OBJECT FIT POLYFILL REQUIRED CLASS FOR IMG */

.__akia-chat-icon-wrapper,
#ada_enable_toolbar .adaEnableToolbarContent {
  z-index: 98;
}

#reservationpop {
  padding-top: 170px;
  z-index: 98;
}

#carouselButtons {
  z-index: 1;
}

/* DISPLAY CLASSES */
.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.inline-block {
  display: inline-block;
}
/* END OF DISPLAY CLASSES */

/* FLEX CLASSES */
.flex-centered {
  display: flex;
  align-items: center;
}
/* END OF FLEX CLASSES */

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
/* CUSTOM SCROLLBAR */

.messages_bar {
  font-size: 16px;
}

.messages_bar .messages p {
  display: inline-block;
  margin: 0;
  padding: 0 5px;
  word-break: break-word;
  flex-grow: 1;
}
.bar1,
.bar2,
.bar3,
.bar4 {
  height: 5px !important;
  line-height: 20px;
}
.bar2 {
  position: relative;
  left: 0px;
  top: -3px;
}
.bar3 {
  position: relative;
  right: 0px;
  top: -6px;
}
.bar4 {
  position: relative;
  top: -9px;
}
.messages {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
}

.good_news {
  width: 100%;
}

.message-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.messages a {
  color: inherit !important;
}

.message-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.message-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.message-ada {
  color: #ffffff;
  background-color: #0563ae;
  border-color: #0563ae;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  right: 0;
  top: 0;
  color: #3c763d;
  opacity: 0.5;
}

.close:focus,
.close:hover {
  opacity: 1;
  outline: none;
}

.messages_bar.alert {
  padding: 0 15px;
}

.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.position-left {
  margin-right: 8px;
}

.position-right {
  margin-left: 0px;
}

.content-group {
  margin-bottom: 10px;
}

.h-100 {
  height: 100%;
}

a,
a:hover,
a:focus,
a:active {
  outline: none;
  text-decoration: none;
  /* color: #000; */
}

p {
  line-height: 24px;
  margin-bottom: 20px;
}

#js-gdpr-consent-banner p {
  margin-bottom: 10px;
}

.border-0 {
  border: 0;
}

/* ---------------------DATEPICKER CSS----------------- */
.datepicker td.active:active,
.datepicker td.active:hover:active,
.datepicker td.active.active,
.datepicker td.active:hover.active {
  background: var(--primary-light) !important;
}

.datepicker td.day.disabled {
  color: #ccc !important;
}

.datepicker td.disabled.day:hover {
  background: #eaeaea !important;
}

.datepicker td.day:hover {
  background: #931824 !important;
  color: #fff !important;
}
/* ---------------------end of DATEPICKER CSS----------------- */

.btn-div {
  display: flex;
  overflow: hidden;
  justify-content: center;
  width: 100%;
}

.btn-div a {
    font-family: lato;
}


.btn-success {
  transition: all 0.3s;
  font-weight: bold;
}

.btn-green {
  background: #00a651;
  color: #ffffff !important;
}

.btn-brown {
  background-color: transparent;
  color: var(--primary);
  font-weight:700;
}

.btn-white {
  background-color: var(--white);
  color: var(--black);
}

.btn-submit {
  background-color: var(--white);
  color: var(--green);
}

.btns {
  border-radius: 0;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.2s all;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-size: 19px;
  display: inline-block;
}

.btn-green {
  background: #00a651 !important;
  border-color: #00a651 !important;
  color: #ffffff !important;
}

.btn-icon {
  display: inline-block;
  vertical-align: middle;
  background-color: var(--white);
  color: var(--black);
  padding: 12px 15px 9px;
}

/* Sweep To Left */
.hover-sweep-to-left {
  display: flex;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  align-items: center;
  line-height: 1.4;
}

.hover-sweep-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hover-sweep-to-left:hover,
.hover-sweep-to-left:focus,
.hover-sweep-to-left:active {
  color: white;
}

.hover-sweep-to-left:hover:before,
.hover-sweep-to-left:focus:before,
.hover-sweep-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/*Hover Border*/
.hover-border{
	display: block;
    /* margin: 0 2px; */
    /* padding: 0.625rem 1.25rem; */
    text-transform: uppercase;
    overflow: hidden;
	 vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}

.hover-border::before{
	box-sizing: border-box;
    transform: translateX(100%);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 99.5%;
    height: 2px;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    display: block;
}

.hover-border::after{
	    box-sizing: border-box;
    transform: translateX(-100%);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 99.5%;
    height: 2px;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
}

.hover-border:hover{
	color: inherit;
    text-decoration: none;
}

.hover-border:hover::before{
	    transition: 0.1s transform linear, 0.1s height linear 0.1s;
    transform: translateX(0);
    height: 100%;
    border-color: #e4e4e4;
}

.hover-border:hover::after{
	    transition: 0.1s transform linear 0.2s, 0.1s height linear 0.3s;
    transform: translateX(0);
    height: 100%;
    border-color: #e4e4e4;
}

/*Hover Border*/
a.disabled {
  pointer-events: none;
  cursor: default;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  /* background-color: #4d2e1b; */
  background: #333333;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 50px;
}
.section__headerbg .inner-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  right: 0;
  left: 0;
  top: 0;
  bottom: 7px;
}

.smaller .div__logo1,  .div__logo1{
	display:none;
  }
  
  .review_staycontent p:first-child {
    margin-bottom: 15px !important;
}


.leaflet-container {
  z-index: 1;
}

.sidenav a {
  padding: 8px 8px 8px 46px;
  text-decoration: none;
  font-size: 28px;
  color: var(--white);
  display: inline-block;
  text-transform: uppercase;
  transition: 0.3s;
}

.smaller .logoDN {
    display: block;
}

.smaller .logoDN a img {
    width: 100%;
}


.logoDN  {
    display: none;
}

.sidenav .closebtn {
    display: inline-block;
}

.sidenav a:hover {
  color: var(--white);
}
.menus li.active a {
  color: var(--white) !important;
}
.sidenav .closebtn {
  /* font-size: 40px; */
  font-size: 65px;
  margin-right: 50px;
  text-align: right;
  font-weight: 700;
  position: absolute;
  right: 10px;
  top: 0;
}

#mySidenav .closebtn {
  line-height: 0;
}

.cool-link li a::after,
.menus li.active a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--white);
  position: relative;
  bottom: 0;
  transition: width 0.3s;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
}

.specialcode1 {
  background-color: var(--white);
}

.specialcode1 a,
.specialcode1 a:hover,
.specialcode1 a:focus,
.specialcode1 a:active {
  color: var(--black);
}

.menus li.active a::after {
  width: 100%;
}

.cool-link li a:hover::after,
.cool-link li.active a::after {
  width: 100%;
}

.hover-drop .dropdown-menu {
  position: relative;
  top: -2px;
  margin-top: 0;
  background-color: transparent;
  box-shadow: none;
  border: none;
  float: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  -webkit-transition: opacity 0.6s ease-in-out;
  -moz-transition: opacity 0.6s ease-in-out;
  -ms-transition: opacity 0.6s ease-in-out;
}

.hover-drop .dropdown-menu > li {
  display: inline-block;
  margin-bottom: 0;
}

.hover-drop .dropdown-menu > li > a {
  font-size: 18px;
  color: var(--white);
  margin: 0 3px;
  opacity: 1;
  background: none;
  padding: 3px 15px;
  /* font-size: 15px;
    margin: 0 5px; */
}

.hover-drop .dropdown-menu > li > a:focus,
.hover-drop .dropdown-menu > li > a:hover {
  background-color: transparent;
}

.menus li {
  margin-bottom: 10px;
}

.menus:hover li a {
  opacity: 0.5;
}

.menus:hover li a:hover {
  opacity: 1;
}

.custom__header {
  position: absolute;
  width: 100%;
  z-index: 3;
}

.div__logo {
  position: absolute;
  top: 2px;
  right: 0;
  left: 0;
  margin: 0 auto;
  max-width: 136px;
  width: 100%;
  z-index: 1;
}

.custom__header .navbar {
  margin-bottom: 0;
  border: none;
  border-radius: 0;
}

.custom__header .navbar-inverse {
  background-color: var(--white) !important;
  color: var(--black);
  background-image: inherit;
}

.custom__header.smaller {
  background: rgba(0, 0, 0, 0.7);
}

.custom__header .navbar-inverse .navbar-toggle {
  border-color: transparent;
}

.navbar-toggle {
  border-color: transparent;
  margin-top: 24px;
}

.custom__header .navbar-inverse .navbar-toggle:focus,
.custom__header .navbar-inverse .navbar-toggle:hover {
  background-color: inherit;
}

.custom__header .navbar-inverse .navbar-nav > li > a {
  color: var(--black);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.5s all;
}

.custom__header .navbar-inverse .navbar-right > li > a {
  font-size: 20px;
  font-weight: 700;
}

.custom__header .navbar-inverse .navbar-nav > li > a:hover {
  color: var(--black);
}

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: var(--black) !important;
}

.custom__header .navbar-nav > li > a.reservation-icon {
  padding-top: 15px;
  padding-bottom: 15px;
}

/* .navbar-toggle {
    padding: 15px 10px;
} */

.navbar-toggle .icon-bar {
  width: 40px;
}

/*.navbar-toggle .icon-bar:nth-child(2) {
    width: 30px;
}*/

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 8px;
}

.respop_heading {
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--white);
}

.reservation__fixed-btn {
  font-size: 20px;
  width: 100%;
  color: var(--white) !important;
  border-radius: 0;
  background:#6fa624;
  text-transform: uppercase;
  position: fixed;
  bottom: 0;
  transition: 0.5s all;
  z-index: 3;
}

.customedeatetimesin,
.customedeatetimesout {
  background: var(--white);
  display: block;
  color: #000;
  padding: 7px 5px;
  font-size: 20px;
  text-transform: uppercase;
}

.wide_cal .add-on {
  position: absolute;
  right: 10px;
  top: 7px;
  color: var(--primary);
  font-size: 20px;
  z-index: 1;
}

.checkincustometime {
  padding: 14px 12px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0 !important;
  z-index: 2;
}

.wide_cal {
  position: relative;
  display: block;
}

.checktxt {
  font-size: 18px;
  color: var(--white);
      text-transform: uppercase;
}

#promo_code {
  border: 1px solid #fff;
  color: #000000;
  font-size: 16px;
  height: 43px;
}

.specialcode1 a {
  font-size: 18px;
  padding: 9px;
  display: inline-block;
}

.specialcode1 .room_home {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home_collapse {
  background: #f5f2eb;
  color: #000000;
}

.adultbtn {
  border-radius: 0;
  padding: 12px;
  background: none;
  border: 1px solid #727070;
  color: #485f17;
  line-height: 0;
  float: right;
  position: relative;
  z-index: 1;
}

.adultbtn.btn_left:focus,
.adultbtn:focus {
  outline: none;
  background: inherit;
}

.adultbtn:hover {
  border-color: #727070;
  background: #449d44;
  color: var(--white);
}

.adultbtn.count-minus:hover {
  background: red;
}

.room_title {
  display: table;
  width: 100%;
}

.room_title span {
  background-color: var(--primary);
  width: 100%;
  height: 95px;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  display: table-cell;
  text-transform: uppercase;
}

.room_count {
  text-align: center;
  display: inline-block;
  background: none !important;
  box-shadow: none;
  font-size: 16px;
  height: 40px;
  line-height: 34px;
  border-radius: 0;
  border: 1px solid #727070;
  position: absolute;
}

.room_heading {
  line-height: 34px;
  margin-bottom: 0;
  text-transform: uppercase;
  border: 1px solid #727070;
  border-right: none;
  padding: 2px 0;
  color: #555;
  width: 40%;
  text-align: center;
}

/* ----------------------- Adjustments ------------------- */
.count-minus,
.count-plus,
.room_count {
  width: 20%;
}

.count-minus,
.room_heading {
  float: left;
}

.room_count {
  padding: 0;
  text-align: center;
  border-right: none;
  border-left: none;
}

input.room_count:focus {
  border-left: 0 !important;
  border-right: 0 !important;
}
/* ----------------------- Adjustments ------------------- */

.home_collapse .panel-body {
  padding: 0;
}

.BT1 {
  border-top: 1px solid #daceb4;
}

.child-age-wrapper {
  text-align: center;
}

.child-age-wrapper select {
  max-width: 100%;
  padding: 7px 15px;
  margin: 5px 0;
  background: none;
  border: 1px solid #727070;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0px;
  background-image: url(../img/dropdown-icon.svg);
  background-position: 86% 50%;
  background-repeat: no-repeat;
  background-size: 10px;
}

.child-age-wrapper select::-ms-expand {
  opacity: 0;
}

.roomscroll {
  max-height: 250px;
  overflow-y: auto;
}

.mobile0verviewinnwerdiv {
  height: 50px;
}

.mobile0verviewinnwerdiv {
  min-height: 150px;
  overflow: hidden;
  margin-bottom: 70px;
  font-family: lato;
}

.mobile0verviewinnwerdiv a {
  color: var(--primary);
}

.roomaction a {
  padding: 0 5px;
  font-size: 14px;
  color: #4b4140;
}

.roomadult {
  border: 1px solid #727070;
}

.home_resnew .btn-success {
  padding: 4px 20px;
}

.home_resnew .btn-success,
.quick-booking .btn-success {
        background: #fff !important;
    color: #000 !important;
    border: 1px solid #fff;
}

.smaller button.btn.btn-success.pdr.search-btn {
    background: #fff !important;
    color: #000 !important;
}

#formReservation .nav-tabs > li.active > a,
#formReservation .nav-tabs > li.active > a:focus,
#formReservation .nav-tabs > li.active > a:hover {
  background: var(--primary-light);
}

.text-primary {
  color: var(--primary-light);
}

.animatedheight p {
  font-size: 16px;
}

/* .quick-booking .customedeatetimesin,
.quick-booking .customedeatetimesout {
    font-size: 18px
} */

.section__booking .quick-booking {
  background: rgba(240, 161, 58, 0.7);
  /* padding: 20px 20px 10px; */
  padding: 10px 20px 15px 10px;
  /*  border: 2px solid #e5e5e5; */
  float: left;
  text-transform: uppercase;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
    0 2px 4px -1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.quick-booking{
	background: rgba(137,30,40, 0.56) !important;
	height:100px;
}
.quick-booking .checktxt {
  font-size: 18px;
  color: #ffffff;
  display: inline-block;
 margin-bottom: 1px;
}

.quick-booking .btn-success {
	margin-top: 35px;
}
.section__booking {
  bottom: 30px;
  width: 100%;
}

.quick-booking .specialcode1 {
  background: #ffffff;
}

#promo_codebox label {
  display: block;
  float: none;
}

#promo_codebox {
  background: #574f4c;
  padding: 20px 10px;
  min-width: 200px;
}

.primary-title {
  font-size: 28px;
  text-transform: uppercase;
  line-height: 48px;
  color: #161616;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 3px solid #444;
  display: inline-block;
  padding-bottom: 7px;
  font-family: "Times New Roman", Times, serif;
}

.section-padding {
  padding-top: 3%;
  padding-bottom: 3%;
}

.section__main {
  position: relative;
}
.animatedheight-inner-overview h2 {
  font-family: "Times New Roman", Times, serif;
}
.section__main .video_home {
  position: relative;
  overflow: hidden;
  background: #000;
}

.section__main .video_home video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.carousel-inner .item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.section__headerbg {
  position: relative;
  min-height: 200px;
}

.section__headerbg .innercaption {
  position: absolute;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  color: var(--white);
  /* left: 50%;
    transform: translateX(-50%); */
  bottom: 170px;
  text-transform: uppercase;
  width: 100%;
}

.section__headerbg .innercaption p {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 12px 24px;
  display: inline-block;
}

.innercaption .top-content,
.innercaption .bottom-content {
  display: block;
  letter-spacing: 1px;
}

.innercaption .top-content {
  font-size: 20px;
  /* margin-bottom: 5px; */
  font-family: "Times New Roman", Times, serif;
}

.innercaption .bottom-content {
  font-size: 16px;
  color: #f5f5f5;
}

.section__about {
  background-color: var(--primary);
  padding: 20px 0;
}

.about-btn .btns {
  font-size: 18px;
  line-height: 1.8;
}

.about-table {
  display: table;
  width: 100%;
}

.about-tablecell {
  display: table-cell;
  float: none;
}

.aboutbg {
  background-image: url(../img/about-img.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.no-webp .aboutbg {
  background-image: url(../img/about-img.jpg);
}

.about-description h2 a {
  color: #222;
  font-family: "Times New Roman", Times, serif;
}

.about-description p {
  color: #222;
}

.about-heading {
  color: #222;
  text-transform: uppercase;
}

.about-title-1 {
  margin-top: 0;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  font-size: 22px;
  display: block;

  /* font-size: 18px; */
  text-transform: uppercase;
}

.about-title-2 {

  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 40px;
  letter-spacing: 1px;
  display: block;
  font-family: initial;
  text-transform: uppercase;
  color: var(--black);
  font-family: 'Cinzel', serif;
}
/*Capitola Venetian Hotel*/

.underline{
	position:relative;
}

.OurGuest-description span {
    display: block;
}

.author_name {
    font-family: lato;
    font-size: 20px;
    font-weight: bolder;
    display: inline-block;
	text-align: right;
}

.Place_name {
    font-family: lato;
    font-size: 20px;
    display: inline-block;
}


#carouselButtons {
    z-index: 1;
	bottom: 92px;
}

.underline::after{
	content: "";
    position: absolute;
    bottom: -3px;
    left: 29%;
    width: 42%;
    height: 1px;
    background: #000;
}

main{
    background: #fff;
}

.item.active {
    z-index: 1;
}

.about-intro {
    z-index: 1;
    position: relative;

}
section.white-bg{
	position: relative;
}
section.white-bg::after {
    position: absolute;
    content: '';
    top: -76px;
    left: 32%;
    width: 36%;
    height: 410px;
    background: #fff;
	display:none;
}
.btnClickBg::after{
	height: 700px !important;
}
.about-btn {
    margin-bottom: -90px;
}

.animatedheight p:nth-child(7) {
    display: none;
}

/*Guestrom*/
.section__guestroom {
	padding: 30px 4%;
	padding-top: 50px;
	position: relative;
	background: white;
}


.section__guestroom::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 202px;
    top: -1px;
    left: 0px;
    background: #fff;
}

.section__guestroom::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 40px;
    width: 4%;
    height: 10px;
    background: #931824;
    z-index: 1;
}


.img1 {
    padding: 0;
}

.img1 img {
    width: 100%;
    height: 550px;
	max-height: 550px;
	object-fit:cover;
}

.guestContent {
    color: white;
    padding: 0 30px;
    padding: 0;
}

.cont {
   padding: 73px 45px;
    font-family: lato;
    line-height: 2.3;
    background: #2b2b2b;
    color: white;
    z-index: 1;
    position: relative;
    font-size: 18px;
    text-align: justify;
}

.cont::before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    width: 50%;
    height: 204px;
    background: #333333;
    z-index: -1;
}

.cont::after {
    position: absolute;
    content: '';
    bottom: 0px;
    right: 0px;
    width: 50%;
    height: 190px;
    background: #333333;
    z-index: -1;
}

.img2 img {
    width: 100%;
    height: 942px;
	max-height: 942px;
	object-fit: cover;
}

.img2, .img1, .img3{
    position: relative;
}

.img2::before {
    content: '';
    position: absolute;
    top: 46%;
    right: 0px;
    width: 10%;
    height: 10px;
    background: #931824;
}

.img1::after, .img3::after {
    position: absolute;
    background: -moz-linear-gradient(top, rgba(188, 50, 50, 0) 0%, rgba(149, 54, 54, 0) 46%, rgba(60, 9, 9, 0.65) 99%, rgba(89, 16, 16, 0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(188, 50, 50, 0) 0%, rgba(149, 54, 54, 0) 46%, rgba(60, 9, 9, 0.65) 99%, rgba(89, 16, 16, 0.65) 100%);
    background: linear-gradient(to bottom right, rgb(188, 50, 50, 0) 0%, rgb(149, 54, 54, 0) 46%, rgb(60, 9, 9, 0.65) 99%, rgb(89, 16, 16, 0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
    content: "";
}

.head {
    position: relative;
}

.head::before {
    content: '';
    position: absolute;
    top: 46%;
    left: 0px;
    width: 10%;
    height: 10px;
    background: #d0d0d0;
    z-index: 1;
}

.guestHead {
    position: relative;
    z-index: 1;
    background: #333333;
}

.guestHead::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 250px;
    background: #2b2b2b;
    z-index: -1;
}

.guestHead > div {
    padding: 80px 50px;
    padding-bottom: 50px;
}

.guestHead span {
    display: block;
}

.guest-tile1 {
    margin-top: 8px;
    margin-bottom: -8px;
    font-size: 45px;
    text-transform: uppercase;
    color: var(--white);
    font-family: 'Cinzel', serif;
    text-align: center;
    letter-spacing: 10px;
    text-shadow: 5px 5px 1px black;
}

.guest-tile2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 50px;
    text-transform: uppercase;
    color: var(--white);
    font-family: 'Cinzel', serif;
    text-align: center;
    letter-spacing: 10px;
    text-shadow: 5px 5px 1px black;
    font-weight: bold;
}

.guestHead p {
    color: white;
    padding: 0px 127px;
    padding-bottom: 60px;
    text-align: center;
    font-family: lato;
	letter-spacing: 1px;
}

.guestBtn {
    background: #931824;
}

.guestBtn > .guestroom-btn > .btn-div a {
    color: #fff !important;
}

/*.guestBtn > .guestroom-btn > .btn-div a::before {
    display: none;
}*/

.guestBtn .guestroom-btn {
    margin-top: 10px;
    margin-bottom: 10px;
}

.img3 img {
    width: 100%;
    height: 473px;
	max-height: 473px;
	object-fit:cover;
}

/*Specials*/
.section_specials {
    text-align: justify;
    text-align-last: center;
    padding: 84px 70px;
    background: #2b2b2b;
    background-image: url(../img/special.png);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: 15px;
}


.SpcImg img {
    width: 100%;
    height: 429px;
	object-fit: cover;
	max-height:429px;
	min-height:429px;
}

.SpcImg {
	position: relative;
}

.SpcImg ::after {
    position: absolute;
    background: -moz-linear-gradient(top, rgba(188, 50, 50, 0) 0%, rgba(149, 54, 54, 0) 46%, rgba(60, 9, 9, 0.65) 99%, rgba(89, 16, 16, 0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(188, 50, 50, 0) 0%, rgba(149, 54, 54, 0) 46%, rgba(60, 9, 9, 0.65) 99%, rgba(89, 16, 16, 0.65) 100%);
    background: linear-gradient(to bottom right, rgb(188, 50, 50, 0) 0%, rgb(149, 54, 54, 0) 46%, rgb(60, 9, 9, 0.31) 99%, rgb(89, 16, 16, 0.56) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
    content: "";
}

.SpcCont > div:first-child {
    background: #e4e4e4;
    text-align: left;
    padding: 60px 70px;
    position: relative;
}

.special-heading {
    font-family: lato;
    font-size: 30px;
    color: var(--primary);
    display: block;
    float: left;
}

.SpcCont > div >.cont {
    background: transparent;
    color: #000;
    padding: 0px;
    text-align: left;
    text-align-last: left;
}

.SpcCont > div >.cont::before, .SpcCont > div >.cont::after{
	display:none;
}

.SpcCont > div:first-child::after {
    content: '';
    position: absolute;
        bottom: 18px;
    right: -19px;
    width: 4%;
    height: 10px;
    background: var(--primary);
    transform: rotate(90deg);
}

.specBtn {
    background: var(--primary);
    padding-top: 20px;
    padding-bottom: 20px;
    padding: 20px 50px;
    position: relative;
}

.specBtn::before {
    content: '';
    position: absolute;
    top: 18px;
    right: -19px;
    width: 4%;
    height: 10px;
    background: #e4e4e4;
    transform: rotate(90deg);
}

.special-title1 {
    font-size: 55px;
    text-transform: uppercase;
    color: var(--white);
    font-family: lato;
    text-align: center;
    font-weight: 300;
    float: left;
}

.SpBtn {
    margin-top: 7px;
}

.SpBtn > .guestroom-btn > .btn-div {
    justify-content: flex-end;
}

/*Reviews*/
.review-title {
    margin-bottom: 10px;
    text-align: center;
}

.review-title-1 {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    font-size: 17px;
    font-weight: bold;
    font-weight: 500;
    font-family: 'Cinzel', serif;
    color: var(--primary);
}

.review-title-2 {
    text-transform: uppercase;
    font-weight: lighter;
    font-size: 65px;
    margin-top: -4px;
    letter-spacing: 5px;
    font-family: "Times New Roman", Times, serif;
    color: #000000;
}

.OurGuest-btn > .attraction-btn > .btn-div > a {
    color: #000 !important;
}

.OurGuest-btn > .attraction-btn > .btn-div > a.hover-border:hover::after, .OurGuest-btn > .attraction-btn > .btn-div > a.hover-border:hover::before{
	    border-color: #931824;
}

/*Attractions*/

.attractions::before {
    content: '';
    position: absolute;
    top: -28px;
    right: 21px;
    width: 4%;
    height: 10px;
    background: var(--primary);
    transform: rotate(90deg);
}

.attractions::after {
    position: absolute;
    content: '';
    bottom: 30px;
    left: -32px;
    width: 4%;
    height: 10px;
    background: var(--primary);
}

.attImg1, .attImg2 {
    position: relative;
}


.attImg2::after{
	position: absolute;
    background: -moz-linear-gradient(top, rgba(188, 50, 50, 0) 0%, rgba(149, 54, 54, 0) 46%, rgba(60, 9, 9, 0.65) 99%, rgba(89, 16, 16, 0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(188, 50, 50, 0) 0%, rgba(149, 54, 54, 0) 46%, rgba(60, 9, 9, 0.65) 99%, rgba(89, 16, 16, 0.65) 100%);
    background: linear-gradient(to bottom right, rgb(188, 50, 50, 0) 0%, rgb(149, 54, 54, 0) 46%, rgb(60, 9, 9, 0.31) 99%, rgb(89, 16, 16, 0.56) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
    content: "";
}
.attImg1 img, .attImg2 img {
    width: 100%;
}

.attImg1::after {
    position: absolute;
    content: '';
    bottom: 30px;
    left: 0px;
    width: 8%;
    height: 10px;
    background: white;
}

.attImg2::before {
    position: absolute;
    content: '';
    top: 15px;
    right: 10px;
    width: 7%;
    height: 10px;
    transform: rotate(90deg);
    background: #fff;
}

.attractions-title1 {
    margin-top: 8px;
    margin-bottom: -8px;
    font-size: 50px;
    text-transform: uppercase;
    color: var(--black);
    font-family: 'Cinzel', serif;
    text-align: center;
    letter-spacing: 20px;
	    margin-left: 30px;
}

.attraction-btn > .btn-div > a {
    color: #000 !important;
}

.attraction-btn > .btn-div > a.hover-border:hover::after, .attraction-btn > .btn-div > a.hover-border:hover::before{
	    border-color: #931824;
}

.attrCont {
    position: relative;
    top: -130px;
    right: -150px;
}

.attrCont .cont {
    background: #fff;
    color: var(--primary);
    padding: 20px 30px;
    -webkit-box-shadow: 1px 2px 7px 5px rgba(205,205,205,0.45);
    -moz-box-shadow: 1px 2px 7px 5px rgba(205,205,205,0.45);
    box-shadow: 1px 2px 7px 5px rgba(205,205,205,0.45);
	line-height: 2;
    font-size: 16px;
	    text-align: left;
    text-align-last: left;
}

.attrCont .cont::after, .attrCont .cont::before{
	display:none;
}
.attractionHead{
	height: 130px;
}

/*Map Location*/

.heading {
    position: absolute;
    bottom: 50px;
}

.location-title1 {
    margin-top: 8px;
    margin-bottom: -8px;
    font-size: 50px;
    text-transform: uppercase;
    color: var(--white);
    font-family: 'Cinzel', serif;
    text-align: right;
    letter-spacing: 3px;
    margin-left: 30px;
    display: block;
}

.map-btn > .btn-div > a {
    color: var(--white) !important;
}

/*.map-btn > .btn-div > a::after, .map-btn > .btn-div > a::before{
	display: none;
}*/

.map-image::before {
    content: '';
    position: absolute;
    top: 66px;
    right: 0px;
    width: 3%;
    height: 10px;
    background: var(--primary);
}

.map-image::after {
    content: '';
    position: absolute;
    bottom: 66px;
    left: 0px;
    width: 3%;
    height: 10px;
    background: #fff;
}

.barLine::after {
    content: '';
    position: absolute;
    bottom: 140px;
    left: -39px;
    width: 3%;
    height: 10px;
    background: var(--primary);
}

.barLine::before {
    content: '';
    position: absolute;
    top: 76px;
    right: -39px;
    width: 3%;
    height: 10px;
    background: #fff;
    z-index: 1;
}

/*Footer*/

.footer-buttons li {
    display: inline-block;
    padding: 0 10px;
}

.footer_logo{
	margin-top: 12px;
}

.footer_logo img{
	margin: 0 auto;
    width: 62%;
}
/*Capitola Venetian Hotel*/

.about-btn {
  margin-top: 40px;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

/*.colapsshoecontentlinkdiv2{
	bottom: 100px;
}*/

/*.about-btn .btn-brown:hover,
.about-btn .btn-brown:focus,
.about-btn .btn-brown:active {
  color: var(--white) !important;
}*/

.about-btn .btn-brown.hover-border:hover::before, .about-btn .btn-brown.hover-border:hover::after{
	    border-color: var(--primary);
}

.about-btn .hover-sweep-to-left:before {
  background: var(--white);
}

.about-logo {
  margin: 100px 0 30px 0;
}

.about-logo img {
  margin: 0 auto;
  opacity: 0.4;
  width: 75%;
}


.guestroom-div {
}

.guestroom-div .guestroom-image {
  background-image: url(../img/guest-room.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 525px;
}

.no-webp .guestroom-div .guestroom-image {
  background-image: url(../img/guest-room.jpg);
}

.guestroom-image .guestimage-content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: right;
  align-self: flex-end;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 40px 40px 0;
}

.guestimage-content p {
  letter-spacing: 3px;
  margin: 0 6px 5px 0;
  text-align: center;
  font-size: 22px;
  padding-top: 7.5%;
  font-family: "Times New Roman", Times, serif;
}

.guestimage-content label {
  display: block;
  text-align: center;
}
.label1 {
  margin-bottom: 20px;

  letter-spacing: 1px;
  display: block;
  font-family: initial;
  text-transform: uppercase;
  color: #f0a13a;
  font-size: 50px;
  letter-spacing: 7px;
  font-weight: lighter;
}
.label2 {
  font-size: 18px;
  font-weight: normal;
  text-transform: capitalize;
  padding: 0 6%;
}
.overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.section__OurGuest {
  margin-top: 0;
  background: #ececec;
  padding-bottom: 20px;
}

.section__OurGuest .OurGuest-div {
  width: 90%;
  display: grid;
  padding: 28px 4% 40px;
  background-color: transparent;
  /*-webkit-box-shadow: 1px 2px 7px 5px rgba(205, 205, 205, 0.45);
  -moz-box-shadow: 1px 2px 7px 5px rgba(205, 205, 205, 0.45);
  box-shadow: 1px 2px 7px 5px rgba(205, 205, 205, 0.45);*/
  margin: 0 auto;
}

.OurGuest-div .OurGuest-title {
  font-size: 50px;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: 5px;
  margin-bottom: 20px;
  color: #f0a13a;
  font-family: "Times New Roman", Times, serif;
  font-weight: normal;
}

.OurGuest-div .OurGuest-title {
  /* display: inline-block; */
  width: 100%;
  display: block;
  font-size: 50px;
  letter-spacing: 10px;
}
.vector_left {
  background: url(../img/vector_left.webp) no-repeat center center;
  text-align: center;
  width: 277px;
  height: 191px;
  position: absolute;
  top: 0;
  left: 0px;
}
.no-webp .vector_left {
  background: url(../img/vector_left.png) no-repeat center center;
  text-align: center;
}

.vector_right {
  background: url(../img/vector_right.webp) no-repeat center center;
  text-align: center;
  width: 277px;
  height: 191px;
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: 1;
}
.no-webp .vector_left {
  background: url(../img/vector_right.png) no-repeat center center;
  text-align: center;
}
#no_of_rooms,
#no_of_adult,
#no_of_child {
  padding: 9px 5px;
  text-align: center;
  width: 100%;
  color: #000;
  font-weight: bold;
  height: 42px;

}

.smwid {
    /* width: 33%; */
    padding: 0 10px;
}


.myCarousel3 {
  bottom: 0px !important;
}
.OurGuest-div .carousel-indicators .active {
  background-color: #f0a13a;
}
.OurGuest-div .OurGuest-description {
  padding: 0 30px;
}

.OurGuest-div .OurGuest-description p {
  text-align: justify;
  text-align-last: center;
  text-transform: none !important;
  min-height: 86px;
      font-family: lato;
}

p.content-title {
    font-size: 25px;
    margin-top: 30px;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
    min-height: 0px !important;
}

.guestroom-div .guestroom-content {
  flex: 0 0 40%;
  max-width: 40%;
  padding: 70px 50px 20px 50px;
}

.room-title-1 {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 40px;
  margin-left: 5px;
  margin-bottom: 0;
}

.room-title-2 {
  color: #2f2b28;
  text-transform: uppercase;
  font-size: 45px;
  margin-top: 0;
}

.guestroom-btn {
  margin-top: 50px;
}

.guestroom-btn .btn-icon,
.attraction-btn .btn-icon,
.map-btn .btn-icon,
.gallery-btn .btn-icon {
  background-color: var(--primary-light);
  color: var(--white);
}

.guestroom-btn .hover-sweep-to-left:before,
.attraction-btn .hover-sweep-to-left:before,
.map-btn .hover-sweep-to-left:before,
.gallery-btn .hover-sweep-to-left:before {
  background: var(--primary-light);
}

.section__attractions {
  text-align: justify;
  text-align-last: center;
  padding: 50px 6% 0;
}

.attraction-title {
  margin-bottom: 10px;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
}

.attraction-title-1 {
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 0;
  font-size: 18px;
  font-weight: bold;
  font-weight: lighter;
}

.attraction-title-2,
.sisterprop-title-1 {
  text-transform: uppercase;
  font-weight: lighter;
  font-size: 50px;
  margin-top: 10px;
  letter-spacing: 6px;
  font-family: "Times New Roman", Times, serif;
  color: #f0a13a;
}
.attraction-description p {
  padding: 0 3%;
}
.PS {
  position: relative;
  left: 60%;
  z-index: 3;
  width: 80%;
}
.attraction-title-3 {
  letter-spacing: 2px;
}

.attraction-description {
  padding: 0 15px;
}

.attraction-image-div {
  margin-top: 0;
  margin-bottom: 30px;
  float: left;
  color: var(--white);
}

.attraction-image {
  overflow: hidden;
  position: relative;
}

.attraction-image-div ul {
  float: left;
  margin-bottom: 0;
}

.attraction-image-div ul li {
  float: left;
  margin-bottom: 10px;
}

.attraction-image-div ul li figure img {
  height: 550px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.attraction-btn {
  clear: both;
  margin-bottom: 10px;
  margin-top: 10px;
}

.attraction-btn .btn-div,
.gallery-btn .btn-div {
  justify-content: center;
}

.section__gallery {
  text-align: justify;
  text-align-last: center;
 padding: 20px 3% 135px;
 background: #ececec;
     position: relative;
}

.section__gallery::before {
    position: absolute;
    top: -30px;
    left: 0px;
    width: 100%;
    height: 42px;
    background: #ececec;
    content: '';
}

.gallery-title-1 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 78px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 9px;
}
.pl5 {
  padding-left: 5px !important;
}
.gallery-description {
  padding: 0 50px;
}

.gallery-image {
  overflow: hidden;
  position: relative;
  text-align: center;
  background: var(--white);
  color: var(--white);
  margin: 5px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.5;
}

.gallery-image figure {
  position: relative;
  overflow: hidden;
  background: #302923;
  text-align: center;
  cursor: pointer;
}

.gallery-image figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}

.figcaption {
  transition: background 0.5s;
}

.cool-effect:hover > figcaption {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

/* New Gallery */
.new__gallery-div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.new__gallery-div .new__gallery-content {
  padding: 20px 10px;
}

.new__gallery-div .new__gallery-image {
  flex: 0 0 60%;
  max-width: 60%;
}

.new__gallery-div .gallery-title-1 {
  letter-spacing: 14px;
  text-align: center;
  color: #f0a13a;
  font-weight: lighter;
  font-family: "Times New Roman", Times, serif;
}

figure.cool-effect {
  background: var(--black);
  text-align: left;
}

figure.cool-effect img {
  -webkit-transition: opacity 0.45s;
  transition: opacity 0.45s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
}

figure.cool-effect h3 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  color: #fff;
  width: 90%;
  z-index: 3;
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
}

figure.cool-effect p {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px;
  text-align: justify;
  text-align-last: center;
}

figure.cool-effect p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}

figure.cool-effect:hover img {
  opacity: 0.6;
}

figure.cool-effect:hover h3 {
  -webkit-transform: translate3d(0, -200%, 0);
  transform: translate3d(0, -200%, 0);
}

figure.cool-effect:hover figcaption::before {
  opacity: 0.7;
  -webkit-transform: rotate3d(0, 0, 1, 20deg);
  transform: rotate3d(0, 0, 1, 20deg);
}

figure.cool-effect:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* New Gallery */
.content:hover .content-overlay {
  opacity: 1;
}

.content .content-overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  z-index: 1;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 2;
  font-family: "Times New Roman", Times, serif;
  font-size: 13px;
}

.content:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details h3 {
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.fadeIn-right {
  left: 80%;
}

.gallery-btn {
  clear: both;
  margin-top: 30px;
}

.section__map {
  padding: 50px 3% 20px;
 padding-bottom: 0px;
      background: #2b2b2b;
}

.map-div .map-image {
  margin: 10px 0;
}

.map-title {
  width: 100%;
}

.map-title-1 {
  color: var(--black);
  background: var(--white);
  font-size: 40px;
  letter-spacing: 15px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 10px 0;
}

.map-details {
  margin: 20px 10px 20px;
  font-size: 16px;
  color: #fff;
    font-family: lato;
	position: relative;
    top: 5px;
}

.map-details ul li {
  margin-bottom: 30px;
}

.map-details .btn-div a {
  color: var(--primary-dark);
}

.map-details .btn-div a:hover {
  color: var(--white);
}

.map-details a {
  color: var(--white);
}

.map-details-title {
  margin-right: 8px;
  margin-bottom: 0;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
}
.map-details ul li p {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
}
.map-details strong {
  text-transform: uppercase;
}
.map-image picture img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.map-btn {
  margin-top: 0px;
}

.section__sisterprop {
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: center;
}

.sisterprop-description {
  margin-top: 50px;
}

.sisterprop-details {
  margin: 25px 0 10px;
}

.sisterprop-details h4 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sisterprop-details ul li {
  display: inline-block;
  margin: 10px;
  width: 27%;
}

.sisterprop-details ul li a {
  color: #787878;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.5s all;
}

.sisterprop-details ul li a:hover,
.sisterprop-details ul li a:focus,
.sisterprop-details ul li a:active {
  color: var(--black);
  text-decoration: none;
}

.sisterprop-details li figure img {
  margin: 0 auto;
}

.sisterprop-details li figure figcaption {
  padding: 20px 0 10px;
}

.section__SubCon {
  margin: 10px 5% 20px;
}

.newsletter .form-group {
  position: relative;
  margin-bottom: 10px;
}

.newsletter .form-control {
  background-color: #f0ede8;
  color: var(--black);
  border: none;
  box-shadow: none;
  height: 54px;
  padding: 6px 118px 6px 20px;
  -webkit-box-shadow: 0px 15px 15px -13px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 15px 15px -13px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 15px 15px -13px rgba(0, 0, 0, 0.4);
}

.newsletter .btn:focus {
  outline: none;
}

.newsletter .form-control::placeholder {
  color: var(--black);
}

.newsletter .form-control:focus::-webkit-input-placeholder,
#promo_code:focus::-webkit-input-placeholder {
  color: transparent;
}

.newsletter .form-control:focus:-moz-placeholder,
#promo_code:focus:-moz-placeholder {
  color: transparent;
}

/* FF 4-18 */
.newsletter .form-control:focus::-moz-placeholder,
#promo_code:focus::-moz-placeholder {
  color: transparent;
}

/* FF 19+ */
.newsletter .form-control:focus:-ms-input-placeholder,
#promo_code:focus:-ms-input-placeholder {
  color: transparent;
}

.section__SubCon .row:first-of-type {
  display: flex;
  align-items: stretch;
}

/* IE 10+ */

.newsletter button {
  position: absolute;
  right: 2px;
  top: 2px;
  font-size: 16px;
  padding: 13px 20px;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: #000;
  background: #f0a13a;
  text-transform: uppercase;
}

.subscribe__div,
.contact__div {
  /*border: 1px solid #cdcdcd;*/
  padding: 30px 20px 30px;
  margin-bottom: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.subscribe__div {
  -webkit-box-shadow: 1px 2px 7px 5px rgba(205, 205, 205, 0.45);
  -moz-box-shadow: 1px 2px 7px 5px rgba(205, 205, 205, 0.45);
  box-shadow: 1px 2px 7px 5px rgba(205, 205, 205, 0.45);
  margin-bottom: 0px;
}
.subscribe-title,
.contact-title {
  min-height: 68px;
  margin-bottom: 10px;
}

.subscribe-title label,
.contact-title label {
  display: block;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 0.7;
  padding-top: 5px;
}

.subscribe-title span,
.contact-title span {
  display: block;
  text-transform: uppercase;
  font-size: 18px;
}
.subscribe-title label {
  color: #f0a13a;
  letter-spacing: 4px;
  font-size: 56px;
  font-family: initial;
  font-weight: normal;
  font-family: "Times New Roman", Times, serif;
}
.subscribe-title {
  min-height: 35px;
}
.svg-icon {
  width: 100px;
  height: 100%;
  padding: 2px 22px 10px;
}

.subscribe-title div:first-child + div {
  vertical-align: middle;
}

.social-icons ul li {
  display: inline-block;
}

.social-icons ul li a {
  width: 50px;
  height: 50px;

  text-align: center;
  line-height: 46px;
  font-size: 24px !important;
  margin: 0 8px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;

  z-index: 1;
  display: inline-block;
}
.social-icons label {
    text-transform: uppercase;
    font-weight: lighter;
    font-family: lato;
    letter-spacing: 3px;
	color: #000;
	    font-weight: 500;
		
}

.MT7{
	margin-top:7px;
}
.goog-te-gadget-simple .goog-te-menu-value span {
    text-decoration: none;
    color: #000;
}

.goog-te-gadget-simple{
	border: 1px solid #000 !important;
}
.social-icons ul li a .icon {
  position: relative;
  color: #000;
  transition: 0.5s;
  z-index: 3;
}

.social-icons ul li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.social-icons ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}

.social-icons ul li a:hover:before {
  top: 0px;
}

.social-icons ul li a.icon-facebook:before {
  background: #3b5999;
}

.social-icons ul li a.gplus:before {
  background: #d74937;
}

.social-icons ul li a.icon-twitter:before {
  background: #55acee;
}

.social-icons ul li a.icon-youtube:before {
  background: #ff0000;
}

.social-icons ul li a.icon-yelp:before {
  background: #f44336;
}

.social-icons ul li a.icon-tripad:before {
  background: #4caf50;
}

.social-icons ul li a.icon-foursquare:before {
  background: #f94877;
}

.social-icons ul li a.icon-instagram:before {
  background: #a63690;
}

.social-icons ul li a.icon-linkedin:before {
  background: #0275b4;
}

.social-icons ul li a.icon-yahoo:before {
  background: #57296f;
}

.social-icons ul li a.icon-skype:before {
  background: #01b0f1;
}

.social-icons ul li a.icon-pint:before,
.social-icons ul li a.pinterest:before {
  background: #cb2027;
}

footer {
  background-color:var(--white);
  color: var(--white);
  padding-top: 10px;
}

.section__footer {
  margin: 20px 5% 0;
}

.footer-div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.footer__left {
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  align-self: center;
  padding: 0 15px;
}

.footer-logo .logo-name {
  font-family: Schwarzwald_Regular;
  font-size: 50px;
  margin-bottom: 50px;
  display: inline-block;
  max-width: 100%;
  font-weight: 700;
}

.footer-logo img {
  max-width: 245px;
}

.footer-details-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
}

.footer-details .email {
  font-size: 22px;
  font-weight: 700;
  margin: 15px 0;
  display: inline-block;
}

.footer__right {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 15px;
}

.footer-buttons ul li {
  display: inline-block;
}

.footer-buttons ul li:nth-child(2) {
  margin: 0 15px;
}

.footer-buttons .footer-btn,
.goog-te-gadget-simple {
  padding: 15px 2px;
  border: 1px solid #fff;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 20px;
  display: inline-table;
  font-weight: bold;
  font-size: 14px;
  width: 152px;
}

a.footer-btn.access {
    padding: 16px 2px;
}

.goog-te-gadget-simple {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  font-size: 11pt !important;
  background: none !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
  color: #fff !important;
}

.goog-te-gadget-icon {
  display: none;
}

.canmod {
  background-color: #ffffff;
  color: #000000 !important;
  -webkit-font-smoothing: subpixel-antialiased;
}

.access {
  background-color: var(--ada);
  color: var(--white) !important;
}

.access .fa-wheelchair {
  font-size: 19px;
  vertical-align: top;
  color: var(--white);
}

.footer-links {
  overflow: hidden;
  padding: 25px 8px 15px 8px;
      border-top: 1px solid black;
    border-bottom: 1px solid black;
    align-items: center;
}

.footer-links ul li,
.footer-SEOlinks ul li {
  margin-bottom: 15px;
}

.footer-links ul li {
    /*width: 63%;*/
    margin-left: auto;
    margin-right: auto;
}

.footer-links ul li a,
.footer-SEOlinks ul li a {
  font-size: 16px;
  color: var(--black);
  letter-spacing: 1px;
  font-family: lato;
}

.footer-links .left {
  text-align: left;
}

.footer-links .center {
  text-align: center;
}

.footer-links .right {
  text-align: right;
}

.footer-SEOlinks {
  padding: 0px;
  background-color: var(--white);
}

.footer-SEOlinks ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-SEOlinks ul li {
  color: var(--black);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-SEOlinks ul.width90 li {
    width: 90%;
    /*margin-left: auto;
    margin-right: auto;*/
	text-align: center;
}

.borderBtm{
	border-bottom: 1px solid #000;
	padding: 10px 0px;
}

.footer-SEOlinks ul.width55 li {
    /*width: 55%;
    margin-left: auto;
    margin-right: auto;*/
	text-align: center;
}

.footer-SEOlinks ul li a {
  color: var(--black);
  margin: 0 35px;
      font-weight: 500;
}

.company {
 font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
}

span.copyright-span {
    display: block;
    color: #000;
}
  


.company a {
  color: var(--black);
}

.company p {
  color: var(--black);
  text-align: inherit;
  margin-bottom: 0;
}

.comp-logo img {
  background-color: #fff;
  padding: 6px;
  border-radius: 5px;
  margin: 5px;
  float: left;
  max-width: 175px;
}

.section__compdetails {
  background: transparent;
  color: var(--white);
  padding: 15px 0;
  font-size: 16px;
  overflow: hidden;
}

#scroll {
  position: fixed;
  bottom: 120px;
  right: 40px;
  background: var(--white);
  border: 1px solid var(--primary-dark);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
    0 2px 4px -1px rgba(0, 0, 0, 0.3);
  z-index: 10;
  color: #444;
}

#scroll i {
  color: var(--primary-dark);
  margin: 0;
  position: static;
  left: 16px;
  top: 13px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#scroll:hover {
  background: var(--white);
  -webkit-box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14),
    0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14),
    0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14),
    0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
}

#scroll:hover i {
  color: var(--primary-dark);
  top: 5px;
}

/* ----------------------------------- mouse click css ----------------------------------- */
.mouse,
.mouse-up {
  display: none;
  position: absolute;
  margin: 0 auto;
  width: 24px;
  height: 34px;
  border-radius: 4px;
  border: 2px solid #3a9700;
  bottom: 9px;
  left: 50%;
  cursor: pointer;
}

.mouse span,
.mouse-up span {
  display: block;
  margin: 6px auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #3a9700;
  border: 1px solid transparent;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.mouse span {
  -webkit-animation-name: scroll;
  animation-name: scroll;
}

.mouse-up span {
  -webkit-animation-name: scroll-up;
  animation-name: scroll-up;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(16px);
    transform: translateY(16px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(16px);
    -ms-transform: translateY(16px);
    transform: translateY(16px);
  }
}

@-webkit-keyframes scroll-up {
  0% {
    opacity: 1;
    -webkit-transform: translateY(16px);
    transform: translateY(16px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes scroll-up {
  0% {
    opacity: 1;
    -webkit-transform: translateY(16px);
    -ms-transform: translateY(16px);
    transform: translateY(16px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* ----------------------------------- mouse click css ----------------------------------- */

/* ----------------------------------- Floating Icons ----------------------------------- */
.floating-icons {
  position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.floating-icons ul li a {
  padding: 15px 20px;
  margin: 10px 0;
  display: inline-block;
  color: var(--white);
  font-size: 25px;
  width: 100%;
  transition: 0.5s all;
  width: 90px;
}

.floating-icons ul li a.icon-facebook:hover,
.floating-icons ul li a.icon-facebook:focus,
.floating-icons ul li a.icon-facebook:active {
  background: #3b5999;
}

.floating-icons ul li a.icon-gplus:hover,
.floating-icons ul li a.icon-gplus:focus,
.floating-icons ul li a.icon-gplus:active {
  background: #d74937;
}

.floating-icons ul li a.icon-twitter:hover,
.floating-icons ul li a.icon-twitter:focus,
.floating-icons ul li a.icon-twitter:active {
  background: #55acee;
}

.floating-icons ul li a.icon-youtube:hover,
.floating-icons ul li a.icon-youtube:focus,
.floating-icons ul li a.icon-youtube:active {
  background: #ff0000;
}

.floating-icons ul li a.icon-yelp:hover,
.floating-icons ul li a.icon-yelp:focus,
.floating-icons ul li a.icon-yelp:active {
  background: #f44336;
}

.floating-icons ul li a.icon-tripad:hover,
.floating-icons ul li a.icon-tripad:focus,
.floating-icons ul li a.icon-tripad:active {
  background: #4caf50;
}

.floating-icons ul li a.icon-pint:hover,
.floating-icons ul li a.icon-pint:focus,
.floating-icons ul li a.icon-pint:active {
  background: #cb2027;
}

.floating-icons ul li a.instagram:hover,
.floating-icons ul li a.instagram:focus,
.floating-icons ul li a.instagram:active {
  background: #8134af;
}

/* ----------------------------------- Floating Icons ----------------------------------- */

.room_home,
.promocode {
  cursor: pointer;
  -webkit-appearance: none;
  background-color: transparent;
  border: 0;
}

.promocode:link,
.promocode:visited,
.promocode:hover,
.promocode:active,
.promocode:focus {
  outline: none;
}

.datepicker-label {
  color: #fff;
}

.respop_heading2 {
  display: none;
}

.quick-booking .home_collapse {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 58px;
  max-width: 350px;
}

#reservationpop .search-btn-div {
  margin-top: 34px;
}

.play {
  background: rgba(0, 0, 0, 0.5) url("../img/play.png") no-repeat scroll 16px
    12px;
  border: 0;
  width: 50px;
  height: 50px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 20px;
}

.pause {
  background: rgba(0, 0, 0, 0.5) url("../img/play.png") no-repeat scroll 16px -45px;
  border: 0;
  width: 50px;
  height: 50px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 20px;
}

.play:focus,
.pause:focus,
.volume_icon:focus,
.volume_icon1:focus {
  outline: 0;
}

.volume_icon {
  background: url("../img/unmute.png") no-repeat scroll 20px 4px;
  border: 0;
  width: 50px;
  height: 50px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 12px;
}

.volume_icon1 {
  background: url("../img/unmute.png") no-repeat scroll 20px -48px;
  border: 0;
  width: 50px;
  height: 50px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 12px;
}

.volume_icon1 span {
  visibility: hidden;
}

.reservation-button {
  text-align: center;
}

.lowest {
  display: block;
  font-size: 25px;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  padding: 10px;
  font-weight: normal;
  font-family: "Times New Roman", Times, serif;
}

.nav > li > a {
  padding: 10px 28px;
}

.reservation-button {
}

.navbar-right {
  padding: 0px 10px 10px;
  margin-top: 20px;
  margin-right: 0px;
}

.custom__header.smaller .navbar-right {
  background: none;
}

.footer-logo {
  margin-top: 0;
}

.company a:hover {
  text-decoration: underline;
}

/* NEW CHANGES BY ROSHAN SIR FOR CHECK AVAILABILITY ON SCROLL */
.section__booking .navbar-header,
.section__booking .scroll-reservation-but {
  display: none;
}

@media (min-width: 1200px) {
  .smaller.section__booking > .container {
    position: fixed;
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    background: transparent;
    /*width: 90%;*/
  }
  .about-intro {
    z-index: 1;
    position: relative;
}

.animatedheight p {
  font-size: 18px;
}

.review_content {
    font-size: 18px;
    text-align: center;
    font-family: lato;
    position: relative;
    padding: 24px;
	margin:0px;
}



  .logoDN a{
	    padding: 0px;
    text-decoration: none;
    font-size: 28px;
    color: var(--white);
    display: inline-block;
    text-transform: uppercase;
    transition: 0.3s;
	margin-top:30px;
  }
  
  
  #mySidenav {
    z-index: 101;
  }

  .smaller.section__booking {
    display: flex;
    justify-content: center;
  }

  .smaller.section__booking .quick-booking {
    border: 0;
    background: transparent !important;
    box-shadow: none;
    margin: 0 auto;
    /*width: 86%;*/
  }

  .quick-booking .chooseops {
		margin-top: 8px;
	}

	
  .section__booking .navbar-toggle .icon-bar {
    background: #fff;
  }

  .section__booking.smaller .navbar-header,
  .section__booking.smaller .scroll-reservation-but {
    display: inline-block;
  }

  .smaller #reservationpop .closebtn {
    display: none;
  }

  .smaller #reservationpop > .container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    background: transparent;
	/*width: 90%;*/
  }

  .rct_wdgt .smaller #reservationpop > .container {
    top: 50px;
  }

  .smaller #reservationpop {
    background: transparent;
    height: auto;
    padding-top: 0;
    transition: padding 0s;
  }

  .smaller #mySidenav {
    z-index: 999;
  }

  .smaller .navbar-toggle {
    margin: 28px 0;
  }

  .smaller #reservationpop .respop_heading {
    display: none;
  }

  .custom__header.smaller {
    position: fixed;
    min-height: 98px; left:0; top:0
  }

  .smaller .navbar-right,
  .smaller .div__logo {
	display: none;
  }
  
  .custom__header.smaller .navbar-inverse {
		background-color: #931824de !important;
	}
	
	.smaller .margin {
		margin: 0px;
	}

	.smaller .navbar-inverse .navbar-toggle .icon-bar {
		background: #fff !important;
	}
	
	
}

@media (min-width: 1200px) and (max-width: 1500px) {
  /*.smaller.section__booking .container,
  .smaller #reservationpop .container {
    width: 90%;
  }*/

  .hover-drop .dropdown-menu > li > a {
    padding: 3px 10px;
  }
  
  .carousel-inner .item:after{
	height:96%;
  }
}

/* ----------------------------------- MEDIA QUERIES ----------------------------------- */

@media (min-width: 1601px) {
  /*.section__main {
    height: 930px;
  }*/
  .out-bor {
    outline-offset: -15px;
  }
}

@media screen and (max-width: 1600px) and (min-width: 1200px) {
  .section__main {
  }

  .section__main .video_home {
  }

  .comp-logo img {
    max-width: 130px;
  }
}

@media screen and (min-width: 1200px) {
  .reservation-button {
    margin-top: 0px;
	top: -6px;
  }

  .smaller .quick-booking .home_collapse {
    top: 63px;
  }

  .smaller #reservationpop .home_collapse {
    top: 63px;
    position: absolute;
    left: auto;
    right: auto;
  }

  .section__booking {
    position: absolute;
  }

  .hover-drop.dropdown .dropdown-menu {
    display: inline-block;
  }

  .hover-drop.dropdown:hover .dropdown-menu {
    opacity: 1;
  }

  .hover-drop .dropdown-menu > .active > a,
  .hover-drop .dropdown-menu > .active > a:focus,
  .hover-drop .dropdown-menu > .active > a:hover {
    background-color: inherit;
    background-image: inherit;
  }

  #mySidenav::-webkit-scrollbar {
    width: 0;
  }

  #mySidenav {
    -ms-overflow-style: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section__headerbg .innercaption {
    bottom: 10px;
  }

  .room_heading {
    font-size: 14px;
  }
  .div__logo img {
    max-height: 50px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1199px) {

section.white-bg {
    position: relative;
    top: 0;
}

  .navbar-right {
    margin-top: 0px;
  }
  .section__booking .quick-booking {
    background: #f9ad4b;
  }
  .footer-logo img {
    width: 120px;
  }
  .navbar-header {
    top: 5px;
    position: relative;
  }

  .navbar-toggle {
    margin-top: 10px;
  }

  .customedeatetimesin,
  .customedeatetimesout,
  .specialcode1 a {
    font-size: 17px;
  }

  .customedeatetimesin,
  .customedeatetimesout {
    padding: 8px 5px;
  }

  #reservationpop #get_header_avaibility {
    padding: 0;
  }

  #reservationpop .closebtn {
    display: none;
  }

  #reservationpop .search-btn-div {
    text-align: center;
  }

  #reservationpop {
    position: relative;
    height: auto;
    margin: 0 auto;
    width: 100% !important;
    background: var(--primary);
    padding: 0;
    padding: 5px 0 20px 0;
    float: left;
    overflow-x: inherit;
    text-transform: uppercase;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
      0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
      0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
      0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
      0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
      0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    z-index: 1;
  }

  #reservationpop > .container {
    width: 100%;
    padding: 0;
  }

  .respop_heading {
    display: none;
  }

  .custom__header.smaller .navbar-right {
    padding: 0;
  }

  .custom__header.smaller {
    position: fixed;
    width: 100%;
    z-index: 9999;
  }
  
  .smaller nav.navbar.navbar-inverse {
    background-color: #931824de !important;
}
.smaller .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff !important;
}

.smaller .navbar-inverse .navbar-nav > li > a {
    color: #FFF !important;
}

.smaller .div__logo1 {
	display:block;
    position: absolute;
    top: 13px;
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: 150px;
    width: 100%;
    z-index: 1;
}

.smaller .div__logo{
	display: none;
}
  #mySidenav {
    z-index: 10000;
  }

  .mobile0verviewinnwerdiv {
    min-height: 155px;
  }

  .overview-description-overview {
    min-height: 305px;
  }

  .promocode {
    margin-top: 10px;
    display: inline-block;
  }

  .primary-title {
    font-size: 30px;
  }

  .cool-link li a:hover::after,
  .cool-link li.active a::after {
    width: 0;
  }

  .t-dates {
    height: 44px;
  }

  .section__booking .container {
    width: 100%;
  }

  .menus {
    height: calc(100vh - 80px);
    overflow-y: scroll;
  }

  .sidenav {
    padding-top: 0;
  }

  .menus a {
    display: block;
    text-align: left;
  }

  .sidenav .closebtn {
    margin-right: 0;
    position: sticky;
    top: 10px;
  }

  .menus .dropdown-backdrop {
    display: none;
  }

  .hover-drop.open > .dropdown-menu,
  .hover-drop .dropdown-menu > li {
    display: block;
  }

  .menus li.active a::after {
    width: 0;
  }

  .menus li.active {
    background-color: var(--primary-light);
  }

  .menus .open > a,
  .menus .open > a:focus,
  .menus .open > a:hover {
    background-color: var(--primary-light);
  }

  .menus .dropdown-menu {
    opacity: 1;
  }

  .menus .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .menus .open .dropdown-menu > li > a {
    color: var(--white);
    padding: 10px 50px;
    opacity: 0.8;
  }

  .hover-drop .dropdown-menu > li.active > a {
    background-color: var(--primary-dark);
  }

  .section__main .video_home {
  }

  .section__main .video_home video {
    position: static;
    transform: none;
  }

  .footer-SEOlinks ul li a {
    font-size: 15px;
  }

  .footer__left {
    flex: 0 0 16%;
    max-width: 16%;
  }

  .footer__right {
    flex: 0 0 84%;
    max-width: 84%;
  }

  .respop_heading2 {
    display: block;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--white);
  }
  
  .home_resnew .btn-success, .quick-booking .btn-success {	
		background: #fff !important;
		color: #000 !important;
		border: 1px solid #fff;
	}
	
	
}

@media (min-width: 992px) {
  .floating-icons ul li a {
    width: 105px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 1024px) {
  .custom__header .navbar-nav > li > a.reservation-icon {
    padding-top: 16px;
    padding-bottom: 15px;
  }
  .smaller div.div__logo img {
    width: 97px;
  }
  .content2 .content-overlay {
    left: 32px !important;
    top: 14px !important;
  }
  .content:hover .content-details {
    width: 80% !important;
  }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .gallery-title-1 {
    font-size: 60px;
  }
  #reservationpop .home_collapse {
    position: absolute;
    width: 100%;
    z-index: 0;
    top: 62px;
    max-width: 350px;
  }

  .footer-SEOlinks ul li a {
    margin: 0 15px;
  }

  .social-icons label{
	    letter-spacing: 2px;
  }
  
  .home_resnew .btn-success {
    padding: 3px 30px;
}

#reservationpop .search-btn-div {
    margin-top: 36px;
}


#no_of_rooms, #no_of_adult, #no_of_child{
	    height: 42px !important;
		    width: 94%;
}

.quick-booking .checktxt{
	margin-bottom: 0px;
}

.quick-booking .btn-success {
    margin-top: 36px;
}

  .wide_cal .add-on {
    top: 5px !important;
  }

  .about-logo img {
    width: 80%;
  }

  .section__footer {
    margin: 20px 0 0;
  }

  .section__compdetails {
    font-size: 14px;
  }

  .footer-links ul li a {
    font-size: 12px;
  }
  
  /*Capitola*/
  
  
   .section__booking .container {
    padding: 0;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
	background: var(--primary);
  }
  
  .section__booking .quick-booking{
	box-shadow:none;
  }
  
  .div__logo{
	    top: 17px;
  }
  
  .navbar-toggle {
    margin-top: 15px;
}

.navbar-right {
    margin-top: 5px !important;
}


  .item.active {
    z-index: 1;
}

.carousel-indicators .active{
	    background-color: #fff !important;
    border-color: #fff !important;
}

.underline::after{
	    left: 22%;
    width: 55%;
}

.carousel-indicators{
	    bottom: -10%;
}
#carouselButtons{
	    bottom: 85px;
}

.btnClickBg::after {
    height: 809px !important;
}

section.white-bg::after{
	    top: -134px;
}

.cont{
	padding: 20px 30px;
    font-size: 16px;
    line-height: 2;
}

.section__guestroom{
	    padding-top: 60px;
}

.guestHead p{
	    padding: 0px 0px;
		    padding-bottom: 60px;
		letter-spacing: 0px;
}

.section__guestroom::after{
	    left: 21px;
}

.SpcImg img {
    width: 100%;
    height: 385px;
	max-height: 385px;
	min-height:385px;
    object-fit: cover;
}

.SpcCont > div:first-child::after{
	    bottom: 5px;
    right: -6px;
}

.specBtn::before{
	    top: 5px;
    right: -6px;
}

.attractions::before{
	    top: -24px;
}

.attImg2::before{
	    top: 12px;
}

.attractions::after{
	    left: -24px;
}

.attrCont {
    position: relative;
    top: -130px;
    right: -29px;
}

.attractions-title1{
	letter-spacing: 10px;
}

.barLine::after{
	    bottom: 248px;
    left: -14px;
}

.barLine::before{
	    right: -14px;
}

.social-icons label{
	    font-size: 22px;
}

.SpcCont > div:first-child{
	    padding: 22px;
}
  /*Capitola*/
}






@media screen and (max-width: 991px) {

.attrCont .cont{
	    text-align: justify;
    text-align-last: center;
}

.author_name{
	text-align: center;
}

.carousel-caption-center .main-caption{
	padding: 0 13px;
}
  .navbar-right {
    margin-top: 4px;
  }
  .carousel-control .fas {
    top: 60%;
    position: relative;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 11px;
    border-radius: 100vh;
    font-size: 23px;
  }
  .guestimage-content p {
    padding-top: 12.5% !important;
  }
  .out-bor {
    outline: 0px !important;
    outline-offset: 0 !important;
    padding: 0 !important;
  }
  .section__attractions {
    padding: 10px 6% 0;
  }
 
  .navbar-right {
    padding: 0;
  }

  .custom__header {
    position: fixed;
    width: 100%;
    z-index: 9999;
    /*background: rgba(87,79,76, .9);*/
  }

  .custom__header .reservation-icon {
    padding: 10px;
  }

  #reservationpop .search-btn-div {
    margin-top: 25px;
  }

  #reservationpop .home_collapse,
  .quick-booking .home_collapse {
    position: relative;
    top: 0;
    width: 100%;
  }

  .section__booking .quick-booking {
    background: var(--primary);
  }

  .customedeatetimesin,
  .customedeatetimesout,
  .specialcode1 a {
    font-size: 18px;
    padding: 10px 5px;
  }

  #promo_code {
    width: 100%;
    font-size: 17px;
  }

  .mobile0verviewinnwerdiv {
    min-height: 202px;
  }

  #promo_code::placeholder {
    font-size: 15px;
  }

  .overview-description-overview {
    min-height: 195px;
  }

  .section__SubCon .row:first-of-type {
    flex-direction: column;
  }

  .company {
    padding-bottom: 10px;
    flex-direction: column;
    justify-content: center;
  }

  .rct_wdgt #mySidenav {
    margin-top: 0;
  }

  .menus {
    overflow: auto;
  }

  .about-table {
    display: block;
    margin: 0 auto;
  }

  .about-tablecell {
    display: block;
  }

  .about-btn {
    left: 0;
    right: 0;
  }

  .btn-div {
    justify-content: center;
  }

  .about-description {
    padding: 0 15px;
  }

  .guestroom-div,
  .new__gallery-div {
    flex-direction: column;
  }

  .guestroom-div .guestroom-image {
    flex: auto;
    max-width: 100%;
    height: 500px;
    margin: 20px 0 0;
  }

  .guestroom-div .guestroom-content {
    padding-top: 30px;
  }

  .attraction-title {
    text-align: center;
  }

  .attraction-image-div {
    margin-top: 10px;
    margin-bottom: 40px;
    width: 100%;
  }

  .attraction-image-div ul li {
    width: 50%;
    margin: 0;
  }

  .guestroom-div .guestroom-content,
  .new__gallery-div .new__gallery-content,
  .new__gallery-div .new__gallery-image {
    flex: auto;
    max-width: 100%;
  }

  .gallery-image {
    margin-bottom: 25px;
  }

  .gallery-image img {
    height: 450px;
  }

  .section__map {
    background: #2b2b2b;
    margin-bottom: 0;
	padding: 20px 3% 20px;
	
  }

  .map-div {
    flex-direction: column;
  }

  .map-div .map-content,
  .map-div .map-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .map-div .map-image {
    min-height: auto;
  }

  .map-details {
    margin: 25px 10px 0;
  }

  .map-details a {
    color: var(--white);
  }

  .map-div .map-img {
    min-height: 550px;
  }

  .map-btn {
    margin-top: 10px;
  }

  .sisterprop-details ul li {
    width: 46%;
  }

  .footer__left,
  .footer__right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-links,
  .company {
    text-align: center;
    padding-top: 0;
  }

  .footer-SEOlinks ul {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 15px 0 15px;
    text-align: center;
  }

  .footer-SEOlinks ul li{
	margin-bottom: 15px;
  }
  
  .social-icons label{
	    font-size: 23px;
		    margin-top: 6px;
  }
  .footer-SEOlinks .comp-logo {
    text-align: center;
    margin-top: 25px;
  }

  .comp-logo {
    text-align: center;
  }

  .comp-logo img {
    float: none;
    margin: 0 auto;
  }

  .specialcode1 a {
    padding: 10px 10px 9px 10px;
  }

  .footer {
    padding-bottom: 40px;
  }

  .copyright-span {
    display: block;
  }
  
  /*Capitola*/
  
  section.white-bg::after{
	display:none;
  }
  
    .item.active {
    z-index: 1;
}
.carousel-control.right, .carousel-control.left{
	z-index: 1;
}

.about-intro{
	z-index:0;
}

.barLine::before, .barLine::after, .map-image::before, .map-image::after{
	display:none;
}

.hover-border:hover::before, .hover-border:hover::after{
	border-color: var(--primary);
}

.map-btn > .btn-div > a.hover-border:hover::before, .map-btn > .btn-div > a.hover-border:hover::after, .mobBorder.hover-border:hover::before, .mobBorder.hover-border:hover::after{
	border-color: #e4e4e4;
}
}

@media (min-width: 768px) and (max-width: 991px) {
  footer {
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 10% !important;
  }
  .search-btn {
    padding: 5px 48px !important;
  }
  .company {
    padding-bottom: 25px;
  }
  
    /*Capitola*/
  
  #myCarousel3 .carousel-control.left, #myCarousel3 .carousel-control.right{
	display: none;
  }
  
  .review_content {
    font-size: 16px;
    text-align: center;
    font-family: lato;
    padding-left: 10px;
    padding-right: 10px;
}

   .section__booking .container {
    padding: 0;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
	background: var(--primary);
  }
  
  .section__booking .quick-booking{
	box-shadow:none;
  }
  
  .underline::after{
	    left: 15%;
    width: 69%;

  }
  
  .tab_room.clearfix.pullme {
		margin-left: 17%;
	}
	
	.smwid {
		width: 39.6%;
		padding: 0 10px;
		/* margin-left: 15px; */
		margin: auto;
	}
	
	
	.selectdiv {
    margin-left: 0;
}

  main{
	background:#fff;
  }
  
  .quick-booking {
    background: var(--primary) !important;
    height: 250px;
}

  /*Caurosel 1*/
  .carousel-caption-center {
    position: absolute !important;
    background: #000;
    font-family: lato;
	bottom: -50px !important;
}

.carousel-caption-center .main-caption {
    font-size: 15px !important;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 1px !important;
}
.carousel-caption-center .sub-caption {
    font-size: 14px !important;
    letter-spacing: 1px !important;
    color: var(--white) !important;
}

.carousel-control{
	    bottom: 65px;
}
 
 .div__logo{
	    top: 13px;
 }
  /*Guestrooms*/
  
  .section__guestroom{
	padding-top: 0;
  }
  
  .section__guestroom::before, .section__guestroom::after{
	display:none;
  }
  
  .guestroom-div {
		padding-left: 0;
		padding-right: 0;
		padding-top: 20px;
		padding-bottom: 20px;
		overflow: hidden;
		background-color: #EBEBEB;
	}
	
.guestroom-content-div {
    width: 100%;
    float: left;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: -85px;
}

.guestroom-content {
    color: var(--white);
    background-color: #333333;
    text-align: center;
    padding: 20px;
    outline: 1px solid var(--white);
    outline-offset: -10px;
    font-family: lora;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    width: 60%;
}

.room-title-1 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 35px;
    margin-left: 5px;
    margin-bottom: 0;
    margin-top: 0px;
}

.guestroom-image-div {
    width: 100%;
    float: left;
    color: var(--white);
    border: 1px solid var(--black);
}

.guestroom-image-div ul {
    width: 100%;
    float: left;
    padding: 15px 5px 20px;
}

.guestroom-image-div ul li {
    padding: 0 10px;
    margin-bottom: 10px;
}

.content.guestroom-image {
    overflow: hidden;
    position: relative;
    margin: 0;
    height: auto;
}

.guestroom-image-div ul li figure img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.cont {
    padding: 10px;
    font-family: lato;
    line-height: 2;
    background: transparent;
    color: #000;
    z-index: 1;
    /* position: relative; */
    text-align: justify;
}

.cont::after, .cont::before{
	display: none;
}

.guestBtn {
    background: transparent;
}

.guestBtn > .guestroom-btn > .btn-div a {
    color: var(--primary) !important;
}

/*Specials*/

.section_specials{
	padding: 20px;
	background-position-x: -64px;
}

.SpcImg img {
      width: 100%;
    height: 500px;
    object-fit: cover;
}

.special-title1 {
    font-size: 35px;
    text-transform: uppercase;
    color: var(--white);
    font-family: lato;
    text-align: center;
    font-weight: 300;
    float: none;
}

.special-heading {
    font-family: lato;
    font-size: 18px;
    color: var(--white);
    display: block;
    float: none;
}

.contSpecial .cont {
    color: #fff;
}

.guestroom-btn {
    margin-top: 0;
}

.specials-content .guestroom-btn .btn-div a {
    color: #fff !important;
}

.SpcImg{
    margin-bottom: 15px;
    margin-top: 10px;
}

/*Attractions*/

.attractions-title1{
	letter-spacing: 5px;
    margin-left: 7px;
	    font-size: 35px;
}

.attImg2::before{
	display:none;
}

.attrCont {
    position: relative;
    top: 0;
    right: 0;
}

.attrCont .cont {
	margin-bottom: 0px;
	padding: 10px;
	box-shadow:none;
	-webkit-box-shadow:none;
	color: #000 !important;
	background: transparent;
}

.attraction-btn > .btn-div > a {
    color: #931824 !important;
}

.section__gallery{
	    padding: 0px 3% 0px;
    margin-top: 10px;
}
/*Review*/

.section__OurGuest .OurGuest-div{
	    padding: 13px 4% 0px;
		width: 96%;
}

#myCarousel3 .carousel-inner{
	    height: auto;
}

.attImg1 img, .attImg2 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.OurGuest-div .OurGuest-description {
    padding: 0px;
}

.review-title-1{
	font-size: 16px;
}

.review-title-2{
	    font-size: 35px;
}

.OurGuest-btn > .attraction-btn > .btn-div > a {
    color: #931824 !important;
}

/*Map*/

.map-image picture img{
	height: auto;
}

.map-details ul li {
    margin-bottom: 20px;
    display: flex;
}

.heading {
    position: relative;
    bottom: 0;
}

.location-title1{
	    text-align: center;
		    font-size: 35px;
    letter-spacing: 10px;
	    margin-left: 0px;
}
.section__footer {
    margin: 20px 0% 0;
}

/*Footer*/

.borderBtm{
	border:none;
}

.footer-buttons .footer-btn, .goog-te-gadget-simple {
    margin-bottom: 0px;
}

.footer-buttons li{
	    padding: 10px 10px;
}
/*Capitola*/

}

@media (min-width: 768px) {
 

  #promo_codebox {
    position: absolute;
    right: 20%;
    border-right: 2px solid #fff;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    top: 80px;
    z-index: 1;
  }

  .PR-desk0 {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
.tab_room.pullme {
    padding: 0px 5px;
}

  footer {
    padding-bottom: 30px;
  }
  #no_of_rooms, #no_of_adult, #no_of_child{
	    padding: 9px 3px;
  }
  .search-btn {
    padding: 5px 48px !important;
  }
  .guestimage-content p {
    padding-top: 22.5% !important;
  }
  .subscribe-title label {
    color: #f0a13a;
    position: inherit;
    font-size: 25px;
    font-family: initial;
    font-weight: normal;
  }
  
  .review_content {
    font-size: 16px;
    text-align: center;
    font-family: lato;
}


  .subscribe__div,
  .contact__div {
    padding: 30px 0px 30px;
  }
  .label1 {
    font-size: 25px;
  }

  .navbar-header {
    top: 0;
  }

  .rct_wdgt .custom__header {
    top: 50px;
  }

  .gridMob span {
    text-align-last: left;
    text-align: left;
}


  .mobile0verviewinnwerdiv {
    min-height: 595px;
  }

  .overview-description-overview {
    min-height: 350px;
  }

  .goog-te-gadget-simple {
    margin: 0 auto 15px auto;
  }

  .guestroom-div .guestroom-image {
    margin: 20px 0 0;
    height: 450px;
  }

  .guestroom-div .guestroom-content {
    padding: 30px 30px 20px 30px;
  }

  .section__attractions {
    padding-bottom: 0;
  }

  .gallery-title {
    padding: 0 10px;
  }

  .gallery-description {
    padding: 0 30px;
  }

  .section__headerbg .innercaption p {
    display: block;
  }

  .carousel-control.right,
  .carousel-control.left {
    background-image: none;
  }

  .carousel-control {
    opacity: 1;
  }

  .promocode {
    display: inline-block;
  }

  .icon-bar {
    transition: all 0.3s;
  }

  .navbar-toggle:focus .icon-bar {
    opacity: 0;
    transform: translateX(50%);
  }

  .div__logo {
    right: auto;
    left: 20px;
    max-width: 105px;
    top: 4px;
  }
  
  

  .navbar-toggle {
        margin-top: 15px;
  }

  .smaller .div__logo {
    display: none;
  }

  .roomscroll {
    max-height: 100%;
  }

  .carousel-control {
    font-size: 30px;
  }

  .carousel-caption {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
	background-color: #000000;	
  }

  .room_title span {
    background-color: transparent !important;
    color: #000;
    text-align: left;
    padding: 10px 16px;
    height: auto;
    display: block;
  }

  .section__booking .quick-booking {
    padding: 20px 10px;
  }

  .carousel-control .fas {
    top: 45%;
    position: relative;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 11px;
    border-radius: 100vh;
    font-size: 23px;
  }

  .carousel-caption {
    bottom: 0;
    padding-bottom: 0;
	bottom: 0;
    padding-bottom: 0;
    width: 100%;
    left: 0px;
  }

  .carousel-inner > .item::after {
    background: -moz-linear-gradient(
      top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 46%,
      rgba(0, 0, 0, 0.65) 99%,
      rgba(0, 0, 0, 0.65) 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      top,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 46%,
      rgba(0, 0, 0, 0.65) 99%,
      rgba(0, 0, 0, 0.65) 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 46%,
      rgba(0, 0, 0, 0.65) 99%,
      rgba(0, 0, 0, 0.65) 100%
    );
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */

    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
    content: "";
  }

  .primary-title {
    font-size: 33px;
  }

  .section__main .video_home {
  }

  .about-title-2 {
    font-size: 25px;
  }

  .attraction-title-2,
  .sisterprop-title-1 {
    font-size: 25px;
  }

  .attraction-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .guestroom-image .overlay {
  }

  .attraction-image-div ul li {
    width: 100%;
  }

  .sisterprop-details ul li {
    width: 100%;
    margin: 10px 0;
  }

  .gallery-title-1 {
    font-size: 30px;
    letter-spacing: 0;
  }

  .subscribe-title {
    text-align: center;
  }

  .section__map {
    margin: 0px;
    padding-bottom: 30px;
  }

  .sisterprop-details {
    margin: 25px 0 0 0;
  }

  .section__sisterprop {
    padding-bottom: 0;
  }

.section__booking .quick-booking {
	box-shadow:none;
  }
  .section__booking .container {
    padding: 0;
	    background: var(--primary);
		box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  }
  
  

  .footer-buttons ul li {
    display: block;
    text-align: center;
  }

  .footer-buttons ul li:nth-child(2) {
    margin: 0;
  }

  .footer-buttons ul li a {
    margin-left: auto;
    margin-right: auto;
  }

  .section__booking {
    position: inherit !important;
    bottom: 0 !important;
  }

  .section__booking .quick-booking {
    border: 0 !important;
  }

  .section__headerbg .innercaption {
    width: 100% !important;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateX(0);
  }

  .map-div .map-image {
    min-height: auto;
  }

  .rct_wdgt .custom__header.smaller {
    top: 50px;
  }

  .adultbtn:hover,
  .adultbtn.count-minus:hover {
    background: transparent !important;
    color: #485f17 !important;
  }

  .adultbtn:active {
    background: #449d44 !important;
    color: var(--white) !important;
  }

  .adultbtn.count-minus:active {
    background: red !important;
    color: var(--white) !important;
  }

  .custom__header,
  .custom__header.smaller {
    position: absolute;
    width: 100%;
    z-index: 2;
  }
  


  #scroll {
    right: 20px;
  }

  body {
    padding-bottom: 20px;
  }
  
  
  /*Capitola*/
  
  p.content-title {
    font-size: 24px;
    margin-top: 30px;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
    min-height: 0px !important;
    text-align: center !important;
}

  .underline::after{
	left: 2%;
    width: 98%;
  }
  
  span.red-box {
    padding: 0 13px;
    font-size: 14px;
}

span.white-box {
    padding: 0 13px;
	font-size: 13px;
}

  
  /*Guestrooms*/
  
  .section__guestroom{
	padding-top: 0;
  }
  
  .section__guestroom::before, .section__guestroom::after{
	display:none;
  }
  
  .guestroom-div {
		padding-left: 0;
		padding-right: 0;
		padding-top: 20px;
		padding-bottom: 20px;
		overflow: hidden;
		background-color: #EBEBEB;
	}
	
.guestroom-content-div {
    width: 100%;
    float: left;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: -97px;
}

.guestroom-content {
    color: var(--white);
    background-color: #333333;
    text-align: center;
    padding: 20px;
    outline: 1px solid var(--white);
    outline-offset: -10px;
    font-family: lora;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    width: 100%;
}

.room-title-1 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 35px;
    margin-left: 5px;
    margin-bottom: 0;
    margin-top: 0px;
}

.guestroom-image-div {
    width: 100%;
    float: left;
    color: var(--white);
    border: 1px solid var(--black);
}

.guestroom-image-div ul {
    width: 100%;
    float: left;
    padding: 15px 5px 20px;
}

.guestroom-image-div ul li {
    padding: 0 10px;
    margin-bottom: 10px;
}

.content.guestroom-image {
    overflow: hidden;
    position: relative;
    margin: 0;
    height: auto;
}

.guestroom-image-div ul li figure img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.cont {
    padding: 10px;
    font-family: lato;
    line-height: 2;
    background: transparent;
    color: #000;
    z-index: 1;
    /* position: relative; */
    text-align: justify;
}

.cont::after, .cont::before{
	display: none;
}

.guestBtn {
    background: transparent;
}

.guestBtn > .guestroom-btn > .btn-div a {
    color: var(--primary) !important;
}

/*Specials*/

.section_specials{
	padding: 20px;
	background-position-x: -64px;
}

.SpcImg img {
    width: 100%;
    height: auto;
}

.special-title1 {
    font-size: 35px;
    text-transform: uppercase;
    color: var(--white);
    font-family: lato;
    text-align: center;
    font-weight: 300;
    float: none;
}

.special-heading {
    font-family: lato;
    font-size: 18px;
    color: var(--white);
    display: block;
    float: none;
}

.contSpecial .cont {
    color: #fff;
}

.guestroom-btn {
    margin-top: 0;
}

.specials-content .guestroom-btn .btn-div a {
    color: #fff !important;
}

.SpcImg{
    margin-bottom: 15px;
    margin-top: 10px;
}

/*Attractions*/

.attractions-title1{
	letter-spacing: 5px;
    margin-left: 7px;
	    font-size: 35px;
}

.attImg2::before{
	display:none;
}

.attrCont {
    position: relative;
    top: 0;
    right: 0;
}

.attrCont .cont {
	margin-bottom: 0px;
	padding: 10px;
	box-shadow:none;
	-webkit-box-shadow:none;
	color: #000 !important;
    background: transparent;
}

.attraction-btn > .btn-div > a {
    color: #931824 !important;
}

.section__gallery{
	    padding: 0px 3% 0px;
    margin-top: 10px;
}
/*Review*/

.section__OurGuest .OurGuest-div{
	    padding: 13px 4% 0px;
		    width: 100%;
}

#myCarousel3 .carousel-inner{
	height: 355px;
}

.section__OurGuest {
    margin-top: 0;
    background: #ebebeb;
    padding-bottom: 20px;
    padding-top: 20px;
}

#myCarousel3 .carousel-inner>.active{
    left: 0;
    top: -20px;
}

.OurGuest-div .OurGuest-description {
    padding: 0px;
}

.review-title-1{
	font-size: 16px;
}

.review-title-2{
	    font-size: 35px;
}

.OurGuest-btn > .attraction-btn > .btn-div > a {
    color: #931824 !important;
}

/*Map*/

.map-image picture img{
	height: auto;
}

.map-details ul li {
    margin-bottom: 20px;
    display: flex;
}

.heading {
    position: relative;
    bottom: 0;
}

.location-title1{
	    text-align: center;
		    font-size: 35px;
    letter-spacing: 2px;
	    margin-left: 0px;
}
/*Footer*/

.borderBtm{
	border:none;
}

.quick-booking {
    background: var(--primary) !important;
    height: 250px;
}

.social-icons ul li a{
	    margin: 0 2px;
}

/*Capitola*/
}

/* ----------------------------------- MEDIA QUERIES ----------------------------------- */

/* LC LIGHTBOX CLOSE ICON MARGIN-LEFT CSS */
.lcl_minimal .lcl_close {
  margin-left: 3px !important;
}

.acesssfour a {
  color: var(--primary-dark);
}

.acesssfour a.text-white {
  color: var(--white) !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

.footer-logo a {
  color: var(--white);
}

@media (max-width: 500px) {
  .country_currency_list {
    width: 293px;
  }

  .guestimage-content p {
    padding-top: 46.5% !important;
  }
 
}
@media (max-width: 400px) {
  .mobile0verviewinnwerdiv {
    min-height: 420px;
  }
}
.MB0 {
  margin-bottom: 0px !important;
}
.MT2 {
  margin-top: 2px;
}
.MT4 {
  margin-top: 4px;
}
.MT5 {
  margin-top: 5px;
}
.carousel-indicators li {
  display: block !important;
  margin: 10px 5px !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 0px;
      background: transparent;
    border-color: #fff;
}
.carousel-indicators {
  bottom: 8px;
  left: 46% !important;
  width: auto;
  margin: 0;
  z-index: 2;
  display: flex;
}
.carousel-indicators .active {
    background-color: #fff;
    border-color: #fff;
}


.outlinebar {
  outline: 1px solid #f0a13a;
  padding-left: 0;
  padding-top: 0;
  outline-offset: -24px;
  padding-right: 50px;
  padding-bottom: 46px;
}
.out-bor {
  outline: 1px solid #f0a13a;
  outline-offset: -11px;
  padding: 0 0 0 10px;
}
.gallery-title span {
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 3px;
  font-size: 22px;
  font-weight: lighter;
  text-transform: uppercase;
}
.carousel-caption-center {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: lato;
  -webkit-transform: translate(0px, -50px);
  -ms-transform: translate(0px, -50px);
  transform: translate(0px, -50px);
  z-index: 1;
}

.carousel-caption-center p {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 12px 15px;
    display: inline-block;
}

.carousel-caption-center .main-caption,
.carousel-caption-center .sub-caption {
  display: block;
  margin: 5px 0;
}

.carousel-caption-center .main-caption {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
}

.carousel-caption-center .sub-caption {
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--white);
}
.carousel-inner .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.41);
  z-index: 0;
}

#myCarousel3 div.carousel-inner .item:after {
  background: none;
}
.attraction-image-div img {
  width: 100%;
}
.content2 .content-overlay {
  width: 82.5%;
  height: 87.5%;
  left: 43px;
  top: 21px;
}
.animatedheight h2 {
  font-size: 25px;
  font-family: "Times New Roman", Times, serif;
}

.attract-details .but_direct {
  background: #f0a13a !important;
}
.bg-green {
  background: #6fa624 !important;
}
.nav-tabs-vertical > .nav-tabs > li.active > a .tab_icon,
.nav-tabs-vertical > .nav-tabs > li > a:hover .tab_icon {
  border: 0px;
}

#myCarousel3 .carousel-control.right .fa {
  color: #000;
  font-size: 50px;
  top: -6px;
  right: -2px;
}
#myCarousel3 .carousel-control.left .fa {
  color: #000;
  font-size: 50px;
  top: -6px;
  left: -2px;
}
#myCarousel3 .carousel-control.left {
  background: transparent;
}
#myCarousel3 .carousel-control.right {
  background: transparent;
}
#myCarousel3 .carousel-control {
  top: 100%;
}
#myCarousel3 .carousel-control .fa {
  font-size: 35px;
}
#myCarousel3 .carousel-control.left {
  left: auto;
  left: -8%;
  background: #e9e8e7;
  border-radius: 50%;
  top: 80px;
}
#myCarousel3 .carousel-control.right {
  right: -8%;
  background: #e9e8e7;
  border-radius: 50%;
  top: 80px !important;
  position: absolute;
  z-index: 5;
}
.carousel-control.right {
  background-image: none;
}
.carousel-control.left {
  background-image: none;
}
@media screen and (max-width: 1200px) {
  .content2 .content-overlay {
    width: 82.5%;
    height: 87.5%;
    left: 38px;
    top: 16px;
    font-size: 11px;
  }
}

@media (min-width: 1200px) and (max-width: 1299px){
section.white-bg::after{
	  top: -65px;
    height: 380px;
}



.about-btn{
	bottom: 40px;
}

.cont {
    padding:67px 25px;
	font-size: 16px;
}

.btnClickBg::after {
    height: 675px !important;
}

.guestHead p{
	    padding: 0px 31px;
    padding-bottom: 50px;
	letter-spacing: 0px;
}

.section__guestroom::after{
	    bottom: 80px;
    left: 27px;
}

.img1 img {
    width: 100%;
    height: 398px;
    max-height: 398px;
	min-height:398px;
    object-fit: cover;
}


.img2::before, .head::before{
	top: 49%;
}
.img2 img{
	    min-height: 857px;
		max-height: 857px;
		
}

.img3 img {
        width: 100%;
    height: 397px;
    max-height: 397px;
    min-height: 397px;
    object-fit: cover;
}

.SpcCont > div:first-child{
	    padding: 22px;
}

.SpcImg img {
    width: 100%;
    height: 372px;
    max-height: 372px;
    min-height: 372px;
    object-fit: cover;
}

.section__gallery {
    text-align: justify;
    text-align-last: center;
    padding: 20px 3% 171px;
}

.SpcCont > div:first-child::after{
	bottom: 8px;
    right: -9px;
}

.specBtn::before{
	    top: 8px;
    right: -8px;
}

.attractions::after{
	    left: -32px;
}

.attrCont{
	    right: -27px;
}

.section__gallery .container {
    width: 1150px;
}

.barLine::before{
	    top: 76px;
    right: -20px;
}

.barLine::after{
	    bottom: 140px;
    left: -19px;
}

.section__footer {
    margin: 20px 2% 0;
}

.logoDN a {
    color: #ffffff;
    margin-top: 29px;
}

.smaller .logoDN a img {
    width: 100%;
}


}
@media (min-width: 1300px) and (max-width: 1399px){


.logoDN a {
    color: #ffffff;
    margin-top: 32px;
}

.smaller .logoDN a img {
    width: 100%;
}



section.white-bg::after{
	  top: -65px;
	      height: 390px;
}


.btnClickBg::after {
    height: 680px !important;
}


.img2 img{
	    height: 1000px;
		min-height:1000px;
		max-height:1000px;
}

.cont {
    padding: 49px 34px;
	font-size: 17px;
}

.img3 img {
    width: 100%;
    height: 530px;
   max-height: 530px;
    object-fit: cover;
}

.guestHead p {
    color: white;
    padding: 0px 46px;
    padding-bottom: 60px;
	letter-spacing: 0px;
}
.section__guestroom::after{
	    left: 30px;
}

.head::before, .img2::before{
	    top: 43.3%;
}

.SpcImg img {
    width: 100%;
    height: 458px;
    max-height: 458px;
	min-height:458px;
    object-fit: cover;
}

.SpcCont > div:first-child::after{
	    bottom: 9px;
    right: -11px;
}

.specBtn::before{
	    top: 9px;
    right: -11px;
}

.attrCont {
    position: relative;
    top: -130px;
    right: -51px;
}

.barLine::before{
	    right: -22px;
}

.barLine::after{
	    left: -22px;
}
}
@media (min-width: 1400px) and (max-width: 1499px){

.logoDN a {
    color: #ffffff;
    margin-top: 25px;
}

.smaller .logoDN a img {
    width: 100%;
	
}


section.white-bg::after{
	  top: -65px;
	  height: 390px;
}



.btnClickBg::after {
    height: 680px !important;
}


.img2 img{
	height: 966px;
    max-height: 966px;
}

.cont {
    padding: 53px 45px;
	font-size: 17px;
}

.img1 img {
    width: 100%;
    height: 509px;
    max-height: 509px;
    object-fit: cover;
}

.section__guestroom::after{
	    bottom: 80px;
    left: 33px;
}

.img3 img{
	height: 506px;
    max-height: 506px;
	min-height:506px;
}

.guestHead p{
	    padding: 0px 32px;
		padding-bottom: 50px;
}

.SpcImg img{
	    height: 460px;
		max-height:460px;
		min-height:460px;
}
.img2::before, .head::before{
	   top: 43.5%;
}

.SpcCont > div:first-child::after{
	    bottom: 11px;
    right: -12px;
}

.specBtn::before{
	top: 11px;
    right: -12px;
}
.attrCont{
	    right: -87px;
}

.barLine::after{
	    left: -24px;
}

.barLine::before{
	    right: -24px;
}
}

@media (min-width: 1500px) and (max-width: 1599px){

section.white-bg::after{
	    top: -65px;
		height: 400px;
}



.btnClickBg::after {
    height: 690px !important;
}

.img3 img {
    width: 100%;
    height: 536px;
    max-height: 536px;
	min-height:536px;
}

.cont{
	padding: 77px 45px;
}


.guestHead p{
	   padding: 31px 59px;
}

.img2 img {
    width: 100%;
    height: 1007px;
    max-height: 1007px;
}

.img2::before, .head::before{
	    top: 43%;
}

.img1 img {
    width: 100%;
    height: 525px;
	max-height: 525px;
	object-fit:cover;
}


.SpcImg img {
   width: 100%;
    height: 437px;
    object-fit: cover;
    max-height: 437px;
	min-height:437px;
}

.section__guestroom::after{
	left: 33px;
}

.SpcCont > div:first-child{
	    padding: 44px 70px;
}

.SpcCont > div:first-child::after{
	bottom: 13px;
    right: -14px;
}

.specBtn::before{
	top: 13px;
    right: -14px;
}

.barLine::after{
	left: -29px;
}

.barLine::before{
	    right: -29px;
}


}

@media (min-width: 1550px) and (max-width: 1599px){
.img3 img {
    width: 100%;
    height: 513px;
    max-height: 513px;
}

.carousel-indicators {
    bottom: -6%;
}

.img2::before, .head::before {
    top: 43%;
}


}

@media (min-width: 1566px) and (max-width: 1599px){
.img1 img {
    width: 100%;
    height: 525px;
    max-height: 525px;
    object-fit: cover;
}
}

@media (min-width: 1600px) and (max-width: 1771px){

section.white-bg::after{
	    top: -65px;
		height: 390px;
}


section.white-bg {
    position: relative;
}


.guestHead p {
    color: white;
    padding: 0px 75px;
    padding-bottom: 60px;	
}

.img3 img {
   height: 504px;
    max-height: 504px;
	min-height:504px;
}

.cont {
    padding: 48px 45px;
}

.img2 img{
	height: 974px;
    max-height: 974px;
}

.img2::before, .head::before{
	top: 44.5%;
}

.SpcCont > div:first-child::after{
	    bottom: 14px;
    right: -17px;
}

.specBtn::before{
	top: 14px;
    right: -17px;
}

.SpcImg img {
    height: 428px;
    object-fit: cover;
    max-height: 428px;
	min-height: 428px;
}

.barLine::before{
	    right: -30px;
}

.barLine::after{
	left: -30px;
}

}

@media (min-width: 401px) and (max-width: 767px){
	.overview-description-overview {
    min-height: 297px;
}

.gridMob span{
	text-align-last: left;
  }
  
  .mobile0verviewinnwerdiv {
		min-height: 344px;
	}
}

/* NEW MAX WIDTH CONSTRAINT */
@media (min-width: 2000px) {
   body,
   .custom__header {
       max-width: 2000px;
   }

   body {
       background: #fff;
       margin: auto;
       box-shadow: 0 19px 38px rgba(0, 0, 0,0.1), 0 15px 12px rgba(0, 0, 0,0.08);
   }
   
   html:not([amp4ads]) body {
    margin: auto !important;
}

.cont{
	    padding: 73px 51px;
}

.about-intro {
    margin-top: 40px;
}

section.white-bg::after{
	    height: 440px;
		top: -75px;
}

.btnClickBg::after {
    height: 720px !important;
}



}


@media screen and (max-width: 1199px) and (min-width: 992px){
.carousel-caption-center {
    position: absolute;	
	bottom: -15px;
}

.carousel-indicators {
    bottom: 5px;
	z-index: 2;
}

/*.review_content {
    font-size: 18px;
    text-align: center;
    font-family: lato;
    position: relative;
    padding: 25px;
}*/


.carousel-caption-center .main-caption, .carousel-caption-center .sub-caption{
	    color: #fff;
}

.carousel-inner>.item::after {
    background: -moz-linear-gradient(top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,0.4) 65%, rgba(0,0,0,0.75) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.4) 35%,rgba(0,0,0,0.4) 65%,rgba(0,0,0,0.75) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.4) 35%,rgba(0,0,0,0.4) 65%,rgba(0,0,0,0.75) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf000000', endColorstr='#bf000000',GradientType=0 );
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
    content: "";
}

.quick-booking {
    background:var(--primary) !important;
    height: 100px;
}

.respop_heading2 {
    color: #ffffff;
    background: var(--primary);
}

.social-icons ul li a{
	    margin: 0 2px;
}



section.white-bg::after{
	    height: 454px;
}
}

@media (max-width: 1771px) and (min-width: 1640px)
{
.cont {
    padding: 68px 45px;
}
}

@media (min-width: 1200px) and (max-width: 1600px){
	
	.about-intro {
    z-index: 1;
    position: relative;
}

section.white-bg {
    position: relative;
}

}
.p-0{padding: 0;}
.top-belt{background-color: #000;color: #fff;margin-bottom: 0;padding: 4px;font-size: 14px;    font-family: Lato; text-align: center;
} 

.smaller .top-hdr{
  display: none;
}