@font-face {
  font-family: "Oswald-VariableFont_wght";
  font-display: swap;
  src: url("../fonts/Oswald-VariableFont_wght.ttf");
}

@font-face {
  font-family: "Inter-Light";
  font-display: swap;
  src: url("../fonts/Inter-Light.ttf");
}

@font-face {
  font-family: "Inter-Regular";
  font-display: swap;
  src: url("../fonts/Inter-Regular.ttf");
}

@font-face {
  font-family: "KumarOneOutline-Regular";
  font-display: swap;
  src: url("../fonts/KumarOneOutline-Regular.ttf");
}

@font-face {
  font-family: "BebasNeue-Regular";
  font-display: swap;
  src: url("../fonts/BebasNeue-Regular.ttf");
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden !important;
}

:root {
  --green: #2e504a;
}

:root {
  --light-green: #94f6e4;
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 1);
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--light-green) !important;
}

.navbar .navbar-brand {
  font-size: 28px;
  color: #fff;
}

.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding-top: 8px;

  padding-bottom: 8px;
  background: transparent;
  transition: all 0.3s;
}

.navbar .container {
  min-width: 90%;
  padding: 0px 0px;
}

.navbar.compressed {
  padding-top: 9px;
  padding-bottom: 9px;
  background: #03254c !important;

  color: #000 !important;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  font-family: "Oswald-VariableFont_wght";
  color: #fff;
  font-size: 14px;

  padding: 8px 15px;
  letter-spacing: 2px;
  font-weight: 300;
  text-transform: uppercase;
}

.navbar-brand img {
  width: 230px;
  padding: 5px;
  /* filter: invert(); */
}

body.fixed .navbar {
  position: fixed;
  top: 0;
  z-index: 99;
  background: var(--green);
  animation: menu_link_an 500ms forwards;
}

@keyframes menu_link_an {
  0% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0);
  }
}

.strip-section {
  padding: 10px;
}

.modal.show .modal-dialog {
  min-width: 500px !important;
}

.modal-body img {
  width: 100%;

  height: 100%;
}

::selection {
  color: #fff;
  background-color: #8167a9;
}

::-moz-selection {
  color: #fff;
  background-color: #8167a9;
}

.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;

  border-bottom: 1px solid #fff;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #fff;

  top: 0;
  left: 0;
  content: "";
  z-index: 2;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

.nav-link {
  transition: all 200ms linear;
}

.nav-item:hover .nav-link {
  color: #fff !important;
}

.nav-item.active .nav-link {
  color: var(--light-green) !important;
  font-weight: 400;
}

.nav-link {
  position: relative;
  display: inline-block;
}

.nav-item:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";

  background-color: var(--light-green);
  opacity: 0;
  transition: all 200ms linear;
}

.nav-item:hover:after {
  bottom: 0;
  opacity: 1;
}

.nav-item.active:hover:after {
  opacity: 0;
}

.nav-item {
  position: relative;
  transition: all 200ms linear;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 1);
}

.bg-light {
  transition: all 200ms linear;
}

#switch,
#circle {
  cursor: pointer;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

#switch {
  width: 60px;
  height: 8px;
  border: 2px solid #8167a9;
  border-radius: 27px;
  background: #000;

  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  opacity: 1;
  transform: translate(0);

  transition: all 300ms linear;
  transition-delay: 1900ms;
}

body.hero-anime #switch {
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 1900ms;
}

#circle {
  position: absolute;
  top: -11px;
  left: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000;
}

.switched {
  border-color: var(--green) !important;
  background: var(--green) !important;
}

.switched #circle {
  left: 43px;
  box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25), 0 0 0 1px rgba(26, 53, 71, 0.07);

  background: #fff;
}

body.dark {
  color: #fff;
  background-color: #1f2029;
}

body.dark .navbar-brand img {
  filter: brightness(100%);
}

body.dark h1 {
  color: #fff;
}

body.dark h1 span {
  transition-delay: 0ms !important;
}

body.dark p {
  color: #fff;
  transition-delay: 0ms !important;
}

body.dark .bg-light {
  background-color: #14151a !important;
}

body.dark .start-header {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}

body.dark .start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}

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

body.dark .nav-item.active .nav-link {
  color: #999 !important;
}

