:root {
  --white: #fff;
  --black: #000;
  --primary: #2e2e2e;
  --primary-dark: #2e2e2e;
  --primary-light: #2cac75;
  --primary-light-rgb: 44, 172, 117;
  --grey: #c9c9c9;
  --green: #358a00;
  --ada: #0563ae;
  --text-color: #313131;
  --btn-color: var(--primary);
}
* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Beaulieu Regular";
  src:
    url("../fonts/Beaulieu-Regular.woff2") format("woff2"),
    url("../fonts/Beaulieu-Regular.woff") format("woff");
  font-weight: bold;
  font-style: bold;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src:
    url("../fonts/Archivo-Medium.woff2") format("woff2"),
    url("../fonts/Archivo-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Regular";
  src:
    url("../fonts/Archivo-Regular.woff2") format("woff2"),
    url("../fonts/Archivo-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src:
    url("../fonts/WorkSans-Regular.woff2") format("woff2"),
    url("../fonts/WorkSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body {
  font-family: "Beaulieu Regular", sans-serif;
  font-size: 16px;
  color: #000;
  overflow-x: hidden;
}

.custom__header .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.custom__header.smaller {
  background-color: #2e2e2e !important;
}

.d-block {
  display: block;
}
.d-flex {
  display: flex;
}

.inline-block {
  display: inline-block;
}
.flex-centered {
  display: flex;
  align-items: center;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 10px;
  border: 1px solid #fefefe;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}
#aaaWidget {
  z-index: 9999 !important;
}
.messages_bar {
  font-size: 16px;
}
.messages_bar .messages p {
  display: inline-block;
  margin: 0;
  padding: 0 5px;
  word-break: break-word;
  flex-grow: 1;
}
.messages {
  padding: 15px 20px;
  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: var(--white);
  background-color: #0563ae;
  border-color: #0563ae;
}

.alert-dismissible .close {
  position: unset;
}

.header-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.row.display-prop.flex-direction.flex-box.top {
  align-items: flex-end;
  margin: 0px 0px 30px;
}

.close:focus,
.close:hover {
  opacity: 1;
  outline: 0;
}

.messages_bar.alert {
  padding: 0 15px;
}

.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.position-left {
  margin: 10px;
}

.position-right {
  margin-left: 8px;
}

.content-group {
  margin-bottom: 10px;
}

.h-100 {
  height: 100%;
}

a,
a:active,
a:focus,
a:hover {
  outline: 0;
  text-decoration: none;
}

#js-gdpr-consent-banner p {
  margin-bottom: 10px;
}

.border-0 {
  border: 0;
}

.accordions__header {
  background-color: var(--primary-dark);
  color: #fff !important;
}
.accordions__title {
  background-color: var(--primary-dark);
  color: #fff !important;
}
.datepicker td.day.disabled {
  color: #ccc !important;
}

.hidden {
  display: none;
}

.datepicker td.disabled.day:hover {
  background: #eaeaea !important;
}

.datepicker td.day:hover {
  background: #9f9f9f !important;
  color: var(--white) !important;
}

.btn-div {
  display: flex;
  overflow: hidden;
  justify-content: center;
  width: 100%;
  height: 50px;
}

.map-content .btn-div {
  width: 100%;
  margin-left: -41px;
  margin-bottom: -8px;
  justify-content: center;
}

.btn-success {
  transition: all 0.3s;
}

.btn-green {
  background: var(--primary);
  color: var(--white) !important;
}

.btn-brown {
  background-color: var(--primary-dark);
  color: var(--white) !important;
}

.btn-white {
  background-color: var(--white);
  color: #343333;
}

.btn-submit {
  color: var(--green);
}

.btns {
  border-radius: 0;
  padding: 8px 16px;
  text-transform: uppercase;
  transition: 0.2s all;
  -webkit-font-smoothing: antialiased;
  font-size: 19px;
  display: inline-block;
}

.btn-green {
  background: var(--primary);
  color: var(--white) !important;
}

.btn:focus {
  outline: 0 !important;
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

.promocode-div {
  display: none;
}

.reservation-field-wrapper .selectdiv label {
  margin-bottom: 0px !important;
  display: none;
}

.leaflet-container {
  z-index: 1;
}

#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;
}

.menus li.active a::after {
  width: 100%;
}

.cool-link li a:hover::after,
.cool-link li.active a::after {
  width: 100%;
}

.custom__header {
  position: absolute;
  width: 100%;
  z-index: 3;
}

.div__logo img {
  width: 150px;
  margin: auto;
  height: 90px;
}

.div__logo {
  position: relative;
  top: 0;
  left: 0;
  max-width: 150px;
  width: 150px;
  z-index: 1;
  float: left;
}

.custom__header .navbar {
  margin-bottom: 0;
  border: none;
  border-radius: 0;
}

.custom__header .navbar-inverse {
  background-color: transparent !important;
  color: var(--white);
  background-image: inherit;
}

.custom__header.smaller {
  background: var(--primary-dark);
}

.custom__header .navbar-inverse .navbar-toggle {
  border-color: transparent;
}

.navbar-toggle {
  border-color: transparent;
  margin-top: 40px;
}

.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(--white);
  font-size: 15px;
  text-transform: uppercase;
  transition: 0.5s all;
  position: relative;
  z-index: 1;
}
.custom__header .navbar-inverse .navbar-right > li > a {
  font-size: 20px;
  font-weight: 100;
  box-shadow: 1px 0 20px 1px rgb(0, 0, 0, 0.37);
}
.custom__header .navbar-nav > li > a.reservation-icon {
  padding-top: 15px;
  padding-bottom: 15px;
}
.navbar-toggle .icon-bar {
  width: 40px;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #01271d;
}
.custom__header.smaller .navbar-toggle .icon-bar {
  background-color: var(--white);
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 8px;
}
.navbar-header {
  display: none;
}
.custom__header .navbar-inverse .navbar-nav > li > a.reservation-button:hover {
  color: #fff;
}
.custom__header .navbar-inverse .navbar-nav > li > a.reservation-button {
  vertical-align: middle;
  text-transform: uppercase;
  background: #5e728a !important;
  padding: 35px 18px;
  height: 90px;
  font-size: 36px;
  color: #343333;
}
.custom__header .navbar-inverse .navbar-nav > li > a {
  font-family: "TrajanPro Bold";
  color: #2e2e2e !important;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.5s all;

  box-shadow: none;
  border: none;
  background: transparent;
}
ul.top-nav-ul.nav.navbar-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  height: 50px;
  opacity: 0.9;
  float: right;
  right: 10px;
}
.reservation_tab {
  text-align: center;
  float: right !important;
  position: absolute !important;
  top: 0;
  background: #fff;
  right: 0;
  text-transform: uppercase;
}
.mrc {
  margin-right: 15%;
}
.respop_heading {
  font-size: 28px;
  text-transform: uppercase;
  color: var(--white);
}
.reservation__fixed-btn {
  font-size: 20px;
  width: 100%;
  color: var(--white) !important;
  border-radius: 0;
  background: #2e2e2e;
  text-transform: uppercase;
  position: fixed;
  bottom: 0;
  transition: 0.5s all;
  z-index: 3;
}
.reservation__fixed-btn:hover {
  color: var(--white) !important;
}
.customedeatetimesin,
.customedeatetimesout {
  background-color: transparent;
  border: 1px solid #fdfdfd;
  display: block;
  color: #252525 !important;
  font-size: 16px;
  text-align: left;
  text-transform: capitalize;
}
.wide_cal .add-on {
  position: absolute;
  right: 10px;
  top: 3px;
  color: #000 !important;
  font-size: 20px;
  z-index: 1;
}
.smaller .wide_cal .add-on {
  color: #fff !important;
}

.get_direction {
  padding: 10px 10px !important;
  font-size: 12px !important;
}
.checkincustometime {
  padding: 0px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0 !important;
  z-index: 2;
}
.wide_cal {
  position: relative;
  display: block;
}
.checktxt {
  font-size: 20px;
}
#promo_code {
  font-size: 16px;
  background: 0 0;
  padding: 0;
}
.room_home .fas {
  font-size: 16px;
  position: relative;
  top: 0;
  border: 1px solid var(--white);
  line-height: 1.8;
  border-radius: 20px;
  border: 1px solid #000 !important;
  height: 30px;
  width: 30px;
}
.specialcode2 a {
  font-size: 16px;
  padding: 0px;
  display: inline-block;
}
.add-room-btn:focus,
.add-room-btn:hover,
.done-room-btn:focus,
.done-room-btn:hover {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white) !important;
  text-shadow: none;
}
.specialcode2 .room_home {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home_collapse {
  background: var(--white);
  color: #000;
  border-radius: 8px;
  border: 1px solid #e4e7ed;
  box-shadow: 0 0 20px 0 rgb(0, 0, 0, 0.32);
}
.home_collapse:after {
  content: " ";
  width: 0;
  height: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent transparent var(--white);
  border-style: solid;
  border-width: 0 8px 12px;
}
.home_collapse:after {
  border-bottom-color: var(--white);
  top: -11px;
  left: 10.5%;
  z-index: 1;
}
.adultbtn {
  border-radius: 50%;
  padding: 6px;
  width: 30px;
  height: 30px;
  background: 0 0;
  border: 1px solid var(--primary);
  color: var(--primary);
  line-height: 0;
  float: right;
  position: relative;
  z-index: 1;
}
.adultbtn.btn_left {
  float: left;
}
.adultbtn.btn_left:focus,
.adultbtn:focus {
  outline: 0;
  background: inherit;
}
.adultbtn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--white);
}
.adultbtn.count-minus:hover {
  background: var(--primary-light);
}
.room_title {
  display: table;
  width: 100%;
}
div#div_room_1 {
  border: none;
}
.room_title span {
  background-color: transparent;
  width: 100%;
  color: #000;
  vertical-align: middle;
  text-align: center;
  display: table-cell;
  text-transform: uppercase;
  padding: 0 0;
  height: 26px;
}
.room_count {
  text-align: center;
  display: inline-block;
  background: 0 0 !important;
  box-shadow: none;
  font-size: 16px;
  height: 30px;
  width: 30px;
  border-radius: 0;
  border: 1px solid rgba(130, 142, 163, 0.5);
}
label.top_room_heading {
  text-transform: uppercase;
}
.remove-room-btn {
  padding: 6px 5px !important;
  align-self: center;
  background: 0 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  top: 0;
}
.infos {
  font-size: 11px;
  margin-top: -5px;
  width: 100%;
  font-weight: 400;
  color: #040404;
  text-align: center;
}
.room_heading {
  line-height: 34px;
  margin-bottom: 0;
  text-transform: uppercase;
  border: none;
  border-right: none;
  color: #000;
  text-align: center;
  font-size: 14px;
}

.container .tab_room {
  color: #252525 !important;
}

