@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit/Outfit-Regular.ttf');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit/Outfit-Medium.ttf');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit/Outfit-Medium.ttf');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit/Outfit-Bold.ttf');
  font-weight: 700;
  font-display: swap;
}

:root {
  --green: #48b18a;
  --gray: #19191b;
  --lightgreen: #2a3431;
  --gold: #cba857;
  --golden-grad: linear-gradient(45deg, #c58958, #FCF6BA, #c58958, #FBF5B7, #c58958);
  --golden-grad2: linear-gradient(45deg, #c58958, #FCF6BA, #c58958);
}

body {
  color: #fff;
  background-color: #292416;
  font: 400 14px/1.4 "Outfit", sans-serif;
  overflow-x: hidden;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a:hover {
  text-decoration: none;
}

.bright100 {
  -ms-filter: brightness(50);
  filter: brightness(50);
}

.my_15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

/*header*/
header {
  width: 100%;
  padding: 3px 20px;
  float: left;
  position: fixed;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  top: 0;
  z-index: 999;
  transition: all 300ms ease-in-out;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 20px;
  padding-left: 20px;
  font-size: 16px;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff !important;
}

.scrl .navbar-dark .navbar-nav .nav-link {
  color: #000 !important;
}

.key-box {
  background: rgba(0, 0, 0, 0.753);
  padding: 30px;
  box-shadow: inset 4px 4px 0 0 rgb(189 149 65 / 70%);
  width: 70%;
}

header.scrl {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

div#navbarSupportedContent {
  justify-content: end;
}

.navbar.navbar-expand-lg.navbar-dark img {
  width: 200px;
  filter: invert(1) brightness(7.5);
}

header.scrl nav img {
  /* filter: invert(1) brightness(7.5); */
  filter: unset !important;
}

header.scrl .btn {
  height: 30px;
  font-size: 13px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  background-color: #fff;
  min-width: 150px;
  height: 45px;
  font-size: 14px;
  letter-spacing: 1px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  outline: none;
  z-index: 1;
}

.btn:focus {
  box-shadow: none;
  outline: none;
}

.btn-gold {
  color: #000;
  background: var(--golden-grad2);
}

.btn-gold:hover {
  color: #000;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  z-index: -1;
}

.btn::after {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  background-color: #fff;
}

.btn-gold:before {
  background-color: rgba(0, 0, 0, 0.25);
}

.btn:hover::before,
.btn:hover::after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #000;
  z-index: 1;
}

.banner .carousel-inner,
.banner .carousel-inner .carousel-item {
  position: relative;
  height: 100%;
}

.banner .carousel-inner .carousel-item {
  background: var(--gray) center no-repeat;
  background-size: cover;
  transition-duration: 1s;
  position: relative;
  z-index: 1;
}

.slider-content {
  position: absolute;
  left: 40px;
  /* top: 24%; */
  bottom: 5%;
  z-index: 9;
  width: 40%;
}

.slider-content h1 {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.9vw;
  color: #fff2c3;
  text-shadow: 0px 0px 10px rgb(0 0 0 / 78%);
}

.slider-content .location {
  /* letter-spacing: 2px; */
  font-weight: 300;
  font-size: 18px;
  margin: 10px 0 10px;
}

.slider-content h5 {
  /* text-transform: uppercase; */
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  /* margin-bottom: 8px; */
  padding: 5px 11px 5px 6px;
  color: #ffffff;
  /* background: var(--golden-grad); */
  display: inline-block;
}

.slider-content h5.key-cnt {
  font-size: 17px !important;
  margin-bottom: -4px;
}

.banner-typology1 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 2px;
  margin-top: 10px;
  padding: 10px 20px;
  color: #000;
  background: var(--golden-grad);
  display: inline-block;
}

.banner-typology1 .zoom-in-out-element {
  font-size: 12px;
  margin-bottom: 0px;
}

.zoom-in-out-element {
  animation: zoom-in-zoom-out 1.5s ease infinite;
  font-size: 14px !important;
  padding: 3px 25px !important;
}

@keyframes zoom-in-zoom-out {
  0% {
    scale: 100%;
  }

  50% {
    scale: 118%;
  }

  100% {
    scale: 100%;
  }
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pb-8 {
  padding-bottom: 4rem;
}

.bg-lightgreen {
  background-color: #2a3431 !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.props {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.props.prop-tl {
  width: 20%;
  top: 0%;
  left: -2%;
  opacity: 0.1;
}

.position-relative {
  z-index: 1;
}

.bg-frwd-slash::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgb(75 75 75 / 10%);
  clip-path: polygon(100% 0, 100% 100%, 75% 50%);
  z-index: -1;
}

.heading {
  display: table;
  margin-bottom: 9px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.heading h2 {
  font-weight: 300;
  font-size: 33px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: var(--gold);
  background: var(--golden-grad);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

img.img-fluid.shadow-lg {
height: 100%;
  width: 100%;
  object-fit: cover;
}

a.btn.btn-gold.footer-btn {
  /* width: auto !important; */
  min-width: unset;
}

.heading h5 {
  font-weight: 200;
  font-size: 1.4vw;
  text-transform: uppercase;
  margin-bottom: 0;
}

.heading p {
  font-weight: 200;
  font-size: 1.4vw;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center;
}

.overview-text-container .inner-box {
  width: 100%;
}

.row.flex-row-reverse .overview-text-container .inner-box {
  margin-right: 0;
  margin-left: auto;
}

.overview-text-container h5 {
  font-weight: 200;
  font-size: 17px;
  line-height: 26px;
  text-align: center;
}

.in-numbers {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3em;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.img-wrap {
  position: relative;
  z-index: 1;
}

/*.img-fluid.h-100 {
  object-fit: cover;
}*/

.highlights_section ul li {
  line-height: 28px;
  font-size: 16px;
}

/*.walkghthrough .img-wrap {
  overflow: hidden;
}

.walkghthrough .img-wrap img {
  animation: zoom 35s linear infinite;
}

@keyframes zoom {
  50% {
    transform: scale(1.5);
  }
}*/

/*.walkghthrough p{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  background: rgb(0 0 0 / 20%);
  z-index: 9;
}

.walkghthrough a {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  line-height: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  text-align: center;
  background: var(--golden-grad2);
  color: #000;
  z-index: 2;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.walkghthrough a:hover {
  background: var(--golden-grad);
  outline: 1px solid var(--gold);
}*/

.readmore {
  width: 100%;
  display: flex;
  margin-top: 2rem;
}

.amenities-wrapper {
  /* background: url(../img/green-bg.jpg) center / cover no-repeat fixed; */
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 40px 0px;
}

.amenities-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 92%);
  backdrop-filter: grayscale(1);
  z-index: -1;
}

.amenities-text-container {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

h5 {
  font-weight: 200;
  font-size: 1.5vw;
}

.amenities-text-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0;
}

.amenities-text-container ul li {
  max-width: 25%;
  flex: 0 0 25%;
  padding: 20px;
  backdrop-filter: brightness(1.3) blur(2px);
}

.amenities-text-container ul li .img-wrap img {
  max-width: 70px;
  margin: 0 auto 10px;
}

.amenities-text-container ul li span {
  display: block;
  text-transform: uppercase;
}

.layoutSlider,
.laybox {
  width: 100%;
  position: relative;
}

.layimg {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--lightgreen);
}

.laysize {
  width: calc(100% - 20px);
  margin: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgb(0 0 0 / 13%);
  height: 100%;
}

.laysize ul {
  flex: 0 0 79%;
  max-width: 92%;
  display: flex;
  width: 100%;
  margin-top: 12px;
}

.laysize ul li {
  flex-grow: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  font-size: 18px;
  padding: 0 10px;
  width: 20%;
}

.laysize ul li:nth-child(3) {
  border-right: none;
}

.laysize ul li:last-child {
  border-right: 0;
}

.laysize ul li strong {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  font-size: 80%;
  letter-spacing: 1px;
}

.location-advantages {
  height: 100%;
}

.contact-wrapper.bg-frwd-slash::before {
  background-color: rgb(0 0 0 / 10%);
}

/* Customize modal */
.modal-content {
  border: none;
  border-radius: 0;
  background: none;
}

.modal-header {
  background: none;
  color: var(--darkblue);
  border-bottom: none;
  border-radius: 0;
  padding: 0;
}

.modal-header .modal-title {
  font-weight: 200;
  font-size: 24px;
}

.modal-header .close {
  position: absolute;
  right: -10px;
  top: 40px;
  z-index: 2;
  text-shadow: none;
  padding: 0;
  margin-right: 0;
  font-weight: 100;
  font-size: 24px;
  opacity: 1;
  color: #fff;
  line-height: 25px;
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 50%;
  background-color: #222222;
  transition: all 300ms ease-in-out;
  outline: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: var(--gold);
}

.mobile-section {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9;
}


.mobile-section .btn:not(:last-child) {
  border-right: 1px solid #333;
}

.mobile-section .btn {
  flex-grow: 1;
  font-size: 12px;
  letter-spacing: 0.3px;
  position: relative;
}

/* Customize modal */

/* Custom swiper */
/*
.swiper-button-next:hover, .swiper-button-prev:hover{
    background-color: var(--gray);
    color: #fff;
}
.swiper-button-next:hover .swiper-button-next:after, .swiper-button-prev:hover .swiper-button-prev:after {
    font-size: 20px;
    color: #fff !important;
}*/
/* Custom swiper */

.form-group {
  margin-bottom: 10px;
}

.form-group .form-control {
  border-radius: 0;
  padding: 10px 0 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  outline: none;
  min-height: 40px;
}

.form-group .form-control option {
  color: #000;
}

.form-group .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--gold);
}

