

@font-face {
    font-family: bold;
    src: url('../Fonts/ZonaPro-Bold.otf') format('opentype');
}
@font-face {
    font-family: semi_bold;
    src: url('../Fonts/ZonaPro-SemiBold.ttf') format('opentype');
}
@font-face {
    font-family: med;
    src: url('../Fonts/CeraGodrejInterio-Medium.ttf') format('opentype');
}


* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smotthing: antialiased;
    font-family: 'MediumItalic', sans-serif;
    /* font-weight: 300; */
}

.h2{  font-family: 'MediumItalic', sans-serif;}

.m{  font-family: 'semi_bold', sans-serif;}
.b{  font-family: 'bold', sans-serif;}


body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.godrej-text h3{
          font-size: 34px !important;
          margin-top:1.3em; 
          font-style:italic;
        }
		
		@media(max-width:768px){
			.godrej-text h3{
				font-size:16px !important;
		}}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #70563b;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.navbar-toggler:focus,
.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler .navbar-toggler-icon:focus,
.navbar-toggler-icon {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}
.h2, h2 {
    font-size: 1.6rem;
}

.h3, h3 {
    font-size: 1.2rem;
}


header{
    padding: 15px 0 0 0;
}

header .logo{
    width: 180px;
    filter: invert(1) brightness(2);
} 