.add-room-btn {
  background: #ffff;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.done-room-btn {
  background: var(--primary);
  color: var(--white);
  padding: 6px 20px;
  border: 2px solid var(--primary);
}
.grid_adult_child {
  padding-left: 10px !important;
  padding-right: 10px !important;
  display: grid;
  grid-template-columns: auto auto auto;
  text-align: center;
}
.child-age-wrapper {
  text-align: center;
  font-size: 14px;
  display: none !important;
}
.count-minus,
.room_heading {
  float: left;
}
.room_count {
  padding: 0;
  text-align: center;
}
input.room_count:focus {
  border-left: 0 !important;
  border-right: 0 !important;
}
.home_collapse .panel-body {
  padding: 10px;
  padding-top: 20px;
}
.BT1 {
  border-top: 1px solid #daceb4;
}
.BB1 {
  border-bottom: 1px solid #daceb4;
}
.child-age-wrapper select {
  padding: 7px 15px;
  margin: 5px 0;
  background: 0 0;
  border: 1px solid var(--primary);
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  background-image: url(../img/dropdown-icon.svg);
  background-position: 86% 50%;
  background-repeat: no-repeat;
  width: 90%;
  background-size: 10px;
}
.child-age-wrapper select::-ms-expand {
  opacity: 0;
}
.roomscroll {
  max-height: 250px;
  overflow-y: scroll;
}
.mobile0verviewinnwerdiv {
  overflow: hidden;
  margin-bottom: 65px;
}
.mobile0verviewinnwerdiv a {
  color: #000;
}
.roomaction a {
  padding: 0 5px;
  font-size: 14px;
  color: #4b4140;
}
.roomadult {
  border: 1px solid #727070;
}
.home_resnew .btn-success,
.quick-booking .btn-success {
  background: #737470 !important;
  color: #fff !important;
  border: none;
  padding: 0 15px;
  height: 45px;
}
#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);
}
.section__booking .quick-booking {
  padding-right: 0 !important;
  background: var(--primary);
  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 .checktxt {
  font-size: 15px;
  color: var(--white);
  display: inline-block;
  margin-bottom: 1px;
  letter-spacing: 1px;
}
.section__booking {
  width: 100%;
}
.quick-booking .specialcode2 {
  background: 0 0;
}
#promo_codebox label {
  display: block;
  float: none;
}
#promo_codebox {
  background: #574f4c;
  padding: 20px 10px;
  min-width: 200px;
}

.primary-title {
  font-size: 28px;
  color: #2e2e2e;
  margin-top: 0;
  margin: 30px 0px 20px 0px;
  border-bottom: 3px solid #2e2e2e;
  display: inline-block;
  padding-bottom: 7px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

span.head {
  font-size: 28px;
  color: var(--white);
}
span.bigc {
  font-size: 42px;
  color: var(--white);
}
.slider-big-caption span {
  display: block;
}

.about-title-1 {
  font-size: 44px;
  display: block;
  color: #2c2726;
  line-height: 1.5;
  font-family: "Beaulieu Regular", sans-serif;
  text-align: center;
}

.btn.btn2 {
  color: #343736;
  text-transform: uppercase;
  font-size: 25px;
  transition: all 0.5s ease;
}

.highlight {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.highlight:after,
.highlight:before {
  content: "";
  width: 0%;
  height: 0%;
  position: absolute;
  visibility: hidden;
  border-radius: 0;
}

.highlight:before {
  border-top: 1px solid var(--primary);
  border-right: 1px solid var(--primary);
  transition:
    width 0.1s ease 0.3s,
    height 0.1s ease 0.2s,
    visibility 0s 0.4s;
  top: 0;
  left: 0;
}

.highlight:after {
  border-left: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  bottom: 0;
  right: 0;
  transition:
    width 0.1s ease 0.1s,
    height 0.1s ease,
    visibility 0s 0.2s;
}

.highlight:hover {
  color: var(--primary);
}

.highlight:hover:after,
.highlight:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
}

.highlight:hover:before {
  transition:
    width 0.1s ease,
    height 0.1s ease 0.1s;
}

.highlight:hover:after {
  transition:
    width 0.1s ease 0.2s,
    height 0.1s ease 0.3s,
    visibility 0s 0.2s;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 20px;
  background: var(--primary-light);
  display: block;
  -webkit-backface-visibility: visible;
  border-radius: 30px;
  position: relative;
  transition: all 0.2s ease;
  outline: 0;
}

.owl-dots {
  margin-top: 20px;
  margin-left: 20px;
}

.picrectwrap button.owl-dot.active span:before {
  position: absolute;
  content: "";
  top: -12px;
  left: -12px;
  right: 0;
  margin: 0 auto;
  width: 35px;
  border-radius: 100px;
  height: 35px;
  border: 1px solid #6c8485;
  transition: all 0.2s ease;
}

.specials_packages button.owl-dot.active span:before {
  position: absolute;
  content: "";
  top: -12px;
  left: -12px;
  right: 0;
  margin: 0 auto;
  width: 35px;
  border-radius: 100px;
  height: 35px;
  border: 1px solid #6c8485;
  transition: all 0.2s ease;
}

.owl-carousel button.owl-dot {
  outline: 0;
}

.picrectwrap .owl-carousel1 .owl-stage-outer {
  box-shadow: -2px -1px 20px 3px rgba(0, 0, 0, 0.26);
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  outline: 0;
}

.fade {
  opacity: 1;
}

.fade .item {
  top: 0;
  z-index: 1;
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0 !important;
  display: block !important;
  -webkit-transition: opacity ease-in-out 1s;
  -moz-transition: opacity ease-in-out 1s;
  -ms-transition: opacity ease-in-out 1s;
  -o-transition: opacity ease-in-out 1s;
  transition: opacity ease-in-out 1s;
}

.fade .item:first-child {
  top: auto;
  position: relative;
}

.fade .item.active {
  opacity: 1;
  z-index: 1;
  -webkit-transition: opacity ease-in-out 1s;
  -moz-transition: opacity ease-in-out 1s;
  -ms-transition: opacity ease-in-out 1s;
  -o-transition: opacity ease-in-out 1s;
  transition: opacity ease-in-out 1s;
}

.gofull {
  -webkit-transition: width 2s;
  transition: width 2s;
}

.picrectwrap {
  margin-right: -30px;
}

.picrectwrap img {
  width: 100%;
  height: auto;
}

.specailimg img {
  width: 100%;
  height: auto;
}

.specials_packages {
  position: relative;
  padding: 80px 0;
}

.specials_packages:before {
  position: absolute;
  content: "";
  top: 50px;
  left: 90px;
  right: 0;
  margin: 0 auto;
  width: 58%;
  height: 46%;
  border: 2px solid #ccc;
}

.box {
  background: #50bf2b;
  overflow: hidden;
  position: relative;
}

.box:before {
  content: "";
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 20px
  );
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 0.3s;
}

.box:hover:before {
  opacity: 1;
}

.box img {
  width: 100%;
  height: auto;
  transform-origin: 0 0;
  transition: all 0.4s ease-in-out;
}

.box:hover img {
  opacity: 0.6;
  transform: scale(1.1);
}

.box .box-content {
  color: var(--white);
  background: linear-gradient(to bottom, transparent, #333, #000);
  text-align: right;
  letter-spacing: 4px;
  width: 100%;
  padding: 20px 30px 15px 10px;
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.45s ease;
}

.box:hover .box-content {
  letter-spacing: 0;
  padding: 20px 15px 15px 10px;
  opacity: 1;
}

.box .title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
  margin: 0;
}

.box .post {
  font-size: 16px;
  font-style: italic;
  text-transform: capitalize;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}

.explore-title span {
  margin-top: 20px;
  color: var(--white);
  margin-bottom: 15px;
  font-size: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.explore-title span em {
  color: var(--primary-dark);
  font-style: normal;
}

.explore-slider-wrapper {
  padding: 80px 50px;
  box-shadow: 0 0 8px 0 #b7b7b7;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
  text-align: justify;
}

.owl-carousel.owl-carousel1 {
  z-index: 0;
}

.explore-desc {
  position: relative;
}

.explore-desc:before {
  position: absolute;
  content: "";
  width: 636px;
  height: 150%;
  background: var(--primary-light);
  top: 0;
  left: 215px;
}

.specials_packages .owl-theme .owl-dots .owl-dot span {
  background: var(--primary-dark);
}

.specials_packages button.owl-dot.active span:before {
  border: 1px solid var(--primary-dark);
}

.explore-text p {
  color: var(--primary-dark);
  font-weight: 600;
  display: none;
}

.specials-title span {
  margin-top: 20px;
  color: var(--white);
  margin-bottom: 15px;
  font-size: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--primary-dark);
  padding: 0 30px;
  overflow: hidden;
  position: relative;
}

.specials-title {
  padding-top: 50px;
}

.specials-content-wrapper {
  padding: 40px 0 10px;
  text-align: justify;
  text-align-last: left;
  font-weight: 600;
}

.owl-carousel1 .owl-dots {
  text-align: right;
  margin-right: 50px;
}

span.propname {
  margin-bottom: 15px;
  font-size: 30px;
  letter-spacing: 1px;
  color: #a3a3a3;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

.explore-bg-div .content__main {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

span.att-head-lg {
  font-size: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

span.att-head-sm {
  font-size: 15px;
  letter-spacing: 20px;
  margin-top: -20px;
}

.btn3 {
  color: #000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  text-transform: uppercase;
  font-size: 22px;
  padding: 5px 40px;
  border-radius: 0;
  z-index: 1;
}

.btn3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--white);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn3:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  right: 0;
  margin: 0 auto;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
  pointer-events: none;
}

.btn3:hover:before {
  opacity: 0;
  -webkit-transform: scale(0.5, 0.5);
  transform: scale(0.5, 0.5);
}

.btn3:hover:after {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  background: var(--primary);
  z-index: -1;
}

.btn.btn3:hover {
  color: var(--white);
}

span.map_head {
  display: block;
  font-size: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
}

span.sub_map_head {
  color: var(--white);
  text-align: center;
  display: block;
  font-style: italic;
  margin-top: 50px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

img.map_img {
  margin-left: 50px;
}

.newsletter .form-group {
  position: relative;
  margin-bottom: 0px;
}

.zoom-effect-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.subcribe-input .input-wrapper img {
  position: absolute;
  top: 16px;
  left: 20px;
}
.newsletter .form-control {
  background-color: #fff;
  color: var(--black);
  border: none;
  box-shadow: none;
  height: 52px;
  border-radius: 0 !important;
  padding: 22px 20px 21px 33px;
  border: 1px solid #2e2e2e;
  font-size: 16px;
}

.newsletter .btn:focus {
  outline: 0;
}

.newsletter .form-control::placeholder {
  color: #000;
}

#promo_code:focus::-webkit-input-placeholder,
.newsletter .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

#promo_code:focus:-moz-placeholder,
.newsletter .form-control:focus:-moz-placeholder {
  color: transparent;
}

#promo_code:focus::-moz-placeholder,
.newsletter .form-control:focus::-moz-placeholder {
  color: transparent;
}

#promo_code:focus:-ms-input-placeholder,
.newsletter .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.newsletter button {
  font-size: 14px;
  padding: 0 15px;
  background: #2e2e2e !important;
  color: #fff;
  border-radius: 0;
  height: 52px;
}

.contact__div,
.subscribe__div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title,
.subscribe-title {
  margin-bottom: 10px;
}

.contact-title label {
  display: block;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 0.7;
  padding-top: 5px;
}

.contact-title span,
.subscribe-title span {
  display: block;
  text-transform: uppercase;
  font-size: 18px;
}

.svg-icon {
  width: 100px;
  height: 100%;
  padding: 2px 22px 10px;
}

.subscribe-title label {
  display: block;
  font-size: 18px;
  color: #2e2e2e;
  text-transform: inherit;
  line-height: 27px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.5px;
}

.subscribe-title div:first-child + div {
  vertical-align: middle;
}

.top-nav-ul .dropdown-menu > .active > a,
.top-nav-ul .dropdown-menu > .active > a:focus,
.top-nav-ul .dropdown-menu > .active > a:hover {
  background-color: var(--primary) !important;
  background-image: none !important;
}

#scroll {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #2e2e2e;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 50%;
  transition: all 0.6s ease-in-out;
  z-index: 3;
  color: #444;
  opacity: 0;
}

#scroll:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transition: 0.5s;
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

#scroll.fade-out {
  transform: translateY(170px);
  opacity: 0;
}

#scroll.fade-in {
  opacity: 1;
  transform: translateY(0);
}

#scroll em {
  color: var(--white);
  margin: 0;
  position: static;
  left: 16px;
  top: 13px;
  line-height: 45px;
  font-size: 32px;
  -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 i {
  color: var(--primary-dark);
  top: 5px;
}

#scroll .sr-only {
  color: var(--white);
  background: #343333;
}

@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -6px, 0);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -4px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -6px, 0);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -4px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

#scroll:focus,
#scroll:hover {
  -webkit-animation: bounce 1s;
  animation: bounce 1s;
  background: #2e2e2e !important;
}

