@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&amp;family=Oswald:wght@200;300;400;500;600;700&amp;display=swap");

:root {
  --primary-color: #000;
  --secondary-color: #ffc107;
  --body-color: #181818;
  --vibrant-color: #dbffe5;
  --light: #f2f7ff;
  --facebook: #4267b2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #ff0000;
  --whatsapp: #25d366;
  --instagram: #c92bb7;
  --josefin: "Oswald", sans-serif;
  --golden-gradient: radial-gradient(ellipse farthest-corner at right bottom, #fffddb 0%, #ffc107 8%, #fbc828 30%, #ffc107 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #fffddb 0%, var(--secondary-color) 8%, #fbc828 25%, #fbc828 62.5%, #ffc107 100%);
    radial-gradient(
      ellipse farthest-corner at left top,
      #fffddb 0%,
      var(--secondary-color) 8%,
      #ffd391 25%,
      #d19f6d 62.5%,
      #b07a43 100%
    );
}

body {
  color: var(--body-color);
  font: 400 1rem "Open Sans", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

svg:not([fill]) {
  fill: currentColor;
}

.rounded{
  border-radius: 1rem !important;
}

.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;
}

/*.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;
  padding: 10px 0;
  z-index: 997;
  transition: all 300ms ease-in-out;
  background:#fff;
}

.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 {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
}

.logo img{
  width: 130px;
}

.logo img:first-child{
  /* width: 200px; */
  /* padding-right: 1rem; */
  /* margin-right: 1rem; */
  /* border-right: 1px solid rgba(255, 255, 255, 0.1); */
}

.navi {
  display: flex;
  gap: 30px;
}

.navi ul {
  gap: 0 10px;
}

.navi li a {
  color: #000;
  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);
}

.header.fixed .menuBtn span::before {
  background: var(--primary-color);
}

.menuBtn {
  display: inline-block;
  z-index: 99;
}

.header.fixed .menuBtn {
  width: 40px;
  height: 40px;
}

.menuBtn div {
  position: relative;
  width: 30px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}

.menuBtn span{width:100%;height:2px;float:right;background:var(--secondary-color); margin:2px 0;position:relative;right:0;	-webkit-transition:400ms ease-in-out all;transition:400ms ease-in-out all;}
.menuBtn.closeMenuBtn span#menuLine1{-webkit-transform:rotate(45deg) translate(2px, 2px);transform:rotate(45deg) translate(2px, 2px);}
.menuBtn.closeMenuBtn span#menuLine2{-webkit-transform:rotate(-45deg) translate(2px, -2px);	transform:rotate(-45deg) translate(2px, -2px);}
.menuBtn.closeMenuBtn span#menuLine3{display:none;}

.menuContainer {
  position: fixed;
  inset: 0;
  padding-top: 61px;
  z-index: 996;
  background-color: rgb(0 123 255 / 13%);
  backdrop-filter: blur(5px);
  display: none;
}

.menuContainer .inner {
  padding: 5px 15px;
  width: 100%;
  visibility: hidden;
  background: var(--primary-color);
  background: radial-gradient(circle at 50% -10%, var(--secondary-color), var(--primary-color));
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
  transition: all 300ms ease-in-out;
}

.header.fixed + .menuContainer {
  padding-top: calc(1rem + 30px);
}

.menuContainer.active .inner {
  visibility: visible;
}

.menuContainer a{
  color: #fff;
  transition: all 300ms ease-in-out;
}

