@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;
}
/* --------------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: -40rem;
  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: 1.75em;
}

.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;
}


.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;
}

/* ---------------------------------
-------------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;
}
