.home-top-section{
  position: relative;
  background: url("../../assets/images/top-section-bg.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  min-height: 100vh;
  padding-bottom: 60px;
}
.home-top-section::after{
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.home-top-heading {
  font-family: Inter;
  font-weight: 700;
  font-size: 38px;
  line-height: 130%;
  text-transform: uppercase;
  padding-top: 90px;
  max-width: 600px;
  color: #FFF;
  text-align: 'center'
}
.home-subtitle{
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-family: Inter;
  font-weight: 400;
  max-width: 800px;
  text-align: center;
}
.contact-button{
  background: #f07b00;
}

.page-name{
  font-size: 18px;
  font-family: Inter;
  font-weight: 600;
  color: var(--main-color);
}
.sitemap-page-link{
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
  color: var(--light-black);
}



@media(max-width: 1400px){
  .home-top-heading{
    font-size: 32px;
  }
  .home-subtitle{
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .home-top-heading {
    font-size: 26px;
  }
  
}


@media(max-width: 480px){
  .home-subtitle{
    font-size: 16px;
    max-width: 100%;
  }
}