.fixed-form {
  position: absolute;
  bottom: 50px;
  right: 30px;
  width: 400px;
  padding: 10px 20px 20px;
  background: rgba(0, 0, 0, 0.589);
  box-shadow: 4px 4px 0 0 rgb(189 149 65 / 70%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1000;
  transition: all 300ms ease-in-out;
  z-index: 1;
}

.fixed-form .formFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.fixed-form .formFooter button {
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  transition: all 300ms ease-in-out;
  outline: none;
}

/*.fixed-form.scrl {
  width: 100%;
  right: 0;
  bottom: 0;
  transform: translateY(0);
  padding: 2px 20px;
  background-color: #000;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.fixed-form.scrl h5 {
  display: none;
}

.fixed-form.scrl .col-12 {
  flex: 1 0 0;
  margin-bottom: 0;
}

.fixed-form.scrl .form-group .form-control {
  padding: 5px 0px;
}

.fixed-form.scrl .formFooter {
  margin-top: 0;
}

.fixed-form.scrl .formFooter button {
  height: 30px;
  line-height: 30px;
}*/

/*Footer*/
.footer-area {
  background: #000;
  color: #fff;
  position: relative;
  z-index: 1;
}

.disclaimer {
  text-align: center;
}

.disclaimer p {
  margin-bottom: 7px;
  color: #ababab;
}

.disclaimer p a {
  color: #fff;
}

.button-top {
  background: rgba(29, 29, 29, 0.32);
  position: fixed;
  cursor: pointer;
  right: 20px;
  bottom: -20px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  pointer-events: none;
  transition: all 500ms ease;
  z-index: 99;
}

.button-top:hover {
  background: var(--golden-grad2);
  color: #000;
}

/*Footer*/

.w-100.float-left.py-8.bg-lightgreen.layout-wrapper.pricelist-container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.loct-point li {
  font-size: 16px;
  line-height: 28px;
}

.floorplan-container {
  padding-top: 120px;
}

div#location {
  padding-top: 120px;
}