header{
    background: #2f4c23;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}
header.active .line{
 display: none;
}
header .logo{
width: 150px;
filter: invert(1) brightness(3);
}


header .bar{
    width: 25px;
    cursor: pointer;
    filter: invert(1) brightness(2.5);
} 

header .line{
    width: 95%;
    height: 0.5px;
    color: #588f42;
    background-color: #588f42;
    margin: 0 auto;
    margin-top: 20px;
}

.color{
     color: #2f4c23;
}

.space{
    letter-spacing: 1px;
}
.space1{
    letter-spacing: 1px;
}


section.hero .card-img-overlay{
   width: 100%;
   height: 100%;
   z-index: 10;
   display: grid;
   place-content: center;
   top: 70px;
}
section.hero .building-logo{
 width: 70px;
}
/*section.hero h2{
font-size: 30px;
margin-top: 60px;
}*/




/* section.hero{
    height: 100vh;
       display: grid;
    place-content: center;
}
section.hero .anim{
    height: 100vh;
    width: 45vw;
   display: grid;
    place-content: center;
}

section.hero .anim img:nth-child(1){
    height: calc(100vh - 94px);
    position: absolute;
    top: 94px;
      left: 50%;
  transform: translateX(-50%);
}


section.hero .anim img:nth-child(2){
   height: 65vh;
    position: absolute;
    right: 0;
    top: 35%; 
}


section.hero .anim img:nth-child(3){
  height: 50vh;
  position: absolute; 
  left: 0;
}

s 
section.hero .anim img:nth-child(4){
  height: 50vh;
    position: absolute; 
  left: 50%;
  transform: translateX(-50%);
}

 */

  section.hero{
  overflow: hidden;
 }


 /* .card-img-overlay p.color.space , .card-img-overlay .building-logo , .card-img-overlay h2 , .card-img-overlay p.color.fs-4 ,.card-img-overlay h3 {
   opacity: 0;
 } */


 .load{
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1090;
  opacity: 0;
  animation: load 2s ease-in-out forwards;
 }

 

 @keyframes load{
    0%{
        opacity: 1;
    }
    100%{
      opacity: 0;
      pointer-events: none;
    }
 }



 section.hero svg{
    width: 100%;
    height: 100vh;
    padding: 84px 0 0 0;
 }

 section.hero .main{
   animation: main 1s ease-in-out forwards 0.3s;
   opacity: 0;
 }


 section.hero .left{
 transform: translateX(-100%);
    animation: left 1.5s ease-in-out 0.9s forwards;
   opacity: 0;
 }

 section.hero .right{
  transform: translateX(100%);
    animation: right 1.5s ease-in-out 0.9s forwards;
   opacity: 0;
 }


 section.hero .center{
  transform: translateX(100%);
    animation: center 1.5s ease-in-out 1.6s forwards;
   opacity: 0;
 }


 @keyframes left{
    0%{
       
        transform: translateX(-100%);
   opacity: 0;
    }
    100%{
       transform: translateX(0);
   opacity: 1;
    }
    
 }
 @keyframes right{
    0%{
       
        transform: translateX(100%);
   opacity: 0;
    }
    100%{
       transform: translateX(0);
   opacity: 1;
    }
    
 }

 @keyframes main{
    0%{
       
        transform: translateY(-100%);
     opacity: 0;
    }
    100%{
       transform: translateY(0);
   opacity: 1;
    }
    
 }


 @keyframes center{
    0%{
       
        transform: translateY(100%);
   opacity: 0;
    }
    100%{
       transform: translateY(0);
   opacity: 1;
    }
    
 }


 section.second{
    height: 100vh;
    display: grid;
    place-content: center;
    overflow: hidden;
    background: #cfbfa8;
 }

 section.second .card-img-overlay{
   display: flex;
   height: 100%;
   /*top: 50%;
   transform: translateY(-50%);*/
   align-items: center;
 }
 section.four{
    height: 100vh;
    display: grid;
    place-content: center;
    overflow: hidden;
    background: #cfbfa8;
 }

 section.four .card-img-overlay{
    display: flex;
    height: 100vh;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
   padding-top: 2em;
    padding-bottom: 4em;
 }
  section.four .fabulous{
	 top: 60px;
  }
 .presenting-logo {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.overlay-logo {
  margin-top: 0%;
  width: 350px;
}

 section.seven {
    height: 100vh;
    display: grid;
    place-content: center;
    overflow: hidden;
    background: #cfbfa8;
}

section.seven .card-img-overlay{
   display: flex;
    height: 80vh;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    margin: 0 auto;
 }

 .text-slider-section .border-box {
  border: 10px solid #fff; 
  /*border-radius: 10px;*/
  /*padding: 30px;*/
  background-color: transparent; 
}
.text-box{
margin-left: 1rem;
}

.text-box .divider {
  width: 60px;            
  height: 2px;            
  background-color: #212529; 
  margin: 10px 0 15px;    
}

.text-slider-section .text-box h2,
.text-slider-section .text-box p,
.text-slider-section .text-box a {
  color: #212529;
  }
.carousel-inner img {
  /*border-radius: 8px;*/
}

 section.know {
    /*height: 25vh;*/
    display: grid;
    place-content: center;
    overflow: hidden;
    background: #cfbfa8;
    /*margin-top: 25px;*/
}

section.godrej {
    height: 100vh;
    display: grid;
    place-content: center;
    overflow: hidden;
    background: #cfbfa8;

}

section.godrej .card-img-overlay{
   display: flex;
   height: 80vh;
   top: 50%;
   transform: translateY(-50%);
   align-items: center;
   margin-top: 25px;
 }
section.hero{
    height: 100vh;
	/*margin-top: 50px;*/
}

.hero-logo {
  text-align: center;
    /* margin-bottom: 4rem; */
  z-index: 99;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4%;
}

.hero-logo .hero-icon {
  width: 40%;
  height: auto;
}


section.date .box{
  border: 1px solid #70563b;
  display: inline-block;
  padding: 10px 20px;
}


.line{
    width: 95%;
    height: 0.5px;
    color: #70563b;
    background-color: #70563b;
    margin: 0 auto;
    margin-top: 20px;
}


section.overview p{
    font-size: 17px;
}

section.project .para{
        font-size: 17px;
}


section.project .icon{
  width: 70px;
}
section.project .col{
  position: relative;
 
}
section.project .col:after{
  content: "";
  position: absolute;
  right: 5px;
  display: block;
  bottom: 3px;
  height: 40px;
  border-right: 1px solid #70563b;
  width: 2px;
  display: block;
}

section.project .row .col:last-child:after{ 
  border: transparent;
}


 section.six{
    height: 100vh;
    display: grid;
    place-content: center;
    overflow: hidden;
    background: #cfbfa8;
 }

 section.six .card-img-overlay{
   display: flex;
    height: 100vh;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    margin: 4em auto;
 }


 section.location .container{
    background-color: #70563b;
    margin-top: 80px;
    margin-bottom: 30px;
 }

 section.location-2 .icon{
  width: 90px;
  height: 90px;
  object-fit:contain;
}
 section.location-2 p{
line-height: 1.1;
margin-top: 10px;
margin-bottom: 5px;
    font-size: 18px;
    font-weight:700;
}
span{
    font-size: 14px;
    margin-top: 10px;
    line-height: 18px;
}




section.location-2 .row {
    width: 90%;
    margin: 0  auto;
}
section.location-2 .row .col:after{
  content: "";
  position: absolute;
  right: 5px;
  display: block;
  bottom: 0;
  height: 50px;
  border-right: 1px solid #70563b;
  width: 2px;
  display: none;
}
section.location-2 .row .col:last-child:after{ 
  border: transparent;
}

.slider-nav::after {
    display: none;
}

.arrow1{
  width: 36px;
  position: relative;
  left: -50px;
}

.arrow2{
    position: relative;
  width: 36px;
  right: -50px;
}


.space_p{
  margin-bottom: 80px;
}

.padding_space{
padding: 50px;
}

.seven-text {
  margin-top: 3rem;       
  color: #fff;
  text-align: left;       
  width: 70%;
  max-width: 700px;       
  margin-left: 4rem;      
}

.seven-text h2 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: -10px;
  margin-bottom: 1rem;
}

.seven-text .line {
  width: 60px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0.4rem 0 1rem;  
}

.seven-text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  width: 50%;
}


