@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Oswald:wght@200;300;400;500;600;700&display=swap");

:root {
  --primary-color: #06293f;
  --secondary-color: #ee911f;
  --body-color: #181818;
  --light: #f0f0f0;
  --facebook: #4267b2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #ff0000;
  --whatsapp: #25d366;
  --instagram: #c92bb7;
  --serif: "EB Garamond", serif;
  --golden-gradient: #ffe891;
}

body {
  font: 400 1rem "Open Sans", 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%;
  object-fit: cover;
  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;
  background-color: #fff;
  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 {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  margin-left: 1rem;
}

.logo img {
  height: 58px;
  margin-right: 1rem;
  width: auto;
}

.estates-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--body-color);
}

.estates-logo span {
  font-size: .45em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.table {
  overflow: auto;
}
.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(--primary-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);
}

/* banner */
.hero {
  margin-top: 42px;
}
.banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bannerText {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #000;
}

.bannerTagline{
  margin-bottom: 2rem;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-color);
  text-transform: uppercase;
  text-shadow: 1px -1px 0 #ffffff,-1px 1px 0 #ffffff, -1px -1px 0 #ffffff, 1px 1px 0 #ffffff, 0 0 10px rgb(0 0 0 / 15%);
}

.bannerTagline span{
  font-size: 1.5rem;
  letter-spacing: 2px;
  display: table;
  padding: 5px 10px;
  background: url(../images/texture.png) var(--primary-color);
  text-shadow: none;
}
.bannerText {
  max-width: 331px;
  width: 98%;
  top: auto;
  bottom:2rem;
  left: 0 !important;
  transform: none;
  color: #ffffff;
  background: linear-gradient(11deg, black, transparent);
  padding: 10px;
}
.rera
{
    display: flex;
    transition: all 300ms ease-in-out;
    padding: 10px;
    background: #fff;
    color: #000;
    width: auto;
}
.bannerText h1{
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 29px;
  font-weight: 700;
}

.bannerSideBox {
  z-index: 3;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--primary-color);
  color: #ffffff;
}

.bannerSideBox .inner {
  padding: 0rem 2rem;
  text-align: center;
  /* display: flex; */
  flex-wrap: wrap;
  /* flex-direction: column; */
  /* align-items: center; */
  /* justify-content: center; */
}

.bannerLocation {
  text-transform: uppercase;
  font-weight: 800;
  position: absolute;
  bottom: 10px;
}

.bannerSideBox .sector128 {
  text-transform: uppercase;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgb(169 169 169 / 80%);
}

.bannerSideBox .sector128 img {
  width: 150px;
  margin: 0 auto 1rem;
}