div#gallery {
  padding-top: 100px;
}

.floor_div {
  position: relative;
}

.floor_btnn {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  margin: 0;
}

/* .banner .carousel-inner .carousel-item::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.075);
  z-index: 1;
} */

.banner .carousel-inner .carousel-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.562) 36%, rgba(0, 0, 0, 0.267) 77.5%, #00000000 100%);
  z-index: 1;
}

div#overview {
  padding-top: 120px;
}

div#highlight {
  padding-top: 120px !important;
  background: #000;
  padding-bottom: 120px;
}

.more_enquire {
  padding: 120px 0;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}

.more_enquire::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00000094;
  z-index: 1;
}

.more_enquire .content {
  position: relative;
  z-index: 999;
}

.more_enquire h3 {
  font-size: 35px;
  margin-bottom: 18px;
}

.more_enquire .sub_heading {
  font-size: 22px;
  margin-bottom: 18px;
}

.more_enquire .btn {
  display: block;
  margin: 0 auto;
}

.slider-content h5.banner_typo {
  /* text-transform: uppercase; */
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.8px;
  /* margin-bottom: 8px; */
  padding: 5px 4px 3px 6px;
  color: #ffffff;
  /* background: var(--golden-grad); */
  display: inline-block;
  margin-bottom: 4px;
}

.about_devloper p {
  font-size: 16px;
  text-align: justify;
  font-weight: 300;
}

@media(max-width:1480px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 16px;
  }

}

@media(max-width:1400px) {
  .key-box {
    padding: 21px;
  }
}

@media (max-width: 1350px) {
  .key-box {
    padding: 20px 12px;
  }
}

/*responsive*/


@media (max-width: 768px) {
  div#highlight {
    padding-top: 30px !important;
    padding-bottom: 50px;
  }

  div#overview {
    padding-top: 50px !important;
    padding-bottom: 10px;
  }

  .floorplan-container {
    padding-top: 50px;
  }

  div#location {
    padding-top: 50px;
  }

  .banner {
    height: 600px;
  }

  .heading {
    /* margin-bottom: 25px; */
  }

  .overview-text-container h5,
  h5 {
    font-size: 2vw;
  }

  .in-numbers {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .amenities-text-container {
    width: 100%;
  }

  .location-advantages {
    padding-left: 0;
  }

  .location-map {
    padding-right: 0;
  }

  .location-map img {
    height: 100%;
    object-fit: cover;
  }

  .laysize ul li {
    font-size: 16px;
  }

  .py-8 {
    padding-bottom: 5rem;
    padding-top: 2rem;
  }

  .readmore {
    display: flex;
  }


}

