@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap");

:root {
  --primary-color: #094640;
  --secondary-color: #e6b075;
}

body {
  color: #e3e3e3;
  background: linear-gradient(45deg, #094640, #103b3d);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
  font-size: 17px;
}
a,
h1,
h2 {
  color: #fff;
}
a:hover {
  text-decoration: none;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

img {
  width: 100%;
  display: block;
}
.font-weight28 {
  font-weight: 200;
  font-size: 34px;
}
.container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}

.row-gap{
  row-gap: 30px;
}

.filter-white {
  filter: brightness(50);
}
.filter-dark {
  filter: grayscale(1) brightness(0.5);
}
.filter-gold {
  filter: hue-rotate(35deg) brightness(0.9) contrast(5.5);
}

.bg-secondary{
  background-color: var(--secondary-color) !important;
}

.bg-image {
  height: 480px;
  background: center / cover no-repeat fixed;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 35%);
  z-index: -1;
}

/*header*/
.header {
  width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  left: 0px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  border-bottom: 1px solid rgb(255 255 255 / 30%);
  background: #fff4f4c2;
}
.header * {
  transition: all 300ms ease-in-out;
}

.logo { 
  margin: 5px 0;
  position: relative;
  min-height: 1px;
  text-transform: uppercase;
  width: 100px;
  filter: brightness(1.05);
}

.logo h2{
  line-height: 0.6;
  padding-top: 7px;
}

.header.fixed {
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header.fixed .logo h6{
  font-size: 13px;
}
.header.fixed .logo h2{
  font-size: 20px;
}

.header aside {
  display: flex;
  align-items: center;
}

.header ul {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.header ul li {
  display: block;
  margin: 0 5px;
}

.header ul li a {
  display: block;
  color: #000000;
  font-weight:bold;
  padding: 20px 12px 17px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: all 300ms ease-in-out;
}

.header ul li a:hover {
  color: #000;
}

.header ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: all 300ms ease-in-out;
  z-index: -1;
}

.header ul li a:hover::before {
  height: 100%;
}

.enquireBtn a {
  padding: 10px 10px 8px;
  border-radius: 40px;
  background-color: var(--secondary-color);
  color: #000;
  min-width: 120px;
  font-size: 14px;
  text-align: center;
    font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  animation: glowing 1500ms infinite;
    border: 1px solid #ccc;
}

@keyframes glowing {
	0% { background-color: var(--secondary-color); box-shadow: 0 0 3px var(--secondary-color); }
	50% {background-color: #e9b57e;box-shadow: 0 0 40px #ffff00;}
	100% { background-color: var(--secondary-color); box-shadow: 0 0 3px var(--secondary-color); }
}

.enquireBtn a:hover {
  background-color: #fff;
  color: #000;
}

.enquireBtn a i {
  margin-right: 5px;
}
/*header*/

#banner {
  height: calc(100vh - 0px);
  /* margin-top: 68px; */
  position: relative;
  background: var(--primary-color);
  z-index: 1;
}

#banner img {
  height: 100%;
  object-fit: cover;
}

.bannerText {
  position: absolute;
  left: 40px;
  bottom: 10px;
  transform: translateY(-40%);
  width: max-content;
  z-index: 9;
  color: #fff;
  background: #175558d1;
  padding: 16px;
  text-align: center;
}

.bannerText h1,
.bannerText h2 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
  transition: all 300ms linear;
}

.bannerText h1.h1-2nd {
  background-color: rgb(0 0 0 / 85%);
  padding: 6px 7px 0;
  line-height: 1;
  font-size: 23px;
  letter-spacing: 1.5px;
  background: #fff;
  color: #000;
  text-align: center;
}

.bannerText h1 span {
  color: var(--secondary-color);
}

.bannerText h5 {
  display: table;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding-top: 5px;
}

.readmore {
  display: flex;
  margin-top: 25px;
}

.readmore a,
.readmore button {
  display: table;
  padding: 10px 20px 7px;
  background-color: var(--secondary-color);
  color: #000;
  border-radius: 40px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
}