.mouse,
.mouse-up {
  display: none;
  position: absolute;
  margin: 0 auto;
  width: 24px;
  height: 34px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  bottom: 9px;
  left: 10px;
  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);
  }
}

.floating-icons {
  position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(87, 79, 76, 0.8);
  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;
}

.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:active,
.floating-icons ul li a.icon-facebook:focus,
.floating-icons ul li a.icon-facebook:hover {
  background: #3b5999;
}

.floating-icons ul li a.icon-gplus:active,
.floating-icons ul li a.icon-gplus:focus,
.floating-icons ul li a.icon-gplus:hover {
  background: #d74937;
}

.floating-icons ul li a.icon-twitter:active,
.floating-icons ul li a.icon-twitter:focus,
.floating-icons ul li a.icon-twitter:hover {
  background: #55acee;
}

.floating-icons ul li a.icon-youtube:active,
.floating-icons ul li a.icon-youtube:focus,
.floating-icons ul li a.icon-youtube:hover {
  background: red;
}

.floating-icons ul li a.icon-yelp:active,
.floating-icons ul li a.icon-yelp:focus,
.floating-icons ul li a.icon-yelp:hover {
  background: #f44336;
}

.floating-icons ul li a.icon-tripad:active,
.floating-icons ul li a.icon-tripad:focus,
.floating-icons ul li a.icon-tripad:hover {
  background: #4caf50;
}

.floating-icons ul li a.icon-pint:active,
.floating-icons ul li a.icon-pint:focus,
.floating-icons ul li a.icon-pint:hover {
  background: #cb2027;
}

.floating-icons ul li a.instagram:active,
.floating-icons ul li a.instagram:focus,
.floating-icons ul li a.instagram:hover {
  background: #8134af;
}

.promocode,
.room_home {
  cursor: pointer;
  -webkit-appearance: none;
  background-color: transparent;
  border: 0;
}

.promocode:active,
.promocode:focus,
.promocode:hover,
.promocode:link,
.promocode:visited {
  outline: 0;
}

.datepicker-label {
  color: var(--white);
  font-weight: 400;
}

.respop_heading2 {
  display: none;
}

.quick-booking .home_collapse {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 58px;
  left: auto;
  right: auto;
  width: 125%;
}

.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;
}

.pause:focus,
.play:focus,
.volume_icon1:focus,
.volume_icon: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: 13px;
  font-weight: 100;
  letter-spacing: normal;
  text-transform: capitalize;
}

.nav > li > a {
  padding: 5px 5px;
}

.reservation-button {
  background: var(--primary);
  color: #fff !important;
}

.navbar-right {
  padding: 0 10px 10px;
  margin-top: 0;
  margin-right: 0;
}

.custom__header.smaller .navbar-right {
  background: 0 0;
}

.company a:hover {
  text-decoration: underline;
}

.section__booking .navbar-header,
.section__booking .scroll-reservation-but {
  display: none;
}

/* Start Thehanford New CSS */

.text-left {
  text-align: left;
}

input#subscriber_email::placeholder {
  color: #6b6a6a;
}

.container-fluid .sixplus__form {
  background: none !important;
}

/* End Thehanford New CSS */

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .room_description-nav .book,
  .room_description-nav .price {
    display: flex !important;
    justify-content: center !important;
    align-items: baseline !important;
  }
  .tabmargin {
    margin-top: 40px !important;
  }

  .room_heading {
    font-size: 14px;
  }
}

@media screen and (max-width: 1199px) {
  .room_home .fas {
    border: 1px solid #fff !important;
  }
  .custom__header {
    position: absolute !important;
  }

  .navbar-header {
    top: 5px;
    position: relative;
  }
  .navbar-toggle {
    margin-top: 10px;
  }
  .customedeatetimesin,
  .customedeatetimesout,
  .specialcode2 a {
    font-size: 17px;
  }
  .customedeatetimesin,
  .customedeatetimesout {
    padding: 9px 5px;
    color: #fff !important;
  }
  #reservationpop #get_header_avaibility {
    padding-bottom: 15px;
  }
  #reservationpop .closebtn {
    display: none;
  }
  #reservationpop .search-btn-div {
    text-align: center;
  }
  #reservationpop {
    position: inherit;
    margin: 0 auto 15px;
    width: 100% !important;
    background: #2e2e2e !important;
    padding: 0;
    padding: 15px 10px 15px 10px;
    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 {
    width: 100%;
  }
  #mySidenav {
    z-index: 10000;
  }

  .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;
    margin-top: 20px;
  }

  .menus a {
    text-align: left;
  }

  .menus .dropdown-backdrop {
    display: none;
  }
  .hover-drop .dropdown-menu > li,
  .hover-drop.open > .dropdown-menu {
    display: block;
    opacity: 1;
  }
  .menus li.active a::after {
    width: 0;
  }
  .menus li.active {
    background-color: var(--primary-light);
  }
  .menus .open {
    background-color: var(--primary-light);
  }
  .menus .open .dropdown-menu {
    background-color: var(--primary);
  }
  .hover-drop .dropdown-menu > li > a {
    margin: 0;
  }
  .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 32px;
    opacity: 0.8;
  }
  .hover-drop .dropdown-menu > li.active > a {
    background-color: var(--primary-dark);
  }
  .section__main .video_home video {
    position: static;
    transform: none;
  }

  .respop_heading2 {
    display: block;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--white);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .map-img-mob img {
    margin-top: 20px;
  }
  #Carouselamenities span.tab-title-item {
    top: 53px !important;
  }
  .eat-drinks {
    display: block !important;
    margin: 10% auto 5% !important;
  }
  .guest-room-mob img {
    width: 94% !important;
  }
  .nav-active .nav__content {
    height: 88vh !important;
  }
  .company {
    padding-bottom: 60px;
  }
  .carousel-caption {
    padding: 10px 0;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.78);
  }
  .carousel-caption p {
    margin: 0;
  }
  .custom__header .navbar-inverse .navbar-right > li > a {
    box-shadow: none;
    padding: 15px 12px;
  }
  .custom__header .navbar-nav > li > a.reservation-icon {
    color: #fff !important;
    top: 10px;
    left: 10px;
    padding: 10px;
    font-size: 10px;
    background: #645b5bbd;
    border: 1px solid #000;
  }
  .div__logo {
    max-width: 150px;
    float: none;
    display: block;
    margin: 10px auto;
    left: 0;
    right: 0;
  }
}

@media (min-width: 768px) {
  .section__booking .container {
    padding: 0;
  }
  #promo_codebox {
    position: absolute;
    right: 20%;
    border-right: 2px solid var(--white);
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    top: 80px;
    z-index: 1;
  }
  .PR-desk0 {
    padding-right: 0;
  }
}

.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;
}

@media (max-width: 500px) {
  .country_currency_list {
    width: 293px;
  }
}

.ta-widget ul {
  list-style: none;
}

.ta-widget {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 1500px) and (max-width: 1600px) {
  .explore-desc:before {
    left: 27%;
  }
  .explore-title span {
    font-size: 57px;
  }
  .explore-slider-wrapper {
    padding: 30px 30px 60px !important;
  }
  .explore-slider-wrapper p {
    font-size: 13px;
    line-height: initial;
    margin-bottom: 10px;
  }
  .explore-slider-wrapper .btn.btn2 {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
  .custom__header .navbar-inverse .navbar-nav > li > a.reservation-button {
    font-size: 23px;
    color: #fff !important;
    background: #5e728a !important;
  }
  .custom__header
    .navbar-inverse
    .navbar-nav
    > li
    > a.reservation-button:hover {
    font-size: 23px;
    color: #fff !important;
  }
  .nav-active .nav__list-item {
    font-size: 20px;
  }
  ul.menu-dropdown.dropdown-menu li {
    font-size: 17px;
    height: auto;
  }

  span.propname {
    font-size: 25px;
  }
  span.bigc {
    font-size: 41px;
  }
  .slider-big-caption {
    top: calc(90% - 244px);
  }
  .attachlogo {
    top: 35% !important;
  }
  .subscribe-title label {
    margin: 0;
    color: #2e2e2e;
  }

  .explore-desc {
    position: relative;
    margin-top: 30px;
  }
  .explore-title span {
    font-size: 38px;
  }
  .explore-slider-wrapper {
    padding: 30px 20px 60px;
  }
  .specials-title {
    padding-top: 30px;
  }
  .btn-div {
    margin-top: 10px;
  }
  .specials-title span {
    font-size: 39px;
  }
  .specials_packages:before {
    top: 50px;
    left: 0;
    width: 78%;
    height: 41%;
  }
  .explore-desc:before {
    width: 70%;
    top: 0;
    left: 24%;
  }
  .explore-slider-wrapper p {
    font-size: 13px;
    margin: 0;
  }
  .btn.btn2 {
    font-size: 18px;
  }
  a.btn.btn3 {
    font-size: 18px;
  }

  span.att-head-lg {
    font-size: 70px;
  }
  span.att-head-sm {
    margin-top: 0;
  }
  span.map_head {
    font-size: 34px;
    margin-top: 15px;
  }
  .map_wrapper .MT100 {
    margin-top: 50px;
  }
  .company p {
    font-size: 13px;
  }
  .custom__header.smaller .navbar-nav > li > a.reservation-icon {
    color: var(--white);
    margin-top: 35px;
  }
  .smaller .navbar-toggle {
    margin-top: 35px;
  }
}

.dflex {
  display: flex;
  align-items: center;
  justify-content: center;
}

a.menu {
  position: relative;
  cursor: pointer;
}

li.sub-menu-wrapper a.active {
  border-bottom: 1px solid var(--white);
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .nav__list-item {
    font-size: 18px;
    margin-right: 6px;
  }
  ul.menu-dropdown li {
    font-size: 18px;
    height: 35px;
  }
  .row-list-item .sections {
    padding: 17px 5px;
    height: auto;
  }
  .seo-links .list-unstyled {
    gap: 5%;
  }

  #reservationpop .home_collapse,
  .quick-booking .home_collapse {
    width: 135%;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .row-list-item .sections .position-left {
    margin: 10px !important;
  }
  .row-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .package_detail-summary {
    margin-top: 25px !important;
  }
  .row-list-item .sections {
    padding: 20px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .eat-description {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    flex-direction: column;
    margin: 0 0 1em;
  }

  #reservationpop .home_collapse,
  .quick-booking .home_collapse {
    width: 120%;
  }
  .room-main .room-block {
    padding-bottom: 15px !important;
  }
}

.specialcode2 {
  position: relative;
  font-size: 1rem;
}

.selectroom-label {
  font-size: 14px;
  position: absolute;
  background: rgb(155 67 49);
  top: -12px;
  left: 6px;
  font-weight: 400;
  color: var(--white);
  padding: 0 4px;
}

.vh {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  outline: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.section__main .carousel-inner .item:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.ada-widget-assecibilityicon {
  position: relative;
  z-index: 1;
}

.explore-image-wrapper img {
  width: 100%;
  height: auto;
}

.modal-backdrop {
  z-index: 999;
}

.gyg-widget .gyg-list .gyg-recovery-banner .banner-text {
  text-transform: uppercase;
}

@media screen and (max-width: 1194px) and (min-width: 834px) {
  .tab_text {
    display: none !important;
  }
}

@media screen and (max-width: 884px) and (min-width: 800px) {
  .section__main .item img {
    height: 550px;
    object-fit: cover;
  }
}

@media screen and (max-width: 400px) {
  .home_collapse .panel-body {
    padding: 8px;
  }
}

.fade .item {
  z-index: 0;
}

.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  width: 60%;
  text-align: center;
  justify-content: normal;
  list-style: none;
  display: block;
  height: auto;
  width: 300px;
  flex-direction: row;
}

.carousel-indicators li {
  background: var(--white);
  width: 35px !important;
  height: 6px;
  border-radius: 4px;
  transition:
    height 1s,
    background 0.2s;
  margin: 4px !important;
  border: none;
  margin: 0 10px;
  display: inline-block;
  z-index: 1;
  border: 1px solid #777777;
  background: #777777 !important;
  position: relative;
}

.carousel-indicators .active:before {
  content: "";
  width: 142px;
  height: 40px;
  margin: 0;
  position: absolute;
  top: -7px;
  left: 4px;
}

.carousel-indicators .active {
  margin: 0;
  margin: 5px 10px;
  width: 35px !important;
  height: 6px;
  border-radius: 4px;
  background: #fff !important;
}

.fa-sort-desc:before,
.fa-sort-down:before {
  content: "\f0dd";
}

.readles {
  padding: 1px 32px !important;
}

.text-warning {
  color: var(--primary);
  padding: 0 2%;
}

.text-warning1 {
  color: #fff;
  padding: 0 2%;
}

.direction-btn a {
  background: url(../img/dirction-back.png) no-repeat;
  background-position: center;
  height: 140px;
  display: flex;
  align-items: center;
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  width: 200px;
  justify-content: center;
}

.smaller#reservationpop .container {
  background: inherit !important;
}

.smaller#reservationpop .search-btn-div .btn-success {
  background: #fff !important;
  border: none;
}

.ml-10 {
  margin-left: 20rem;
}

.circle-fab {
  border-radius: 50%;
  margin: 0.15em;
  font-size: 1.5em;
  padding: 0.05em 0.3em;
  background: #fff;
  color: var(--primary);
}

.custom__header .navbar-inverse .navbar-nav > li.active a {
  color: #2e2e2e !important;
  border-bottom: 1px solid #000;
}
.custom__header .navbar-inverse .extra-nav-items > li.active > a {
  color: #2e2e2e !important;
  border-bottom: 1px solid #000;
  padding-bottom: 3px;
}

@media screen and (max-width: 760px) {
  .company p {
    text-align: center;
  }
}

@media screen and (max-width: 850px) {
  .border_div.white-bg {
    margin: 30px 0 0;
  }
  .subscribe-title label {
    margin: 0;
  }
  .subscribe__div {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1200px) {
  .container .primary-title {
    margin: 0px 0px 20px 0px !important;
  }

  .selectdiv #no_of_adult,
  .selectdiv #no_of_child,
  .selectdiv #no_of_infants,
  .selectdiv #no_of_rooms {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid #fff !important;
  }
  .selectdiv #no_of_adult option,
  .selectdiv #no_of_child option,
  .selectdiv #no_of_infants option,
  .selectdiv #no_of_rooms option {
    color: #000;
  }
  main .menu-button {
    float: left;
    position: absolute !important;
    left: 16px;
    top: 16px !important;
  }

  .row-list-item .sections .position-left {
    margin: -5px;
  }
  .custom__header {
    background: none !important;
  }
}

