/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Oswald', sans-serif;
  color: #444;
}

a {
  color: #4fa6d5;
}

a:hover {
  color: #45beff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: 'Oswald', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  color: #fff;
  background: #14212a;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #000;
  background: #fecb00b2;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px;
}



#header.header-scrolled {
  height: 80px;
  padding: 20px;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
  width: 150px;
  border-radius: 7px;
  height: 100px;
}

#main {
  margin-top: 80px;
}

#getoffer {
  color: #000;
  border-radius: 50px;
  margin-left: 10px;
  background: #fecb00;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  color: #fff;
  display: block;
  position: relative;

  padding: 10px 15px;
  transition: 0.3s;
  font-size: 15px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #fecb00;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #14212a;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #fff;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #fecb00;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: 'Oswald', sans-serif;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: 'Oswald', sans-serif;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #000;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 550;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #fecb00;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: 'Oswald', sans-serif;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(30, 67, 86, 0.9);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*-------------------------------------------------------------
#Swiper Slider
--------------------------------------------------------------*/

#deal {
  padding: 40px;
  background: #14212a;
  padding: 30px;
}

#deal .container {
  padding: 20px;
}

#deal h3 {
  color: #fff;
  font-weight: 800;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero No Slider Section
--------------------------------------------------------------*/
.zoom_img {
  transition: transform .5s;
}

.zoom_img:hover {
  transform: scale(1.1);
}

#floorplan .row a {
  margin-top: 65px;
  color: #fff;
  background: #14212a;
}

#floorplan img {
  border-radius: 20px;
  filter: brightness(0.2);
  height: 250px;
  width: 350px;
}

#floorplan p {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-top: 15px;
}

#floorplanbutton {
  color: #fff;
  background: #14212a;
  color: #fff;
  background: #14212a;
  border-radius: 30px;
  padding: 10px 23px;
  position: relative;
  top: -250px;
  display: inherit;
  margin: 0 80px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  font-size: 18px;
  line-height: 1.42857143;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  align-items: center;
  transition: transform .2s;
}

#connectivity {
  background-color: #D4CFE8;
}

#connectivity .row {
  background-color: #D4CFE8;
}

#connectivity h5 {
  margin-bottom: 20px;
  color: #322644;
  font-weight: 700;
}


#connectivity ul {
  font-size: 16px;
  font-weight: 550;
}

#locations {
  padding: 20px;
  color: #414045;
}

.down_enquiry {
  background: #14212a;
  none :repeat scroll 0 0;
  bottom: 0;
  position: fixed;
  width: 100%;
  z-index: 9;
  display: none;
}

.down_enquiry ul li a:hover {
  background: #fecb00;
  color: #000;
}

.down_enquiry ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.down_enquiry ul li {
  float: left;
  text-align: center;
  width: 50%;
  border-right: 1px solid #fff;
}

.down_enquiry ul li a {
  color: #fff;
  display: block;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .hidemob {
    display: none;
  }

  .visible-xs {
    display: block !important;
  }

  .back-to-top {
    margin-bottom: 50px;
  }

  #float {
    top: 70%;
  }
}

#feedback {
  height: 0px;
  width: 85px;
  border-radius: 13px;
  position: fixed;
  right: 0;
  top: 55%;
  z-index: 1000;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  text-transform: uppercase;
  -o-transform: rotate(-90deg);
}

#feedback a{
  position: fixed;
  color:#fff; background: #14212a; 
  display: inline;
  border-radius: 13px;
  border: 1px solid white;
  /* background: #D7202F; */
  height: 52px;
  padding-top: 10px;
  width: 185px;
  text-align: center;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  z-index: 99999;
}

#float {
  position: fixed;
  top: 80%;
  right: 0;
  z-index: 9999;
  color: #fff;
  background: #14212a;
  padding: 10px 15px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50px 0 0 50px;
  box-shadow: 0px 9px 11px rgb(0 0 0 / 50%);
  /* text-shadow: 1px 1px #c69230; */
}

#float:hover {
  background: rgb(86, 238, 4);
}

#float i {
  font-size: 18px;
}

@media (max-width: 768px) {
  #float {
    top: 70%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-top: 60px;
}

.section-bg {
  background-color: #f3f8fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.enquire-btn {
  background: #14212a;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  padding: 10px 20px;
  font-weight: 800;
  align-items: center;
  margin-bottom: 20px;
}