.bannerSideBox .sector128 .d-flex {
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bannerSideBox .sector128 h2 {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
  width: 50%;
}

.bannerSideBox .sector128 h6 {
  padding-left: 10px;
}

.bannerSideBox .bannerBHK {
    width: 100%;
    text-transform: uppercase;
}

.bannerBHK h1 {
  font-weight: 800;
  font-size: 3.5rem;
  margin-bottom: 0;
  line-height: 1;
}

.bannerBHK h4 {
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.bannerBHK h3 {
  font-weight: 800;
  font-size: 1.5rem;
  padding: 10px 1rem;
  background-color: #fff;
  color: var(--body-color);
  line-height: 1;
}

.bannerSideBox form{
    padding: 1.5rem;
    background-color: #fff;
}
/* banner */

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.heading {
  margin-bottom: 2rem;

}

.heading .h1 {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
}

.heading .h2 {
  color: var(--primary-color);
}

/* overview */
.iconBox .in {
  height: 100%;
  display: flex;
  align-items: center;
  border: 1px solid rgb(255 232 145);
  gap: 10px;
  padding: 10px;
  transition: all 300ms ease-in-out;
  color: #ffe891;
  width: 100%;
  background: var(--primary-color);
}

.iconBox:last-child .in {
  border-bottom: 0;
}

.iconBox .in i {
  max-width: 50px;
  color: var(--secondary-color);
  padding-right: 10px;
  border-right: 1px solid rgb(255 232 145);
}

.iconBox .in:hover i {
  color: var(--secondary-color) !important;
}

.iconBox .in i svg {
  stroke: none;
}

svg {
  width: 100%;
  height: 100%;
  display: block;
}

.iconBox .in img {
  width: 70px;
}

.iconBox .in h4 {
  font-weight: 700;
  font-size: 100%;
}

/* overview */

/* 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;
}
.readmore1
{  
  display: flex;
  gap: 5px;
  justify-content: center;
}
.disclaimer
{
  background:var(--primary-color);
}
.disclaimer p
{
  color: #fff;
  margin-bottom: 0;
}
.bg-image {
  background: center / cover no-repeat fixed;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 70%);
}
.random-bg {
  height: 60vh;
  background-position: bottom;
}
.moreDetails
{
  margin-top: 2rem;;
}
.logo-and-text
{
  
  background: var(--primary-color);
  height: calc(100% - 10px);
  margin-top: 6px;
  padding: 1rem;
  color: #fff;
  text-align: center;
  display: flex;
  align-items:center;
  flex-wrap: wrap;
  gap: 0;
}
.readmore .button {
  display: table;
  padding: 10px 15px;
  min-width: 140px;
  background: #ffe891;
  color: #06293f;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  position: relative;
  z-index: 1;
  border: 1px solid #000;
    cursor: pointer;
}

.readmore button {
  border-radius: 0;
  border: none;
  background: none;
}

.readmore .button.bg-primary:focus {
  background-color: var(--primary-color) !important;
}

.readmore .button:hover {
  background: var(--golden-gradient);
  color: #000;
}

.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 .button.bg-primary {
  color: #fff;
}

.readmore .button.bg-primary:hover {
  color: #000;
}

.readmore.d-flex {
  justify-content: center;
  gap: 10px;
}

/* fun */
.fun-box-m {
  background: #ffe891;
}

.fun-box {
  position: relative;
  margin: 6px;
}

/* .fun-box::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgb(0 0 0 / 50%);
} */

.fun-box-con {  
position: absolute;
padding: 10px;
text-align: center;
background: #06293fb3;
width: 100%;
bottom: 2px;
text-transform: uppercase;
font-size: 100%;
color: #ffe891;
}
.fun-box-con h2{  
  margin: 0;
  font-size: 1.5rem;
}

/* fun */
.builder-box {
  border: 1px solid #cacaca;
    padding: 1rem;
    text-align: center;
    min-height: 172px;
    position: relative;
    overflow: hidden;
    background: #9b9b9b;
    z-index: 1;
    color: #000;
}
.builder-box::before {
  content: '';
  position: absolute;
  background: #cacaca;
  bottom: -54px;
  right: 0;
  top: 27%;
  left: 57%;
  z-index: -1;
  transform: skew(116deg, 216deg);
}

.builder-box i {
  font-size: 50px;
}
.builder-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 20px;
}
.builder-box p {
  margin: 0;
  font-size: 13px;
}
.gal-box2
{
  margin-top: 5rem;
}
.gal-box3
{
  margin-top: 3rem;
}
.h-500
{
  height: 500px;
}
.class-list li
{
  color: #222a54;
  font-size: 1.52rem;
  list-style: none;
  margin: 1rem 0;
}
.bgblue
{
  background: var(--primary-color);
  background-size: cover;
  color: #fff;
}
.mall-box
{
  background: #fdf5e8;
  padding: 1rem;
  margin: 2rem 0;
}
.mall-box h3
{  
  color: #000;
  font-size: 1.2rem;
}
.mall-box img
{  
  width: 50px;
  margin: auto auto 20px auto;
}
.formboxrow
{
    justify-content: space-between;
    align-items: center;
}
.mitd-form{
  background-color: #ee911f;
  border: 5px solid #222a54;
}
.mitd-form form{  
  background: #fff;
  margin: 10px;
  padding: 10px;
}
.mitd-form form .form-control {
  border: none;
  border-bottom: 1px solid #ced4da;
}
.amenities-box
{
  background: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 1px #9b9a9a;
}
.amenities-box img
{  
  width: 50px;
  margin: auto auto 20px auto;
  min-height: 53px;
  object-fit: contain;
}
.amenities-box h3
{  
  color: #000;
  font-size: 1.2rem;
}
.table thead th {
  background: var(--primary-color);
  color: #fff;
}
.gall-box {
  margin: 5px;
}
.gall-box img{
  padding: 10px;
  background: #eaeeff;
}

.sets-box
{
  background-color: #fff;
  min-height: 99px;
  box-shadow: 0 0 1px #9b9a9a;
  display: flex;
  padding: 1rem;
  margin: 10px;
  gap: 6px;
  align-items: center;
}
.sets-box span i
{
  font-size: 21px;
}
.getintouch-form
{
  background: aliceblue;
  padding: 25px;
  box-shadow: 0 0 2px #bfb8b8;
}
.getintouch-form .form-control {  
  border: none;
  border-bottom: 1px solid #ced4da;
  outline: none;
  background: no-repeat;
  margin: 0;
  height: auto;
}
/* location */
.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 rgb(151 151 151 / 20%);
}