@media screen and (min-width: 1401px) and (max-width: 1600px) {
  .ml-10 {
    margin-left: 15rem;
  }
}

@media screen and (min-width: 1250px) and (max-width: 1400px) {
  .custom__header .navbar-inverse .navbar-nav > li > a {
    font-size: 14px;
  }
}

.skiptranslate.goog-te-gadget .goog-te-gadget-simple {
  font-weight: 300;
  background: #2e2e2e;
  color: #fff;
  border: none;
  padding: 12px 30px !important;
}
#google_translate_element .langClass {
  display: flex;
  gap: 5px;
}

.attachlogo {
  position: absolute;
  top: 40%;
  width: 100%;
  text-align: center;
  z-index: 1;
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .custom__header .navbar-inverse .navbar-nav > li > a {
    padding: 0;
    font-size: 14px;
  }
  .subscribe-title label {
    margin: 0;
  }
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:focus,
.navbar-inverse .navbar-nav > .open > a:hover {
  background: none !important;
}

.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .active > a:hover {
  color: var(--primary) !important;
}

.carousel-inner .item,
.carousel-inner .item div,
.carousel-inner .item p,
.carousel-inner .item span {
  text-transform: capitalize !important;
  line-height: 1;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .active > a:hover {
  background-color: #ffffff00 !important;
}

@media screen and (max-width: 450px) {
  .wedwraps .spc_pack-btn {
    text-align: center;
    margin: 1% 3% 15% !important;
  }
  .room_description-nav .book {
    display: flex !important;
    justify-content: center !important;
    align-items: baseline !important;
  }
}

.room-main .room-block {
  margin-top: 30px;
  padding-bottom: 30px;
}

#reservationpop .home_resnew {
  display: flex;
  justify-content: center;
}

#weather .weather-box .P0.weather-card {
  padding: 15px !important;
}

.smaller .color_w_home {
  color: #fff !important;
}

.tab_r {
  padding-right: 0;
  margin: 15px 0;
}

.smwid {
  padding: 0 0 0 15px;
}

.smwid1 {
  padding: 0;
}

.checktxt {
  font-size: 15px;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 1px;
  letter-spacing: 1px;
}

@media screen and (min-width: 1201px) and (max-width: 1300px) {
  #discount-btn {
    top: 43.7% !important;
  }
  #discount-box {
    top: 20% !important;
  }
}

.datepicker-label {
  font-size: 15px;
}

.dropdown-menu > li > a {
  display: block;
  padding: 15px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #2e2e2e;
  white-space: nowrap;
  font-size: 15px;
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  background: #2e2e2e;
  color: #fff;
}

.room_description-nav .btn.btn-green {
  border: 1px solid #2e2e2e !important;
}

.featured-icon em:hover,
a.featured-icon-a.active em {
  color: var(--primary) !important;
}

.summary {
  border-left: 4px solid var(--primary) !important;
}

@media screen and (max-width: 1000px) {
  .topRservationSection {
    display: block;
  }
}

.datepicker td.active,
.datepicker td.active:hover {
  background: var(--primary) !important;
}

.home_head .chooseops #no_of_rooms {
  height: 47px;
}

.home_head .chooseops .home_resnew .btn-success {
  padding: 7px 24px;
}

.smaller .home_head .chooseops .smwid {
  margin-top: 0;
}

.customedeatetimesin,
.customedeatetimesout {
  background-color: transparent !important;
}

.smaller .customedeatetimesin,
.smaller .customedeatetimesout {
  color: #fff !important;
  background-color: transparent !important;
}

@media screen and (max-width: 400px) {
  .home_head .tab_r {
    margin: 10px 0;
    padding-right: 15px;
  }
  .home_head .chooseops {
    margin-top: 10px;
  }
  .home_head .space-t {
    margin-top: 10px;
  }
}

@media screen and (max-width: 800px) {
  .customedeatetimesin,
  .customedeatetimesout,
  .smaller .customedeatetimesin,
  .smaller .customedeatetimesout {
    color: #fff !important;
    background-color: transparent !important;
  }
  #form_sixplus_booking .customedeatetimesin,
  #form_sixplus_booking .customedeatetimesout {
    color: #555 !important;
  }
}

.home_head .space-t {
  margin-top: 22px;
}

.smaller .home_head .space-t {
  margin-top: 13px;
}

@media screen and (min-width: 750px) and (max-width: 850px) {
  .wedwraps .spc_pack-btn {
    margin: 7% 3% 0;
  }
  #desktopCategory #Carouselamenities .carousel-inner {
    margin-left: 30px;
  }
}

.button_bg {
  background-color: var(--primary) !important;
}

.button_bg:hover {
  background-color: var(--primary) !important;
}

.connect-us-div {
  background: var(--primary) !important;
}

.button_bg span {
  background-color: var(--primary) !important;
}
.button_bg span:hover {
  background-color: var(--primary) !important;
}

@media (max-width: 480px) {
  .specialcode2 span {
    color: #fff !important;
  }
  .custom__header .navbar-nav > li > a.reservation-icon {
    color: #fff !important;
  }
  .section__booking .quick-booking {
    background: var(--primary) !important;
  }
}

@media (max-width: 768px) {
  .smaller#reservationpop .container {
    background: none !important;
  }

  #promo_code {
    border-color: #fff !important;
  }
  #promo_code::placeholder {
    color: #fff !important;
  }

  .specialcode2 span {
    color: #fff !important;
  }
  .custom__header .navbar-nav > li > a.reservation-icon {
    color: #000 !important;
    top: 10px;
    left: 5px;
    padding: 10px;
    font-size: 12px;
    background: #ffff;
    border: 1px solid #fff;
  }
  .smaller .wide_cal .add-on {
    color: #fff !important;
  }
}

@media screen and (min-width: 1024px) {
  #promo_code {
    border-color: #000;
  }
  input#promo_code::placeholder {
    color: #8a8a8a !important;
  }
  .sidebar-ca input#promo_code::placeholder {
    color: #fff !important;
  }
  .sidebar-ca.smaller input#promo_code::placeholder {
    color: #8a8a8a !important;
  }
  #promo_code::placeholder {
    color: #fff !important;
  }

  .custom__header .navbar-nav > li > a.reservation-icon {
    color: #000 !important;
    padding: 13px;
    bottom: 10px;
    font-size: 13px;
    background: #fff;
    border: 1px solid #fff;
  }
  .accordions-tab-sec {
    margin-top: 60px;
  }
}

.current_currency_list {
  z-index: 1;
  position: relative;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .about-title-1 {
    font-size: 30px;
    text-align: center;
  }

  .wedwraps .primary-title {
    font-size: 35px !important;
  }
}

@media screen and (min-width: 320px) and (max-width: 991px) {
  .topRservationSection {
    display: block !important;
  }
  .search-btn {
    margin-top: 20px !important;
  }
}

@media screen and (min-width: 767px) and (max-width: 900px) {
  .room_description-nav .book {
    margin: 0 !important;
  }
  .room_description-nav .btn.btn-green {
    margin-top: 15px;
  }
  header.custom__header.smaller {
    display: none;
  }
}

a.btns.news_back_btn {
  margin-bottom: 40px;
  color: #fff !important;
  background: #000;
}

#show-hidden-description {
  color: #fff;
}

@media screen and (min-width: 1600px) {
  .custom__header .navbar-inverse .navbar-nav > li > a.reservation-button {
    font-size: 23px;
    color: #fff !important;
  }
}

.room_description-nav .book a:not(:last-child) {
  color: var(--primary);
  margin-right: 12px !important;
}
.bookbtn {
  font-size: 18px !important;
}

a.btn.btns.btn-green {
  color: var(--primary) !important;
}

.color-red {
  color: red !important;
  text-align: center !important;
  font-size: 18px;
}

a.btn.bookbtn:hover {
  color: var(--primary) !important;
}

#google_translate_element {
  margin: 0 !important;
}

.blogd_img {
  min-height: 250px;
}

.featured-ulabs-pos li h2 {
  font-size: 13px !important;
}
a.view_att_details {
  font-size: 12px;
}
a.btn.bookbtn {
  padding: 8px !important;
  border: 1px solid var(--primary);
  color: var(--primary);
  margin-right: 0;
}
.section-padding .other-rooms a.btn.bookbtn {
  margin-right: 10px;
}

.roomsNumberOfRooms {
  padding-bottom: 0 !important;
}
.messages_bar.alert {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.hide_bodyscroll {
  overflow-y: hidden !important;
}
.roomsNumberOfRooms .pull-right .btn-default:active {
  background: #000 !important;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .border_div.white-bg {
    margin: 14px 0 0;
  }

  .custom__header .navbar-nav > li > a.reservation-icon {
    top: 14px;
    left: 0;
  }

  #accordion .sort_section {
    font-size: 14px !important;
  }
}

#gallery .gallarynavtab .mobile-nav-tab a {
  padding: 10px 15px !important;
}

@media screen and (max-width: 360px) {
  .contact-form-input .form-control:not(:placeholder-shown) + label {
    font-size: 13px !important;
  }
  #lostFound_box .form-group .form-control {
    font-size: 13px !important;
  }
}