.godrej-text {
 /* margin-top: 2rem;*/ 
  color: #fff;
  text-align: center;
  z-index: 99;
  position: absolute;
  top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
}

.godrej-text h2 {
  font-weight: 600;
  /*font-size: 1.5rem;*/
  font-size: 50px;
   /*margin-bottom: 1rem;*/
 /* margin-top: 20% !important;*/
   /*width: 850px;*/
}

.godrej-text .line {
  width: 60px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0.5rem auto 1rem;
}

.godrej-text p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}




section.last{
  /*background: url('../Images/bg.png') no-repeat center center/cover;*/
  background: #cfbfa8;
}

section.last p{
 font-size: 14px;
}


section.form{
  background-color: #2f4c23;
  padding: 50px 0;
  color: #fff;

}

section.form .flex{ 
display: flex;
align-items: center;
gap: 20px;
}
section.form .flex > div{ 
flex: 1;
display: flex;
align-items: center;
gap: 9px;
}

section.form .flex > div input{ 
width: 100%;
height: 30px;
border: 0;
padding-left: 10px;
padding-right: 50px;
outline: none;
}
section.form .flex > div input#txt_mobile{
padding-left: 50px;
}


section.form .flex1{ 
display: flex;
align-items: center;
justify-content: space-between;

}

input[type="checkbox"]{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}


.btn_1{
  padding: 9px 20px;
  border: 0;
  background-color: #e9ddcb;
  color: #606060;
  text-transform: uppercase;
  transition: all 0.3s ease;  
}

.btn_1:hover{
  padding: 9px 20px;
  border: 0;
  background-color: #3b2d1e;
  color: #fcfcfc;
  text-transform: uppercase;
}


.offcanvas{
  position: absolute;
  z-index: 1070;
  height: 100vh;
}
.offcanvas ul li a{
  color: #70563b ;
  margin-bottom: 30px;
  display: block;
  font-size: 20px;
}

.sticky-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    right: -61px;
    text-transform: uppercase;
    font-size: 20px;
    background-color: #2f4c23;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0px 0px 10px 10px; 
    z-index: 99;   
}
.form-close-btn {
    display: none;
}
section.form.sticky-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}
section.form.sticky-form .container {
    background-color: #2f4c23;
    max-width: 320px;
    padding: 20px;
    position: relative;
}
section.form.sticky-form .flex {
    flex-direction: column;
    margin-bottom: 20px !important;
}
section.form.sticky-form .form-close-btn {
    display: block;
    filter: invert(1);
    opacity: 1;
    position: absolute;
    right: 5px;
    top: 5px;
    outline: none;
}
section.form.sticky-form h3 {
    text-align: center;
}
section.form.sticky-form .flex1 {
    flex-direction: column;
}
section.form.sticky-form .btn_1 {
    margin-top: 10px;
}
section.form.sticky-form .whatsapp_txt {
    font-size: 12px;
}

/*.banner::after {
    background: rgb(72, 72, 72);
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    z-index: 2;
	height: 105%;
}*/

.fixed-top .container {
    max-width: 1240px !important;
}
.fabolus_section_mobile, .seven_mobile{
	display: none;
}