.readmore a:hover,
.readmore button:hover,
.readmore.read-white a,
.readmore.read-white button {
  background-color: #e9b57d;
  box-shadow: 0 0 150px #e9b57e;
  color: #000 !important;
}
.readmore button {
  outline: none;
  border: none;
}
.readmore.read-white button:hover {
  background-color: #fff;
  color: #000;
}

.readmore.read-white a:hover{
	background-color: var(--secondary-color);
}

.scrollDown {
  position: absolute;
  left: calc(50% - 40px);
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 46px;
  text-align: center;
  border-radius: 50%;
  background: url(../images/icons/down.png) center / 50% no-repeat var(--secondary-color);
  cursor: pointer;
  z-index: 9;
  transition: all 300ms ease-in-out;
}
.scrollDown:hover {
  background-color: #ffff00;
    box-shadow: 0 0 100px #ffff00;
}

p {
  font-weight: 400;
  line-height: 1.4;
}

.padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.fixed-form {
  position: fixed;
  bottom: 36%;
  transform: translateY(50%);
  right: 20px;
  width: 320px;
  background: var(--secondary-color);
  color: #000;
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.37);
  border-radius: 10px;
  z-index: 1000;
  transition: all 300ms ease-in-out;
}

.fixed-form .innerform {
  padding: 20px 20px;
  border-radius: 10px;
}

.fixed-form .innerform h6 {
  font-size: 12px;
  text-transform: uppercase;
}

.fixed-form .innerform h3 {
  font-size: 18px;
}

.fixed-form .innerform h3 span {
  font-weight: 700;
font-size: 20px;
}

.fixed-form .form-group {
  margin-bottom: 0;
}

.fixed-form .form-group .form-control {
  color: #000;
  border-bottom-color: #000;
}

.fixed-form .form-group .form-control::placeholder {
  color: #000;
}

.fixed-form .formFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fixed-form .formFooter button {
  border-radius: 30px;
  text-align: center;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 5px 15px 2px;
  border: none;
  margin-top: 10px;
  transition: all 300ms ease-in-out;
  outline: none;
}

.fixed-form .formFooter button:hover {
  background: #fff;
  color: var(--primary-color);
}

.fixed-form.fixed {
  transform: translateY(0%);
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 3px 0 0;
  border-radius: 0;
}

.fixed-form.fixed .innerform {
  padding: 3px 20px;
  border-radius: 0;
}

.fixed-form.fixed .innerform h3,
.fixed-form.fixed .innerform h6 {
  display: none;
}

.fixed-form.fixed .formFooter button {
  margin-top: 0;
}
.fixed-form.fixed .formFooter .chatBtn {
  display: flex;
}

.fixed-form.fixed .col-12 {
  flex: 1 0 0;
}

.fixed-form.fixed .form-group .form-control {
  padding: 5px 0px;
  margin: 0;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}
.headingbtm {
  margin-bottom: 10px;
  font-size: 30px;
text-transform: uppercase;
}
.fontsize20 {
  font-size: 16px;
color: var(--secondary-color);
line-height: 26px;
}
.heading h2,
.heading h4 {
  display: table;
}

.heading h2 {
  font-size: 3vw;
}

.overHeading h2 {
  font-size: 2vw;
  font-weight: 300;
  line-height: 42px;
}

.heading h4 {
  font-size: 2vw;
}

.heading h5 {
  font-size: 20px;
  font-weight: 200;
}

.heading h6 {
  text-transform: uppercase;
  letter-spacing: 5px;
}

.heading.text-center h5 {
  margin-top: 30px;
}

.hm-overview {
  position: relative;
  z-index: 1;
}

.watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: -1;
  filter: grayscale(1);
  opacity: 0.015;
}

.textarea section {
  padding-right: 60px;
}

