@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Noto Sans', sans-serif;
    /* overflow-x: hidden; */
}

:root{
    --text-gray:#3f4954;
    --text-light:#686666da;
    --bg-color:#563d7c;
    --white:#fff;
    --midnight:#104f55;
    --black:#0f0f0f;
    /* gradient color */
    --sky: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);

}
:root{
   
    --Noto:'Noto','cursive';
}
.container-fluid{
    margin: 0 ;
    padding: 0 ;
}
.flex-row{
    display: flex ;
    flex-direction: row ;
    justify-content: space-between ;
    flex-wrap: wrap ;

}
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transition: all 0.5s ease;
    background: var(--bg-color);
    /* transform: translate3d(0px, 0px, 0px); */
}
.nav{
    height: 0vh ;
    width: 100%;
    min-height: 11vh ;
    overflow: hidden ;
    transition:height 1s ease-in-out ;
}
.top-menu.add-bg{background: black;}
.nav ,.nav-menu{
    justify-content: space-between ;
}
 
.nav .nav-item{
    display: flex;
    justify-content: space-between;
}
 .nav .nav-brand a{
    font-size: 1.6rem;
    line-height: 70px;
   display: block;
   color: white;
   font-family: var(--Noto);
   margin-left: 1.5em;
}
.nav .nav-brand a.add-color{
    color: white;
} 
.nav .nav-item .nav-link a{
    line-height:73px;
   margin-left: 2em ;
    padding-bottom:1em; 
    color:white;
    text-transform: uppercase;
    font-family: var(--Noto);
    font-size: 1.1rem ;
   
}
.nav .nav-item .nav-link a.add-link{
    color: white;
}


.nav .nav-item .nav-link a:hover{
    color:#bbb;
  border-bottom: 5px solid #fefefe;
}
.nav .nav-item .nav-link a.active{
    border-bottom: 5px solid #fefefe;
}
.nav .toggle-icons i{
    color: white;
    font-size: 2em;
    float: right;
    margin-top: 0.8em;
 }
 .nav .toggle-collapse{
     position: absolute;
     top: 0%;
     width: 90%;
     cursor: pointer;
     display: none;
    
 } 
 .text-gray a{
     color: white;
     text-decoration: none;
     font-size: 1.2rem;
     line-height: 60px;
     margin-right: 2em;
     text-transform: uppercase;
     padding: 0.5em 0.5em;
 }
 .text-gray a:hover{
    background: #191970;
    color: #bbb;
   }
    .sidebar{
        background: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.9));
       display:none;
       width:100%; 
       height: 100%; 
       position:fixed;
       top:0px;
       left: 0;
       transition: 0.5s;
       z-index:2;
   }
   .sidebar .sidenav-items{
       background-color:whitesmoke;
       width:270px;
       height: 100vh;
   }
   
   .sidebar .sidenav-items li {
       padding: 1em 2em 1em 2em;
   }
   .sidebar ul li a{
       /* padding: 5px 8px 12px 32px; */
       text-decoration: none;
       font-size: 25px;
       color: #818181;
       display: block;
       transition: 0.3s;
      
   } 
    .sidebar ul li a:hover{
       color: #111;
   }
   .sidebar ul li:not(:last-child){
       border-bottom: 1px solid #ccc;
   }
   .sidebar .closebtn {
       position: absolute;
       top: 0;
       right: 25px;
       font-size: 36px;
       margin-left: 50px;
     } 
      .nav-link .fa-times{
         margin-left: 8em;
     }
    /*main Block*/
    .mainBlock{
        width: 80%;
        margin: auto;
        background: #fefefe;
        /* box-shadow: 1px 2px 3px 4px #ccc; */
    }

    .infoBlock{
        padding: 2em 0em;
    }
   /*infoBlock*/

   .infoBlock{
       margin-top: 11vh;
       display: grid;
       grid-template-columns: 2fr 2fr;
       grid-column-gap: 400px;
    
   }
.introBlock .title{
    color: var(--bg-color);
    font-size: 0.8rem;
    font-weight: bold;
}
.introBlock .titlep{
    margin: 0.7em 0em;
}
.introBlock .address{
    color: gray;
    font-size: 0.9em;
}
.introBlock1 .priceBlock{
    margin: 0.7em 0em;
}
.introBlock1 span b{
   font-size: 1.5rem;
}
small{
    font-size: 0.7em;
    color: gray;
    font-weight: 600;
}
.introBlock1 .emi{
    font-size: 1em;
    color: var(--bg-color);
}
   .rupee{
       width: 20px;
       height: 15px;
   }

   /* gallery**/
   .imageGallery{
       display: grid;
       grid-template-columns: 3fr 1fr;
       grid-column-gap: 10px;
   }
   .mainImg img{
       width: 100%;
   }
   .imageGallery .imgRow{
       display: grid;
       grid-template-rows: 1fr;

   }
   .imageGallery .imgRow img{
       width: 100%;
       height: 190px;
   }
   /** description*/
   .description {
       padding: 2rem;
   }
   .description h1{
       text-align: center;
       text-transform: uppercase;
       text-decoration: underline;
   }
   .description .descriptionp p{
     padding: 1em;
     text-align: justify;
     font-size: 0.9rem;
   }
   .description .descriptionp .myBtn{
       border: none;
       background: none;
       font-weight: bolder;
       outline: none;
   }