@media screen and (max-width: 768px){
	section.hero{
		height: 100%;
		position: relative;
	}
	.banner img{
		height: 100% !important;
	}
	.banner::after{
		height: 100%;
	}
	section.map{
		padding: 2em 1em !important; 
	}
	.map img{
		height: auto !important;
	}
	section .heading{
		top: 45px;
	}
	.heading h2{
		font-size: 18px !important;
	}
	.second img{
		height: 215px;
	}
	section.second .card-img-overlay{
		position: absolute;
    top: 0;
    height: 215px;
	}
	section.four .card-img-overlay{
		height: 100%;
		padding-top: 0;
		padding-bottom: 0;
		width: 92%;
		top: -10px !important;
		
	}
	section.four .fabulous{
		top: 20px;
	}
	section.six .card-img-overlay{
		height: 100%;
        margin: 0;
	}
	.presenting-logo{
		top: 15px;
	}
	section.location-2 .row{
		width: 100%;
	}
	section.location-2 .row .mb-5{
	    margin-bottom: 2em !important; 
	}
	section.know{
		padding-bottom: 0px;
	}
	.godrej.fabolus_section{
		height: 260px;
	}
	section.godrej .card-img-overlay{
		margin: 0;
        height: 100%;
        align-items: flex-start;
	}
	.godrej.fabolus_section{
		display: none;
	}
	.godrej.fabolus_section .godrej-text{
		top: 5%;
        font-size: 20px;
	}
	.godrej.fabolus_section .godrej-text h2{
        font-size: 20px;
	}
	section.text-slider-section{
		padding-bottom: 1em !important;
	}
	#gallery div{
		padding-top: 0.5rem !important;
	}
	.fabolus_section_mobile{
	    display: block;
		background: #cfbfa8;
    }
	.fabolus_section_mobile .card-img-overlays{
		display: flex;
    flex-direction: column-reverse;
    padding: 0 1em;
    justify-content: center;
    align-items: center;
	}
	.fabolus_section_mobile .card-img-overlays .godrej-texts{
		padding: 15px 0;
		text-align: center;
		width: 80%;
	}
	.fabolus_section_mobile .card-img-overlays .godrej-texts h2{
		font-size: 20px;
		font-weight: 600;
		text-transform: uppercase;
		line-height: 30px;
	}
	.fabolus_section_mobile .card-img-overlays .godrej-texts p{
		font-size: 14px;
		font-weight: 400;
		line-height: 22px;
	}
	.fabolus_section_mobile .card-img-overlays .godrej-texts .line{
		    width: 30%;
    height: 0.5px;
    color: #70563b;
    background-color: #70563b;
    margin: 0 auto;
    margin: 10px auto;
	}
	.text-box{
		margin: 1rem 1em 0;
	}
	section.location-2 p{
		font-size: 13px;
        line-height: 20px;
	}
	section.location-2 span {
        font-size: 11px;
        margin-top: 10px;
        line-height: 10px !important;
}
	.seven{
		display: none !important;
	}
	.seven_mobile {
        display: block;
        overflow: hidden;
        background: #cfbfa8;
        margin-top: 50px;
        padding: 1em;
    }
	.seven_mobile .card-img-overlays{
		display: flex;
        flex-direction: column-reverse;
	}
	.seven_mobile .card-img-overlays .seven_mobile-text{
		padding: 15px 0;
		text-align: center;
		width: 80%;
		margin: auto;
	}
	.seven_mobile .card-img-overlays .seven_mobile-text h2{
		font-size: 20px;
		font-weight: 600;
		text-transform: uppercase;
		line-height: 30px;
	}
	.seven_mobile .card-img-overlays .seven_mobile-text p{
		font-size: 14px;
		font-weight: 400;
		line-height: 22px;
	}
	.seven_mobile .card-img-overlays .seven_mobile-text .line{
		width: 30%;
        height: 0.5px;
        color: #70563b;
        background-color: #70563b;
        margin: 0 auto;
        margin: 10px auto;
	}
	section.form .flex{
		align-items: unset;
	}
	
	.sticky-btn{
		top: 30%;
	}
	#fabulous1 {
        padding-top: 50px;
        margin-top: -50px;
    }
	.slider .mb-4{
		width: 80%;
        margin: auto;
        text-transform: uppercase;
        font-size: 13px !important;
        line-height: 30px;
	}
	.slider .mb-4 h2{
		font-size: 20px !important;
        line-height: 26px;
	}
	
}

/*

#Enquire.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.modal-content {
    max-width: 320px;
	background-color: #2f4c23;
}

p.whatsapp_txt {
    font-size: 12px;
}
.flex.mb-5.footer-enq {
    flex-direction: column;
    margin-bottom: 20px !important;
}
*/