.enquire-btn a {
  color: #000;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #c3c3c3;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #14212a;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  background: #14212a7d;
}

#about .col-lg-6 {
  padding: 20px;
}

#about h1 {
  color: #14212a;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

#about h3 {
  font-size: 24px;
  font-weight: 520;
  color: #14212a;
  text-align: center;
}

#about p {
  word-spacing: 1px;
  font-size: 17px;
  font-weight: 600;
  text-align: justify;
  color: #000;
}

#about img {
  height: 90%;
  width: 100%;
  border-radius: 30px;
}

.about h3 {
  font-weight: 700;
  font-size: 24px;
}

.btncenter {
  width: 250px;
  height: 50px;
  background: #fecb00;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.about ul li {
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
}
#footer .footer-top{
  background: #14212a;
}
#footer .footer-top .row p{
  color: #fff;
}


#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: #a2cce3;
  font-weight: 600;
}

.disclaimer {
  padding: 20px;
  font-size: 10px;
}

/*****************************
Modal Style
*****************************/
.modal {
  z-index: 99999;
}

.modal-dialog {
  max-width: 600px;
  margin: 1.75rem auto;
}

.modal-header {
  padding: 0px;
  border-bottom: 1px solid #1e54e7;
  background: #14212a;
  border: none;
}
.modal-header h5{
  font-size: 23px;color: #fff; text-transform: uppercase;font-weight: 700;
}

.modal-header .close {
  color: #fff;
  z-index: 1;
  opacity: 1;
  padding: 1rem 1rem;
  margin: -1rem 0rem 0rem -2rem;
}
.modal-body img{
  width:100%;
}
form{
  padding:15px;
}
#modal-footer {
  background: #14212a; border-radius: 20px; padding: 5px;
}
#modal-footer h5{
  text-align: center; color: #fff; margin-top:10px;font-weight:700;
}
#modal-footer h4{
  text-align: center;
}
#modal-footer a{
  color: #fff;font-weight:700;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
}

.modal-body {
  padding: 0;
  position: relative;
  background: #929292cf;
}

.minput {
  border-radius: 30px;
  padding: 20px;
}

.heading-button {
  background: linear-gradient(-45deg, #0558a4, #3F00FF, #0096FF, #89CFF0);
  background-size: 400% 400%;
  animation: gradient 3s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.p-30 {
  padding: 0 50px;
}

.dontdisplaylg {
  display: none;
}

.mobtitle {
  font-size: 18px;
  text-align: center;
  color: #000;
  font-weight: 700;
}

#specification .row {
  margin-right: 0;
  margin-left: 0
}

#amenities {
  padding: 0;
  margin-right: 0;
  margin-left: 0
}

#amenities h3 {
  margin-bottom: 20px;
  margin-top: 30px;
  color: #14212a;
  font-weight: 800;
}

#amenities .row ul {
  font-size: 17px;
  font-weight: 500;
}

#amenitiesul {
  padding: 0 50px;
}

#amenitiesul ul {
  font-size: 17px;
  font-weight: 500;
}

#amemob {
  margin-bottom: 20px;
  color: #273247;
  font-weight: 700;
  color: #14212a;
}
#amemob ul{
  font-weight: 600;
}

#keyimg {
  padding: 0;
}

#keyimg img {
  width: 900px;
  height: 465px;
}

#ameimg {
  padding: 0;
  margin-top: 0px;
}

#ameimg img {
  width: 100%;
  height: 100%;
}

i {
  color: #14212a;
}

@media (max-width: 767px) {
  .mobdeal {
    margin-top: 50px;
  }

  .p-30 {
    padding: 30px 50px;
  }

  .shortimg {
    height: 400px;
    margin-bottom: 50px;
  }

  .ml-30 {
    margin-left: 30px;
  }

  .about h3 {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
  }

  .autokey {
    height: 300px;
  }

  .area {
    margin-top: 0px;
  }

  .section-title {
    padding-bottom: 0px;
  }

  .check {
    margin-left: 63px;
  }
}

.collapsible {
  background: #000;
  /* background-color: #777; */
  color: #14212a;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  border-radius: 10px;
  ;
}

.active1,
.collapsible:hover {
  background-color: #C3C3C3;
}

.content1 {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}