li .myfb {
  color: #000 !important;
  font-size: 25px;
  height: 40px !important;
  position: relative;
  transition: 0.5s;
  z-index: 3;
}
a.gplus.myfb,
a.icon-facebook.myfb,
a.icon-foursquare.myfb,
a.icon-instagram.myfb,
a.icon-linkedin.myfb,
a.icon-skype.myfb,
a.icon-tripad.myfb,
a.icon-twitter.myfb,
a.icon-yahoo.myfb,
a.icon-yelp.myfb,
a.icon-youtube.myfb,
a.pinterest.myfb,
a.icon-tiktok.myfb {
  width: 40px;
  height: 40px;
  background-color: #2e2e2e;
  text-align: center;
  line-height: 51px;
  margin: -1px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  outline: none;
  z-index: 1;
}
li .myfb:hover {
  border-bottom: 0 !important;
  color: #fff !important;
}

a.icon-linkedin.myfb:before {
  background: #0072b1 !important;
}
a.icon-facebook.myfb:before {
  background: #43589b !important;
}
a.icon-instagram.myfb:before {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  ) !important;
}

a.icon-tiktok.myfb:before {
  background: linear-gradient(to top, #fe2c55, #25f4ee, #000000);
}

a.icon-tripad.myfb:before {
  background: #00aa6c !important;
}
a.gplus.myfb:before {
  background: #43589b !important;
}
a.icon-twitter.myfb:before {
  background: #000 !important;
}
a.icon-youtube.myfb:before {
  background: red !important;
}
a.icon-yelp.myfb:before {
  background: #d32323 !important;
}
a.icon-foursquare.myfb:before {
  background: #43589b !important;
}
a.pinterest.myfb:before {
  background: #bd081c !important;
}
a.icon-yahoo.myfb:before {
  background: #6001d2 !important;
}
a.icon-skype.myfb:before {
  background: #00aff0 !important;
}

a.gplus.myfb:before,
a.icon-facebook.myfb:before,
a.icon-foursquare.myfb:before,
a.icon-instagram.myfb:before,
a.icon-linkedin.myfb:before,
a.icon-skype.myfb:before,
a.icon-tripad.myfb:before,
a.icon-twitter.myfb:before,
a.icon-yahoo.myfb:before,
a.icon-yelp.myfb:before,
a.icon-youtube.myfb:before,
a.pinterest.myfb:before,
a.toktok.myfb:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: red;
  transition: 0.5s;
  z-index: 2;
}
a.gplus.myfb:hover:before,
a.icon-facebook.myfb:hover:before,
a.icon-foursquare.myfb:hover:before,
a.icon-instagram.myfb:hover:before,
a.icon-linkedin.myfb:hover:before,
a.icon-skype.myfb:hover:before,
a.icon-tripad.myfb:hover:before,
a.icon-twitter.myfb:hover:before,
a.icon-yahoo.myfb:hover:before,
a.icon-yelp.myfb:hover:before,
a.icon-youtube.myfb:hover:before,
a.pinterest.myfb:hover:before,
a.tiktok.myfb:hover:before {
  top: 0;
}

em.fab.fa-facebook-f,
em.fab.fa-foursquare,
em.fab.fa-google-plus,
em.fab.fa-instagram,
em.fab.fa-linkedin,
em.fab.fa-pinterest,
em.fab.fa-skype,
em.fab.fa-tripadvisor,
em.fab.fa-twitter,
em.fab.fa-yahoo,
em.fab.fa-yelp,
em.fab.fa-youtube {
  transition: 1s;
  z-index: 3;
}

em.fab.fa-facebook-f:hover,
em.fab.fa-foursquare:hover,
em.fab.fa-google-plus:hover,
em.fab.fa-instagram:hover,
em.fab.fa-linkedin:hover,
em.fab.fa-pinterest:hover,
em.fab.fa-skype:hover,
em.fab.fa-tripadvisor:hover,
em.fab.fa-twitter:hover,
em.fab.fa-yahoo:hover,
em.fab.fa-yelp:hover,
em.fab.fa-youtube:hover {
  color: #fff !important;
}

.fa-twitter {
  filter: invert(0);
}
a.icon-twitter.myfb:hover .fa-twitter {
  filter: invert(1);
}

.amenities-wrapper {
  background-color: #f9f4ee;
  padding-bottom: 50px;
}

.content__main img {
  width: 100%;
  height: 100%;
}

.but-hov {
  padding-left: 5px;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}
.but-d-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-btn .read-text {
  transition: transform 0.4s ease;
  display: inline-block;
}

.section-btn:hover::after {
  opacity: 1;
  right: 16px;
  transition:
    right 0.3s ease,
    opacity 0.3s ease;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .subcribe-input .input-wrapper img {
    left: 8px !important;
  }
  .newsletter .form-group {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #get_header_avaibility .search-btn-div,
  #get_header_avaibility .tab_room.pullme {
    margin-top: 15px !important;
  }
  #subscribe_me_standalone .input-wrapper {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .contact-form-input .form-control:not(:placeholder-shown) + label {
    font-size: 14px !important;
  }
  .innercaption .top-content {
    font-size: 18px;
  }
  #packagesdfoemdisplaydates .country_currency_list {
    top: 40px !important;
    right: -42px !important;
  }
  .country_currency_list {
    width: 360px !important;
  }
  .wedwraps .primary-title {
    font-size: 30px !important;
  }

  .nav-bar .dropdown-menu {
    top: 0 !important;
  }
  .acesssfour ul li {
    text-align: justify;
  }
  .infos {
    font-size: 9px;
    margin-top: 0;
  }
  .clildboxpolicy {
    padding: 0;
  }
  p.MB0.xssmcolor.text-left {
    font-size: 9.9px;
  }
  .check_ininput,
  .home_resnew .col-lg-6.col-md-6.col-sm-6.col-xs-6.PR0:last-child,
  .section__booking .col-lg-6.col-md-6.col-sm-6.col-xs-6.PR0:last-child {
    padding-right: 15px;
  }
  div#appendroomconfigafterthis .clearfix.MB15 {
    margin-bottom: 10px;
  }
  .roomsNumberOfRooms {
    margin: 0;
  }
  .top_room_heading {
    font-size: 17px;
  }

  .adultbtn,
  .room_count {
    height: 25px;
    width: 25px;
  }
  .adultbtn {
    padding: 4px;
  }
  .package_detail-summary {
    margin-top: 25px !important;
  }

  #Carouselamenities span.tab-title-item {
    top: 60px !important;
  }
  #roomstype .aamentities .tab-title-item {
    top: 30px !important;
    left: 30px !important;
  }

  .newsletter .form-control {
    padding: 8px 12px 8px 35px;
  }
  .subcribe-input .input-wrapper img {
    top: 15px !important;
    left: 10px !important;
  }

  .sisterprop-details h4 {
    font-size: 20.9px;
  }
  .sisterprop-description p {
    font-size: 16px;
  }
  .messages_bar .messages p {
    text-align: justify;
  }

  .btn3 {
    font-size: 15px;
  }
  .nav-active .nav__content {
    height: 90% !important;
  }

  .social-btns ul li {
    margin: 0 10px 10px;
  }
  #memberModal .modal-dialog {
    margin: 30px;
  }
  .company a {
    display: block;
  }
  .navbar-header {
    top: 0;
  }
  .rct_wdgt .custom__header {
    top: 50px;
  }

  .goog-te-gadget-simple {
    margin: 0 auto 0 auto;
  }
  .section__headerbg .innercaption p {
    display: block;
  }

  .icon-bar {
    transition: all 0.3s;
  }
  .navbar-toggle:focus .icon-bar {
    opacity: 0;
    transform: translateX(50%);
  }
  .div__logo {
    max-width: 100%;
    right: 30px;
    left: 0;
    margin: 10px auto;
  }
  .navbar-toggle {
    margin-top: 55px;
    background: 0 0;
  }
  .smaller .div__logo {
    display: none;
  }
  .roomscroll {
    max-height: 100%;
    overflow-y: auto;
  }
  .carousel-control {
    font-size: 30px;
  }
  .carousel-caption {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .room_title span {
    background-color: transparent !important;
    color: #000;
    text-align: left;
    height: auto;
    display: block;
  }
  .section__booking .quick-booking {
    padding: 15px 10px 20px 10px;
  }
  .carousel-caption {
    bottom: 0;
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.78);
  }
  p.color_g.text-center {
    margin: 0;
    font-size: 14px;
  }
  .primary-title {
    word-break: break-word;
  }
  .h1_sister.primary-title {
    margin-top: 30px;
  }
  .child-age-wrapper select {
    padding: 7px 0;
  }
  .sisterprop-title-1 {
    font-size: 25px;
  }
  .sisterprop-details {
    margin: 25px 0 0 0;
  }

  .section__booking .container {
    padding: 0;
  }

  .section__booking .quick-booking {
    border: 0 !important;
    padding-right: 10px !important;
  }
  .section__headerbg .innercaption {
    width: 100% !important;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateX(0);
    margin: 0;
  }
  .rct_wdgt .custom__header.smaller {
    top: 50px;
  }
  .custom__header,
  .custom__header.smaller {
    position: absolute;
    width: 100%;
    z-index: 3;
  }
  #scroll {
    right: 20px;
  }

  span.maptextaddress {
    width: 30%;
    float: left;
    padding-right: 10px;
  }
  #subscribe_me_standalone .signup_btn {
    padding-right: 0;
  }
  #subscribe_me_standalone .input-wrapper {
    padding-left: 0;
  }
  /* common-css */
  .amenities-wrapper,
  .strip-wrapper,
  .contact-map-section {
    margin: 40px 0 0 !important;
  }

  .section-title-h2 {
    font-size: 36px;
    text-align: center !important;
  }
  .section-description {
    font-size: 16px;
  }
  .amenities-box-wrapper .section-description {
    font-size: 16px;
  }
}

#cancel_reservation2,
.modify {
  width: 215px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#subscriber_email:focus {
  border: unset !important;
}
#toggle-button {
  cursor: pointer;
}

.section-heading {
  font-size: 20px;
  font-weight: 600;
}

.section-btn.reservation-button {
  background-color: #ffbd60 !important;
  font-size: 18px !important;
}

.first-header .top-header a span {
  margin-left: 8px;
}

.strip-inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: left;
}

.justify-btn-left {
  justify-content: left !important;
}

.abt-wrapper {
  display: flex;
  align-items: center;
}

.top-header .header-phone {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #ffffff50;
}
.top-header .header-phone:hover {
  color: #ae7e3e;
  border-bottom: 1px solid #ae7e3e;
}