.stats .statBox {
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.stats .statBox:first-child {
  padding-top: 0;
}

.stats .statBox:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.stats .statBox h2 {
  margin-bottom: 0;
  margin-left: 10px;
  line-height: 0.8;
  font-size: 15px;
}

.stats .statBox h2 span {
  font-size: 19px;
  color: var(--secondary-color);
}

.stats .statBox h6 {
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
  height: 15px;
}

.saperator {
  display: table;
  width: 50%;
  margin: 0 auto;
  height: 1px;
  background: var(--secondary-color);
}

.text-yellow {
  color: var(--secondary-color);
}

.offers {
  display: flex;
justify-content: center;
text-align: center;
margin: 0rem auto;
  margin-bottom: 0rem;
padding: 2rem 0 0 0;
border: solid rgb(255 255 255 / 10%);
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-bottom-style: solid;
  border-bottom-width: medium;
  border-left-width: medium;
border-width: 1px 0;
  border-bottom-width: 1px;
}
.offers2 {
  padding: 20px 14px;
  width: 100%;
}

.offers .offerBox {
  flex-grow: 1;
  border-right: 1px solid rgb(255 255 255 / 10%);
}
.offers .offerBox:nth-last-child(1) {
  border-right: none;
}

.offers .offerBox .img-fluid {
  width: 50px;
  margin: 0 auto 20px;
}
.offers .offerBox .img-fluid img {
  filter: invert(1);
}
.offers2 .offerBox .img-fluid img {
  filter: grayscale(1);
}
.offer-text {
  text-align: center;
  margin-top: 2rem;
}
.offer-text h5 {
  font-weight: 400;
}

.amenitiesContainer {
  text-align: center;
}

.amenitiesContainer p {
  letter-spacing: 10px;
}

.amenitiesContainer .amenIcons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.amenitiesContainer .amenIcons .amenBox {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 10px;
  border: solid rgb(255 255 255 / 10%);
  border-width: 0 1px 1px 0;
}

.amenitiesContainer .amenIcons .amenBox:nth-child(4n) {
  border-right: none;
}

.amenitiesContainer .amenIcons .amenBox:nth-last-child(1),
.amenitiesContainer .amenIcons .amenBox:nth-last-child(2),
.amenitiesContainer .amenIcons .amenBox:nth-last-child(3),
.amenitiesContainer .amenIcons .amenBox:nth-last-child(4) {
  border-bottom: none;
}

.amenitiesContainer .amenIcons .amenBox .img-fluid {
  flex: 0 0 50px;
  max-width: 50px;
  margin-bottom: 10px;
}

.amenitiesContainer .amenIcons .amenBox span {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
}

.plans a{
	display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
	transition: color 300ms linear;
}

.plans a:hover{
    color: var(--secondary-color);
}

.plans a img{
	opacity: 0.75;
	transition: opacity 300ms linear;
}

.plans a:hover img{
	opacity:0.5;
}

.plans .hm-projectname {
    position: absolute;
    width: 100%;
    padding: 0 30px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 1;
}
.plans a .hm-projectname h3 {
    font-size: 2.5vw;
    font-weight: 900;
    margin-bottom: 0;
}

/* location */
.loc-img img {
  height: 100%;
  object-fit: cover;
}

.loc-container .loc-text ul {
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  /* padding-right: 10px; */
}

.loc-container .loc-text ul li {
  width: 50%;
  padding: 15px;
  border: solid rgb(255 255 255 / 15%);
  border-width: 0 1px 1px 0;
}

.loc-container .loc-text ul li:nth-child(2n) {
  border-right: none;
}

.loc-container .loc-text ul li:nth-last-child(1),
.loc-container .loc-text ul li:nth-last-child(2) {
  border-bottom: none;
}

.loc-container .loc-text ul li .loc-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 15px;
}

.loc-container .loc-text ul li .loc-row img {
  flex: 0 0 30px;
  max-width: 30px;
  margin-bottom: 15px;
}

