@charset "utf-8";

@font-face {
  font-family: 'nexa_boldregular';
  src: url('../fonts/nexa_bold-webfont.woff2') format('woff2'),
    url('../fonts/nexa_bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'nexa_lightregular';
  src: url('../fonts/nexa_light-webfont.woff2') format('woff2'),
    url('../fonts/nexa_light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'nexaextra_light';
  src: url('../fonts/nexa-extralight-webfont.woff2') format('woff2'),
    url('../fonts/nexa-extralight-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'nexaheavy';
  src: url('../fonts/nexa-heavy-webfont.woff2') format('woff2'),
    url('../fonts/nexa-heavy-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'cera_problack';
  src: url('../fonts/cerapro-black-webfont.woff2') format('woff2'),
    url('../fonts/cerapro-black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'cera_probold';
  src: url('../fonts/cerapro-bold-webfont.woff2') format('woff2'),
    url('../fonts/cerapro-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'cera_prolight';
  src: url('../fonts/cerapro-light-webfont.woff2') format('woff2'),
    url('../fonts/cerapro-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'cera_promedium';
  src: url('../fonts/cerapro-medium-webfont.woff2') format('woff2'),
    url('../fonts/cerapro-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'cera_proregular';
  src: url('../fonts/cerapro-regular-webfont.woff2') format('woff2'),
    url('../fonts/cerapro-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'cera_prothin';
  src: url('../fonts/cerapro-thin-webfont.woff2') format('woff2'),
    url('../fonts/cerapro-thin-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Butler Stencil';
  src: url('../fonts/ButlerStencil-Medium.woff2') format('woff2'),
    url('../fonts/ButlerStencil-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

/*global*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: #000;
  font-family: 'nexa_boldregular';
  color: #fff;
}

a,
a:link {
  font-family: 'cera_proregular';
  color: #000;
  font-size: 20px;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

a img,
input:focus {
  border: none;
  outline: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  font-family: 'cera_proregular';
  font-size: 17px;
}

#mainwrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.cntwrap {
  position: relative;
  margin: 0px auto;
  width: 1410px;
}

.nomarg {
  margin: 0 !important;
}

.nobrd {
  border: none !important;
}

.nopadd {
  padding: 0 !important;
}

h1 {
  font-size: 40px;
}

h2,
h4 {
  font-size: 26px;
  margin-bottom: 10px;
}

h3 {
  font-size: 30px;
  padding: 10px 0;
  background: var(--black);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 0;
}

:root {
  --primary: #fff;
  --secondary: #c9972a;
  --black: #000;
  --gray: #bababb;
}

.flexCenter {
  display: flex;
  row-gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.flexStart {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flexEnd {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.flexColCenter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.flexColStart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.flexColEnd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.flexRowCenter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.primaryText {
  color: #1f3e72;
  font-weight: bold;
  font-size: 2rem;
}

.secondaryText {
  color: rgb(140 139 139);
  font-size: 0.9rem;
}

.cf:after,
.cf:before {
  content: '';
  display: block;
}

.cf:after {
  content: '';
  clear: both;
}

/*END global*/

/*header*/
.hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #000;
  top: 0;
  position: fixed;
  z-index: 9999;
}

/*navabr*/

header.small {
  opacity: 0.9;
}

body>.over-menu {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  height: 100%;
  content: '';
  width: 100%;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9;
}

body.open-menu {
  left: -250px;
}

body.open-menu>.over-menu {
  visibility: visible;
  opacity: 1;
}

body.open-menu .menu-container {
  right: 0 !important;
}

.hidden {
  display: none;
}

header {
  -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;
  background-color: #fff;
  width: 100%;
  float: left;
  z-index: 10;
}

header::before {
  -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;
  transform-origin: 0;
  background: #FFF;
  position: absolute;
  width: 100%;
  content: '';
  top: 0;
  right: 0;
  height: 0;
}

header .desk-menu {
  position: relative;
}

header .desk-menu .logo {
  position: absolute;
  float: left;
  padding: 25px 0 0 0;
}

header .desk-menu .logo-adn {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 20px 0 0;
  position: relative;
  display: table;
  z-index: 1;
}

header .desk-menu .logo-adn a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-image: url("https://seeklogo.com/images/G/google-logo-28FA7991AF-seeklogo.com.png");
  background-position: 0;
  color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
}

header .desk-menu .box-menu {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  margin: 0 auto;
  float: right;
  text-align: center;
}

/* header .desk-menu .menu-container {float: left;} */
header .desk-menu .menu-container .menu-head,
header .desk-menu .menu-container .menu-foot {
  width: 100%;
  float: left;
  display: none;
}

header .desk-menu .menu-container .menu-head {
  background: #4285f4;
  padding: 16px 10px;
}

header .desk-menu .menu-container .menu-head .e1 {
  padding: 3px 0;
  float: left;
}

header .desk-menu .menu-container .menu-head .e1 img {
  width: 29px;
  float: left;
  height: 29px;
}

header .desk-menu .menu-container .menu-head .client {
  color: #FFF;
  float: right;
}

header .desk-menu .menu-container .menu-head .client span {

  text-transform: uppercase;
  padding: 5px 42px 5px 0;
  position: relative;
  line-height: 100%;
  font-size: 9px;
  display: block;
}

header .desk-menu .menu-container .menu-head .client i {
  position: absolute;
  font-size: 30px;
  right: 0;
  top: 0;
}

header .desk-menu .menu-container .menu-foot {
  position: absolute;
  bottom: 0;
  padding: 15px 0;
}

header .desk-menu .menu-container .menu-foot .social {
  display: table;
  margin: 0 auto;
}

header .desk-menu .menu-container .menu-foot .social a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
  margin: 0 5px 0 0;
  color: #FFF;
  font-size: 13px;
  text-align: center;
  padding: 5px 0;
  border-radius: 50%;
  background: #797c82;
  width: 29px;
  height: 29px;
}

header .desk-menu .menu-container .menu-foot .social a:last-child {
  margin: 0;
}

header .desk-menu .menu-container .menu-foot .social a:hover {
  background: #a4a7ac;
}

header .desk-menu .menu-container .menu-foot hr {
  margin: 15px auto 20px;
  display: table;
  width: calc(100% - 20px);
}

header .desk-menu .menu-container .menu-foot address {
  position: relative;
  text-align: left;
  padding: 0 15px;
  margin: 0;
}

header .desk-menu .menu-container .menu-foot address i {
  position: absolute;
  left: 0;
  top: 0;
}

header .desk-menu .menu-container .menu-foot address span {
  padding: 0 0 0 20px;
  position: relative;
  margin-bottom: 5px;
  font-size: 12px;
  display: block;
}

header .desk-menu .menu-container .menu {
  /*float: left;*/
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header .desk-menu .menu-container .menu li.back {
  display: none;
}

header .desk-menu .menu-container .menu>li {
  -webkit-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -ms-transition: all 0.33s ease;
  -o-transition: all 0.33s ease;
  transition: all 0.33s ease;
  float: left;
  cursor: pointer;
  position: relative;
  overflow: inherit;
  border-right: 1px solid #fff;
}

header .desk-menu .menu-container .menu>li:last-child {
  border-right: 0px solid #fff;
}

header .desk-menu .menu-container .menu>li a {
  position: relative;
  text-transform: uppercase;
  font-size: 11px;
  padding: 0px 30px;
  display: block;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

header .desk-menu .menu-container .menu>li a:hover {
  color: var(--secondary);
}

/* header .desk-menu .menu-container .menu > li a:last-child {border-right: 0;} */
header .desk-menu .menu-container .menu>li.menu-item-has-children>a {
  padding: 45px 20px 45px 8px;
  position: relative;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children>a::before,
header .desk-menu .menu-container .menu>li.menu-item-has-children>a::after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #4e4e4e;
  position: absolute;
  content: '';
  height: 1px;
  width: 7px;
  top: 53px;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children>a::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 10px;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children>a::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 6px;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu {
  box-shadow: 1px 2px 4px rgba(46, 61, 73, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  -webkit-overflow-scrolling: touch;
  min-width: 280px;
  position: absolute;
  list-style: none;
  background: #FFF;
  padding: 0;
  float: left;
  display: table;
  left: 0;
  width: 100%;
  float: left;
  display: none;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li {
  width: 100%;
  -webkit-transition: all 0.33s ease;
  -moz-transition: all 0.33s ease;
  -ms-transition: all 0.33s ease;
  -o-transition: all 0.33s ease;
  transition: all 0.33s ease;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li>a {
  color: #585858;
  padding: 12px;
  background: #f2f2f2;
  border-bottom: 1px #fff solid;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li .sub-menu {
  display: none;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li.menu-item-has-children>a::before,
header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li.menu-item-has-children>a::after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #4e4e4e;
  position: absolute;
  content: '';
  height: 1px;
  width: 7px;
  top: 24px;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li.menu-item-has-children:hover>a::before,
header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li.menu-item-has-children:hover>a::after {
  background: #fff;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li.menu-item-has-children>a::before {
  transform: rotate(45deg);
  right: 6px;
  top: 19px;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li.menu-item-has-children>a::after {
  transform: rotate(-45deg);
  right: 6px;
  top: 23px;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li.menu-item-has-children:hover>a {
  display: block;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li.menu-item-has-children:hover .sub-menu {
  display: block;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li:hover>a {
  color: #fff !important;
  background-color: #dd5426;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li:hover>a::before {
  -webkit-transform: rotate(142deg);
  -moz-transform: rotate(142deg);
  -ms-transform: rotate(142deg);
  -o-transform: rotate(142deg);
  transform: rotate(142deg);
  top: 23px;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li:hover>a::after {
  -webkit-transform: rotate(42deg);
  -moz-transform: rotate(42deg);
  -ms-transform: rotate(42deg);
  -o-transform: rotate(42deg);
  transform: rotate(42deg);
  right: 11px;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu .sub-menu {
  left: 100%;
  margin-top: -43px;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children a {
  text-align: left;
}

header .desk-menu .menu-container .menu>li.menu-item-has-children a:hover {
  margin-top: 0;
}

header .desk-menu .menu-container .menu>li.line {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0px;
  pointer-events: none;
  border: 2px solid #dd5426;
  background: #4285f4;
  -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1);
  -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
  transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
  opacity: 0;
  display: block;
}

header .desk-menu .menu-container .menu>li:hover>a::before {
  -webkit-transform: translateX(5px) rotate(-45deg);
  -moz-transform: translateX(5px) rotate(-45deg);
  -ms-transform: translateX(5px) rotate(-45deg);
  -o-transform: translateX(5px) rotate(-45deg);
  transform: translateX(5px) rotate(-45deg);
  width: 10px;
  right: 12px;
}

header .desk-menu .menu-container .menu>li:hover>a::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 10px;
  right: 7px;
}

header .desk-menu .menu-container .menu>li:hover.menu-item-has-children .sub-menu {
  display: block;
  z-index: 9;
}

header .hamburger-menu {
  display: none;
}

section.heroarea {
  margin-top: 83px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next:after {
  background: url(../images/arrow-next.png) no-repeat;
  width: 75px;
  height: 75px;
  background-size: cover;
}

.swiper-button-prev:after {
  background: url(../images/arrow-prev.png) no-repeat;
  width: 75px;
  height: 75px;
  background-size: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: transparent;
  width: 75px;
  /* height: 101px; */
}

.loc_lft .swiper-button-next,
.loc_lft .swiper-button-prev {
  top: 61%;
}

.tagline {
  position: absolute;
  right: 12%;
  top: 22%;
  font-size: 40px;
  text-transform: uppercase;
  width: 34%;
  color: #000;
  font-family: 'nexa_boldregular';
}

.tagline.white {
  color: var(--primary);
}


/*overview section */
.pad50 {
  padding: 50px 0;
}

.pad80 {
  padding: 80px 0;
}

.overview {
  background: url(../images/overview/overview-bg.jpg) center top no-repeat;
}

.overviewDetails {
  margin-top: 50px;
}

.ovcntnr {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.ovcntnr:last-child {
  margin-bottom: 0;
}

.ovcntnr div {
  flex: 0.5;
}

.ovcntnr p {
  margin-bottom: 0;
}

.ovcntnr div:nth-of-type(even) {
  flex: 2;
}

.overview-left {
  padding: 3rem;
  width: 40%;
}

.overview-right {
  width: 60%;
}

.overview-right img {
  width: 100%;
}

/*configuration*/
.configuration_sec {
  text-transform: uppercase;
  text-align: center;
}

.configuration_sec .flexRowCenter {
  justify-content: space-evenly;
}

.cnfDtls {
  position: relative;
  overflow: hidden;
}

.img-parallax {
  width: 100vmax;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: none
}

.configuration_sec p {
  color: rgba(255, 255, 255, 0.50);
  font-size: 25px;
  padding: 20px 0 30px;
}

.configuration_sec a {
  background: url(../images/batnbg.jpg) center bottom;
  padding: 8px 20px;
  border: 0;
}

/*ammenities*/
.amenities_sec {
  background: url(../images/amenities/ameniteis_bg.jpg) center top no-repeat;
}

.amenities_sec .swiper {
  overflow: visible;
}

.amenities_sec .swiper-slide {
  background: transparent;
}

.amenities_sec .swiper .swiper-slide img {
  width: 50%;
  height: auto;
}

/* .amenities_sec .swiper-button-next {
  right: -100px;
}

.amenities_sec .swiper-button-prev {
  left: -100px;
} */

.am_holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}

.am_img {
  flex: 0 1 calc(33.33% - 10px);
  margin: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.am_img:nth-last-child(-n+3) {
  margin-bottom: 0;
}

/*tabmenu*/
/*--------------------------
* tab MENU TABS
---------------------------*/
.am_tabmenu .menu__tabs {
  list-style: none;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.am_tabmenu .menu__tabs li {
  float: left;
  margin-right: 2px;
  font-size: 1.3em;
  padding: 0 1rem;
}

.am_tabmenu .menu__tabs a {
  padding: 1em 0;
  display: inline-block;
  color: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.am_tabmenu .menu__tabs a:hover {
  color: var(--secondary);
  border-bottom: 4px solid var(--secondary);
}

.am_tabmenu .menu__tabs a.active {
  border-bottom: 4px solid #fff;
}

/*--------------------------
* tab MENU WRAPPER
---------------------------*/
.am_tabmenu.menu {
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.am_tabmenu .menu__wrapper {
  padding: 2em;
  position: relative;
  z-index: 400;
}

.am_tabmenu .menu__wrapper .menu__item {
  line-height: 1.3;
  color: #76716f;
  display: none;
}

.am_tabmenu .menu__wrapper .menu__item.item-active {
  display: block;
}

/*endtabmenu*/

/*highlights*/
.amenities_sec.amenHighlights {
  background: url(../images/highlights/highlights_bg.jpg) center top no-repeat;
}

/* .amenities_sec.amenHighlights .swiper .swiper-slide img, .flrPlns .swiper .swiper-slide img {
  width: 85%;
} */
.flrPlns .swiper .swiper-slide img {
  width: 50%;
  filter: blur(4px);
  margin: 0 auto;
}

/*location*/
/* .mapSec {
  filter: grayscale(100%) invert(100%);
  -webkit-filter: grayscale(100%) invert(100%);
} */

.loc_container {
  width: 100%;
}

.flt {
  float: left;
}

.loc_lft {
  width: 40%;
}

.loc_rght {
  width: 60%;
}

.loc_hd {
  font-family: 'Butler Stencil';
  font-size: 28px;
  font-weight: 500;
  margin: 30px 0;
}

.loc_lft .swiper-slide {
  flex-flow: column;
  background: transparent;
}

.loc_lft ul li {
  font-family: 'cera_proregular';
  font-size: 16px;
  text-align: left;
  padding: 8px 0;
  list-style: disc;
}

.loc_lft ul li::marker {
  color: var(--secondary);
}

.loc_lft ul {
  width: 75%;
}

.loc_lft ul li span {
  float: right;
}

.loc_rght {
  position: relative;
}

.loc_rght img {
  width: 100%;
  height: auto;
}

.loc_rght a {
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: #fff;
  text-decoration: underline;
}

/*floor plans*/
.flrPlns {
  background: url(../images/floorplans/fplans_bg.jpg) center top no-repeat;
}


/*about*/
.text-center {
  text-align: center;
}

.about_sec h4 {
  width: 100%;
}

.logosec {
  width: 50%;
  margin: 50px auto;
}

.logohead {
  font-family: 'cera_proregular';
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.logosbx {
  display: flex;
  justify-content: space-around;
}

.about_sec p {
  margin: 30px auto;
  width: 80%;
  font-size: 22px;
  letter-spacing: 1px;
}

/*contact*/
.contact_sec {
  background-color: #161616;
  padding: 20px 0;
}

.contact_sec input {
  padding: 15px 25px;
  border: 0;
  border-radius: 25px;
  font-family: 'cera_prolight';
  font-size: 16px;
  margin: 0 10px;
}

.contact_sec button {
  padding: 15px 30px;
  border: 0;
  border-radius: 25px;
  font-family: 'cera_proregular';
  color: #000;
  font-size: 16px;
  background: url(../images/batnbg.jpg) center top;
  text-decoration: none;
  cursor: pointer;
}

/*footer*/
.ftrSec,
.ftr2 {
  justify-content: space-between;
  font-family: 'nexa_lightregular';
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 22px;
  padding-left: 30px;
  padding-right: 30px;
}

.ftrSec ul li span {
  font-size: 16px;
  font-family: 'nexaheavy';
}

.ftrSec a,
.ftr2 a {
  font-family: 'nexa_lightregular';
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.ftrSec a:hover,
.ftr2 a:hover {
  color: var(--secondary);
}

.ftrSec ul li {
  padding-bottom: 20px;
  padding-left: 20px;
}

.ftrSec ul li:last-child {
  padding-bottom: 0;
}

.ftrSec ul li:nth-child(1) {
  background: url(../images/ftr1.png) left 5px no-repeat;
}

.ftrSec ul li:nth-child(2) {
  background: url(../images/ftr2.png) left 5px no-repeat;
}

.ftrSec ul li:nth-child(3) {
  background: url(../images/ftr3.png) left 7px no-repeat;
}

.right-f,
.ft2 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  gap: 18px;
}

.ftr2 span {
  margin-left: 50px;
}

/* bottom form */
.btm_form {
  padding: 5px 0;
  background: #434242;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}

.btm_form input {
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #fff;
  font-family: 'cera_prolight';
  font-size: 16px;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  margin: 0 10px;
}

.btm_form button {
  padding: 10px 30px;
  border: 0;
  font-family: 'cera_proregular';
  color: #000;
  font-size: 16px;
  background: url(../images/batnbg.jpg) center top;
  text-decoration: none;
  cursor: pointer;
}

.hangbtn {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 20%;
  display: flex;
  flex-flow: column;
  text-align: right;
  width: 43px;
  gap: 20px;
}


/* popoverlay */
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 99999;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.overlay h2 {
  margin-bottom: 10px;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #161616;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
  border: 1px solid var(--gray);
}

.content.contact_sec {
  background-color: transparent;
}

.content.contact_sec input,
.content.contact_sec button {
  width: 100%;
  margin: 10px 0;
}

.popup .close {
  position: absolute;
  top: 10px;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.popup .close:hover {
  color: var(--gray);
}

.popup .content {
  /* max-height: 30%; */
  overflow: auto;
}

.text-center {
  text-align: center;
}

.cntmsg {
  display: none;
}


.loc_lft .swiper-button-prev:after {
  width: 50px;
  /* height: 50px; */
  background-size: contain;
}

.loc_lft .swiper-button-next:after {
  width: 50px;
  /* height: 50px; */
  background-size: contain;
}

.cntPop .popup {
  width: 80%;
  height: 75%;
  overflow-y: scroll;
}

.cntPop p {
  margin-bottom: 20px;
  font-size: 14px;
}

.modal {
  z-index: 99999;
}

.modal-content {
  background: #434242;
}

.modal-header,
.modal-footer {
  border: 0;
}

.modal-header h2 {
  margin-bottom: 0;
}

.modal-body .content {
  padding: 0;
}

button.btn.btn-secondary {
  position: absolute;
  right: 20px;
}

.modal-body p {
  font-size: 14px;
}

.sldrStng .swiper-button-prev {
  left: 40px;
}

.sldrStng .swiper-button-next {
  right: 40px;
}

.mob,
.swiper-slide img.mob {
  display: none;
}

.algnCenter {
  margin: 10% auto 0 !important;
}

.algnCenter img {
  width: 100% !important;
}

body.modal-open .modal-backdrop {
  opacity: 0.9 !important;
  z-index: 9999;
}

#item-7 iframe,
#item-9 iframe {
  width: 100%;
  height: 100%;
}

.hangbtn a {
  background: url(../images/batnbg.jpg);
  color: var(--black);
  padding: 10px 20px;
  display: block;
  width: 182px;
  height: 182px;
  text-transform: uppercase;
  text-align: center;
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.hangbtn a:hover {
  color: var(--primary);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.aiWtrmrk {
  position: absolute;
  left: 2%;
  bottom: 2%;
  color: rgba(255, 255, 255, 0.4);
  font-family: cera;
  font-family: 'cera_proregular';
  font-size: 14px;
}

.aiWtrmrk.blckTxt {
  color: rgba(0, 0, 0, 0.9);
}

footer#contact {
  background: #000;
}


.video-container {
  position: relative;
  width: 560px;
  height: 315px;
  cursor: pointer;
  margin: 0 auto;
}

.thumbnail {
  width: 100%;
  height: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
  width: 15%;
}

/* .ftr2 a img {display: none;} */

.error {
  padding-left: 20px;
  font-size: 12px;
  color: red;
  font-family: cera_proregular;
}

.btm_form .flexRowCenter {
  align-items: start;
}

.btm_form div {
  position: relative;
}

.btm_form div.error {
  position: absolute;
  left: 0;
  top: 0;
}

.pad175 {
  padding: 175px 0;
}

.tksTxt {
  font-size: 75px;
  width: 100%;
  text-transform: uppercase;
}

.tksSec h4 {
  font-family: 'cera_promedium';
  font-size: 30px;
}

a.cnum {
  font-size: 13px;
  background-color: #fff;
  color: var(--secondary);
  padding: 10px;
}

a.cnum span.climg {
  background-image: url(../images/call1.png);
  background-position: left -1px;
  background-repeat: no-repeat;
  padding-left: 20px;
}

.animCnum {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

a.cnum:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

a.cnum:hover span.climg {
  /* background-image: url(../images/call2.png); */
  filter: contrast(0%) brightness(2);;
}

/* *************************************************** */

/*media*/
@media only screen and (max-width: 1410px) {
  .cntwrap {
    width: 96%;
    /* background-color: red;  */
  }

  .overview-left,
  .overview-right {
    width: 50%;
  }

  h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .amenities_sec .swiper .swiper-slide img {
    width: 80%;
  }

  .cntwrap.ftrSec,
  .cntwrap.ftr2 {
    width: 94%;
  }


}

@media only screen and (max-width: 1366px) {
  header .desk-menu .menu-container .menu>li a {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 1280px) {

  .tagline {
    width: 38%;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 75px;
    height: 75px;
    background-size: contain;
  }

  .loc_lft .swiper-button-next {
    top: 56%;
    right: -10px;
  }

  .loc_lft .swiper-button-prev {
    top: 56%;
    left: -10px;
  }

  .tksTxt {
    font-size: 65px;
  }

  .tksSec h4 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 1200px) {
  .logo img {
    width: 70%;
    height: auto;
  }

  .hdr {
    padding: 5px 20px;
  }

  .tagline {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .logosec {
    width: 60%;
  }

  .about_sec p {
    width: 96%;
    font-size: 18px;
  }

  section.heroarea {
    margin-top: 56px;
  }

  .loc_lft ul {
    width: 85%;
  }

  .loc_hd {
    font-size: 24px;
  }

  header .desk-menu .menu-container .menu>li a {
    padding: 0 15px;
  }

}

/* @media only screen and (max-width: 1180px) {} */

@media only screen and (max-width: 1024px) {
  header .desk-menu .menu-container .menu>li a {font-size: 10px;}

  header .desk-menu .menu-container .menu>li a {
    padding: 0 8px;
  }

  .tagline {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;

  }

  .overview-left,
  .overview-right {
    padding: 1rem;
  }

  h4 {
    font-size: 18px;
  }
  h3 {
    font-size: 20px;
  }


  .configuration_sec .pad80 {
    padding: 50px 0;
  }

  .amenities_sec .swiper .swiper-slide img {
    width: 75%;
  }


  .loc_lft ul li {
    font-size: 16px;
  }

  .logosec {
    width: 30%;
    margin: 20px auto;
  }

  .logosec img.imgAdj {
    width: 40%;
  }

  .logohead {
    font-size: 20px;
  }

  .about_sec p {
    font-size: 16px;
  }

  .contact_sec input {
    padding: 15px 20px;

    font-size: 14px;
    margin: 0 5px;
  }

  .btm_form input {
    padding: 10px 7px;
    font-size: 14px;
    margin: 0 5px;
  }

  .loc_lft ul li span {
    float: none;
    display: block;
  }

  .loc_lft .swiper-button-next,
  .loc_lft .swiper-button-prev {
    top: 43%;
  }

  .loc_lft .swiper-button-next {
    right: -10px;
  }

  .loc_lft .swiper-button-prev {
    left: -10px;
  }

  .loc_hd {
    font-size: 20px;
  }

  .sldrStng .swiper-button-prev {
    left: 20px;
  }

  .sldrStng .swiper-button-next {
    right: 20px;
  }

  .hangbtn {
    width: 30px;
  }

  .hangbtn a {
    width: 150px;
    height: 160px;
    font-size: 15px;
  }

  .tksTxt {
    font-size: 55px;
  }

  .tksSec h4 {
    font-size: 30px;
  }
  a.cnum {padding: 5px;}
}

/* @media only screen and (max-width: 1022px) {} */

@media only screen and (max-width: 768px) {
  a.cnum span.num {display: none;}
  a.cnum span.climg {background-position: center;}

  .logo {
    flex: 0 0 90%;
}

.logo img {width: auto; height: auto;}

.desk-menu, a.cnum {
  flex: 0 0 5%;
}
a.cnum {padding: 10px;}
.bar.animate {
  right: -100%;
}


  .sldrStng .swiper-button-prev {
    left: 0px;
  }

  .sldrStng .swiper-button-next {
    right: 0px;
  }

  .popup {
    width: 70%;
  }

  .hidden-lg {
    display: block !important;
  }

  .hidden-md {
    display: none !important;
  }

  /* header {
    height: 75px;
  } */

  header .desk-menu .logo {
    padding: 11px 0 0 10px;
  }

  header .desk-menu .box-menu {
    top: 25px;
  }

  header .hamburger-menu {
    -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;
    display: block;
    position: absolute;
    top: -30px;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 12px;
    cursor: pointer;
    right: 10px;
    z-index: 99;
  }

  header .hamburger-menu span {
    text-transform: uppercase;
    left: calc(-100% + -5px);
    padding: 8px 9px 8px 0;
    top: calc(50% - 18px);
    position: absolute;
    font-size: 13px;
    color: #FFF;
  }

  header .hamburger-menu .bar,
  header .hamburger-menu .bar::after,
  header .hamburger-menu .bar::before {
    width: 35px;
    height: 3px;
  }

  header .hamburger-menu .bar {
    position: relative;
    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -o-transform: translateY(25px);
    transform: translateY(25px);
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    background: #4e4e4e;
    top: -7px;
  }

  header .hamburger-menu .bar::before,
  header .hamburger-menu .bar::after {
    position: absolute;
    background: #4e4e4e;
    content: '';
    left: 0;
    border-radius: 5px;
  }

  header .hamburger-menu .bar::before {
    bottom: 10px;
    -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  header .hamburger-menu .bar::after {
    top: 10px;
    -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  header .hamburger-menu .bar.animate {
    background: rgba(255, 255, 255, 0);
  }

  header .hamburger-menu .bar.animate::after {
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  header .hamburger-menu .bar.animate::before {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  header .desk-menu .box-menu ul li a {
    color: #FFF !important;
    border-bottom: 1px solid #eaeaea;
  }

  header .desk-menu .menu-container {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #000;
    position: fixed;
    height: 100%;
    width: 250px;
    right: -250px;
    top: 0;
    z-index: 9;
  }

  header .desk-menu .menu-container .menu-header-container {
    position: relative;
    float: left;
  }

  header .desk-menu .menu-container .menu-header-container ul {
    padding: 0 !important;
  }

  header .desk-menu .menu-container .menu {
    margin: 0;
  }

  header .desk-menu .menu-container .menu li.back {
    position: relative;
    display: block;
  }

  header .desk-menu .menu-container .menu li.back a {
    padding: 12px 12px 12px 35px !important;
  }

  header .desk-menu .menu-container .menu li.back a::before,
  header .desk-menu .menu-container .menu li.back a::after {
    background-color: #4e4e4e;
    position: absolute;
    content: '';
    height: 2px;
    width: 7px;
    top: 23px;
  }

  header .desk-menu .menu-container .menu li.back a::before {
    -webkit-transform: rotate(-45deg) !important;
    -moz-transform: rotate(-45deg) !important;
    -ms-transform: rotate(-45deg) !important;
    -o-transform: rotate(-45deg) !important;
    transform: rotate(-45deg) !important;
    top: 20px !important;
    right: inherit !important;
    left: 15px !important;
  }

  header .desk-menu .menu-container .menu li.back a::after {
    -webkit-transform: rotate(45deg) !important;
    -moz-transform: rotate(45deg) !important;
    -ms-transform: rotate(45deg) !important;
    -o-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;
    top: 24px !important;
    left: 15px !important;
  }

  header .desk-menu .menu-container .menu li.line {
    display: none !important;
  }

  header .desk-menu .menu-container .menu>li {
    width: 100%;
    float: left;
    margin: 0;
    text-align: center;
  }

  header .desk-menu .menu-container .menu>li a {

    padding: 12px;

  }

  header .desk-menu .menu-container .menu>li.menu-item-has-children {
    position: initial;
  }

  header .desk-menu .menu-container .menu>li.menu-item-has-children a {
    padding: 12px;
  }

  header .desk-menu .menu-container .menu>li.menu-item-has-children a::before,
  header .desk-menu .menu-container .menu>li.menu-item-has-children a::after {
    background: #4e4e4e;
  }

  header .desk-menu .menu-container .menu>li.menu-item-has-children a::before {
    right: 6px !important;
    top: 16px !important;
    width: 7px !important;
  }

  header .desk-menu .menu-container .menu>li.menu-item-has-children a::after {
    top: 20px !important;
    width: 7px !important;
  }

  header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu {
    box-shadow: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: block !important;
    background: #FFF;
    z-index: 1;
    top: 0;
    left: 100%;
    height: 100%;
  }

  header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu .sub-menu {
    margin-top: 0;
  }

  header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu.open-sub {
    left: 0%;
  }

  header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li.menu-item-has-children>a::before,
  header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li.menu-item-has-children>a::after {
    background-color: #4e4e4e;
  }

  header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li.menu-item-has-children>a::before {
    -webkit-transform: rotate(45deg) !important;
    -moz-transform: rotate(45deg) !important;
    -ms-transform: rotate(45deg) !important;
    -o-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;
    right: 6px !important;
    top: 22px !important;
    width: 7px !important;
  }

  header .desk-menu .menu-container .menu>li.menu-item-has-children .sub-menu li.menu-item-has-children>a::after {
    -webkit-transform: rotate(-45deg) !important;
    -moz-transform: rotate(-45deg) !important;
    -ms-transform: rotate(-45deg) !important;
    -o-transform: rotate(-45deg) !important;
    transform: rotate(-45deg) !important;
    right: 6px !important;
    top: 26px !important;
    width: 7px !important;
  }

  header .desk-menu .menu-container .menu>li:hover a:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 6px;
    top: 22px;
  }

  header .desk-menu .menu-container .menu>li:hover a::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 6px;
    top: 26px;
  }

  header .desk-menu .menu-container .menu-head {
    display: block;
  }

  header .desk-menu .menu-container .menu-foot {
    display: block;
  }

  header.small .hamburger-menu {
    top: -31px;
  }

  header.small .hamburger-menu span {
    color: #4e4e4e;
  }

  header.small .hamburger-menu .bar {
    background: #4e4e4e;
  }

  header.small .hamburger-menu .bar::before,
  header.small .hamburger-menu .bar::after {
    background: #4e4e4e;
  }

  header.small .hamburger-menu .bar.animate {
    background: rgba(255, 255, 255, 0);
  }


  .overview .flexRowCenter {
    flex-direction: column-reverse;
  }

  .overview-left,
  .overview-right {
    width: 100%;
  }

  .pad50 {
    padding: 30px 0;
  }

  .overview-right {
    text-align: center;
  }

  .overview-right img {
    width: 80%;
  }

  h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  p {
    font-family: 'cera_proregular';
    font-size: 15px;
  }

  h4 {
    font-size: 14px;
  }

  .configuration_sec p {
    padding: 0px 0 15px 0;
    font-size: 15px;
  }

  a,
  a:link {
    font-size: 14px;
  }

  .configuration_sec a {
    padding: 5px 20px;
  }

  .cnfDtls {
    flex-wrap: wrap;
    gap: 30px;
  }

  .cf_sec {
    flex: 1 1 calc(50% - 30px);
  }

  .partline {
    display: none;
  }

  .cnfDtls .img-parallax,
  .about_sec .img-parallax {
    display: none;
  }

  .configuration_sec {
    background: url(../images/configuration_bg.jpg) center top no-repeat;
    background-size: cover;
  }

  .about_sec {
    background: url(../images/aboutus/abt_bg.jpg) center top no-repeat;
    background-size: cover;
  }


  .ovcntnr {
    margin-bottom: 30px;
  }

  .am_holder {
    width: 100%;
  }

  .amenities_sec .swiper .swiper-slide .am_img img,
  .am_img img {
    width: 70%;
  }

  .am_img {
    margin: 30px 0;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 55px;
    height: 55px;
  }

  .swiper-button-next {
    right: -11px;
    left: auto;
  }

  .swiper-button-prev {
    left: -11px;
  }

  .loc_hd {
    font-size: 16px;
    margin: 10px 0;
  }

  .loc_lft ul li {
    font-size: 14px;
  }

  .loc_lft .swiper-button-prev:after,
  .loc_lft .swiper-button-next:after {
    width: 25px;
    height: 25px;
  }

  .logosec {
    width: 50%;
  }

  .about_sec p {
    font-size: 12px;
  }

  .cntmsg {
    display: block;
    text-align: center;
  }



  .cntmsg a {
    font-size: 18px;
    color: var(--primary);
  }

  .btmenq {
    display: none;
  }

  .contact_sec input,
  .contact_sec button {
    width: 98%;
    margin: 5px auto;
  }

  form.cntfrm_enq {
    text-align: center;
  }

  .loc_lft .swiper-button-prev {
    top: 36%;
    left: -20px;
  }

  .loc_lft .swiper-button-next {
    top: 36%;
    right: -20px;
  }

  .modal-body .btm_form {
    position: static;
    background: transparent;
  }

  .modal-body .btm_form input,
  .modal-body .btm_form button {
    margin: 5px 0;
    width: 100%;
  }

  .modal-body .btmenq {
    display: block;
  }

  .modal-body .flexRowCenter {
    flex-direction: column;
  }

  .amenities_sec.exceptional .swiper-button-next {
    right: 22%;
    top: 106%;
  }

  .amenities_sec.exceptional .swiper-button-prev {
    left: 22%;
    top: 106%;
  }

  #item-7 iframe,
  #item-9 iframe {
    width: 80%;
    height: 75vh;
  }



  .btm_form {
    display: none;
  }

  .hangbtn {
    position: fixed;
    z-index: 9999;
    left: 0;
    bottom: 0;
    flex-flow: row;
    width: 100%;
    gap: 0px;
    top: inherit;
  }

  .hangbtn a {
    width: 50%;
    height: auto;
    font-size: 14px;
    padding: 5px 20px;
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }


  .tksTxt {
    font-size: 42px;
  }

  .tksSec h4 {
    font-size: 26px;
  }


}


@media only screen and (max-width: 640px) {

  .loc_container {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    flex-direction: column-reverse;
  }

  .loc_lft {
    flex: 0 0 40%;
    width: auto;
  }

  .loc_rght {
    flex: 0 0 60%;
    width: auto;
  }

  .ftr2 span {
    margin-left: 0px;
  }

  .flexRowCenter.cntwrap.ftr2.pad80 {
    flex-direction: column;
  }

  .tagline {
    width: 44%;
    font-size: 22px;
    top: 20%;
  }


  .am_tabmenu .menu__wrapper {
    padding: 0em;
  }

  .am_tabmenu .menu__tabs {
    margin-bottom: 20px;
  }

  .loc_lft .swiper-button-prev {
    top: 63%;
  }

  .loc_lft .swiper-button-next {
    top: 63%;
  }

  .loc_lft ul li span {
    float: right;
    display: inline-block;
  }

  .amenities_sec.exceptional .swiper-button-next {
    top: 100%;
  }

  .amenities_sec.exceptional .swiper-button-prev {
    top: 100%;
  }

  .aiWtrmrk {
    font-size: 10px;
  }

  .tksTxt {
    font-size: 33px;
  }

  .tksSec h4 {
    font-size: 21px;
  }
}

@media only screen and (max-width: 580px) {

  .loc_lft .swiper-button-prev {
    top: 61%;
  }

  .loc_lft .swiper-button-next {
    top: 61%;
  }


  .amenities_sec .swiper-button-next {
    right: -11px;

  }

  .amenities_sec .swiper-button-prev {
    left: -11px;

  }

  .amenities_sec .swiper .swiper-slide img {
    width: 100%;
  }

  .amenities_sec.difBtns .swiper-button-prev:after {
    background: url(../images/arrow-prev-black.png) center top no-repeat;
    background-size: cover;
  }

  .amenities_sec.difBtns .swiper-button-next:after {
    background: url(../images/arrow-next-black.png) center top no-repeat;
    background-size: cover;
  }

  .sldrStng .swiper-button-prev {
    left: -10px;
  }

  .sldrStng .swiper-button-next {
    right: -10px;
  }

  .video-container {
    width: 100%;
    height: auto;
  }

  .play-button {
    width: 20%;
  }
}

@media only screen and (max-width: 540px) {

  .cntwrap.ftrSec {
    flex-direction: column;
    gap: 25px;
  }



  .loc_lft .swiper-button-prev {
    left: -20px;
    top: 59%;
  }

  .loc_lft .swiper-button-next {
    right: -20px;
    top: 59%;
  }

  .am_tabmenu .menu__wrapper {
    padding: 0.5em;
  }

  .am_img img {
    width: 70%;
  }

  .am_tabmenu .menu__tabs {
    margin-bottom: 20px;
  }

  .logosec {
    width: 100%;
  }

  .left-f {
    width: 100%;
  }

  .left-f br {
    display: none;
  }

  .ftr2.pad80 {
    padding: 40px 0;
  }

  .right-f {
    flex-direction: row-reverse;
    text-align: left;
  }

  .ovcntnr {
    align-items: center;
    justify-content: center;
  }

  .ovcntnr p {
    font-size: 13px;
    margin-bottom: 0;
  }

  h4 {
    font-size: 10px;
    margin-bottom: 0px;
  }

  .configuration_sec p {
    font-size: 12px;
    margin-bottom: 0;
    padding: 0 0 5px 0;
  }

  .configuration_sec a {
    padding: 5px 10px;
    font-size: 10px;
  }

  .tksTxt {
    font-size: 28px;
  }

  .tksSec h4 {
    font-size: 18px;
  }

}

@media only screen and (max-width: 480px) {

  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 40px;
    height: 40px;
  }

  .ovcntnr div {
    flex: 0.6;
  }

  .loc_lft .swiper-button-prev {
    top: 56%;
  }

  .loc_lft .swiper-button-next {
    top: 56%;
  }


  .sldrStng .swiper-button-prev {
    left: -10px;
  }

  .sldrStng .swiper-button-next {
    right: -10px;
  }

  h3 {
    font-size: 16px;
  }

  .overview-right img {
    width: 95%;
  }

  .amenities_sec.exceptional .swiper-button-next {

    top: 105%;
  }

  .amenities_sec.exceptional .swiper-button-prev {
    top: 105%;
  }

  .mob,
  .swiper-slide img.mob {
    display: block;
  }

  .desk,
  .swiper-slide img.desk {
    display: none;
  }
}


@media only screen and (max-width: 430px) {

  .tagline {
    font-size: 16px;
    top: 15%;
  }

  h2 {
    font-size: 16px;
    text-align: center;
  }

  .am_tabmenu .menu__tabs a {
    font-size: 12px;
  }

  .am_tabmenu .menu__tabs li {
    padding: 0 0.8rem;
  }

  .am_img {
    margin: 10px 0;
  }

  .configuration_sec .pad80 {
    padding: 20px 0;
  }

  .pad50 {
    padding: 0px 0 30px;
  }

  .loc_lft .swiper-button-prev {
    top: 51%;
  }

  .loc_lft .swiper-button-next {
    top: 51%;
  }

  .about_sec h4 {
    padding-top: 20px;
  }

  .about_sec p {
    margin: 30px auto 0;
    padding: 0 19px;
  }

  .left-f {
    padding-top: 20px;
  }

  .flexRowCenter.cntwrap.ftr2.pad80 {
    gap: 10px;
  }

  .ftr2,
  .ftr2 a {
    font-size: 11px;
  }

  .loc_lft ul li {
    font-size: 12px;
  }

  .ovcntnr div {
    flex: 0.8;
  }

  .ftrSec ul li {
    padding-bottom: 10px;
    padding-right: 5px;
  }

  #item-7 iframe,
  #item-9 iframe {
    width: 90%;
    height: 55vh;
  }

  .tksTxt {
    font-size: 24px;
  }

  .tksSec h4 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 375px) {
  .ovcntnr div {
    flex: 1;
  }

  .am_tabmenu .menu__tabs li {
    padding: 0 0.3rem;
  }

  .loc_lft .swiper-button-prev {
    top: 50%;
  }

  .loc_lft .swiper-button-next {
    top: 50%;
  }

  .sldrStng .swiper-button-prev {
    left: -10px;
  }

  .sldrStng .swiper-button-next {
    right: -10px;
  }

  .tagline {
    font-size: 14px;
    width: 46%;
  }

  .ft2 {
    gap: 14px;
  }

  .tksTxt {
    font-size: 21px;
  }

  .tksSec h4 {
    font-size: 16px;
  }

  a.cnum {
    padding: 5px;
}

}