@media screen and (min-width: 1200px) {
  .header-main-logo {
    height: 90px;
  }
  .smaller .header .first-header {
    border-bottom: none;
  }

  .smaller .reservation-field-wrapper {
    display: none;
  }
  #reservationpop .res-container {
    width: 985px;
  }
  .row-list-item .sections {
    padding: 25px 5px 10px;
  }

  .strip-wrapper .container-fluid {
    padding: 0;
  }
  .tab_room.pullme {
    padding: 0;
  }

  .reservation_tab .reservation-button {
    cursor: pointer;
  }
  .fancybox-margin {
    margin-right: auto !important;
  }
  #reservationpop .home_resnew {
    display: block;
  }
  .desk-sticky-logo img {
    max-width: 75px;
  }
  .reservation-field-wrapper {
    display: flex;

    align-items: center;
    min-height: 75px;
    background: transparent;
    padding-bottom: 0px;
  }
  .smaller#reservationpop .container {
    background: transparent !important;
  }
  .rooms-code-title,
  .special-code-title {
    display: none;
  }
  .cabar-serach-btn {
    width: max-content;
  }
  .dest-desk-scroll {
    max-height: 400px;
    overflow-y: scroll;
  }
  .smaller .header_top {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
  }
  .navbar-right {
    display: none;
  }
  .section-padding .title {
    margin: 50px 0px 0px 0px;
  }

  .smaller#reservationpop .respop_heading {
    display: none;
  }
  .top-nav-ul .dropdown-menu {
    margin-top: 29px !important;
    padding: 0 0 !important;
  }

  .section__booking {
    position: absolute;
    display: block;
  }
  .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;
  }
  .strip-wrapper .container-fluid {
    padding: 0;
  }
  body {
    max-width: 2000px;
    margin: 0 auto !important;
  }

  .custom__header.smaller {
    position: absolute;
    width: 100%;
    z-index: 11;
    margin-top: -1px;
    background: #1b1818b3 !important;
  }

  .smaller .custom__header .navbar-inverse {
    height: 95px;
  }
  #ircw_iframe {
    max-width: 2000px !important;
    left: auto !important;
    right: auto !important;
    margin: 0 auto !important;
  }

  .navbar-header {
    position: relative;
    left: 50px;
  }
  .smaller .navbar-header {
    left: 0;
  }
  .smaller.section__booking > .container {
    position: fixed;
    top: 0;
    z-index: 3;
    height: auto;
    bottom: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    left: 0;
    right: 0;
  }
  #mySidenav {
    z-index: 101;
  }
  .smaller.section__booking {
    display: flex;
    justify-content: center;
  }
  .smaller.section__booking .quick-booking {
    border: 0;
    background: var(--primary);
    box-shadow: none;
  }
  .section__booking .navbar-toggle .icon-bar {
    background: var(--white);
  }
  .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;
  }
  .rct_wdgt .smaller#reservationpop > .container {
    top: 50px;
  }
  .smaller#reservationpop {
    background: 0 0;
    height: auto;
    padding-top: 0;
    transition: padding 0s;
    overflow-x: visible;
    z-index: 100;
  }
  .smaller #mySidenav {
    z-index: 999;
  }
  .smaller .navbar-toggle {
    margin: 28px 0;
  }
  .custom__header.smaller {
    position: fixed;
    min-height: 95px;
  }
  #reservationpop .headerinner-reservation {
    width: 985px;
  }
  .wide_cal .add-on.right-checkout {
    right: 0px;
  }
  .dest-desk-scroll li a {
    padding: 9px 20px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  #reservationpop > .container {
    padding: 0 0 15px;
  }
  .our-discount-content {
    width: 45% !important;
  }
  .img-div:before {
    left: 2% !important;
  }

  .contact-card {
    gap: 0px !important;
    width: 42% !important;
  }
  .room_description-nav .book {
    display: flex !important;
  }
  .package_detail-summary {
    margin-top: 15px !important;
  }
  #reservationpop #get_header_avaibility {
    padding-bottom: 27px;
  }
  .map-content .btn-div {
    justify-content: right !important;
  }
  #reservationpop .home_resnew {
    display: block !important;
  }
  #reservationpop {
    padding: 0 10px 0 10px;
  }
  .respop_heading2 {
    padding-top: 15px;
    margin-bottom: 15px !important;
  }

  #cancel_reservation2 .modify {
    padding: 10px 22px;
  }
  .map-content .btn-div {
    margin-bottom: 0 !important;
  }
  #destination_guide a.view_att_details {
    padding: 10px 15px;
  }
  .section-title-h2 {
    font-size: 38px;
  }

  .rooms-code-title,
  .special-code-title {
    font-size: 15px;
    display: none;
  }

  .smaller #reservationpop .customedeatetimesin,
  .smaller #reservationpop .customedeatetimesout {
    color: #fff !important;
  }
  .nav__content a {
    font-size: 16px;
  }
  .btn.btns.btn-green {
    padding: 8px 5px;
    font-size: 13px !important;
  }

  .navbar-right {
    padding: 0;
    margin-top: 0;
  }
  .div__logo {
    max-width: 150px;
    right: 0;
    left: 0;
    position: absolute;
    margin: 26px auto;
  }

  .ml-10 {
    margin-left: 16rem;
  }
  .meetings-row {
    column-gap: 2%;
    margin: 5% 1%;
  }
  .custom__header .navbar-inverse .navbar-nav > li > a.reservation-buttonP {
    padding: 35px 5px;
  }
  ul.top-nav-ul.nav.navbar-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: left !important;
    column-gap: 20px;
  }

  .home_collapse:after {
    left: 8%;
  }

  .home_resnew .btn-success,
  .quick-booking .btn-success {
    padding: 0px 30px;
    margin-top: 23px;
    font-size: 17px !important;
  }
  #promo_code {
    border-color: #fff !important;
    color: #fff !important;
  }
  .specialcode2 span {
    color: #fff !important;
  }
  .customedeatetimesin,
  .customedeatetimesout {
    padding: 12px 5px 12px 15px;
  }
  .custom__header.smaller {
    position: fixed;
    display: none;
  }
  .social-btns ul li {
    margin-right: 10px;
  }
  .company {
    padding: 20px 0;
  }
  #reservationpop .home_collapse {
    position: absolute;
    width: 100%;
    z-index: 2;
    top: 62px;
  }

  .wide_cal .add-on {
    top: 8px !important;
    color: #fff !important;
  }

  .navbar-toggle {
    margin-top: 55px;
    left: 30px;
  }
  .custom__header .navbar-nav > li > a.reservation-icon {
    padding: 0;
    padding-bottom: 0;
    color: #fff !important;
    padding: 10px;
    font-size: 10px;
    background: #645b5bbd;
    border: 1px solid #000;
    margin-top: 0;
    box-shadow: none;
  }
  span.bigc {
    font-size: 30px;
  }
  .slider-big-caption {
    top: calc(50% - 1px);
    width: 90%;
  }

  .mobile0verviewinnwerdiv {
    margin-bottom: 60px;
  }

  .explore-desc {
    position: relative;
    margin-top: 30px;
  }
  .explore-title span {
    font-size: 38px;
  }
  .explore-slider-wrapper {
    padding: 20px 20px 50px;
  }
  .specials-title {
    padding-top: 30px;
  }
  .specials-title span {
    font-size: 39px;
  }
  .specials_packages:before {
    top: 50px;
    left: 0;
    width: 85%;
    height: 41%;
  }
  .explore-desc:before {
    width: 415px;
    top: 0;
    left: 45px;
  }
  .explore-slider-wrapper p {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.7;
  }
  .btn.btn2,
  .btn3 {
    font-size: 18px;
  }

  span.att-head-lg {
    font-size: 70px;
  }
  span.att-head-sm {
    margin-top: 0;
  }
  span.map_head {
    font-size: 28px;
    margin-top: 0;
  }
  .map_wrapper .MT100 {
    margin-top: 40px;
  }
  span.sub_map_head {
    margin: 20px 0 0;
    font-size: 15px;
  }

  .custom__header.smaller .navbar-nav > li > a.reservation-icon {
    color: var(--white);
    margin-top: 35px;
  }
  .smaller .navbar-toggle {
    margin-top: 35px;
  }
  .wide_cal .add-on img {
    filter: invert();
  }
  .smwid.mob-rooms {
    padding-left: 0px !important;
  }

  #reservationpop .search-btn-div {
    padding-left: 0px !important;
  }

  .rct_wdgt .div__logo {
    top: -10px !important;
  }
  .contact-overlay-card {
    left: 25px !important;
    padding: 25px !important;
  }
}
.header .first-header::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
}
.smaller .header .first-header::after {
  display: none;
}

.strip-inner-wrapper img {
  object-fit: cover;
}

#reservationpop .res-container,
#reservationpop .headerinner-reservation,
#reservationpop {
  display: none;
}

.room-block .room_description .room-h2 {
  line-height: 1.3 !important;
}

/* Fusion lodging css start */

/* HEADER */
.header_top {
  padding: 15px 30px;
}

.first-header {
  display: flex;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* BOOK NOW */
.reservation-icon {
  margin-right: 20px;
  background-color: #ffffff;
  font-family: "Archivo";
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 22px;
  letter-spacing: 1px;
  padding: 14px 26px 14px 26px;
  border: 1px solid #ae7e3e;
  color: #ae7e3e;
}
.reservation-icon:hover {
  background-color: #ae7e3e;
  color: #ffffff;
}
/* MENU ICON */
.menu-icon {
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 10001;
  border: 2px solid #f9f4ee;
  padding: 10px;
}

.menu-icon span {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

/* SIDE NAV */
.side-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: #fff;
  padding: 30px;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
  transform: translateX(100%); /* hidden state */
  transition: transform 0.45s ease-in-out;
  z-index: 99999;
}

.side-nav.open {
  transform: translateX(0); /* visible state */
}
.side-nav {
  transition: transform 0.5s ease !important;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  z-index: 100000; /* must be higher */
}

/* SIDE NAV MENU */
.side-nav-menu {
  list-style: none;
  padding: 60px 0 0;
  margin: 0;
}

.side-nav-menu li {
  margin-bottom: 20px;
}

.side-nav-menu li a {
  text-decoration: none;
  font-size: 18px;
  color: #222;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
}

.side-nav-menu li a:hover,
.side-nav-menu li .active {
  color: #b38b59;
}

.top-header a {
  color: #fff;
}

.header-logo img {
  width: 180px;
  display: inline-block;
  vertical-align: middle;
  height: 54px;
}

.first-header a.icon-youtube.myfb,
.first-header a.icon-facebook.myfb {
  background-color: transparent;
  border: 1px solid #f9f4ee50;
  color: #fff !important;
  width: 36px !important;
  height: 36px !important;
}

.top-header li {
  list-style-type: none;
}
.top-header {
  display: flex;
  gap: 10px;
  align-items: center;
}

em.fab.fa-facebook-f,
em.fab.fa-youtube {
  font-size: 15px;
}

.menu-icon .menu-span1 {
  width: 70% !important;
}

.fusion-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.about-fusion-section {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.fusion-slider,
.about-fusion-slider {
  position: absolute;
  inset: 0;
}

.fusion-slide,
.about-fusion-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease-in-out;
}

.about-fusion-slide img {
  object-fit: cover;
}

.fusion-slide.active,
.about-fusion-slide.active {
  opacity: 1;
  animation: kenburns 6s ease-in-out forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

/* Overlay */
.fusion-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.about-fusion-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Content */
.fusion-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  animation: fadeUp 1.5s ease forwards;
}

.fusion-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
  width: 66%;
  margin: auto;
  font-family: "Beaulieu Regular", sans-serif;
  text-transform: none;
  text-decoration: none;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 40px;
}

.fusion-btn {
  display: inline-block;
  padding: 12px 28px;
  background: white;
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.fusion-btn:hover {
  background: black;
  color: white;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.headline {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

#typing-text {
  border-right: 3px solid #fff;
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  font-family: "Work Sans", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: 14px;
  letter-spacing: 2px;
}

.fusion-btn {
  background-color: #00000000;
  font-family: "Work Sans", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: 22px;
  letter-spacing: 1px;
  color: #ffffff;
  border: 2px solid;
  padding: 20px 36px 20px 36px;
}
.fusion-btn:hover {
  background-color: #ae7e3e;
  color: #ffffff;
  border: 1px solid #ae7e3e;
}

.counter-section {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.counter-section .counter-box h3 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ae7e3e;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  line-height: 22px;
}

.counter-section .counter {
  font-size: 60px;
  font-weight: 700;
  color: #111;
}

.logo-strip-wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 32px 0 32px 4px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.logo-strip-wrapper .logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  width: max-content;
  padding-right: 5rem;
  animation: logoScroll 25s linear infinite;
}

.logo-strip-wrapper .logo-strip .scroll-item {
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--color-black);
}