.loc-container .loc-text ul li p {
  margin-bottom: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.loc-container .loc-text ul li .loc-dist {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0;
  color: var(--secondary-color);
}

.loc-container .loc-text ul li .loc-dist small {
  font-size: 14px;
  margin-left: 5px;
}
/* location */

.gal-slider .swiper-slide .galImg {
  height: 450px;
  position: relative;
  background: center / cover no-repeat;
  z-index: 1;
}

.gal-slider .swiper-slide .galImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.gal-slider .gal-caps {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 5px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  -webkit-text-fill-color: transparent;
  background: var(--multi-gradient);
  -webkit-background-clip: text;
  z-index: 9;
}

.gal-slider .swiper-slide .img-type {
  position: absolute;
  right: 10px;
  bottom: 0;
  font-size: 10px;
  color: #fff;
  z-index: 2;
  pointer-events: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
  background: var(--secondary-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  transition: all 300ms ease-in-out;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #ffff00;
  box-shadow: 0 0 100px #ffff00;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
}

.modal-backdrop.show {
  opacity: 1;
  background: rgb(7 0 51 / 81%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-content {
  background: linear-gradient(45deg,#7b6b3a,#00134b 90%);
  box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
  border: none;
  border-radius: 10px;
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 1;
  padding-bottom: 10px;
  font-weight: 200;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: #000;
  opacity: 1;
  text-shadow: none;
  z-index: 1;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: rgb(141, 0, 0);
  color: #fff;
}

.modal-body {
  padding: 25px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  margin-bottom: 0;
}

.form-control {
  font-size: 14px;
  padding: 12px 0;
  height: auto;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 0;
  transition: all 300ms ease;
  margin: 5px 0;
}

.form-control:focus {
  background-color: transparent;
  border-bottom-color: var(--secondary-color);
  box-shadow: none;
  color: #fff;
}

.form-control::placeholder {
  color: #fff;
}
textarea.form-control {
  resize: none;
}

.modal-body label {
  color: var(--secondary-color);
}

.modal-body .form-control {
  margin: 0;
  padding-top: 0;
}

.modal-body .form-control:focus {
  border-bottom-color: rgba(0 0 0 / 20%);
  border-bottom-color: var(--secondary-color);
}

.object-fit-cover {
  object-fit: cover;
}

.enquiry-container{
  background-color: var(--primary-color);
  padding: 2rem;
}

/*Footer*/
.footer-area {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: url(../images/footer_background.jpg) center no-repeat;
  background-size: cover;
}

.footer-area a {
  color: #fff;
  font-size: 14px;
  transition: all 300ms ease-in-out;
}

.footHead {
  margin-bottom: 3rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
}

.footLogo {
  width: 200px;
}

.footAddress {
  margin-bottom: 2.6rem;
}

.footAddress li {
  padding: 5px 0;
}

.footAddress li a {
  display: flex;
  align-items: center;
  color: #fff;
}

.footAddress li a i {
  flex-basis: 25px;
  font-size: 17px;
  color: var(--gold);
  transition: all 300ms ease-in-out;
}

.footAddress li a:hover {
  color: var(--gold);
}

.footAddress li a:hover i {
  color: #fff;
}

.footerSocial {
  color: #fff;
}

.footerSocial p {
  font-size: 14px;
}

.footerSocial ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: center;
}

.footerSocial ul li {
  margin-right: 5px;
}

.footerSocial ul li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
  color: #fff;
  background-image: -webkit-linear-gradient(
    315deg,
    #c39f75 0%,
    #a47947 25%,
    #a47947 50%,
    #c39f75 75%,
    #8b673d 100%
  );
  background-image: -moz-linear-gradient(
    315deg,
    #c39f75 0%,
    #a47947 25%,
    #a47947 50%,
    #c39f75 75%,
    #8b673d 100%
  );
  background-image: linear-gradient(
    135deg,
    #c39f75 0%,
    #a47947 25%,
    #a47947 50%,
    #c39f75 75%,
    #8b673d 100%
  );
  background-size: 200% 200%;
  display: block;
  transition: all 300ms ease-in-out;
}

.footerSocial ul li a:hover {
  background-position: 200% 200%;
  color: #fff;
}

.footerLinks {
  color: #fff;
}

.footerLinks ul li {
  float: left;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footerLinks ul li a {
  display: table;
  color: #fff;
  padding: 10px 0;
  transition: all 300ms ease-in-out;
}

.footerLinks ul li a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footerGallery ul {
  display: flex;
  flex-wrap: wrap;
}

.footerGallery ul li {
  max-width: calc(100% / 3);
  flex: 0 0 calc(100% / 3);
  padding: 2px;
}

.footerAbout {
  color: #fff;
}

.footerAbout .footCall {
  margin-bottom: 3rem;
}

.footerAbout .footCall a {
  font-size: 16px;
  color: var(--gold);
}

.footerAbout .footCall a i {
  border-right-color: var(--gold);
}

.footerAbout .footCall a:hover {
  color: #fff;
}

.footerAbout .footCall a:hover i {
  border-right-color: #fff;
}

.footerAbout section p {
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 15px;
}

.footerAbout section small {
  display: flex;
  align-items: center;
}

.footerAbout section small img {
  max-width: 20px;
  flex: 0 0 20px;
}

.disclaimer {
  display: block;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid rgb(255 255 255 / 21%);
  font-size:12px;
}
.menuContainer
{
  display: none;
}

.footer-enquiryBtn {
  border-radius: 10px;
  position: fixed;
  bottom: 2px;
  left: 2px;
  right: 2px;
  
  justify-content: space-between;
  z-index: 99;
  background-color: var(--secondary-color);
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  text-align: center;
}
.footer-enquiryBtn a {
  color: #000;
  text-align: center;
  display: block;
  padding: 8px 5px;
  border-radius: 0 10px 10px 0;
  border: 1px solid rgb(0 0 0 / 15%);
  border-left: 0;
  width: 49%;
}
.footer-enquiryBtn a.whatsCall {
  background: linear-gradient(45deg,#0db634,#015c16);
  border: 0;
  border-radius: 10px;
  color: #fff;
}
/*Footer*/
@media (min-width: 1240px){
  .container {
    max-width: 1200px;
  }
}
/*transformation Animation*/
.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.opac {
  opacity: 0;
  transition: all 500ms ease;
}

.opac-on {
  opacity: 1;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

/*transformation Animation*/

.menuBtn,
.mobnab,
.mobilefooter,
.mobbrochure {
  display: none;
}
/*responsive*/
@media (min-width: 1376px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 1024px) {
  .header{padding: 0 1rem;}
  .header .logo h6 {
    font-size: 13px;
  }
  .header .logo h2 {
    font-size: 24px;
  }
  .header ul li{margin: 0 2px;}
  .header ul li a{padding: 15px 10px 12px; font-size: 12px; letter-spacing: normal;}
  .enquireBtn a{padding: 7px 10px 5px; min-width: 100px;}
  #banner {
    height: 70vh;
  }
  .fixed-form{bottom: 60%; width: 260px;}
  .fixed-form .innerform h3{margin-bottom: 0;}
  .form-control{margin: 0;}
  .padding{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .heading {
    margin-bottom: 10px;
  }
  .stats .statBox{flex-direction: column; align-items: flex-start;}
  .stats .statBox h2{margin-left: 0;}
  .stats .statBox h2 span{font-size: 1.75rem;}
  .gal-slider .swiper-slide .galImg {
    height: 350px;
  }
}

@media (max-width: 820px) {
  body{text-align: center;}

  #banner{
    height: 100vh;
  }
  .header.fixed + #banner{
    height: auto;

  }
  #banner img{height: auto;}
  .heading, .readmore a, .readmore button{margin-left: auto; margin-right: auto;}
  .textarea section{padding-right: 0;}
  .stats{
    display: flex;
    flex-wrap: wrap;
  }
  .stats .statBox{
    width: 50%;
    padding: 1.75rem 0 !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .stats .statBox:nth-last-child(2){border-bottom: none;}
  .stats .statBox h2 span {
    font-size: 1.5rem;
  }
  .form-group, .logo{text-align: left;}
  .modal-body .readmore button{margin-left: 0;}
  .hm-location .row {
    flex-direction: column-reverse;
  }
  .fixed-form {
        width: 100%;
        right: 0;
        position: static;
        transform: none;
        border-radius: 0;
  }
  .form-control {
        font-size: 13px;
        padding: 11px 0;
        margin-bottom: 1rem;
    }
}

@media (width: 812px) {
  .gal-slider .swiper-slide .galImg {
    height: 200px;
  }
  .stats .statBox h2 span {
    font-size: 28px;
  }
  .h6,
  h6 {
    font-size: 15px;
  }
  .h5,
  h5 {
    font-size: 17px;
  }
  .form-control {
    display: none;
  }
  .fixed-form.fixed .form-group .form-control {
    display: block;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 13px;
  }
  .bannerText h1, .bannerText h2 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
  transition: all 300ms linear;
}
.bannerText h1.h1-2nd {
  background-color: rgb(0 0 0 / 85%);
  padding: 6px 7px 0;
  line-height: 1;
  font-size: 17px;
  letter-spacing: 1.5px;
  background: #fff;
  color: #000;
  text-align: center;
}
  .gal-slider .swiper-slide .galImg {
    height: 300px;
  }
  .stats .statBox h2 span {
    font-size: 28px;
  }
  .h6,
  h6 {
    font-size: 15px;
  }
  .h5,
  h5 {
    font-size: 17px;
  }
  .readmore a,
  .readmore button {
    font-size: 13px;
    letter-spacing: 2px;
  }
}

@media (max-width: 767px) {
  .header {
   z-index: 99999;
    }
    .header ul{
     display: none;
      }
  .menuBtn {
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color:var(--primary-color);
    width: 30px;
    height: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
    position: relative;
    cursor: pointer;
    z-index: 99;
    padding: 3px;
    margin-right: 12px;
  }
  
  .menuBtn span {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    margin: 2px 0;
    transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  
  .menuBtn span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform-origin: center center;
    transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  
  .menuBtn.closeMenuBtn span#menuLine1 {
    -webkit-transform: rotate(45deg) translate(5px, 4px);
    transform: rotate(45deg) translate(5px, 4px);
  }
  
  .menuBtn.closeMenuBtn span#menuLine2 {
    right: 100px;
  }
  
  .menuBtn.closeMenuBtn span#menuLine3 {
    -webkit-transform: rotate(-45deg) translate(4px, -4px);
    transform: rotate(-45deg) translate(4px, -4px);
  }
  
  .menuContainer{
    position: fixed;
    top: 0;
    width: 300px;
    right: 0;
    bottom: 0;
    height: 100%;
    overflow: auto;
    background-color: #fff;
    padding: 70px 20px 20px;
    display: none;
    z-index: 9999;
  }
  .menuContainer ul li a{
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray);
    padding: 10px;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
  }
  
  .header .logo h2 {
    font-size: 20px;
  }
  #banner{
    height: calc(100vh - 46px);
  }
  #banner img{height: 100%;}
  .gal-slider .swiper-slide .galImg {
    height: 200px;
  }
  .overHeading h2 {
    line-height: normal;
    font-size: 1.5rem;
    font-weight: 400;
  }
  .stats .statBox h2 span{font-size: 20px;}
  .stats .statBox h6{font-size: 12px;}
  .mobilefooter {
    position: fixed;
    bottom: 0px;
    display: flex;
    background: #000082;
    border-top: 1px solid #fff;
    width: 100%;
    z-index: 9999;
  }
  .mobilefooter a {
    display: contents;
	  color: var(--secondary-color);
  }
  .mobilefooter .chatBtn {
    width: 50%;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
  }
  .mobilefooter .chatBtn img {
    width: 23px;
    margin-right: 5px;
	  filter: brightness(5);
  }
  .mobilefooter .chatBtn:last-child {
    background: #020265;
  }
  .form-control {
    font-size: 13px;
    padding: 5px 0;
  }
  .amenitiesContainer .amenIcons .amenBox{padding: 14px 10px;}
  .amenitiesContainer .amenIcons .amenBox span{font-size: 12px;}
  .plans a .hm-projectname h3{font-size: 3vw; font-weight: 500;}
}

