@font-face{
  font-family: 'GeorgiaRegularFont';
  src : url("../assets/fonts/GeorgiaRegularFont.ttf")
} 


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


a{
  text-decoration: none;
  color: white;
}

body{
  font-family: 'Roboto Condensed', sans-serif;
}
.header-video{
  background: url("../assets/images/header-bg/airport-pannel.png") no-repeat ;
  background-position: 20%;
  background-size: cover;
}

/* ===== hero section ===== */
.hero{
  height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-heading{
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  
}
.hero-subheading{
  margin: 20px 0 30px 0;
}

.learn-more-btn{
  display: block;
  font-size: 14px;
  font-family: "montserrat";
  text-decoration: none;
  color: black;
  border: 1px solid #000;
  
  text-transform: uppercase;
  overflow: hidden;
  transition: 1s all ease;
  position: relative;
  width: 150px;
  height: 50px;
}
.learn-more-btn::before{
  background: #000;
  color: white;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  transition: all 0.6s ease;
}
.learn-more-btn> span {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;
}

.learn-more-btn:hover{
  color: white ;
}

.learn-more-btn::before{
  width: 100%;
  height: 0%;
  transform: translate(-50%,-50%) rotate(45deg);
}
.learn-more-btn:hover::before{
  height: 380%;
}

@media screen and (max-width:768px){
  .hero{
    height: 300px;
  }
  .hero-heading{
    font-size: 1.5rem;    
  }
  .hero-subheading{
    font-size: 0.9rem;
  }
  .hero-subheading span {
    display: block;
  }
  .learn-more-btn{
    width: 120px;
    height: 40px;
    font-size: 12px;
  }
}



/* ===== Numbers Section ===== */

.counters-section{
  height: 50vh;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.counters-heading{
  font-size: 30px;
  margin-bottom: 30px;
  text-transform: capitalize;
  font-family: 'Montserrat', sans-serif;
}
.counters-container{
  display: flex;


}
.counters-container > div{
  text-align: center;
  margin: 0 40px;
  
}
.counter {
  font-family: 'GeorgiaRegularFont';
  font-size: 3rem;
  margin-bottom: 15px;
}

.counter-title {
  text-transform: uppercase;
  font-size: 12px;

}
.counter-title > span{
display: block;
} 

@media screen and (max-width:768px){
  .counters-section{
    height: 150vh;
    max-height: 900px;
  }
  .counters-container{
    height: fit-content;
    flex-direction: column;
    justify-content: space-between;
  
  }
  .counters-container > div{
    text-align: center;
    margin:  40px;
  }
  .counter-title > span{
    display: inline-block;
  } 
    
}