@media (max-width: 767px) {
  .navbar.navbar-expand-lg.navbar-dark img {
    width: 162px;
    filter: invert(1) brightness(7.5) !important;
  }

  header.scrl nav.navbar.navbar-expand-lg.navbar-dark {
    max-width: 100%;
    background: #000;
  }

  .scrl .navbar-dark .navbar-nav .nav-link {
    color: #fff !important;
  }

  nav.navbar.navbar-expand-lg.navbar-dark {
    background: #000;
  }

  .d_sm_none {
    display: none !important;
  }

  .d_sm_block {
    display: block !important;
  }

  .intro-img {
    margin-top: 20px;
  }

  .overview-text-container .inner-box {
    width: 100%;
  }

  h4 {
    font-size: 20px;
  }

  .laysize {
    flex-wrap: wrap;
  }

  .laysize ul {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 25px;
  }

  .location-map,
  .disclaimer {
    padding-right: 15px;
  }

  .location-advantages {
    padding-left: 15px;
  }

  .heading h2 {
    font-size: 24px;
    text-align: center;
  }

  .heading h5 {
    font-size: 14px;
  }

  .slider-content .location {
    font-size: 16px;
  }

  .amenities-text-container ul li {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .amenities-text-container ul li .img-wrap img {
    max-width: 50px;
  }

  .fixed-form {
    position: unset;
    right: unset;
    width: 100%;
    bottom: unset;
  }

  .mob-img {
    height: 100%;
    object-fit: cover;
  }

  #banner {
    min-height: 400px;
  }
}

@media (max-width: 500px) {
  .carousel-indicators {

    bottom: -14px;
  }

  .highlights_section .inner-box ul {
    margin-left: 15px
  }

  .loct-point {
    margin-left: 15px
  }

  body {
    font-size: 12px;
  }

  header {
    padding: 0px;
  }

  .btn {
    min-width: 155px;
    height: 42px;
    font-size: 12px;
    letter-spacing: 0;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto;
    margin-top: 10px;
  }

  .banner {
    height: 450px;
  }

  .slider-content {
    right: 40px;
    text-align: center;
    width: auto;
    top: 24%;
  }

  .slider-content .location {
    letter-spacing: 0px;
    font-weight: 300;
    font-size: 16px;
    /* margin: 10px 0 15px; */
  }

  .slider-content h5 {
    font-size: 14px;
    font-weight: 600;
    font-size: 1.2vw;
    letter-spacing: 2px;
    margin-bottom: 2px;
    padding: 5px 7px 6px 7px;
    color: #ffffff;
    /* background: var(--golden-grad); */
    display: inline-block;
  }

  .banner-typology1 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.2vw;
    letter-spacing: 2px;
    margin-bottom: 2px;
    padding: 5px 7px 6px 7px;
    color: #000;
    background: var(--golden-grad);
    display: inline-block;
  }

  .banner-typology1 .zoom-in-out-element {
    font-size: 14px;
  }

  .slider-content h1 {
    font-size: 24px;
    letter-spacing: .9px;
  }

  .heading h2 {
    font-size: 21px;
  }

  .slider-content h5 {
    font-size: 20px;
  }

  .overview-text-container h5,
  h5 {
    font-size: 16px;
    text-align: c;
  }

  .readmore {
    margin-top: 0;
  }

  .amenities-text-container ul,
  .laysize ul {
    flex-wrap: wrap;
    border: 1px solid #848484;
  }

  .laysize ul li {
    width: 100%;
    padding: 10px 0;
    border-right: none;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    font-size: 18px;
  }

  /* .fixed-form.scrl{padding: 2px;} */
  .fixed-form .formFooter button {
    width: auto;
    min-width: 100%;
  }

  .form-group .form-control {
    font-size: 12px;
  }

  .laysize .btn.btn-gold {
    margin: 0 auto;
  }

  .w-100.float-left.py-8.bg-lightgreen.layout-wrapper.pricelist-container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

}

@media (max-width: 767px) {
  .slider-content {
    right: 40px;
    text-align: center;
    width: auto;
    top: 24%;
    position: relative;
    left: 0;
    padding: 30px 0;
  }

  .more_enquire h3 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .more_enquire .sub_heading {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .inner-content-box {
    padding: 0 6px;
  }

  div#gallery {
    padding-top: 30px;
  }

  .overview-text-container h5 {

    text-align: justify;
  }
}

::placeholder {
  color: #ffffff;
}