*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
.top-banner {
  width: 100%;
  height: 100vh; 
  background-size: cover;       
  background-position: center;  
  background-attachment: fixed; 
  display: flex;
  align-items: center;          
  justify-content: center;                
  text-align: center;
}

.banner{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;

}
.banner img{
    width: 30%;
}
h1{
    font-family:"Poppins", sans-serif;
    font-size: 80px;
    font-weight: 800;
}
.p1{
    font-family:"Poppins", sans-serif;
    font-size: 44px;
    font-weight: 200;
    line-height: 14px;

}
.address{
    display: flex;
    text-align: center;
    flex-direction: column;
}
.p2{
    font-size: 18px;
    font-weight: 200;
    padding-top: 5px;
    line-height: 6px;
}
h2{
    font-size: 18px;
    font-weight: 400;
    padding-top: 75px;

}
.number span{
    border-right: 2px solid #000000;
    vertical-align: middle;  
    margin: 0 8px; 
}



@media (max-width: 1024px) {
  h1 {
    font-size: 80px;
  }
  .p1 {
    font-size: 48px;
  }
  .banner img {
    width: 50%;
  }
}

/* Tablets */
@media (max-width: 768px) {
  h1 {
    font-size: 60px;
  }
  .p1 {
    font-size: 36px;
  }
  .p2, h2 {
    font-size: 18px;
  }
  .banner img {
    width: 60%;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .top-banner {
    height: 100vh;
    padding: 100px 20px;
    background-attachment: scroll; /* prevent mobile background bug */
  }
  h1 {
    font-size: 50px;
  }
   h2 {
    padding-top: 50px;
  }
  .p1 {
    font-size: 30px;
  }
  .p2, h2 {
    font-size: 16px;
  }
  .banner img {
    width: 70%;
  }
  
   
}