.logo-strip-wrapper .subtract-svg {
  max-width: 180px;
  height: auto;
  flex-shrink: 0;
  position: absolute;
  right: 0;
}
@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logo-strip-wrapper {
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .strip-inner-wrapper {
    display: flex;
    flex-direction: column;
  }
  .quick-booking .btn-success.btn-success {
    background: #fff !important;
    color: #241f21 !important;
    margin-bottom: 20px;
  }
  .mega_section:before {
    background: rgba(0, 0, 0, 0.85);
  }

  .menu-dropdown {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-right {
    padding: 0;
    margin-top: 0;
  }
  .nav__list-item {
    display: block;
    margin-bottom: 10px;
  }

  .nav__list-item a {
    margin-right: 0;
    padding-left: 25px;
    text-align: left;
    line-height: 2;
    text-transform: uppercase;
    font-size: 22px;
  }
  span.menu-title {
    margin-right: 0;
    padding-left: 0;
    padding-right: 8px;
    text-align: left;
    font-size: 22px;
  }
  li.nav__list-item.active {
    background: #f2eeee57;
  }
  .nav-active .nav__content {
    position: fixed;
    top: 0;
    transform: translate(0, 10%);
    width: 100%;
    text-align: left;
    font-size: 25px;
    font-weight: 200;
    cursor: pointer;
    overflow: auto;
    height: 650px;
  }
  .nav-active.rct_wdgt .nav__content {
    top: 40px !important;
  }

  ul.menu-dropdown li a {
    text-transform: capitalize;
    padding-left: 40px;
  }
  .menu-dropdown.dropdown-menu > li > a > em {
    font-size: 16px;
    margin-right: 12px;
  }
  ul.menu-dropdown.dropdown-menu li a {
    font-size: 16px;
    padding: 10px 10px 10px;
  }
  .explore-bg-div {
    justify-content: center !important;
    gap: 0px !important;
    margin-bottom: 0px !important;
  }

  .nav__list-item {
    display: block;
    text-align: left;
    margin-right: 0;
  }
  .menu:hover > .menu-dropdown {
    position: relative;
  }
  .nav__list-item:before {
    display: none;
  }
  .nav__list-item:hover:before {
    width: 30%;
    top: 40px;
  }
  ul.menu-dropdown li {
    height: auto;
    font-size: 20px;
  }
  ul.menu-dropdown li.active a:after {
    bottom: -1px;
    height: 1px;
  }
  .strip-wrapper .traveler {
    display: flex;
    flex-direction: column-reverse;
  }

  .meetings-row {
    column-gap: 0;
    margin: 0;
  }

  span.sub_map_head {
    margin: 10px 0 30px;
  }
  .wide_cal .add-on {
    top: 4px;
    color: #fff !important;
  }
  .wide_cal .add-on img {
    filter: invert();
  }

  .gofull {
    padding: 0;
  }

  .owl-carousel1 .owl-dots {
    text-align: center;
  }

  span.att-head-lg {
    font-size: 50px;
  }
  span.att-head-sm {
    font-size: 15px;
    letter-spacing: 10px;
    margin-top: 0;
  }
  span.map_head {
    font-size: 50px;
    margin-bottom: 10px;
  }
  .map_wrapper {
    margin-top: 0 !important;
  }
  .map_wrapper .MT100 {
    margin-top: 20px !important;
  }
  .map-details {
    color: var(--white);
    margin-top: 30px;
  }
  .map-details a {
    color: var(--white);
  }
  .social-btns {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .newsletter button {
    margin-right: 0 !important;
  }
  .pro-links-left {
    border-bottom: none;
  }
  .seo-links .list-unstyled {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    padding: 20px 0 20px 0;
    flex-direction: column;
  }
  .row-list-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .row-list-item .sections {
    height: auto;
    width: auto;
  }
  .social-btns ul li {
    line-height: 4;
  }

  .navbar-right {
    padding: 0;
    margin-top: 12px;
    float: right;
  }
  .custom__header .navbar-inverse .navbar-right > li > a {
    box-shadow: none;
    font-size: 16px;
    padding-left: 20px;
  }
  .custom__header.smaller .navbar-inverse .navbar-right > li > a {
    top: 0;
  }
  .navbar-right,
  .navbar-toggle {
    transition: margin 0.3s;
  }
  .smaller .navbar-toggle {
    margin-top: 10px;
  }
  .smaller .navbar-right {
    margin-top: 0;
  }

  .custom__header {
    width: 100%;
    z-index: 2;
  }
  #reservationpop .search-btn-div {
    margin-top: 25px;
  }
  #reservationpop .home_collapse,
  .quick-booking .home_collapse {
    top: 60px;
    position: initial;
    left: auto;
    right: auto;
    width: 100%;
    z-index: 2;
    margin-top: 5px;
  }

  .menus {
    overflow: auto;
  }
  .btn-div {
    justify-content: center;
  }
  .sisterprop-details ul li {
    width: 46%;
  }

  .specialcode2 a {
    padding: 10px 10px 9px 10px;
  }

  .copyright-span {
    display: block;
    text-align: center !important;
  }
  .div__logo {
    max-width: 130px;
    position: absolute;
  }
  .navbar-toggle {
    margin-top: 25px;
  }
  .mobile0verviewinnwerdiv {
    display: flex;
    justify-content: center;
  }
  .logo-strip-wrapper .logo-strip {
    gap: 2rem;
    padding-right: 2rem;
  }
}

.strip-wrapper {
  background: linear-gradient(180deg, #f5eee6 0%, #f9f4ee 100%);
}

.discover-section {
  background: #e9e2da;
  padding: 100px 0 20px;
}

.discover-left img,
.discover-right img {
  width: 100%;
  display: block;
}

.discover-content .sub-title {
  letter-spacing: 1px;
  font-size: 14px;
  color: #ae7e3e;
  margin-bottom: 20px;
  font-family: "Archivo", sans-serif;
}

.discover-content .main-title {
  font-size: 48px;
  font-weight: 500;
  color: #2c2726;
  margin-bottom: 25px;
  line-height: 1.3;
}

.discover-content .description {
  font-size: 16px;
  color: #070f18;
  line-height: 1.8;
  margin-bottom: 35px;
  font-family: "Archivo", sans-serif;
}

.discover-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #000;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  color: #070f18;
  transition: 0.3s ease;
  font-family: "Archivo", sans-serif;
}

.discover-btn:hover {
  border: 1px solid #ae7e3e;
  color: #ae7e3e;
}
.discover-btn:hover span {
  color: #ae7e3e;
}

.discover-left {
  display: flex;
  flex-direction: column;
  gap: 130px;
}

.discover-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.discover-content {
  padding: 100px 20px 20px;
}

/* management section  */

.image-accordion-wrapper {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.accordion-item {
  flex: 1;
  position: relative;
  transition: flex 0.6s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.accordion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.accordion-item:hover {
  flex: 3;
}

.accordion-item:hover .accordion-img {
  transform: scale(1.05);
}

/* Overlay always center aligned */
.accordion-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.22);
  transition: background-color 0.6s ease 0s; /* smooth transition */
  overflow: hidden;
}

.accordion-item:hover .accordion-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  transition-delay: 0.2s; /* delay effect */
}

/* Content Default (Bottom Position) */
.accordion-content {
  text-align: center;
}

/* Hover → move to center */
.accordion-item:hover .accordion-content {
  transform: translateY(0);
}

/* Button hidden initially */
.manage-btn {
  display: inline-block;
  padding: 16px 25px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
  background-color: #00000000;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 22px;
  letter-spacing: 1px;
  border-radius: 2px;
}

.accordion-content h2 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: none;
  text-decoration: none;
  letter-spacing: 1px;
  margin-bottom: 15px;
  transform: translateY(310px);
  transition: all 0.6s ease;
}

/* Hover → Button first */
.accordion-item:hover .manage-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.accordion-item:hover .accordion-content h2 {
  transform: translateY(0);
  transition-delay: 0.35s;
}

.manage-btn:hover {
  background: #fff;
  color: #000;
}

/* sanctuary section  */

.properties-section {
  background: #f9f4ee;
}

/* Top Brown Background */
.properties-top-bg {
  background: linear-gradient(180deg, #ae7e3e 400px, #00000000 0%);
  padding: 100px 0 160px 0;
  color: #fff;
}

/* Section Label */
.section-label {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.8;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
}

/* Main Heading */
.section-heading {
  font-size: 44px;
  font-weight: 500;
  margin-top: 15px;
  text-transform: none;
  text-decoration: none;
  line-height: 1.5;
  letter-spacing: 1px;
}

/* Outline Button */
.outline-btn {
  border: 1px solid #fff;
  padding: 16px 26px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
  font-family: "Archivo", sans-serif;
}

.outline-btn:hover {
  background: #fff;
  color: #000;
}

/* Cards Wrapper */
.properties-cards {
  margin-top: -120px; /* overlap effect */
  padding-bottom: 60px;
}

/* Card */
.property-card img {
  width: 100%;
  display: block;
}

.property-card h3 {
  margin-top: 18px;
  font-size: 25px;
  font-weight: 500;
  font-family: "Beaulieu Regular", sans-serif;
  letter-spacing: 1px;
  color: #2c2726;
}
.property-card:hover h3 {
  color: #ae7e3e;
}
.location {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ae7e3e;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
}

/* Gold Button */
.gold-btn {
  background: #ae7e3e;
  color: #000;
  padding: 16px 26px;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.gold-btn:hover {
  background: #000;
}

.sanctuary-main {
  display: flex;
  align-items: center;
}

.sanctuary-btn {
  text-align: end;
  margin-top: 30px;
}

.hotel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}

.sanct-btn {
  margin-top: 30px;
  text-align: center;
}

/* adventure section  */
.adventure-section {
  background: #f3efe9;
  padding: 80px 0px;
  text-align: center;
}

.section-tag {
  letter-spacing: 3px;
  font-size: 14px;
  color: #ae7e3e;
  margin-bottom: 15px;
  font-family: "Archivo", sans-serif;
  text-decoration: none;
}

.section-title {
  font-size: 44px;
  margin-bottom: 15px;
  color: #2c2726;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #000;
  line-height: 1.6;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  align-items: start;
}

.feature-card {
  text-align: left;
}

.feature-card .icon img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: brightness(100%) contrast(100%) saturate(94%) blur(0px)
    hue-rotate(42deg);
}

.feature-card h3 {
  font-size: 25px;
  margin-bottom: 15px;
  color: #2c2726;
  text-decoration: none;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 1px;
  font-weight: 1.5;
}

.feature-card p {
  color: #070f18;
  font-size: 16px;
  font-family: "Archivo", sans-serif;
  text-decoration: none;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 1px;
  font-weight: 1.5;
}

.feature-image {
  position: relative;
}

.feature-image img {
  width: 100%;
  z-index: 2;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Relaxation section  */
.relaxation-section {
  position: relative;
  background: url(../img/discover.jpg) center / cover no-repeat;
  padding: 120px 20px;
  color: #fff;
}
.relaxation-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.relaxation-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
}
.small-tag {
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 20px;
  color: #f9f4ee;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  font-weight: 1.5;
  font-family: "Archivo", sans-serif;
}

.main-heading {
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 50px;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 1px;
  font-weight: 1.5;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
}

.text-block p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e6e6e6;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: "Archivo", sans-serif;
}

/* testimonial section */

.testimonial-section {
  padding: 120px 0;
  background-color: #f5eee6;
}