.mainMenu li:not(:last-child) a{
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mainMenu a{
  padding: 10px 0;
  font-weight: 700;
  display: block;
  position: relative;
}

.mainMenu li.active > a,
.mainMenu li:hover > a{
  padding: 10px;
  background-color: #fff;
  color: var(--primary-color);
}

.mainMenu a i{
  font-size: 75%;
  position: absolute;
  right: 0;
  top: 50%;
  line-height: 0;
  transition: all 300ms ease-in-out;
}

.mainMenu li.active > a i,
.mainMenu li:hover > a i{
  right: 10px;
}

.mainMenu li.active > a i{
  transform: rotate(540deg);
}

.menuDrop{
  padding: 5px 15px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  display: none;
}
.mainMenu ul ul li:last-child a{
	border-bottom: 0;
}
/*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);
}

.artistic {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: .6em;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  z-index: 1;
  pointer-events: none;
}

.location-impression.artistic {
  display: none;
  right: auto;
  left: 5px;
}

/* banner */
.banner{
	height: 100vh;
	padding-top: 4rem;
	position:relative;
	background-color: var(--primary-color);
	border-bottom:5px solid var(--secondary-color);
	color: var(--light);
	z-index:1;
}
.banner::before{
  content: '';
  position: absolute;
  inset: 0;
	background: url(../images/logo-icon.svg) center / 50px var(--primary-color);
  background-blend-mode: color-dodge;
  opacity: 0.5;
  z-index: -1;
}

.bannerText{
	transition: all 300ms ease-in-out 100ms;
}
.bannerText .h1{
	font-size:2rem;
	margin-bottom: 2rem;
	line-height: 1.1;
	font-weight:300;
	letter-spacing:2px;
	text-transform: uppercase;
	transition:all 300ms linear;
}

.priceBox{
	padding: 1rem;
	background-image: linear-gradient(45deg, #c39362, #e1ae7c);
	margin-bottom: 1.5rem;
  border-radius: 5px;
}

.priceBox .h3{
	font-weight: 900;
	line-height: 1;
}
.priceBox h6{
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.priceBox .iconBox{
	text-align: center;
}

.priceBox .iconBox:not(:nth-child(2)){
	border-right: 1px solid rgb(255 255 255 / 20%);
}

.priceBox .img-fluid{
	filter: brightness(50);
	margin: 0 auto 10px;
}

/* 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: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 40%);
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.enquiryBtn i:hover {
  background: linear-gradient(2255deg, var(--primary-color), var(--secondary-color));
}

.stickyForm {
  width: 300px;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  padding: 1.25rem;
  background-color: #fff;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
  z-index: 99;
}

.sideImg .inner::before,
.stickyForm::before,
.iconsContainer .iconBox .in::before,
.fpContainer .fbBox .inner::before,
.location-advantages .inner::before{
  content: '';
  position: absolute;
  border: 1px solid rgb(255 255 255 / 30%);
}

.form-close {
  position: absolute;
  right: -2px;
  top: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: maroon;
  color: #fff;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.form-close:hover {
  background: var(--secondary-color);
}

.stickyForm .form-tag{
  font-size: 14px;
}

.stickyForm h6 {
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 10px;
  font-size: 17px;
  color: var(--body-color);
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.stickyForm .form-group {
  margin-bottom: 10px;
}
.stickyForm .form-control,
.modal-body .form-control {
  border-bottom: 2px solid #eaeaea;
  background-color: #f1f1f1;
  color: var(--body-color);
  padding: 8px 10px;
  font-size: 14px;
}
/* sticky form */
/* banner */

.bannerText {
  position: absolute;
    bottom: 2rem;
    left: 2rem;
    max-width: 351px;
    width: 90%;
    z-index: 9;
    background: linear-gradient(45deg, #0f2031, #0000008c);
    padding: 15px;
}

.bannerText h6 {
 /* font-size: 1.25rem; */
  position: relative;
  padding: 5px 0;
  border: dashed #fff;
  border-width: 1px 0;
  letter-spacing: 3.7px;
  text-transform: uppercase;
}

/* overview */
.overviewSide{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 43%;
  z-index: -1;
}
.overviewSide img{
  height: 100%;
  object-fit: cover;
}
/* overview */

.iconBox .in {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgb(0 0 0 / 15%);
  gap: 10px;
  padding: 1rem;
  border-radius: 1rem;
  transition: all 300ms ease-in-out;
}
.iconBox:last-child .in{
  border-right: 0;
}
.iconBox .in:hover {
  background-color: var(--body-color);
  color: #fff;
}

.iconBox .in i {
  width: 30px;
  color: var(--primary-color);
}
.iconBox .in:hover i{
  color: var(--secondary-color) !important;
}

.iconBox .in img {
  width: 70px;
}

.iconBox .in h6 {
  font-weight: 700;
}

/* floor plans */
.fpContainer .fbBox .inner {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 1rem;
  color: var(--body-color);
  transition: all 300ms ease-in-out;
border: 1px solid #000;
}

.fpContainer .fbBox .inner:hover {
  color: #fff;
  background: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 24%);
}

.planBase{
  margin-top: 10px;
}

.fpHeader h4{
  font: 700 1.125rem var(--josefin);
  letter-spacing: 2px;
  text-align: center;
  padding: 3px 5px 5px;
  background-color: var(--secondary-color);
  border-radius: 40px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.fpContainer .fbBox .inner:hover .fpHeader h4{
  background-color: var(--primary-color);
}

.fpDetails {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fpDetails .icon {
  width: 20px;
  color: var(--primary-color);
}

.fpContainer .fbBox .inner:hover .fpDetails .icon {
  color: var(--secondary-color);
}

.planBase .fpDetails h5 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color:#d19f6d;
}

.fpContainer .fbBox .img-fluid {
  overflow: hidden;
  border-radius: 10px;
}

.fpContainer .fbBox img {
  border-radius: 10px;
}

.fpContainer .fbBox span {
  display: block;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e4e4e4;
}
/* floor plans */

/* 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 */

/* masterpiece */
.iconsContainer .iconBox .in {
  height: 100%;
  padding: 0 1.25rem 1rem;
  transition: all 300ms ease-in-out;
  background-color: transparent;
  position: relative;
  isolation: isolate;
  justify-content: flex-start;
}
.iconsContainer .iconBox .in::before {
  content: '';
  background-color: var(--primary-color);
  position: absolute;
  inset: 35px 0 0;
  z-index: -1;
}

.iconsContainer .iconBox .in:hover::before {
  background-color: #fff;
}

.iconsContainer .iconBox .in .img-fluid img {
  border-radius: 50%;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
/* masterpiece */


/* Gallery */
.gall img{
  /* height: 60vh; */
  width: 100%;
    height: 400px;
  object-fit: cover;
  border-radius: 1rem;
}
.gall .galleryCaption {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
}
.gall .galleryCaption h4{
  margin-bottom: 0;
  font: 600 1.5rem / 1 var(--josefin);
  text-shadow: 1px 1px 1px #000;
  text-transform: uppercase;
}
/* Gallery */

/* location */
.locationWrapper {
  color: var(--body-color);
  position: relative;
  z-index: 1;
}
.locationWrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/dotted-map-bg.png) center / cover no-repeat;
  opacity: 0.15;
  z-index: -1;
}

.loc-container .loc-text ul {
  margin-top: 30px;
  /* height: 16vw; */
  overflow: auto;
  padding-right: 10px;
}

.loc-container .loc-text ul::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.loc-container .loc-text ul::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #000;
  border-radius: 10px;
}

/* Handle */
.loc-container .loc-text ul::-webkit-scrollbar-thumb {
  background: var(--body-color);
  border-radius: 10px;
}

/* Handle on hover */
.loc-container .loc-text ul::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.loc-container .loc-text ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.loc-container .loc-text ul li .loc-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.loc-container .loc-text ul li .loc-row img {
  flex: 0 0 35px;
  max-width: 35px;
  -webkit-filter: hue-rotate(-20deg);
  filter: hue-rotate(-20deg);
}

.loc-container .loc-text ul li .loc-row p {
  margin-bottom: 0;
}

.loc-container .loc-text ul li .loc-dist {
  color: var(--secondary-color);
}

.loc-container .loc-text ul li .loc-dist small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 5px;
}
/* location */

/* Consultation Form */
.enquiryWrapper {
  background: linear-gradient(var(--secondary-color) 25%, var(--primary-color) 25%);
}

.formContainer {
  border-radius: 1rem;
  background-color: #fff;
  color: var(--body-color);
  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);
  border-radius: 1rem;
  z-index: -1;
}