@media (max-width: 576px) {
  .navi {
    display: none;
  }
  .header .mainHeader {
    justify-content: center;
  }
  button.close {
    right: 0;
  }
}

@media (max-width: 575px) {
  #banner {
    height: auto;
  }
  .overHeading + article p:last-of-type{
    margin-bottom: 0;
  }
  .headingbtm {
  margin-bottom: 10px;
  font-size: 21px;
  text-transform: uppercase;
}
}

@media (max-width: 480px) {
  .header .enquireBtn{ display: none;}
  .amenitiesContainer .amenIcons .amenBox {
    width: 50%;
  }
  .amenitiesContainer .amenIcons .amenBox:nth-child(even) {
    border-right: none;
  }
  .amenitiesContainer .amenIcons .amenBox:nth-child(odd) {
    border-right: 1px solid rgb(255 255 255 / 10%);
  }
  .amenitiesContainer .amenIcons .amenBox:nth-last-child(2) {
    border-bottom: none;
  }
  .mobbrochure{
    display: flex;
  }
  .symbrochure{
    display: none;
  }
}

@media (max-width: 425px) {
  body, .offer-text, .heading.text-center, .disclaimer, .amenitiesContainer{text-align: justify !important;}
  .heading, .heading .mx-auto {
    margin-left: 0 !important;
  }
  .scrollDown {
	  display:none;
  }
  .bannerText {
    position: relative;
    left: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    z-index: 9;
    color: #fff;
    background: #1b1c1b;
    padding: 16px;
    text-align: center;
}
  .overHeading h2,.heading h2.font-weight28 {
    font-size: 1.25rem;
    text-align: left;
  }
  .stats .statBox h2 span {
    font-size: 18px;
	line-height: 19px;
  }
  .heading h4 {
    font-size: 14px;
  }
  .heading h2, .plans a .hm-projectname h3{
    font-size: 1.5rem;
  }
  .heading h6{letter-spacing: 1px;}
  h6,.h6{font-size: 14px;}
  .font-weight28{font-weight: 400;}
  .bg-image{height: 420px;}
  .offers {
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }
  .offers .offerBox .img-fluid{width: 40px;}
  .offers section {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    padding: 15px 0;
  }
  .offers .offerBox {
    flex-grow: 1;
    width: 50%;
  }
  .saperator{width: 70%;}
  .enquiry-container {
    padding: 15px;
  }
  .readmore {
    justify-content: center;
  }
  .textarea section {
    padding-right: 0;
  }
  .h5,
  h5 {
    font-size: 16px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .offers {
    border: none;
  }
  .loc-container .loc-text ul li{width: 100%; padding: 15px 0; border-right: none; display: flex; align-items: baseline; gap: 10px;}
  .loc-container .loc-text ul li:nth-last-child(1), .loc-container .loc-text ul li:nth-last-child(2) {
    border-bottom: 1px solid rgb(255 255 255 / 15%);
  }
  .loc-container .loc-text ul li p{font-size: inherit;}
  .amenitiesContainer .amenIcons .amenBox{align-items: flex-start;}
  .amenitiesContainer p {
    letter-spacing: 8px;
  }
  .amenitiesContainer .amenIcons .amenBox .img-fluid{
    flex: 0 0 40px;
    max-width: 40px;
  }
  .hm-contact .d-flex{
  
  }
}

@media (max-width: 375px) {
  .header.fixed .logo h6{
    font-size: 11px;
  }
  .header.fixed .logo h2{
    font-size: 16px;
  }
  .amenitiesContainer .amenIcons .amenBox span{letter-spacing: normal;}
}

@media (max-width: 320px) {
  .bannerText h1.h1-2nd {
    font-size: 12px;
  }
  .bannerText h5 {
    letter-spacing: 0px;
  }
}
.blink {
  animation: blinker 1s step-start infinite;
}

@keyframes blinker {
  from { opacity: 1.0; }
        50% { opacity: 0.7; }
        to { opacity: 1.0; }
}
.animate-section2 h2{font-size:2vw;}
.bg-custom-2 {
background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
}
a:hover {
  color: #000;
}
/* ---- Mobile Banner Fix ---- */
@media (max-width: 600px) {
  
  #banner {
    height: auto;
  }

  #banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .bannerText {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 90% !important;
    padding: 10px;
    background: rgba(0, 0, 0, 0.55);
  }

  .bannerText h1,
  .bannerText h2 {
    font-size: 18px !important;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
  }

  .bannerText h1.h1-2nd {
    font-size: 16px !important;
    padding: 5px;
  }

  .bannerText p {
    font-size: 13px;
    margin: 3px 0;
  }

  .readmore {
    margin-top: 10px;
    justify-content: center;
  }

  .readmore button,
  .readmore a {
    padding: 7px 12px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}