/** floorPlan**/
.floorPlan{
    display: grid;
    grid-template-columns: 2fr 2fr;
}
.btn1{
    background: var(--bg-color);
    border: none;
    outline: none;
    padding: 3vh 5vw;
    color: white;
    font-weight: bold;
    border-radius: 5px;
}
.btn1:hover{
    background:#ccc;
    color: black;
}
   .floorImages{
       position: relative;
   }
   .floorDetail{
       position: absolute;
       padding: 20px;
      
   }

   .floorPlan .floorImages .floorDetail:nth-child(2){
       display: none;
   }
   .floorDetail .builtUp{
       font-size: 0.9rem;
       padding: 0.7em 0em;
   }
   .floorDetail .bulidPrice{
    padding: 0.5em 0em;
   }
   .floorDetail .carpet{
    font-size: 0.9rem;
    padding: 0.4em 0em;
   }
   .floorDetail .floorImg{
       width: 100%;
   }
/*read more less*/
#more {display: none;}
   

/** footer
**/
footer{
    margin-top: 3em;
}
.footer{
    padding: 1.5em;
    background:var(--black);
   margin-top: 3em;
   position: relative;
   top: 50px;
    color: white;
}
.footer .footerDiv{
    width: 100%;
 display: grid;
 grid-template-columns: 2fr 1fr 2fr 1fr;
 grid-column-gap: 50px;

}
 .footerDiv .about-us p{
 color: var(--white);
 padding: 0.5em;
}


.footerDiv .follow p {
    color: var(--white);
    padding: 0.5em;
    
}
footer.footer .footerDiv>div{
    flex-grow: 1;
    flex-basis: 0;
    padding: 3rem .9rem;
}
footer.footer .footerDiv  h2{
color: white;
}

footer.footer .instagram div>img{
    display: inline-block;
    width: 25%;
    height: 50%;
    margin: .3rem .4rem;
}
footer.footer .follow div i{
    color:var(--white);
    font-size: 3rem;
    padding: 0.1em;
}
footer.footer .rights{

   display: flex  ;
    justify-content: center ;
    align-items: center;
    font-family: var(--Noto);
    background: rgba(0,0,0,1);
    padding: 1em;
} 
 footer.footer .move-up{
    position: absolute;
    right: 6%;
    top: 50%;
    
}
footer.footer .move-up span{
    color:var(--white);
    font-size: 2rem;
}
footer.footer .move-up span:hover{
    color: white;
    cursor: pointer;
} 

@media only screen and (max-width:750px){
    
    
    .nav .toggle-collapse{
        display: block;
    }
   
    .nav .social {
        text-align: center;
    }
   
    footer.footer .footerDiv{
        grid-template-columns: repeat(1,1fr);
    } 
   
}

@media only screen and (max-width:600px){
    
   

.footer{
    position: relative;
    top: 430px;
}
.mainBlock{
    width: 100%;
    padding: 0em 1em;
}
.infoBlock{
    padding-left: 3em;
    display: grid;
    grid-template-columns:1fr;
}
.introBlock1{
    margin-top: 1em;
}
.imageGallery{
    display: grid;
    grid-template-columns:1fr;
}
.floorPlan{
    display: grid;
    grid-template-columns:1fr;
}
.floorPlan{
    display: grid;
    grid-template-columns:1fr;
}
.introBlock .title{
    color: var(--bg-color);
    font-size: 0.5rem;
}
.introBlock .titlep{
    margin:0;
}
.introBlock .address{
    display: none;
}
.introBlock1 .priceBlock{
    margin: 0;
}
.introBlock1 span b{
   font-size: 1rem;
}
small{
    font-size: 0.5em;
    color: gray;
    font-weight: 600;
}
.introBlock1 .emi{
    font-size: 0.7em;
    color: var(--bg-color);
}
.googleMaps iframe{
    display: none;
}
.btn1{
    
    padding: 2vh 15vw;
   
}
    footer.footer .footerDiv{
        grid-template-columns: repeat(1,1fr);
        text-align: center;
    } 

}