body.dark .dropdown-menu {
  color: #fff;
  background-color: #1f2029;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}

body.dark .dropdown-item {
  color: #fff;
}

body.dark .navbar-light .navbar-toggler-icon {
  border-bottom: 1px solid #fff;
}

body.dark .navbar-light .navbar-toggler-icon:after,
body.dark .navbar-light .navbar-toggler-icon:before {
  background-color: #fff;
}

body.dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

.navbar-nav li:hover > ul.dropdown-menu {
  display: block;
  margin: 0;
  padding: 0;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;

  left: 100%;

  margin-top: -6px;
}

/* rotate caret on hover */

.dropdown-menu > li > a:hover:after {
  text-decoration: underline;

  transform: rotate(-90deg);
}

.dropdown-menu li a {
  font-size: 14px;

  letter-spacing: 0.9px;

  font-weight: 300;

  text-transform: uppercase;
  font-family: "Oswald-VariableFont_wght";
}

.dropdown-item {
  padding: 10px 10px;
}

.offer-patch {
  position: absolute;
  bottom: 15%;
  right: 50%;
  width: 100%;
  z-index: 9;
  max-width: 150px;
}

.high-top {
    padding-left: 0;
    list-style-type: none;
    padding-top: 15px;
    background: #2d7a6b;
    width: fit-content;
    padding: 10px 15px;
    border-radius: 4px;
    border: 2px dashed #fff;
    top: 5%;
    margin-top: 5%;
}

/*<------------------------------------------------>*/
.form-box {
    margin-top: 20px !important;
    position: fixed;
    right: 5px;
    z-index: 99999;
    bottom: 0;
    background: #fff;
    padding: 0;
    z-index: 9999;
    width: 360px;
    overflow: hidden;
}

.top_form h2 {
    text-align: center;
    color: #fff;
    font-size: 24px;
    padding: 16px 15px;
    padding-top: 22px;
    background-color: #2e504a;
    font-family: "BebasNeue-Regular";
    letter-spacing: 4px;
    margin-bottom: 0;
}

.top_form h2 span {
    cursor: pointer;
    margin-left: 5%;
}

.form-box .form_inner {
    padding: 25px 25px;
}

.form-box .form_inner .form-control {
    border-radius: 0;
    padding-left: 15px;
    font-family: "BebasNeue-Regular";
    color: rgba(24, 62, 96, 0.9);
}
.form_inner .form-control {
    margin-bottom: 15px;
    border: none;
    border-bottom: 1px solid #ced4da;
    height: 50px;
}

.iti {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
}
.navbar .container {
    min-width: 90%;
    padding: 0px 0px;
}

@media (max-width: 767px) {
  .offer-patch {
    position: absolute;
    bottom: 2%;
    right: 10%;
    width: 20%;
    z-index: 9;
  }

  .nav-item:after {
    display: none;
  }

   .form-box {
        position: relative;
        width: 100%;
        padding: 15px;
    }

  .nav-item::before {
    position: absolute;
    display: block;
    top: 15px;
    left: 0;
    width: 11px;
    height: 1px;
    content: "";

    border: none;
    background-color: #000;
    vertical-align: 0;
  }

  .dropdown-menu {
    background-color: transparent;
    border: none;
    margin: 0px;

    padding: 0px;
  }

  .dropdown-item {
    color: #fff;
    border-radius: 2px;
    font-size: 14px;
    padding: 8px 0px;

    letter-spacing: 2px;
    font-weight: 300;
  }

  .navbar-light .navbar-nav .active > .nav-link,
  .navbar-light .navbar-nav .nav-link.active,
  .navbar-light .navbar-nav .nav-link.show,
  .navbar-light .navbar-nav .show > .nav-link {
    color: #fff;
  }

  .nav-item.show .dropdown-menu {
    transform: translate3d(0px, -3px, 0);
  }

  .dropdown-menu {
    display: block;
  }

  .dropdown-submenu ul {
    padding: 5px 15px;
    border-bottom: 1px dashed #898989;
  }

  .bor-menu {
    border-bottom: 1px dashed #898989;
  }
}

.about-text h6 a {
  text-decoration: none;
  color: var(--green);
}

.highights .uppar p a {
  text-decoration: none;
  color: var(--green);
}

.test-box .heading h6 a {
  text-decoration: none;
  color: var(--light-green);
}

.floor-plan .heading h6 a {
  text-decoration: none;
  color: var(--green);
}

.amenities .heading h6 a {
  text-decoration: none;
  color: var(--green);
}

.Gallery .heading h6 a {
  text-decoration: none;
  color: var(--green);
}

.location .uppar h2 a {
  text-decoration: none;
  color: var(--green);
}

@media (max-width: 767px) {
  .nav-item:after {
    display: none;
  }

  .nav-item::before {
    position: absolute;
    display: block;
    top: 15px;
    left: 0;
    width: 11px;
    height: 1px;
    content: "";

    border: none;
    background-color: #000;
    vertical-align: 0;
  }
}

body.dark .nav-item::before {
  background-color: #fff;
}

.wrapper {
  padding: 0.4%;
  height: 100vh;
  background-color: #fff;
}

.wrapper .inner-wrapper {
  margin: 0 auto;
}

.wrapper .inner-wrapper .main-slider {
}

.wrapper .carousel-inner:before {
  content: "";
  position: absolute;
  width: 100%;
  z-index: 9;
  background: rgb(34, 193, 195, 50%);
  background: linear-gradient(0deg, rgb(0 0 0 / 0%) 0%, rgb(8 14 13 / 62%) 100%);
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.wrapper .carousel-inner:after {
/*  background-color: rgb(0 67 129 / 20%);*/
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
  border-radius: 25px;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.arrow {
  position: absolute;
  bottom: 5%;
  width: 90px;
  left: 8%;
  height: 40px;
  display: flex;
  z-index: 10;

  justify-content: space-between;
}

.arrow .arrow-box {
  width: 40px;
}

.arrow .arrow-box a {
  width: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.arrow .arrow-box img {
  width: 30px;
  padding: 8px;
}

.wrapper .carousel-indicators {
  cursor: pointer;
}

.wrapper .carousel-indicators .active {
  background-color: #fff;
}

.carousel-control-next,
.carousel-control-prev {
  opacity: 0.8;
}

.carousel-indicators {
  display: grid;
  right: 2.5%;
  bottom: 2.5%;
  left: unset;
  margin-right: 0;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #fff;
}

.wrapper .inner-details {
  position: absolute;
  width: 100%;

  top: 0;
  z-index: 9;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);

  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.wrapper .inner-details .inner-sec {
  width: 94%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.wrapper .inner-details .main-details {
  width: 60%;
}

.wrapper .inner-details .form-box {
  width: 30%;
}

.wrapper .inner-details .form-box .inner-box {
  position: relative;
  padding: 50px;
}

.wrapper .inner-details .form-box .inner-box::before {
  background-color: rgba(125, 167, 202, 0.2);

  backdrop-filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}

.wrapper .inner-details .form-box .inner-box .form-control {
  width: 100%;
  height: 50px;
  padding: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: none;

  background-color: #fff;
  outline: none;
  border-radius: 0;
}

.wrapper .inner-details .form-box .inner-box button {
  background-color: var(--green);

  width: 100%;
  height: 50px;
  color: #fff;
  border-radius: 0;
  font-family: "BebasNeue-Regular";

  letter-spacing: 5px;
  font-size: 22px;
  padding-top: 3px;
}

.wrapper .inner-details .form-box .inner-box .form-control::placeholder {
  padding-left: 15px;

  font-family: "BebasNeue-Regular";
  letter-spacing: 2px;
  font-size: 18px;
}

.wrapper .inner-details .form-box .inner-box h4 {
  font-family: "BebasNeue-Regular";

  letter-spacing: 2px;
  padding: 0;
  color: #fff;
  font-size: 45px;
  letter-spacing: 5px;
}

.wrapper .inner-details .form-box .inner-box h6 {
  position: relative;
  margin-bottom: 50px;

  font-family: "Inter-Regular";
  color: #eee;
  letter-spacing: 0.8px;
  font-size: 15px;
}

.wrapper .inner-details .form-box .inner-box h6:before {
  content: "";
  width: 50px;
  height: 4px;

  bottom: -25px;
  left: 0;
  background-color: var(--light-green);

  position: absolute;
}

.slider-text-platter h1 {
  margin-bottom: 0;
  color: #f7f7f7;
  font-family: "BebasNeue-Regular";

  margin-bottom: 20px;
  font-size: 60px;
  text-transform: uppercase;
  line-height: 60px;
  -webkit-animation-delay: 0.4s;

  animation-delay: 0.4s;
  font-weight: 400;
  text-shadow: -2px 2px 2px var(--green);
  letter-spacing: 12px;
}

.slider-text-platter h1 span {
  background-color: var(--green);
  font-size: 20px;
  letter-spacing: 1px;

  text-shadow: 1px 1px var(--green);
  color: #fff;
  padding: 5px 15px;
  letter-spacing: 4px;

  border-bottom-right-radius: 15px;
}

.platter-btn-top {
  background-color: rgb(46 80 74 / 68%);
  text-align: center;

  padding: 10px 25px;
  border: 0;
  border-bottom: 1px solid var(--light-green);
}

.platter-btn-top .call-btn {
  color: #fff;
  font-family: "BebasNeue-Regular";
  letter-spacing: 5px;

  font-size: 36px;
  text-decoration: none;
}

.box-det-platter h2 {
  color: var(--light-green);
  font-family: "BebasNeue-Regular";
  letter-spacing: 5px;

  font-size: 36px;
  text-shadow: -2px 2px 2px var(--green);
}

.box-det-platter h5 {
  color: #fff;
  font-family: "BebasNeue-Regular";
  letter-spacing: 4px;

  font-size: 20px;
  margin-top: 50px;
}

.box-det-platter h3 {
  color: var(--light-green);
  font-family: "BebasNeue-Regular";
  letter-spacing: 10px;

  font-size: 70px;
  text-shadow: -2px 2px 2px var(--green);
}

.box-det-platter h3 span {
}

.box-det-platter ul {
  padding-left: 0;
  list-style-type: none;
  padding-left: 15px;
}

.box-det-platter ul li {
  color: #fff;
  font-family: "Inter-Regular";
  padding-bottom: 5px;

  letter-spacing: 0.8px;
  text-shadow: -2px 2px 2px var(--green);
}

.box-det-platter ul li img {
  width: 18px;
  filter: invert();
}

.box-det-platter h4 {
  color: #fff;
  font-family: "BebasNeue-Regular";
  letter-spacing: 3px;

  font-family: 24px;
}

.about {
  position: relative;
  background-image: url(../images/bg1.jpg);
  width: 100%;

  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  padding: 80px 0px;
}

.about-sec {
  position: relative;
}

.about .container {
  min-width: 80%;
}

.about-sec img {
  position: absolute;
  border: 1px solid #eee;
  padding: 2px;
  width: 100%;
}

.about-text {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);

  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  background-color: #fff;
  padding: 50px;
  margin: 25px 0px;
  margin-left: -120px;
}

.about-text h1 {
  font-family: "BebasNeue-Regular";
  font-size: 46px;
  letter-spacing: 3px;

  color: var(--green);
  position: relative;
  margin-bottom: 28px;
}

.about-text h6 {
  font-family: "BebasNeue-Regular";
  letter-spacing: 4px;
  color: var(--green);
}

.about-text h1:after {
  content: "";
  bottom: -10px;
  left: 0;
  height: 4px;
  width: 40px;

  background-color: var(--green);
  position: absolute;
}

.about-text p {
  color: #666;
  font-family: "Inter-Regular";

  line-height: 26px;

  letter-spacing: 0.2px;
}

.about-text button {
  margin-top: 15px;
}

.btn-all {
  background-color: var(--green);
  color: #fff;
  width: 100%;
  border: none;
  font-family: "BebasNeue-Regular";
  letter-spacing: 3px;
  font-size: 20px;
  line-height: 50px;
  cursor: pointer;
  padding: 0px 50px;
}

.btn-all:hover {
  color: #fff;

  text-decoration: none;
}

.destination-item img {
  transition: 0.5s;
}

.destination-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: rgb(46 80 74 / 0.4);
  border: 1px solid rgb(46 80 74 / 0.6);
  transition: 0.5s;
  z-index: 1;
}

.destination-item:hover .destination-overlay {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-width: 30px;
}

.about-bottom {
  padding-top: 70px;
}

div.banner {
  width: 100%;
  min-height: 70vh;
  background-image: url("../images/parallex-bg.jpg");

  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slider-test {
  width: 40%;
  margin: 0 auto;
}

.test-box {
  background-color: rgba(0, 0, 0, 0.2);
  height: 100%;
  padding: 5% 0px;

  width: 100%;
}

.test-box .box {
  border: 1px solid var(--light-green);
  border-radius: 25px;
  padding: 40px 25px;
  color: #fff;
  text-align: center;
  margin-bottom: 35px;
}

.test-box .heading {
  color: #fff;
  text-align: center;
  padding-bottom: 40px;
}

.test-box .heading h1 {
  font-family: "BebasNeue-Regular";
  font-size: 46px;

  letter-spacing: 5px;

  color: #fff;
  position: relative;
  margin-bottom: 28px;
}

.test-box .heading h6 {
  font-family: "BebasNeue-Regular";
  letter-spacing: 4px;
  color: var(--light-green);
}

.test-box .heading h1:after {
  content: "";
  bottom: -15px;
  left: 0;
  height: 2px;
  width: 40px;

  background-color: #fff;
  position: absolute;

  right: 0;
  margin: 0 auto;
}

.test-box .box h4 {
  font-family: "BebasNeue-Regular";
  letter-spacing: 4px;

  color: var(--light-green);
}

.test-box .box h2 {
  font-family: "BebasNeue-Regular";
  letter-spacing: 4px;

  color: #fff;
  font-size: 40px;
  padding: 15px;
}

.test-box .box h5 {
  font-family: "Inter-Regular";
  letter-spacing: 0.6px;

  color: #fff;
  font-size: 16px;
  padding: 4px 0px;
}

.test-box .box button {
  padding: 0px;
  margin-top: 15px;
  background-color: var(--light-green);
  color: var(--green);
}

.footer {
  position: relative;
  background-image: url(../images/slider/banner1.webp);
  width: 100%;
  background-repeat: no-repeat;
  padding: 50px 0px;
  padding-top: 50px;
  background-position: right;
  background-size: cover;
}

.footer .inner-footer {
  position: relative;
  width: 83.5%;
  margin: 0 auto;
}

.footer .bg-color {
  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  top: 0;

  background: linear-gradient(180deg, rgb(0 0 0 / 29%) 0%, rgb(5 8 8) 100%);
}

.footer .bg-color2 {
  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  top: 0;

  background: linear-gradient(
    180deg,
    rgb(46 80 74 / 56%) 0%,
    rgb(46 80 74 / 93%) 100%
  );
}

.footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h1 {
  color: #fff;
  font-family: "BebasNeue-Regular";

  margin-bottom: 50px;
  font-size: 60px;
  text-transform: uppercase;
  line-height: 80px;
  -webkit-animation-delay: 0.4s;

  animation-delay: 0.4s;
  font-weight: 400;
  letter-spacing: 12px;
  position: relative;
}

.footer h1:after {
  content: "";
  width: 50px;
  height: 4px;
  bottom: -35px;
  left: 0;
  background-color: #fff;

  position: absolute;
}

.footer .address {
  display: flex;
  width: 80%;
  color: #fff;
  padding-bottom: 20px;
}

.footer .address .box {
  width: 28%;
}

.footer .address .box:last-child {
  width: 40%;
}

.footer .address .box h6 {
  margin-top: 40px;
  font-family: "BebasNeue-Regular";
  letter-spacing: 5px;
  font-size: 18px;

  padding-bottom: 5px;
  margin-bottom: 0;
}

.footer .address .box h4 {
  font-family: "Inter-Light";
  font-size: 17px;
  padding-top: 10px;
  line-height: 32px;

  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 1);
}

.footer .address .box h4 a {
  color: #fff;
}

.footer .footer-link {
  display: flex;
  justify-content: space-between;
  padding-top: 0px;
}

.footer .footer-link .link-box {
  width: 25%;
}

.footer .footer-link .link-box:nth-child(2) {
  padding-left: 5%;
}

.footer .footer-link .link-box:nth-child(3) {
  padding-left: 5%;
}

.footer .footer-link .link-box ul {
  padding-left: 0;
  list-style-type: none;
}

.footer .footer-link .link-box ul li a {
  color: rgba(255, 255, 255, 0.9);
  line-height: 30px;
  padding-left: 5px;

  letter-spacing: 0.5px;
  font-family: "Inter-Light";
}

.footer .footer-link .link-box ul li a:hover {
  text-decoration: none;
}

.footer .footer-link .link-box ul li:before {
  content: "\f105";
  font-family: fontAwesome;
  font-size: 14px;
  color: #fff;
}

.footer .footer-link .link-box h6 {
  font-family: "BebasNeue-Regular";
  letter-spacing: 5px;
  font-size: 18px;

  padding-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.footer .footer-link .link-box p {
  font-family: "Inter-Light";
  font-size: 17px;
  line-height: 32px;

  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.footer .footer-link .link-box h2 {
  font-family: "Inter-Light";
  font-size: 17px;
  padding-bottom: 0px;
  line-height: 30px;

  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
}

.footer .footer-link .link-box .form-control {
  width: 100%;
  height: 50px;
  padding: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: none;

  background-color: #f7f7f7;
  outline: none;
  border-radius: 0;
}

.footer .footer-link .link-box .form-control::placeholder {
  font-family: "BebasNeue-Regular";
  letter-spacing: 2px;

  font-size: 18px;
  padding-left: 15px;
}

.footer .footer-link .link-box button {
  border: 1px solid #f7f7f7;
  color: #f7f7f7;
  padding: 10px 50px;
  font-family: "BebasNeue-Regular";

  background-color: transparent;
  border-radius: 0;
  letter-spacing: 4px;
  margin-top: 5px;
  font-size: 18px;
  width: 100%;

  transition: 0.2s;
}

.footer .footer-link .link-box .box-input {
  max-height: 150px;
  overflow-y: scroll;
}

.footer .footer-link .link-box .box-input img {
  width: 98%;
}

.footer .footer-link .link-box .box-input .link-down {
  height: 50px;
}

.footer .footer-link .link-box .top-bx {
  position: relative;
}

.footer .footer-link .link-box .top-bx .link-down {
  position: absolute;
  top: 5px;

  right: 11px;
}

.footer .footer-link .link-box .top-bx .link-down a {
  padding: 5px 15px;

  background-color: rgba(24, 62, 96, 0.8);
  color: #fff;
  font-family: "BebasNeue-Regular";

  letter-spacing: 2px;
}

.footer .footer-link .link-box .box-input::-webkit-scrollbar {
  width: 1px;
}

/* Track */

.footer .footer-link .link-box .box-input::-webkit-scrollbar-track {
  background: var(--green);
}

/* Handle */

.footer .footer-link .link-box .box-input::-webkit-scrollbar-thumb {
  background: var(--light-green);
}

/* Handle on hover */

.footer .footer-link .link-box .box-input::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.footer-bottom {
  padding-top: 5px;
}

.footer-bottom .inner-footer-bottom {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.footer-bottom .inner-footer-bottom .btm-foot {
  margin-bottom: 0;
  line-height: 15px;

  text-align: center;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);

  color: #fff;
  font-family: "Inter-Light";
  font-size: 11px;
  padding-top: 10px;
}

.footer-bottom .inner-footer-bottom .btm-foot a {
  color: var(--light-green);
}

.featured-properties {
  padding: 50px 0px;
  margin-bottom: 50px;
  margin-top: 25px;
}

.featured-properties .container {
  max-width: 86%;
}

.featured-properties .owl-item {
  padding: 10px;
}

.featured-properties .owl-item .box {
  padding: 0px;
  border-radius: 5px;
  position: relative;
}

.featured-properties .owl-item .box .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  color: #fff;

  background: linear-gradient(
    180deg,
    rgba(25, 62, 94, 0) 0%,
    rgb(46 80 74) 100%
  );

  height: 100%;
  display: grid;
  z-index: 2;

  transition: top 0.35s ease 0s;

  align-items: end;
}

.featured-properties .owl-item .box .overlay .bod-btn {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 1.5s ease 0s;
}

.featured-properties .owl-item .box .overlay .bod-btn button {
  border: 1px solid #fff;
  color: #222;

  padding: 10px 50px;
  font-family: "BebasNeue-Regular";
  background-color: #fff;
  border-radius: 0;
  letter-spacing: 4px;

  margin-top: 25px;
  font-size: 18px;
  transition: 0.2s;
  margin-left: 0;
  cursor: pointer;
}

.featured-properties .owl-item .box .overlay:hover .bod-btn {
  max-height: 660px;
  opacity: 1;
}

.featured-properties button {
  margin: 0 auto;
  display: block;
  margin-top: 40px;
}

.d-v {
  display: block;
}

.m-v {
  display: none;
}

.featured-properties .owl-item .box .overlay .inner-over {
  padding: 25px;
}

.featured-properties .owl-item .box .overlay h5 {
  text-transform: capitalize;
  font-family: "BebasNeue-Regular";

  letter-spacing: 5px;
  font-size: 28px;
  margin-bottom: 0;
}

.featured-properties .owl-item .box .overlay h2 {
  text-transform: capitalize;
  font-family: "BebasNeue-Regular";

  letter-spacing: 5px;
  font-size: 42px;
  margin-bottom: 0;
}

.featured-properties .owl-item .box .overlay h1 {
  font-size: 18px;
  color: #fff;
  letter-spacing: 4px;

  font-family: "BebasNeue-Regular";
  padding-top: 10px;
}

.featured-properties .owl-item .box .overlay h2 span {
  color: var(--light-green);
  font-size: 18px;

  display: grid;
  padding-bottom: 10px;
}

.featured-properties .owl-item .box .overlay h3 {
  font-family: "Inter-Light";
  font-size: 15px;
  line-height: 32px;

  letter-spacing: 0.5px;
  color: #fff;
}

.featured-properties .owl-item .box .overlay h6 {
  text-transform: capitalize;
  font-family: "BebasNeue-Regular";

  letter-spacing: 5px;
  font-size: 20px;
  margin-bottom: 0;
  line-height: 24px;
  color: var(--light-green);
}

.featured-properties .owl-item .box .overlay hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-properties .container h4:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;

  background-color: var(--green);

  width: 5px;
  height: 85%;
}

.featured-properties .owl-theme .owl-nav {
  position: absolute;
  top: -90px;
  right: 0px;
}

.featured-properties .owl-carousel .owl-nav button.owl-next {
  font-size: 46px;
  outline: 0;
}

.featured-properties .owl-carousel .owl-nav button.owl-prev {
  font-size: 46px;
  outline: 0;
}

.featured-properties .container h4 {
  font-size: 45px;
  font-family: "BebasNeue-Regular";
  margin-left: 12px;

  margin-bottom: 30px;

  color: #272727;
  margin-bottom: 40px;
  text-transform: uppercase;
  line-height: 40px;

  font-weight: 400;
  letter-spacing: 10px;
  position: relative;
  padding-left: 20px;
}

.featured-properties .owl-theme .owl-dots {
  display: none;
}

.featured-properties .container h4:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;

  background-color: var(--green);

  width: 5px;
  height: 85%;
}

.floor-plan {
  background-color: #e2edf5;
  width: 100%;
  padding-left: 5%;
  margin-top: 40px;
}

.floor-plan .floor-plan-content {
  background-color: #fff;
  width: 100%;
  padding: 0% 5%;
  margin: 100px 0px;
}

.floor-plan .heading h1 {
  font-family: "BebasNeue-Regular";
  font-size: 46px;

  letter-spacing: 5px;
  color: var(--green);
  position: relative;
  margin-bottom: 28px;
}

.floor-plan .heading h6 {
  font-family: "BebasNeue-Regular";
  letter-spacing: 4px;

  color: var(--green);
}

.floor-plan .heading h1:after {
  content: "";
  bottom: -15px;
  left: 0;
  height: 4px;
  width: 40px;

  background-color: var(--green);
  position: absolute;
}

.floor-btn {
  position: absolute;

  left: 50%;

  top: 58%;

  width: 50%;

  transform: translate(-50%, -50%);
}

.floor-plan .heading p {
  color: #666;
}

.floor-plan .heading {
  padding-bottom: 80px;
}

.floor-plan .heading .line {
  width: 400px;
  height: 1px;
  background-color: #ddd;
}

.floor-plan .heading .line2 {
  width: 50px;
  height: 4px;
  background-color: #299539;
  margin-top: -2px;
}

.last-d {
  display: grid;
  align-items: end;
}

.floor-plan .floor-plan-content h4 {
  display: grid;
  font-size: 24px;

  font-family: "BebasNeue-Regular";
  letter-spacing: 2px;
}

.floor-plan .floor-plan-content h4 span {
  display: grid;
  font-size: 18px;

  padding: 10px 0px;
  color: #666;
}

.floor-plan .floor-plan-content .box {
  padding: 0px 10px;
  position: relative;
}

.floor-plan .floor-plan-content .box1 img {
  border: 1px solid #eee;
  margin-left: 25px;
  padding: 2px;
}

.floor-plan .floor-plan-content .p-img {
  padding: 0px 25px;
  padding-top: 55px;
  border: 1px solid #eee;
  padding: 2px;
}

.highights .uppar h2 {
  font-family: "BebasNeue-Regular";
  font-size: 52px;

  letter-spacing: 3px;
  line-height: 65px;

  color: var(--green);
  position: relative;
  margin-bottom: 28px;
}

.highights .uppar p {
  font-family: "BebasNeue-Regular";
  letter-spacing: 4px;
  color: var(--green);
}

.highights .uppar h2:after {
  content: "";
  bottom: -15px;
  left: 0;
  height: 4px;
  width: 40px;

  background-color: var(--green);
  position: absolute;
}

.highights {
  padding: 100px 0px;
}

.highights .heading {
  width: 75%;
  padding: 50px 0px;

  margin: 0 auto;
}

.highights .inner-high {
  display: flex;
  justify-content: space-between;
  width: 77.5%;

  margin: 0 auto;
  height: 100%;
}

.highights .inner-high .left {
  width: 56%;
  padding-right: 4%;
}

.highights .inner-high .right {
  width: 40%;
}

.highights .inner-high .right img {
  height: 100%;
  object-fit: cover;

  border: 1px solid #eee;
  padding: 2px;
}

.highights .bottom .points {
  padding-top: 10px;
}

.highights .bottom .points .point-box {
  display: flex;
  margin: 10px 0px;
}

.highights .bottom .points .point-box span {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  font-family: "BebasNeue-Regular";
  padding: 8px 5px;
  font-size: 22px;
  width: 50px;
  height: 50px;
  margin-right: 25px;
  border: 1px solid var(--green);
  text-align: center;
  display: grid;
  align-items: center;
  border-radius: 20px;
  background-color: #fff;
}

.highights .bottom .points .point-box p {
  display: grid;
  align-items: center;
  font-family: "Inter-Medium";

  line-height: 26px;
  font-size: 16px;
  color: #666;
  padding-top: 10px;
  width: calc(100% - 60px);

  font-family: "Inter-Light";
}

.location .uppar h2 {
  font-family: "BebasNeue-Regular";
  font-size: 52px;

  letter-spacing: 3px;
  line-height: 65px;

  color: var(--green);
  position: relative;
  margin-bottom: 28px;
}

.location .uppar p {
  font-family: "BebasNeue-Regular";
  letter-spacing: 3px;
  color: var(--green);
}

.location .uppar h2:after {
  content: "";
  bottom: -15px;
  left: 0;
  height: 4px;
  width: 40px;

  background-color: var(--green);
  position: absolute;
}

.location {
  padding: 100px 0px;
}

.location .heading {
  width: 75%;
  padding: 50px 0px;

  margin: 0 auto;
}

.location .inner-high {
  display: flex;
  justify-content: space-between;
  width: 81%;

  margin: 0 auto;
  height: 100%;
}

.location .inner-high .left {
  width: 50%;
  padding-left: 3%;
}

.location .inner-high .right {
  width: 50%;
}

.location .inner-high .right img {
  height: 100%;
  object-fit: cover;

  border: 1px solid #eee;
  padding: 2px;
}

.location .bottom .points {
  padding-top: 10px;

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;
}

.location .bottom .points .point-box {
  display: flex;
  margin: 10px 0px;
  width: 47%;
  align-items: center;
}

.location .bottom .points .point-box span {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  font-family: "BebasNeue-Regular";
  padding: 8px 5px;
  font-size: 32px;
  width: 50px;
  height: 50px;
  margin-right: 25px;
  border: 1px solid var(--green);
  text-align: center;
  display: grid;
  align-items: center;
  border-radius: 20px;
  background-color: #fff;
}


.location .bottom .points .point-box p {
  display: grid;
  align-items: center;
  font-family: "Inter-Medium";
  line-height: 26px;
  font-size: 16px;
  color: #666;
  padding-top: 10px;
  width: calc(100% - 60px);
  font-family: "Inter-Light";
}


.contact-deta {
  position: relative;
  background-image: url(../../images/bg-contact.jpg);
  width: 100%;
  background-repeat: no-repeat;

  background-position: right;
  background-size: cover;
}

.contact-deta .inner-detail {
  position: relative;
  width: 70%;
  padding: 50px;
  margin: 0 auto;
}

.contact-deta .inner-detail .box {
  display: flex;
  justify-content: space-between;
}

.contact-deta .inner-detail .box .img-box img {
  width: 100%;
}

.contact-deta .inner-detail .box .left-sec {
  width: 50%;
  display: grid;
  align-items: center;
}

.contact-deta .inner-detail .box .right-sec {
  width: 40%;
}

.contact-deta .inner-detail .box .left-sec h2 {
}

.contact-deta .inner-detail .box .right-sec .form-sec {
  display: grid;
}

.contact-deta .inner-detail .box .right-sec .form-sec .form-control {
  padding: 12px;
  border-radius: 0;

  background-color: #f7f7f7;
  margin-bottom: 15px;
}

.contact-deta .inner-detail .box .right-sec .form-sec h4 {
  font-family: "BebasNeue-Regular";
  font-size: 18px;

  letter-spacing: 1px;
  padding-top: 25px;
}

.contact-deta .inner-detail .box .right-sec .inner-box {
  background-color: rgba(255, 255, 255, 0.9);

  padding: 50px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-deta .inner-detail .box .right-sec .form-sec button {
  margin-top: 25px;

  background-color: var(--green);
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  padding: 9px 15px;

  letter-spacing: 4px;
  font-family: "BebasNeue-Regular";
  border-radius: 0;
  width: 100%;
  border: 0;
}

.contact-deta .inner-detail h2 {
  color: var(--green);
  font-family: "BebasNeue-Regular";
  font-size: 40px;

  text-transform: uppercase;
  line-height: 60px;

  font-weight: 400;
  letter-spacing: 5px;
  position: relative;
}

.contact-deta .inner-detail p {
  font-family: "Inter-Regular";
  font-size: 18px;

  color: #666;
}

.destination-item.position-relative.overflow-hidden.mb-2 {
  margin-bottom: 25px !important;
}

.amenities {
  background-color: #e2edf5;
}

.amenities .container {
  min-width: 82%;
}

.amenities .heading {
  text-align: center;
  padding-bottom: 35px;
}

.amenities .heading h1 {
  font-family: "BebasNeue-Regular";
  font-size: 46px;

  letter-spacing: 5px;

  color: var(--green);
  position: relative;
  margin-bottom: 28px;
}

.amenities .heading h6 {
  font-family: "BebasNeue-Regular";
  letter-spacing: 4px;

  color: var(--green);
}

.amenities .heading h1:after {
  content: "";
  bottom: -15px;
  left: 0;
  height: 2px;
  width: 40px;

  background-color: var(--green);
  position: absolute;

  right: 0;
  margin: 0 auto;
}

.amenities .destination-item h5 {
  font-family: "BebasNeue-Regular";
  letter-spacing: 3px;

  font-size: 24px;
  text-align: center;
}

.amenities .destination-item a {
  text-decoration: none;
}

.Gallery {
  background-color: #eee;
  padding: 80px 0px;
}

.Gallery .container {
  min-width: 82%;
}

.Gallery .heading {
  text-align: center;
  padding-bottom: 15px;
}

.Gallery .heading h1 {
  font-family: "BebasNeue-Regular";
  font-size: 46px;

  letter-spacing: 5px;

  color: var(--green);
  position: relative;
  margin-bottom: 28px;
}

.Gallery .heading h6 {
  font-family: "BebasNeue-Regular";
  letter-spacing: 3px;
  color: var(--green);
}

.Gallery .heading h1:after {
  content: "";
  bottom: -15px;
  left: 0;
  height: 2px;
  width: 40px;

  background-color: var(--green);
  position: absolute;

  right: 0;
  margin: 0 auto;
}

.modal {
  z-index: 99999;
}

.modal-body {
  background-color: #fff;
  opacity: 1;
  align-items: center;
  text-align: center; /* padding: 50px; */
}

/* .modal-body img{width: 200px;} */

.modal-body h2 {
  font-family: "BebasNeue-Regular";
  font-size: 30px;
  letter-spacing: 2px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.modal-body h6 {
  font-family: "Inter-Medium";
  font-size: 16px;
  padding-top: 0;
}

.modal-body h4 {
  color: var(--green);
  text-align: center;
  border-radius: 50px;
  font-family: "BebasNeue-Regular";
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.modal-body .form-control {
  border: 0.5px solid #ccc;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;

  border-radius: 0px;
  padding: 15px 25px;
  margin-bottom: 10px;
}

.modal-body .form-control::placeholder {
  color: #222;
}

.modal .close {
  color: #222;
  opacity: 1;
  right: 15px;
  position: absolute;
  z-index: 9999999 !important;
  top: 15px;

  padding: 6px 10px;
  border-radius: 50px;
  padding-top: 3px;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
}

.modal-body button {
  padding: 0;
  border-radius: 0;
}

.mobile-form {
  display: none;
}

.mobile-section_1 {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}

.mobile-section {
  display: flex;
  width: 100%;
  align-items: center;
  background: #2f2f2f;
  z-index: 999;
}

.mobile-section .btn-success {
  color: #071c35;
  background-color: #fff;
  border-color: #fff;
  font-size: 13px;
  padding: 7px;
  font-weight: 600;
}

.mobile-section a {
  padding: 5px;
  width: 100%;
  border-radius: 0;
}

.point-box span img{
  margin-left: 7px;
  width: 22px;
}

@media (max-width: 1500px) {
  .slider-text-platter h1 {
    font-size: 36px;
    letter-spacing: 3px;
    line-height: 48px;
  }

  .navbar .container {
    min-width: 100%;
    padding: 0px 0px;
}

  .wrapper .inner-details .form-box .inner-box h4 {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .wrapper .inner-details .form-box {
    width: 35%;
  }

  .wrapper .inner-details .form-box .inner-box {
    padding: 25px;
  }

  .platter-btn-top .call-btn {
    letter-spacing: 3px;
    font-size: 28px;
  }

  .wrapper .inner-details .form-box .inner-box .form-control {
    height: 40px;
  }

  .wrapper .inner-details .form-box .inner-box button {
    height: 44px;
    padding-top: 0;

    padding-bottom: 15px;
    line-height: 46px;
  }

  .box-det-platter ul {
    padding-top: 10px;
  }

  .box-det-platter h5 {
    margin-top: 25px;
  }

  .slider-text-platter h1 span {
    font-size: 17px;
    letter-spacing: 2px;
  }

  .wrapper .inner-details {
    top: 56%;
  }

  .navbar {
    padding-top: 10px;
  }

  .navbar-brand img {
    width: 200px;
  }

  .highights .uppar h2 {
    font-size: 42px;
    line-height: 54px;
  }

  .highights .inner-high {
    width: 82%;
  }

  .Gallery .container {
    min-width: 84%;
  }

  .featured-properties .owl-item .box .overlay h5 {
    text-transform: capitalize;
    font-family: "BebasNeue-Regular";

    letter-spacing: 3px;
    font-size: 28px;
    margin-bottom: 0;
  }

  .contact-deta .inner-detail {
    width: 90%;
  }

  .amenities .container {
    min-width: 85%;
  }

  .location .inner-high {
    width: 83%;
  }

  .footer .address {
    width: 75%;
  }

  .footer .inner-footer {
    width: 90%;
  }

  .footer .footer-link .link-box p {
    font-size: 15px;
    line-height: 28px;
  }

  .footer .footer-link .link-box:nth-child(2) {
    padding-left: 8%;
  }

  .footer .footer-link .link-box:nth-child(3) {
    padding-left: 6%;
  }

  .box-det-platter h2 {
    font-size: 31px;
  }

  .box-det-platter h3 {
    letter-spacing: 5px;

    font-size: 54px;
  }

  .about-text {
    padding: 37px;
  }

  .about-text h1 {
    font-size: 40px;
  }

  .floor-btn {
    width: 63%;

    padding: 0;

    margin-bottom: 0;
  }

  .location .bottom .points .point-box span {
    margin-right: 16px;
    min-width: 50px;
  }

  .location .bottom .points .point-box {
    margin: 10px 0px;
    width: 49%;
  }

  .mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 30px !important;
  }
}

@media (max-width: 1368px) {
  .contact-deta .inner-detail .box .left-sec {
    width: 45%;
  }

  .navbar .container {
    min-width: 100%;
    padding: 0px 0px;
}

  .contact-deta .inner-detail .box .right-sec {
    width: 46%;
  }

  .footer .footer-link {
    padding-top: 22px;
  }

  .footer .address {
    padding-bottom: 22px;
  }

  .footer h1 {
    letter-spacing: 10px;
  }

  .footer-bottom {
    padding-top: 0px;
  }

  .footer .footer-link .link-box h2 {
    font-size: 15px;
  }

  .footer .address .box h4 {
    font-size: 15px;
  }

  .footer .footer-link .link-box ul li a {
    font-size: 14px;
  }

  .footer .footer-link .link-box p {
    font-size: 14px;
    line-height: 26px;
  }

  .footer h1 {
    margin-bottom: 35px;
    font-size: 55px;
    line-height: 50px;
    letter-spacing: 8px;
  }

  .wrapper .inner-details .form-box {
    width: 26%;
  }

  .about-text p {
    font-size: 14px;
  }

  .location .uppar h2,
  .Gallery .heading h1,
  .amenities .heading h1 {
    font-size: 40px;
  }

  .contact-deta .inner-detail .box .right-sec .form-sec button {
    line-height: 41px;

    margin-top: unset;
  }

  .contact-deta .inner-detail p {
    font-size: 16px;
  }

  .offer-patch {
    bottom: 76%;
    right: 68%;
    max-width: 70px;
  }

  .slider-text-platter h1 {
    font-size: 42px;
    line-height: 40px;
    margin-bottom: 5px;
  }

  .box-det-platter ul {
    padding-left: 15px;
  }
}

@media (max-width: 1280px) {
  .footer .address {
    width: 85%;
  }

  .footer .footer-link .link-box:nth-child(1) {
    width: 30%;
  }

  .footer .footer-link .link-box:nth-child(2) {
    padding-left: 5%;
  }

  .footer .footer-link .link-box:nth-child(3) {
    padding-left: 4%;
  }

  .footer .footer-link .link-box:nth-child(4) {
    width: 30%;
  }

  .box-det-platter h5 {
    margin-top: 12px;
  }
  .wrapper .inner-details {
    top: 60%;
  }

  .slider-text-platter h1 {
    line-height: 50px;
  }
}

@media (max-width: 768px) {
  .modal.show .modal-dialog {
    min-width: unset !important;
  }

  .wrapper .inner-details .main-details {
    width: 100%;
  }

  .navbar {
    background: var(--green);
  }

  .navbar-light .navbar-nav .active > .nav-link,
  .navbar-light .navbar-nav .nav-link.active,
  .navbar-light .navbar-nav .nav-link.show,
  .navbar-light .navbar-nav .show > .nav-link {
    color: #fff;
  }

  .nav-item {
    border-bottom: 1px dashed #3a3a3a;
  }

  .nav-item::before {
    display: none;
  }

  .nav-item {
    padding-left: 0 !important;
  }

  .nav-item.active .nav-link {
    padding-left: 0;
  }

  .nav-item .nav-link {
    padding-left: 0;
  }

  .nav-item {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  }

  .contact-deta .inner-detail .box {
    display: block;
  }

  .contact-deta .inner-detail .box .right-sec {
    width: 100%;
  }

  .wrapper .inner-details .desktop {
    display: none;
  }

  .mobile-form {
    display: block;
    padding: 50px;
  }

  .mobile-form {
    background-color: rgba(125, 167, 202, 0.2);

    padding: 50px;
    backdrop-filter: blur(10px);
  }

  .mobile-form .inner-box .form-control {
    width: 100%;
    height: 50px;
    padding: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: none;

    background-color: #fff;
    outline: none;
    border-radius: 0;
  }

  .mobile-form .inner-box {
    padding-top: 25px;
  }

  .mobile-form .inner-box button {
    background-color: var(--green);

    width: 100%;
    height: 50px;
    color: #fff;
    border-radius: 0;
    font-family: "BebasNeue-Regular";

    letter-spacing: 5px;
    font-size: 22px;
    padding-top: 2px;
  }

  .mobile-form .inner-box .form-control::placeholder {
    padding-left: 15px;

    font-family: "BebasNeue-Regular";
    letter-spacing: 2px;
    font-size: 18px;
  }

  .mobile-form .inner-box h4 {
    font-family: "BebasNeue-Regular";

    letter-spacing: 2px;
    padding: 0;
    color: #222;
    font-size: 36px;
    letter-spacing: 5px;
  }

  .mobile-form .inner-box h6 {
    position: relative;
    margin-bottom: 50px;

    font-family: "Inter-Regular";
    color: #666;
    letter-spacing: 0.8px;
    font-size: 15px;
  }

  .mobile-form .inner-box h6:before {
    content: "";
    width: 50px;
    height: 4px;

    bottom: -25px;
    left: 0;
    background-color: var(--green);

    position: absolute;
  }

  .platter-btn-top .call-btn {
    font-family: "BebasNeue-Regular";
  }

  .about-sec {
    display: block;
  }

  .about-text {
    margin-left: 0px;
  }

  .about {
    padding-top: 0;
    padding-bottom: 25px;
  }

  .about .col-lg-6.pt-5.pb-lg-5 {
    padding-top: 10px !important;
  }

  .about .container {
    min-width: 95%;
  }

  .highights .inner-high {
    display: block;
  }

  .highights .inner-high .left {
    width: 100%;
    padding-right: 0%;
  }

  .highights .inner-high .right {
    width: 100%;
    padding-top: 25px;
  }

  .test-box .box {
    margin: 25px;
  }

  .floor-plan .floor-plan-content .box1 {
    display: none;
  }

  .floor-plan .floor-plan-content .box {
    margin-bottom: 25px;
  }

  .destination-item.position-relative.overflow-hidden.mb-2 {
    margin-bottom: 25px !important;
  }

  #gallery .box {
    margin-bottom: 25px !important;
  }

  .Gallery {
    padding-bottom: 7px;
  }
  .location {
    padding: 50px 0px;
}
.location .bottom .points .point-box span {
  width: 92px;
}
.location .bottom .points .point-box span {
  min-width: 92px;
}
  .location .inner-high {
    display: block;
  }

  .location .inner-high .left {
    width: 100%;
    margin-top: 25px;
    padding-left: 0;
  }

  .location .inner-high .right {
    width: 100%;
  }

  .location .inner-high .right img {
    height: 250px;
  }

  .contact-deta .inner-detail .box .left-sec {
    width: 100%;
  }

  .contact-deta .inner-detail {
    width: 97%;
  }

  .footer {
    background-image: unset;
    background-color: var(--green);
    height: auto;
  }

  .footer .bg-color {
    position: unset;
  }

  .footer .inner-footer {
    position: unset;
    transform: unset;
    padding: 50px;
    width: 100%;
    padding-top: 70px;

    padding-bottom: 0;
  }

  .footer .bg-color2 {
    position: unset;
  }

  .footer .footer-link {
    flex-wrap: wrap;
  }

  .footer .footer-link .link-box:nth-child(1) {
    width: 100%;
    padding-bottom: 25px;
  }

  .footer .footer-link .link-box:nth-child(2) {
    padding-left: 0%;
    width: 30%;
  }

  .footer .footer-link .link-box:nth-child(3) {
    padding-left: 0%;
    width: 30%;
  }

  .footer .footer-link .link-box:nth-child(4) {
    width: 40%;
  }

  .footer .address {
    width: 100%;
  }

  .floor-plan {
    padding-left: 0;
  }

  .location .bottom .points .point-box {
    width: 100%;
  }

  .mobile-section_1 {
    display: block;
  }

  .wrapper {
    padding: unset;
    height: 100%;
  }

  .slider-text-platter h1 span {
    padding: 8px 11px 3px;
  }

  .wrapper .inner-details .inner-sec {
    width: 89%;
  }

  .wrapper .inner-details {
    top: 50%;
  }

  .arrow {
    bottom: 9%;
  }

  .carousel-indicators {
    bottom: 7.5%;
  }

  .modal-body {
    /* padding: 32px; */
  }

  .platter-btn-top {
    background-color: rgb(46 80 74 / 100%);

    padding: 10px 15px;
  }

  .platter-btn-top .call-btn {
    font-size: 23px;
  }

  .about-sec img {
    position: relative !important;
  }

  .about .container {
    min-width: 100%;

    padding: 0;
  }

  .about-text {
    padding: 20px;
  }

  .highights .uppar h2 {
    font-size: 26px;

    line-height: 36px;
  }

  .highights .bottom .points .point-box span {
    margin-right: 15px;
  }

  .floor-plan .heading h1 {
    font-size: 39px;

    margin-bottom: 15px;
  }

  .floor-plan .heading {
    padding-bottom: 45px;
  }

  .location .uppar h2,
  .Gallery .heading h1,
  .amenities .heading h1 {
    font-size: 24px;
  }

  .featured-properties .container h4 {
    font-size: 36px;
  }

  .navbar .navbar-collapse {
    height: calc(100vh - 80px) !important;
  }

  .modal-body img {
    width: 100%;
    height: auto;
  }

  .modal-body .form-control {
    padding: 8px 25px;
  }

  .btn-all {
    font-size: 18px;
    line-height: 45px;
    padding: 10px 50px;
  }

  .qr_sec {
    text-align: center;
  }

  .agent_rera {
    text-align: center;
  }

  .offer-patch {
    bottom: 55%;
    right: 11%;
}
}

@media (max-width: 575px) {
  .contact-deta .inner-detail .box .img-box {
    padding: 0px 30px;
  }
  .box-det-platter ul {
    text-align: left;
}
.box-det-platter h2 {
  font-size: 22px;
  letter-spacing: 3px;
}
.slider-text-platter h1 {
  line-height: 33px;
  flex-direction: column-reverse;
  display: flex;
}
  .highights {
    padding: 50px 0px;
  }
  .highights .bottom .points .point-box {
    height: 78px;
}
.floor-plan .floor-plan-content {
  margin: 0px 0px;
}
  .navbar {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar .navbar-collapse {
    height: calc(100vh - 80px) !important;
  }

  .contact-deta .inner-detail {
    width: 100%;
  }

  .contact-deta .inner-detail {
    padding: 0px 0px;
  }

  .contact-deta .inner-detail .box .right-sec .inner-box {
    padding: 28px;
  }

  .contact-deta .inner-detail .box .right-sec .inner-box {
    box-shadow: none;
  }

  .footer .footer-link .link-box:nth-child(2) {
    padding-left: 0%;
    width: 50%;
  }

  .footer .footer-link .link-box:nth-child(3) {
    padding-left: 0%;
    width: 50%;
  }

  .footer .footer-link .link-box:nth-child(4) {
    width: 100%;
  }

  .footer-bottom .inner-footer-bottom {
    display: block;
    padding-bottom: 0px;
  }

  .footer-bottom .inner-footer-bottom p {
    margin-bottom: 0;
    line-height: 20px;
    text-align: center;
  }

  .footer .address {
    padding-bottom: 0px;
  }

  .footer .footer-link {
    padding-top: 15px;
  }

  .footer .address {
    flex-wrap: wrap;
  }

  .footer .address .box {
    width: 100%;
  }

  .footer .address .box h6 {
    margin-top: 20px;
  }

  .footer .address .box h4 {
    padding-top: 0;
  }

  .footer h1 {
    margin-bottom: 40px;
    font-size: 36px;
    line-height: 15px;
    letter-spacing: 4px;
  }

  .footer .inner-footer {
    padding: 30px 35px;
    padding-top: 6px;
  }

  .footer .address .box:last-child {
    width: 61%;
  }

  .d-v {
    display: none;
  }

  .m-v {
    display: block;
  }
  .carousel-item img {
    min-height: 350px;
    border-radius: 0px;
}
.carousel, .carousel-inner, .carousel-item {
  border-radius: 0px;
}
  .box-det-platter h4 {
    color: #fff;
    font-family: "BebasNeue-Regular";
    letter-spacing: 3px;
    font-size: 15px;
  }

  .box-det-platter ul li {
    padding-bottom: 5px;
    letter-spacing: 0.8px;
    font-size: 15px;
  }

  .wrapper .inner-details {
    top: 54%;
    position: unset;
    transform: unset;
    background: #2e504a;
    text-align: center;
}

  .test-box .box h2 {
    font-size: 35px;
  }
}

@media (max-width: 420px) {
  .footer .footer-link .link-box:nth-child(3) {
    width: 100%;
  }
}