.form-img .inner {
  height: 100%;
  background-color: #fff;;
  padding: 2rem;
  border-radius: 1rem;
  color: #000;
  text-align: center;
  
}

.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;
}
.fa-whatsapp {
  color: #fff;
  background: linear-gradient(#25d366,#25d366) 14% 84%/16% 16% no-repeat, radial-gradient(#25d366 60%,transparent 0);
}
.form-img .bhk span{
  font-size: 128%;
  display: block;
  font-weight: 700;
  color: #000;
  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: #000;
  font-size: 200%;
  line-height: 1;
}

.enquiry-form .inner {
  padding: 2rem;
  border-radius: 1rem 0 0 1rem;
}
/* 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;
  font-family: var(--josefin);
  z-index: 1;
}

.heading .h1,
.heading h2,
.heading h3,
.heading h4,
.heading h5,
.heading h6 {
  display: block;
  font-weight: 700;
}

div[class^="heading bg-"] .h1 {
  text-transform: capitalize;
}

.heading .display-4 {
  font-weight: 700;
}
.heading .h1 {
  font-size: 33px;
}

.heading .h3 {
  line-height: 1.25;
  text-transform: uppercase;
}

.heading h5 {
  font-weight: 500;
  color: var(--gray-color);
}

.heading h6 {
  font-weight: 400;
  letter-spacing: 2px;
}

.text-vibrant {
  color: var(--vibrant-color) !important;
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}

.text-normalcase {
  text-transform: none !important;
}

.text-josefin {
  font-family: var(--josefin);
}

.bg-primary {
  background-color: var(--primary-color) !important;
  color: #fff;
}

.bg-pattern {
  background-color: var(--primary-color) !important;
  color: #fff;
  position: relative;
  z-index: 1;
}

.bg-pattern::before{
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/logo-icon.svg) center / 50px var(--primary-color);
  background-blend-mode: color-dodge;
  opacity: 0.5;
  z-index: -1;
}

.bg-light {
  background-color: var(--light) !important;
}
.bg-black {
  background-color: var(--body-color);
  color: #e8e8e8;
}

.bg-vibrant {
  background-color: var(--vibrant-color) !important;
  color: var(--body-color);
}

.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: 10px 15px;
  min-width: 140px;
  color: #fff;
  background: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 40px;
  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;
  font-size: 14px;
  background: none;
}

.readmore .button.reverse,
.readmore .button:hover {
  color: var(--body-color);
  background: var(--golden-gradient);
}
.readmore .button.reverse:hover{
  background: var(--secondary-color);
}

.readmore .button.w-auto{
  min-width: 1px;
}

.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.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(--primary-color);
  transition: all 300ms ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--body-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 {
  border-radius: 10px;
  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-radius: 0 10px 10px 0;
  border: 1px solid rgb(0 0 0 / 15%);
  border-left: 0;
}
.footer-enquiryBtn a.whatsCall {
  background: linear-gradient(45deg,#0db634,#015c16);
  border: 0;
  border-radius: 10px;
}

.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 *****/


.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: 1px solid rgb(0 0 0 / 30%);
  outline: none;
  height: auto;
  padding: 10px;
  font-size: 14px;
}

.form-control[readonly] {
  background: none;
}

.form-control:focus {
  box-shadow: 0 10px 20px rgb(0 0 0 / 15%);
  border-bottom-color: var(--primary-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: 1rem;
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  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: var(--golden-gradient);
  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;
  color: var(--body-color);
  opacity: 1;
}
.modal-header .close {
  color: #fff;
}
.modal-header {
  background: none;
  border: none;
}

.no-gutters .col-md-6:first-child {
  background: var(--primary-color);
  border-radius: 1rem;
}
.no-gutters .col-md-6:first-child .modal-body {
  background-size: 100% !important;
}

.modal-body {
  padding: 2rem;
}

.modal-details {
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
}

.modal-details h2{
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  font-size:24px;
}

.modal-details h5 {
  font-weight: 400;
}
.modal-details .banner-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
}
.formFooter.readmore .button {
  background: var(--body-color);
  color: #fff;
}
/* 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.html) center / contain no-repeat;
  left: 0;
  top: 4px;
  pointer-events: none;
}
