@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@font-face {
  font-family: DreamAvenue;
  src:url("../fonts/Dream-Avenue.ttf");
}
*{
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/* --------------left Nav-------- */
.mobileDropDown{
  z-index: 10;
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.5);
  border-right: 1px rgba(196, 161, 101, .5) solid;
  height: 100vh;
  width: 20vw;
  right: -50rem;
  transition: right .35s ease-in-out;
}

.mobileDropDown a{
  font-weight: bolder;
}

@media (max-width: 768px) { 
 .mobileDropDown{
  width: 70vw;
}
}
/* --------------left Nav-------- */

.nav{
  width: 100vw;
  z-index: 1;
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.2);
}


/* ---------------Hero Section---------------- */
h2.companyname{
  font-family: DreamAvenue, sans-serif;
  margin-top: .5em;
}

.herobg{
  /* background-image:linear-gradient(90deg, rgba(0,0,0,.85) 50%, rgba(255, 255, 255, 0.5) 100%),url('../imgs/herobg1.jpg') ; */
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  background-position: center center;
}

.herobg img{
  width: 150px;
}


#slide1{
  background-image:linear-gradient(90deg,  rgba(0,0,0,.6) 100%,rgba(0, 0, 0, 0.5) 30%),url('../imgs/herobg1.jpg');
}
#slide2{
  background-image:linear-gradient(90deg,  rgba(0,0,0,.6) 100%,rgba(0, 0, 0, 0.5) 30%),url('../imgs/herobg2.jpg') ;
  
}
#slide3{
  background-image:linear-gradient(90deg,  rgba(0,0,0,.6) 100%,rgba(0, 0, 0, 0.5) 30%),url('../imgs/herobg3.jpg') ;

}

@media only screen and (max-width:425px) {
  #slide1{
  background-image:linear-gradient(90deg,  rgba(0,0,0,.6) 100%,rgba(0, 0, 0, 0.5) 30%),url('../imgs/herobgsm1.jpg');

  }
  #slide2{
  background-image:linear-gradient(90deg,  rgba(0,0,0,.6) 100%,rgba(0, 0, 0, 0.5) 30%),url('../imgs/herobgsm2.jpg') ;
  padding-bottom: -15px; 
    
  }
  #slide3{
  background-image:linear-gradient(90deg,  rgba(0,0,0,.6) 100%,rgba(0, 0, 0, 0.5) 30%),url('../imgs/herobgsm3.jpg') ;
  padding-bottom: -35px;   
}
}

.contactModalDiv{
  backdrop-filter: blur(3px);
  display: grid;
  opacity: 0;
  visibility: hidden;
  place-items: center;
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  transition: all .25s ease-in;
}

.contactModal{
  border: 2px rgba(196, 161, 101, .5) solid;
  border-radius: 5px;
  position: relative;
  top: -999px;
  transition: top .5s ease-out;
}

.contactModal img{
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px;
}

/* ---------------------------------
-------------About Us---------------------
-------------------------------- */
#about div#left{
  width: 70%;
}
#about img#right{
  width: 30%;
}
@media only screen and (max-width:900px) {
  #about img#right{
    content: url('../imgs/risingsm.jpg');
  }
}
/* ---------------------------------
-------------Features---------------------
-------------------------------- */

.cardsDiv{
  background-image: url('../imgs/herobg1.jpg') ;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}
#innerCardsDiv{
  backdrop-filter: blur(1px);
  background: rgba(0, 0, 0, 0.5);
}

.card{
  height: 50vh;
  background-size: cover;
  background-position: center center;
  padding: .75em;
}

.card:nth-child(1){
  background-image: linear-gradient(0deg, rgba(0,0,0,1) 19%, rgba(0, 0, 0, 0.1) 100%),url('../imgs/clubhouse.jpg');
}

.card:nth-child(2){
  background-image: linear-gradient(0deg, rgba(0,0,0,1) 19%, rgba(0, 0, 0, 0.1) 100%),url('../imgs/projectBg1.jpg');

}