.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;
}

.loc-container .loc-text ul li .loc-row p {
  margin-bottom: 0;
}

.loc-container .loc-text ul li .loc-dist {
  color:#06293f;
  font-weight: 600;
}

.loc-container .loc-text ul li .loc-dist small {
  font-size: 13px;
  color:rgb(20 20 20 / 80%);
  margin-left: 5px;
}
/* location */
.disclaimer p{
  font-size: 9px;
  line-height: 1.2;
}

/* 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: 0;
}

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 {
  padding: 2rem;
  text-align: center;
}

.modal-details h2{
  font-weight: 700;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgb(203 203 203 / 20%);
}
.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 */
.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: #000000;
  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;
  color: #fff;
}
.text-primary {
  color: var(--primary-color) !important;
}
/* floor plans */
.fpContainer .fbBox
{
}
.fpContainer .fbBox .inner {
  padding: 10px;
  background: #fff;
  text-align: center;
  transition: all 300ms ease-in-out;
  border:1px solid var(--primary-color);

}

.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: 1rem 0 1rem;
}

.fpDetails {
  justify-content: center;
  gap: 10px;
  min-height: 49px;
  display: flex;
  align-items: center;
}

.fpDetails .icon {
  width: 30px;
  color: var(--primary-color);
}

.fpContainer .fbBox .inner:hover .fpDetails .icon {
  color: var(--vibrant-color);
}

.planBase .fpDetails h5 {
  margin-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
}
.fpContainer .fbBox .inner:hover .fpDetails 
{
  color: #fff !important;
}
.fpContainer .fbBox .img-fluid {
  overflow: hidden;
}

.fpContainer .fbBox span {
  display: block;
  margin-top: 10px;
  border-top: 1px solid #e4e4e4;
  font-weight: 700;
  border-radius: 0;
  left: 16px;
}
/* floor plans */
/* sponsors */
.brand-logos{
  width: auto;
  height: auto;
  margin: 0 4px;
  width: 200px;
  height: 150px;
  position: relative;
  border-radius: 10px;
}

.brand-logos img{
  width: auto;
  /* height: 70px; */
  max-height:96%;
  max-width: 98%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* sponsors */

.badge {
  position: absolute;
  left: 10px;
  top: 10px;
  text-transform: uppercase;
  z-index: 1;
}
.badge {
  padding: 5px 8px;
  font-weight: 600;
  margin: 2px 0;
}
.listhightlight li {
  font-size: 1.2rem;
  text-transform: uppercase;
  border-bottom: 1px dotted #ffe891;
  padding: 5px 0;
  /* padding-left: 20px; */
  /* position: relative; */
}
.listhightlight li::marker {
  color: #ffe891;
  left: 0 !important;
  position: absolute;
  margin-left: 14px;
}
.listhightlight li:nth-last-child(1) {
  border: none;
}
.formlistttt
{

  display: flex;
  align-items: center;
  background: var(--primary-color);
  color: #fff;
}

.header .nav > ul {
  display: flex;
  align-items: center;
  position: relative;
}

.header .nav > ul > li > a {
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0 10px;
  position: relative;
  transition: all 300ms ease-in-out;
  padding: 1.7rem 1rem;
  z-index: 1;
  font-size: 90%;
}

.header .nav > ul > li:hover > a {
  color: var(--primary-color);
}

.header .nav > ul > li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid var(--secondary-color);
  transition: all 300ms ease-in-out;
  z-index: -1;
}

.header .nav ul li:hover > a::before {
  width: 100%;
}

.header .topCTC{
  display: flex;
  background-color: #fbdd6a;
  transition: all 300ms ease-in-out;
}

.header.fixed .topCTC,
.header:hover .topCTC{
  /* background-color: #25313a; */
}

.header .topCTC a{
  display: flex;
  align-items: center;
  color: #06293f;
  padding: 0px 1rem;
}

.header .topCTC a:last-child{
  border-left: 1px solid #fff;
}

.header .topCTC a i{
  display: flex;
  align-items: center;
}

.header.fixed .menuBtn span::before {
  background: var(--primary-color);
}
