:root{
  --black-100 : #000;
  --orange : #FF7A01;
  --offwhite : #e5e5e5;
  --lightgray : #e8e8e8;
  --offblack : #8A8A8A;
  --gray : #292929;
}

.contact-header-section{
  width: 100%;
  height: 60vh;
}
.contact-header-area{
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('/assets/banner.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.location-heading{
  width: 70%;
  margin: auto;
  margin-top: 30px;
  padding: 20px 0;
  h3{
    color: var(--offwhite);
    font-weight: 600;
    font-size: 25px;
  }
  p{
    color: #fff;
  }
}

.location-section{
  width: 100%;
  height: auto; 
  text-align: center;
}
.location-area{
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.location{
  width: 100%;
  height: 300px;
  padding: 20px;
  background-color: var(--black-100);
  border-radius: 20px;
  color: var(--offwhite);
  h3{
    color: var(--orange);
  }
  p{
    font-size: 18px;
    font-weight: 400;
    a{
      color: var(--lightgray);
      text-decoration: none;
    }
  }
}

@media screen and (max-width: 768px){
  .contact-header-section{
    width: 100%;
    height: 20vh;
  }
  .location-area{
    flex-direction: column;
    padding: 20px;
  }
}