@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&family=Marcellus&display=swap");

:root {
  --primary-color: #102134;
  --secondary-color: #ed6809;
  --body-color: #181818;
  --light: #ffeaca;
  --facebook: #4267b2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #ff0000;
  --whatsapp: #25d366;
  --instagram: #c92bb7;
  --blue-grad: radial-gradient(circle at 50% -30%, #0f5fff, #003399);
  --pink-grad: radial-gradient(circle at 50% -30%, #b700c1, #6a004c);
  --green-grad: radial-gradient(circle at 50% -30%, #008e47, #004d27);
  --red-grad: radial-gradient(circle at 50% -30%, #c30009, #680005);
  --serif: "Marcellus", serif;
  --golden-gradient: radial-gradient(
    ellipse farthest-corner at right bottom,
    #fdf5b0 0%,
    #FFEB3B 8%,
    #ee741d 30%,
    #bf272e 40%,
    transparent 80%
  ),
  radial-gradient(
    ellipse farthest-corner at left top,
    #ffffff 0%,
    #ffe500 8%,
    #6310b0 25%,
    #006633 62.5%,
    #66ffcc 100%
  );
  --primary-gradient: linear-gradient(45deg,#0c0c0c,#353535,#000000);
}

body {
  color: var(--body-color);
  font: 400 1rem "Rubik", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

svg:not([fill]) {
  fill: currentColor;
}

.font-weight-bolder{
  font-weight: 800 !important;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

a {
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}

a.bg-primary:hover {
  background-color: var(--primary-color) !important;
}
html {
  scroll-behavior: smooth;
}
img {
  width: 100%;
  display: block;
}

.rounded {
  border-radius: 10px !important;
}

.object-cover {
  object-fit: cover;
}

.container-fluid {
  padding-left: 3rem;
  padding-right: 3rem;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

/*header*/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  background-color: #fff;
  padding: 5px 0;
  z-index: 997;
  transition: all 300ms ease-in-out;
}

.header.fixed {
  background-color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}
.header .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 150px;
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
}

.navi {
  display: flex;
  gap: 30px;
}

.navi ul {
  gap: 0 10px;
}

.navi li a {
  color: var(--body-color);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px;
  font-weight: 600;
  position: relative;
  transition: all 300ms ease-in-out;
}

.navi li a.active,
.navi li:hover > a {
  color: var(--secondary-color);
}

.header.fixed .navi li a {
  font-size: 12px;
}

.navi li a i {
  font-size: 11px;
  color: var(--primary-color);
}

.menuBtn {
  height: 40px;
  background-color: transparent;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.menuBtn .menuLine {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  width: 26px;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn:hover {
  color: #000;
}

.menuBtn .menuLine::before,
.menuBtn .menuLine::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn:hover .menuLine::before,
.menuBtn:hover .menuLine::after {
  opacity: 0.75;
}

.menuBtn .menuLine::before {
  width: 100%;
}

.menuBtn .menuLine::after {
  width: 70%;
}
.menuBtn:hover .menuLine::after {
  width: 85%;
}

.header.fixed .menuBtn .menuLine::before,
.header.fixed .menuBtn .menuLine::after {
  background-color: var(--body-color);
}

.menuBtn.closeMenuBtn {
  gap: 2px;
}

.menuBtn.closeMenuBtn .menuLine::before {
  -webkit-transform: rotate(45deg) translate(3px, 2px);
  transform: rotate(45deg) translate(3px, 2px);
}

.menuBtn.closeMenuBtn .menuLine::after {
  width: 100%;
  -webkit-transform: rotate(-45deg) translate(3px, -2px);
  transform: rotate(-45deg) translate(3px, -2px);
}

.header.notfixed {
  top: -100px;
}

.mbMenuContainer {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  background: rgb(0 0 0 / 90%);
  backdrop-filter: blur(10px);
  display: none;
  overflow: hidden;
}

.mbMenuContainer .inner {
  position: relative;
  height: 100%;
  width: 420px;
  padding: 0 24px 24px;
  background-color: #fff;
  margin-left: auto;
  margin-right: -1px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-50%) scale(0.2);
  transform-origin: top right;
  transition: all 0.5s linear 500ms;
}

.mbMenuContainer.active .inner {
  opacity: 1;
  transform: translateY(0%) scale(1);
}

.mbMenuHeader {
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mbMenuContainer .mbMenu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.mbMenuContainer .mbMenu ul {
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
}

.mbMenuContainer .mbMenu ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgb(0 0 0 / 10%);
  color: var(--body-color);
  font-weight: 800;
  font-size: 2rem;
  transition: all 300ms ease-in-out;
  position: relative;
}

.mbMenuContainer .mbMenu ul li:last-of-type a {
  border-bottom: 0;
}

.mbMenuContainer .mbMenu ul li:hover > a,
.mbMenuContainer .mbMenu ul li a.active {
  color: var(--primary-color);
}

.mbMenuContainer .mbMenu ul li a i {
  transform: rotate(90deg);
  font-size: 80%;
  opacity: 0.2;
}
.mbMenuContainer .mbMenu ul li a.active i,
.mbMenuContainer .mbMenu ul li:hover > a i,
.mbMenuContainer .mbMenu ul li a:focus i {
  opacity: 1;
}

.menuFooter {
  display: flex;
  align-items: center;
  gap: 8px 12px;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgb(0 0 0 / 10%);
}
.menuFooter a.active,
.menuFooter a:hover {
  color: var(--primary-color);
}

.socialBtn ul i {
  width: 36px;
  height: 36px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
}

i.fa-facebook-f:hover {
  background-color: var(--facebook);
}
i.fa-twitter:hover {
  background-color: var(--twitter);
}
i.fa-linkedin-in:hover {
  background-color: var(--linkedin);
}
i.fa-instagram:hover {
  background-color: var(--instagram);
}
i.fa-youtube:hover {
  background-color: var(--youtube);
}
/*header*/

/* sticky form */
.enquiryBtn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 99;
  display: none;
}
.enquiryBtn i {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--golden-gradient);
  color: #fff;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.enquiryBtn i:hover {
  background: var(--primary-color);
}



.hero{
  margin-top: 71px;
  /* height: calc(100vh - (2rem + 89px)); */
}
.banner {
  position: relative;
  z-index: 1;
}

.sideBanner{
  background: url(../images/retail1-bg.jpg) center / cover;
}

.sideBanner .inner{
  background-color: rgb(16 33 52 / 74%);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.sideBanner .inner::before,
.sideBanner .inner::after{
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
}
.sideBanner .inner::before{
  background: linear-gradient(45deg, rgb(0 51 153 / 50%),rgba(153, 0, 0, 0.5));
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 75%, 75% 0);
}
/* .sideBanner .inner::after{
  background-color: rgba(153, 0, 0, 0.5);
  clip-path: polygon(0 0, 45% 0, 100% 75%, 100% 100%, 55% 100%, 0 25%);
} */

.sideBanner .projectLogo{
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.75);
}

.sideBanner .projectLogo h2{
  font-weight: 800;
  color: var(--secondary-color);
}

.sideBanner .projectLogo h6{
  letter-spacing: 10px;
}

.bannerTag h4{
  font-weight: 700;
}

.sideBanner .h1 {
  font-size: 2rem;
  line-height: 1;
}

.sideBanner h3 {
  font-weight: 700;
}

.sideBanner form{
  margin-top: 1rem;
}

/* overview */
.statBox{
  width: calc(100% - (var(--i) * 1.5rem));
  margin: 1px auto;
  text-align: center;
}
.statBox .in {
  padding: 10px 1rem;
  border-radius: 5px;
  transition: all 300ms ease-in-out;
  color: #fff;
  background: var(--blue-grad);
}
.statBox:nth-child(2) .in {
  background: var(--pink-grad);
}
.statBox:nth-child(3) .in {
  background: var(--green-grad);
}
.statBox:nth-child(4) .in {
  background: var(--red-grad);
}

.statBox .in h2 {
  font-weight: 800;
}

.statBox .in span{
  font-weight: 700;
}
/* overview */

/* indulge */
.indulgeBox{
  height: auto;
}
.indulgeBox .inner{
  height: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
.indulgeBox .inner .indulgeText{
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  inset: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgb(0 0 0 / 80%), rgb(0 0 0 / 80%)) 0 0 / 100% 200%;
  color: #fff;
  font-size: 0.875rem;
  border-radius: 10px;
  transition: all 300ms ease-in-out;
  z-index: 1;
}
.indulgeBox .inner:hover .indulgeText{
  background-position-y: 100%;
}
.indulgeBox .inner .indulgeText span{
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 8px;
  color: rgb(255 255 255 / 75%);
}

.indulgeBox .inner .indulgeText .indulgeTitle{
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.5rem;
}
/* indulge */

/* fp */
.fpBox .inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--secondary-color);
  text-transform: uppercase;
}
.fpBox .inner .img-fluid{
  position: relative;
  isolation: isolate;
  padding: 10px;
}
.fpBox .inner .img-fluid::before{
  content: '';
  position: absolute;
  inset: 0;
  background: var(--golden-gradient);
  clip-path: circle(57% at 20% 10%);
  z-index: -1;
}
/* fp */

/* mid section */
.masterplan-img{
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 75%;
  pointer-events: none;
  z-index: -1;
}
.masterplan-img img{
  object-position: 90% bottom;
}

.randomIconBox.iconBox:not(:last-child) .inner{
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.iconBox .inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 300ms ease-in-out;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.iconBox .inner .img-fluid {
  width: 30px;
}

.iconBox .inner h6{
  font-weight: 800;
  color: var(--primary-color);
}
/* mid section */

/* sets above */
.iconsContainer .iconBox .in {
  height: 100%;
  padding: 1.25rem;
  transition: all 300ms ease-in-out;
  box-shadow: 0 5px 10px rgb(0 0 0 / 15%);
  background-color: #fff;
  position: relative;
  isolation: isolate;
  flex-direction: column;
  align-items: self-start;
}
/* .iconsContainer .iconBox .in::before {
  content: '';
  background-color: var(--primary-color);
  position: absolute;
  inset: 35px 0 0;
  z-index: -1;
} */

.iconsContainer .iconBox .in:hover {
  background: var(--golden-gradient);
}
.iconsContainer .iconBox .in:hover h2{
  color: var(--primary-color) !important;
}

.iconsContainer .iconBox .in p{
  font-size: 0.875rem;
}

.iconsContainer .iconBox .in .img-fluid img {
  border-radius: 50%;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
/* sets above */


/* Gallery */
.gall{
  height: auto;
}
.gall img{
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.gall .galleryCaption {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: var(--secondary-color);
  padding: 10px;
}
.gall .galleryCaption h4{
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.5rem;
}
.gall .galleryCaption p{
  font-size: 8px;
}
/* Gallery */

/* location */
.locationWrapper {
  /* color: var(--body-color); */
  position: relative;
  z-index: 1;
}
.locationWrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/pattern.png) left / contain;
  opacity: 0.5;
  -webkit-filter: brightness(10);
  filter: brightness(10);
  z-index: -1;
}

.locationBox .inner{
  height: 100%;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  background: var(--blue-grad);
}
.locationBox:nth-child(2) .inner {
  background: var(--pink-grad);
}
.locationBox:nth-child(3) .inner {
  background: var(--green-grad);
}
.locationBox:nth-child(4) .inner {
  background: var(--red-grad);
}

.locationBox .img-fluid {
  flex: 0 0 50px;
  filter: brightness();
  margin-right: 10px;
}

.locationBox .img-fluid img {
  padding: 5px;
  -webkit-filter: brightness(60);
  filter: brightness(60);
}

.locationBox article p {
  font-weight: 700;
  margin-bottom: 5px;
}

.locationBox article span {
  display:table;
  padding: 3px 7px;
  border-radius: 20px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.locationMap .img-fluid {
  border: 2px solid rgba(0, 0, 0, 0.30);
  transition: all 300ms ease;
}

.locationMap .img-fluid:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.16);
}
/* location */

/* Consultation Form */
.enquiryWrapper {
  background: linear-gradient(var(--secondary-color) 25%, var(--primary-color) 25%);
}

.formContainer {
  background-color: #fff;
  color: var(--body-color);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.formContainer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/pattern.png) top right / 50% no-repeat repeat #fff;
  transform: rotateY(180deg);
  z-index: -1;
  border-radius: 10px;
}

.form-img .inner {
  height: 100%;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 10px;
}

.form-img .logo{
  justify-content: center;
  margin-bottom: 2rem;
}

.form-img .logo img{
  width: 220px;
  margin-right: 0;
  padding-right: 0;
}

.form-img .logo .estates-logo{
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.form-img .bhk{
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-img .bhk span{
  font-size: 200%;
  display: block;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
}

.form-img .price{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  border: solid rgb(255 255 255 / 20%);
  border-width: 1px 0;
}

.form-img .price span{
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 200%;
  line-height: 1;
}

.enquiry-form .inner {
  padding: 4rem;
  border-radius: 10px;
}
/* Consultation Form */

/* infra */
svg {
  width: 100%;
  height: 100%;
  display: block;
}
svg:not([fill]) {
  fill: currentColor;
  stroke: currentColor;
}
/* infra */

p {
  line-height: 1.4;
}

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.headingContainer {
  margin-bottom: 30px;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.heading .h1,
.heading h2,
.heading h3,
.heading h4,
.heading h5,
.heading h6 {
  display: block;
}

.heading .h1 {
  line-height: 1.25;
  color: var(--primary-color);
  font-family: var(--serif);
}

.heading h5 {
  font-weight: 500;
  color: var(--gray-color);
}

.heading h6 {
  letter-spacing: 1px;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 800;
  position: relative;
  isolation: isolate;
  display: flex;
  gap: 10px;
}

.heading h6::before{
  content: '';
  width: 30px;
  /* background: linear-gradient(to right,var(--secondary-color) 20%,transparent 20%,transparent 28%,var(--secondary-color) 28%,transparent 50%, var(--secondary-color) 53%, transparent 83%, var(--secondary-color) 63%); */
  background: linear-gradient(to right,#6310b0 20%,transparent 20%,transparent 28%,#bf272e 28%,transparent 50%, #003399 53%, transparent 83%, #006633 63%);
}

.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}

.text-normalcase {
  text-transform: none !important;
}

.text-serif {
  font-family: var(--serif);
}

.bg-primary {
  background-color: var(--primary-color) !important;
  color: #fff;
}

.bg-light {
  background-color: var(--light) !important;
  background: url(../images/lining-bg.webp) left top / cover var(--light);
  background-blend-mode: multiply;
}

.bg-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--light) !important;
  opacity: 0.95;
  z-index: -1;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-primary-gradient {
  background-image: radial-gradient(circle at 50% -100%,var(--primary-color),#083233);
}

.bg-image {
  background: center / cover no-repeat fixed;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 70%);
  z-index: -1;
}

.bg-image.overlay-white::before {
  background: linear-gradient(
    to left,
    rgb(255 255 255 / 40%),
    rgb(255 255 255 / 95%)
  );
}

.scroller {
  overflow: auto;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #cfcfcf;
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.gap-row {
  row-gap: 30px;
}
.gap-form-row {
  row-gap: 10px;
}

.moreText {
  display: none;
}

.viewmore .button {
  font-size: 14px;
  font-weight: 700;
  color: var(--vibrant-color);
  background-color: transparent;
  border: 0;
  padding: 0;
}

.viewmore .button:hover {
  color: var(--primary-color);
}

.viewmore .button.text-white:hover {
  text-decoration: underline;
}

.viewmore .button i {
  transition: transform 300ms ease-in-out;
}

.viewmore .button:hover i {
  transform: translateX(5px);
}

.readmore {
  width: 100%;
  margin-top: 2.5rem;
}

.readmore .button {
  display: table;
  padding: 12px 22px;
  min-width: 140px;
  border-radius: 5px;
  color: #fff;
  background: var(--golden-gradient);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  position: relative;
  z-index: 1;
}

.readmore button {
  border-radius: 0;
  border: none;
  background: none;
}
.readmore .button:hover {
  background: var(--secondary-color);
}

.readmore .button.bg-primary,
.readmore .button.bg-primary:focus{
  background: var(--primary-color) !important;
}

.readmore .button.w-auto{
  min-width: 1px;
}

.readmore .button.bg-green{
  background: linear-gradient(45deg,#0db634,#015c16);
  color: #fff;
}

.readmore .button.bg-secondary {
  color: var(--body-color);
  background: var(--secondary-color) !important;
}

.readmore .button.bg-secondary:hover {
  color: var(--body-color);
  background: #fff !important;
}
.readmore .button.bg-primary {
  color: #fff;
}

.readmore .button.bg-primary:hover {
  color: #000;
}

.readmore.d-flex{
  justify-content: center;
  gap: 10px;
}

.controls {
  position: absolute;
  width: 110px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  z-index: 9;
}

.controls a {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  color: var(--primary-color);
  font-size: 13px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  opacity: 1;
}

.controls a:last-child {
  border-bottom: none;
}

.controls a:focus,
.controls a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
}

.multiply {
  mix-blend-mode: multiply;
}

.position-relative {
  z-index: 1;
}

/* custom swiper controls */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  background: url(../images/arrow-left.png) center / 16px no-repeat var(--secondary-color);
  transition: all 300ms ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary-color);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  transform: rotate(-180deg);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.bottom-control {
  top: auto;
  bottom: 0;
}

.bottom-control.swiper-button-next {
  right: calc(50% - 55px);
}
.bottom-control.swiper-button-prev {
  left: calc(50% - 55px);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}
/* custom swiper controls */

.footer-enquiryBtn {
  position: fixed;
  bottom: 2px;
  left: 2px;
  right: 2px;
  display: flex;
  justify-content: space-between;
  z-index: 99;
  background: var(--golden-gradient);
  text-align: center;
}
.footer-enquiryBtn a {
  color: #fff;
  text-align: center;
  display: block;
  width: calc(100% / 2);
  padding: 8px 5px;
  border: 1px solid rgb(0 0 0 / 15%);
  border-left: 0;
}
.footer-enquiryBtn a.whatsCall {
  background: linear-gradient(45deg,#0db634,#015c16);
  border: 0;
}

.button-top {
  background: var(--primary-color);
  position: fixed;
  cursor: pointer;
  left: 10px;
  bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  z-index: 99;
}

.button-top:hover {
  background: var(--golden-gradient);
}

.socialBtn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}
.socialIcons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.socialIcons a i {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
  text-align: center;
}

.socialIcons.solid a i {
  border: none;
}

.socialIcons.stroke a:hover .fa-facebook-f,
.socialIcons.solid a .fa-facebook-f {
  background-color: var(--facebook);
}
.socialIcons.stroke a:hover .fa-linkedin-in,
.socialIcons.solid a .fa-linkedin-in {
  background-color: var(--linkedin);
}
.socialIcons.stroke a:hover .fa-twitter,
.socialIcons.solid a .fa-twitter {
  background-color: var(--twitter);
}
.socialIcons.stroke a:hover .fa-youtube,
.socialIcons.solid a .fa-youtube {
  background-color: var(--youtube);
}
.socialIcons.stroke a:hover .fa-whatsapp,
.socialIcons.solid a .fa-whatsapp {
  background-color: var(--whatsapp);
}
.socialIcons.stroke a:hover .fa-instagram,
.socialIcons.solid a .fa-instagram {
  background-color: var(--instagram);
}

.socialIcons.stroke a .fa-facebook-f {
  border-color: var(--facebook);
}
.socialIcons.stroke a .fa-linkedin-in {
  border-color: var(--linkedin);
}
.socialIcons.stroke a .fa-twitter {
  border-color: var(--twitter);
}
.socialIcons.stroke a .fa-youtube {
  border-color: var(--youtube);
}
.socialIcons.stroke a .fa-whatsapp {
  border-color: var(--whatsapp);
}
.socialIcons.stroke a .fa-instagram {
  border-color: var(--instagram);
}

.socialIcons.solid a:hover i,
.socialIcons a:hover i {
  background-color: #fff;
}

.socialIcons.stroke a .fa-facebook-f,
.socialIcons a:hover .fa-facebook-f {
  color: var(--facebook);
}
.socialIcons.stroke a .fa-linkedin-in,
.socialIcons a:hover .fa-linkedin-in {
  color: var(--linkedin);
}
.socialIcons.stroke a .fa-twitter,
.socialIcons a:hover .fa-twitter {
  color: var(--twitter);
}
.socialIcons.stroke a .fa-youtube,
.socialIcons a:hover .fa-youtube {
  color: var(--youtube);
}
.socialIcons.stroke a .fa-whatsapp,
.socialIcons a:hover .fa-whatsapp {
  color: var(--whatsapp);
}
.socialIcons.stroke a .fa-instagram,
.socialIcons a:hover .fa-instagram {
  color: var(--instagram);
}
.socialIcons.stroke a:hover i {
  color: #fff;
}
/***** Inside pages end *****/

.disclaimer p{
  font-size: 9px;
  line-height: 1.2;
}

.form-group {
  margin-bottom: 10px;
}

.form-group > div {
  margin-top: 15px;
}

.form-group label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

.form-control {
  border: none;
  border-bottom: 2px solid #b2b2b2;
  outline: none;
  height: auto;
  padding: 10px;
}

.form-control[readonly] {
  background: none;
}

.form-control:focus {
  box-shadow: 0 10px 20px rgb(0 0 0 / 15%);
  border-bottom-color: var(--secondary-color);
  background: #fff6dd;
}
/* customize modal */
.modal-backdrop.show {
  opacity: 1;
  background: rgba(27, 27, 27, 0.92);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
  border-radius: 10px;
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: red;
  color: #fff;
  opacity: 1;
  text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: rgb(141, 0, 0);
  color: #fff;
}

.modal-content {
  background: url(../images/bg-white.jpg) #fff;
  border: none;
}
/* .modal-dialog {
  max-width: 700px;
} */
.modal-content .modal-header {
  padding: 0;
  border: none;
}
.modal-content button.close {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  opacity: 1;
}
.modal-header .close {
  color: #fff;
}
.modal-header {
  background: none;
  border: none;
}

.no-gutters .col-md-6:first-child {
  border-radius: 0;
  border-right: 1px solid rgb(0 0 0 / 20%);
}
.no-gutters .col-md-6:first-child .modal-body {
  background-size: 100% !important;
}

.modal-body {
  padding: 2rem;
}

.modal-details {
  height: 100%;
  padding: 2rem;
  text-align: center;
}

.modal-details h2{
  font-weight: 700;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.modal-details h2 small{
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  color: var(--secondary-color);
}
.modal-details h6{
  text-transform: uppercase;
  /* font-size: 13px; */
  padding: 5px 1rem 2px;
  background: var(--golden-gradient);
  color: var(--body-color);
}

.modal-details h5 {
  font-weight: 400;
}
.modal-details .banner-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
}
/* customize modal */

/*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;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.zoomOut {
  transform: scale(0);
  transition: all 0.8s ease-in-out;
}

.zoomIn {
  transform: scale(1);
}
/*transformation Animation*/

.list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.list li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: url(../images/bullet.png) center / contain no-repeat;
  left: 0;
  top: 4px;
  pointer-events: none;
}