.testimial-main {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* LEFT IMAGES */
.left-images {
  width: 25%;
  position: relative;
  bottom: 0px;
}

.left-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.img2-wrapper {
  position: absolute;
  right: 0;
}

.review-img1 {
  width: 100% !important;
  height: 245px !important;
}

.review-img2 {
  width: 320px !important;
  height: 236px !important;
}

.left-images img:first-child {
  margin-bottom: 30px;
}

/* CENTER CONTENT */
.center-content {
  width: 51%;
  text-align: center;
  padding: 0px 60px;
}

.center-content h5 {
  letter-spacing: 4px;
  color: #ae7e3e;
  font-size: 14px;
  margin-bottom: 20px;
  font-family: "Archivo", sans-serif;
}

.center-content h2 {
  font-size: 44px;
  margin-bottom: 30px;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 1px;
  font-weight: 1.5;
}

.owl-carousel .item p {
  font-size: 16px;
  line-height: 28px;
  color: #070f18;
  max-width: 100%;
  margin: auto;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  padding: 0px 34px;
}

.author {
  font-weight: bold;
  letter-spacing: 2px;
  color: #b88944;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
}

.testimial-main .counter {
  margin-top: 40px;
  font-size: 16px;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
}

/* RIGHT VIDEO */
.right-video {
  width: 24%;
  position: relative;
  top: 92px;
}

.right-video video {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* Grab Cursor */
.testimonial-section .owl-carousel {
  cursor: grab;
}
.testimonial-section .owl-carousel:active {
  cursor: grabbing;
}

/* Responsive */
@media (max-width: 992px) {
  .left-images,
  .center-content,
  .right-video {
    width: 100%;
    margin-bottom: 40px;
  }
  .right-video video {
    height: 400px;
  }
}

.discover-section img {
  width: 100%;
  transition: transform 0.1s linear;
  will-change: transform;
}

.wifi-review-icon {
  width: 60px !important;
  height: 60px;
}

@media screen and (max-width: 991px) {
  .fusion-content h1 {
    font-size: 40px;
    padding: 20px;
    width: 100%;
  }
  .about-title-1 {
    font-size: 36px;
    line-height: 1.4;
  }
  .side-nav {
    top: 0%;
    height: 100%;
  }
  .menu-icon {
    height: 40px;
    width: 40px;
  }
  .header-logo img {
    width: 105px;
    height: 32px;
  }
  .header_top {
    padding-top: 0px;
  }
  .first-header {
    position: unset;
  }
  .header-actions {
    position: absolute;
    right: 0;
    top: 0;
  }
  .header-logo {
    position: absolute;
    left: 0;
    top: 0;
  }
  .header-logo a {
    display: block;
  }

  .abt-wrapper {
    display: block;
  }
  .abt-wrapper h1 {
    padding: 90px;
  }
  .about-right-section.hotelmagic {
    padding: 0;
  }
  .about-title-img {
    height: 370px;
  }
  .amenities-wrapper,
  .strip-wrapper {
    margin: 0px !important;
  }
  .amenities-wrapper .counter-section,
  .image-accordion-wrapper {
    flex-direction: column;
  }
  .strip-inner-wrapper img {
    height: 44px;
  }
  .sanctuary-main {
    flex-direction: column;
  }
  .properties-top-bg {
    padding: 50px 24px 140px 21px;
  }
  .hotel-cards {
    grid-template-columns: 1fr;
    padding: 20px 30px;
  }
  .fusion-section {
    height: 100vh;
  }
  .discover-main-sec {
    display: flex;
    flex-direction: column;
  }
  .discover-left,
  .discover-right {
    order: 2;
    flex-direction: row;
    margin-bottom: 40px;
  }
  .discover-left {
    gap: 50px;
  }
  .discover-content-sec {
    order: 1;
  }
  .discover-section {
    padding: 0;
  }
  .sanctuary-btn {
    display: none;
  }
  .section-subtitle {
    line-height: 2;
  }

  .feature-card .icon img {
    width: 82px;
    height: 82px;
  }
  .feature-image {
    display: none;
  }
  .content-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sanc-child {
    padding: 0px 15px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .header-logo,
  .header-actions {
    top: 18px;
  }
  .header-logo img {
    width: 150px;
    height: 45px;
  }
  .abt-wrapper {
    display: flex;
  }
  .about-title-img {
    height: 506px;
  }
  .discover-section img {
    transform: none !important;
  }
  .amenities-wrapper .counter-section {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 66px;
  }
  .hotel-cards {
    grid-template-columns: 1fr 1fr;
  }
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .testimial-main {
    flex-direction: column;
  }
  .left-images {
    bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .testimonial-section {
    padding: 50px 0 !important;
  }
  .right-video {
    top: 15px !important;
    margin-bottom: 18px !important;
  }
  .review-img1 {
    width: 100% !important;
    height: 400px !important;
  }
  .review-img2 {
    width: 100% !important;
    height: 370px !important;
  }
  .img2-wrapper {
    position: unset;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .header_top {
    padding: 0 !important;
  }
  .first-header {
    justify-content: center;
    padding-top: 10px;
  }
  .discover-section {
    padding: 10px 0;
  }
  .discover-content .main-title {
    font-size: 33px;
  }
  .discover-content {
    padding: 10px 20px;
  }
  .discover-section {
    padding: 50px 0;
  }
  .outline-btn {
    font-size: 12px;
    padding: 16px 14px;
  }
}
/* footer css code */

#fusion-footer {
  background: #1b1818;
  color: #bdbdbd;
  padding: 60px 0 25px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#fusion-footer .footer-logo img {
  max-width: 200px;
  margin-bottom: 20px;
  height: auto;
}
#fusion-footer .footer-logo .icon-tiktok img {
  margin-bottom: 0px !important;
  filter: invert(1);
}

#fusion-footer .icon-tiktok.myfb:hover img {
  filter: none !important;
}

#fusion-footer .footer-description {
  max-width: 50%;
  margin: 0 auto 25px;
  font-size: 16px;
  line-height: 1.7;
  font-family: "Archivo", sans-serif;
}

#fusion-footer .footer-menu a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 14px;
  text-decoration: none;
  font-family: "Archivo", sans-serif;
}

#fusion-footer .footer-divider {
  border-top: 1px solid #333;
  margin: 50px 0;
}

#fusion-footer h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 22px;
}
.powered-by {
  color: #fff !important;
}
#fusion-footer .footer-logo {
  padding: 0px !important;
}

#fusion-footer .social-icons {
  display: flex;
  gap: 12px;
}

#fusion-footer .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #f9f4ee30;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

#fusion-footer .social-icons a i {
  color: #ffffff;
  font-size: 18px;
  transition: color 0.3s ease;
}

#fusion-footer .social-icons a:hover {
  background-color: #f9f4ee;
  border-color: #f9f4ee;
}

#fusion-footer .social-icons a:hover i {
  color: #ae7e3e;
}

#fusion-footer .newsletter input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  width: 100%;
  padding: 8px 0;
  font-family: "Archivo";
  color: #fff;
}

#fusion-footer .newsletter button {
  background: none !important;
  border: none;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0px;
  font-size: 18px;
}

#fusion-footer .footer-bottom {
  border-top: 1px solid #333;
  margin-top: 35px;
  padding-top: 25px;
  font-size: 12px;
}

#fusion-footer .footer-links-bottom a {
  color: #fff;
  margin-left: 18px;
  text-decoration: none;
  font-family: "Archivo";
}

#fusion-footer .footer-links-bottom a:hover {
  color: #fff;
}

#fusion-footer li .myfb {
  color: #fff !important;
  background: #2e2e2e;
}

#fusion-footer .address-dynamic,
#fusion-footer .address-dynamic a {
  font-size: 16px;
  font-family: "Archivo", sans-serif;
  color: #c0c0c0;
}

#fusion-footer .color-grey-light {
  color: #dbdbdb;
}

#fusion-footer .copyright-class {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  #fusion-footer {
    padding: 40px 20px;
    text-align: left;
  }

  #fusion-footer .footer-logo,
  #fusion-footer .footer-description,
  #fusion-footer .footer-menu {
    text-align: center;
  }

  #fusion-footer .footer-menu a {
    display: inline-block;
    margin: 8px 10px;
  }

  #fusion-footer .footer-bottom {
    text-align: center;
    border-top: 0;
  }

  #fusion-footer .footer-links-bottom {
    margin-top: 10px;
    text-align: center;
  }

  #fusion-footer .footer-links-bottom a {
    display: inline-block;
    margin: 5px 10px;
  }
  .adventure-section {
    padding: 40px 8px;
  }
  .adventure-section .section-title {
    font-size: 32px;
  }
  .testimial-main .review-img1 {
    width: 100% !important;
  }

  .img2-wrapper {
    position: unset;
  }
  .review-img2 {
    width: 100% !important;
    object-fit: cover;
    height: 330px !important;
  }
  .left-images {
    bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .testimonial-section {
    padding: 50px 0 !important;
  }
  .right-video {
    top: 15px !important;
    margin-bottom: 18px !important;
  }
  .custom__header,
  .custom__header.smaller {
    position: fixed !important;
  }
  .custom__header.smaller {
    background-color: #1b1818b3 !important;
    padding: 6px 0px;
  }

  .section-heading {
    font-size: 31px;
  }
  .fusion-content h1 {
    font-size: 34px;
  }
  .fusion-btn {
    padding: 14px 22px;
    border: 1px solid #fff;
  }
  .about-title-1 {
    width: 60%;
    margin: auto;
    padding: 90px 0px;
    text-align: center;
    font-size: 37px !important;
  }
  .counter-section .counter {
    font-size: 40px;
  }
  .discover-content {
    padding: 50px 2px;
  }
  .discover-content .main-title {
    font-size: 32px;
  }
  .discover-content .description {
    font-size: 15px;
  }
  .discover-left,
  .discover-right {
    flex-direction: column;
    width: 50%;
  }
  .discover-main-sec {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .discover-right {
    order: 3;
  }
  .discover-left .img-box {
    z-index: 1;
  }
  .accordion-content h2 {
    font-size: 28px;
  }
  .adventure-section .section-subtitle {
    font-size: 15px;
    letter-spacing: 0px;
  }
  .adventure-section .section-tag {
    letter-spacing: 2px;
    font-size: 13px;
  }
  .relaxation-section .main-heading {
    font-size: 37px;
  }
  .relaxation-section .text-block p {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0;
    margin-bottom: 0;
  }
  .testimial-main {
    flex-direction: column;
  }
  .testimial-main .center-content h2 {
    font-size: 27px;
  }
  .testimial-main .left-images {
    order: 1;
    width: 100%;
  }

  .testimial-main .center-content {
    order: 2;
    width: 100%;
  }

  .testimial-main .right-video {
    order: 3;
    width: 100%;
  }

  .testimial-main .left-images img,
  .testimial-main .right-video video {
    width: 100%;
    height: auto;
  }
  .review-slider .item {
    width: 100% !important;
  }
  .testimial-main .owl-carousel .item p {
    padding: 0;
  }
  .testimial-main .center-content {
    padding: 0px 16px;
  }
  #fusion-footer .footer-description {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.4;
  }
  #fusion-footer .footer-divider {
    margin: 20px 0;
  }
  .testimial-main .right-video video {
    height: 500px;
  }
  #fusion-footer .footer-logo img {
    max-width: 140px;
  }
}

.footer-img {
  display: flex;
  justify-content: center;
}
.about-title-img {
  object-fit: cover;
}

.reviews-bottom-icon {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.list-unstyled.foot_inner_icons {
  display: flex;
  margin-top: 18px;
  gap: 12px;
  justify-content: space-evenly;
}

@media screen and (min-width: 1500px) {
  .properties-section .container {
    width: 70% !important;
  }
  .adventure-section .container {
    width: 70% !important;
    padding: 0 !important;
  }
  .section__about .container {
    width: 70% !important;
    padding: 0 !important;
  }
  .discover-section .container {
    width: 75%;
  }
  .about-title-1 {
    padding: 0 11% !important;
  }

  .relaxation-container {
    max-width: 74% !important;
  }
  .content-grid {
    max-width: 80% !important;
  }
  .testimonial-section .container {
    width: 76% !important;
  }
}

.review-slider {
  overflow: hidden;
}
.center-content {
  overflow: hidden;
}
.section__about {
  background-color: #f9f4ee;
}
/* about us page top image slide text */
.about-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}

.about-overlay-content h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 10px;
}

.about-overlay-content p {
  font-size: 14px;
  letter-spacing: 2px;
}

.mission-section {
  position: relative;
  background: url("../img/mission-vision.jpg") center center / cover no-repeat;
  padding: 120px 0;
  color: #fff;
  min-height: 100vh;
  display: block;
  align-items: center;
}

.about-overlay-content p a {
  color: #fff;
}
.about-overlay-content p a:hover {
  color: #ae7e3e;
}
.contactus-top-section {
  height: 315px;
  background-color: #070f18;
}

.icon-tiktok .myfb img {
  filter: invert();
  margin-bottom: 0px;
}
.icon-tiktok .myfb {
  background: #2e2e2e;
}
