/* -------------------------------------> Contact Header <------------------------------------- */
section{
    margin: 0px 50px;
}
.contact-header h1{
    font-size: 50px;
    text-align: center;
    margin: 50px 0px;
    color: #002f26;
}
/* -------------------------------------> Contact Box <------------------------------------- */
.contact-box{
    display: flex;
    justify-content: space-around;
    margin: 50px 0px;
}
/* -------------------------------------> Contact Info <------------------------------------- */
.contact-info {
    background-color: #006955;
    width: 35%;
    height: 550px;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
  }
  
  .contact-info h1 {
    color: white;
    font-size: 30px;
  }
  
  .contact-info hr {
    margin-bottom: 20px;
  }
  
  .contact-info ul li {
    font-size: 18px;
    font-weight: bold;
    color: white;
  }
  
  .contact-info a {
    font-size: 16px;
    font-weight: 200;
    color: aquamarine;
    text-decoration: none;
  }
  
  .contact-info p {
    color: #bbbbbb;
    font-size: 16px;
    font-weight: 200;
  }
/* -------------------------------------> Location <------------------------------------- */
.location{
    background-color: white;
    width: 60%;
    height: 550px;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}
.location hr{
    margin-bottom: 20px;
}
.location h1{
    font-size: xx-large;
    font-weight: bold;
    color: #006955;
    text-align: center;
}
.location iframe{
    width: 100%;
    height: 430px;
}
/* -------------------------------------> Contact (mobile)<------------------------------------- */
@media (max-width: 768px) {
    .contact-box{
        display: block;
    }
    .contact-header h1{
        font-size: 50px;
        text-align: center;
        margin: 50px 0px;
        color: #002f26;
    }
    .contact-info ul li {
        font-size: 16px;
        font-weight: bold;
        color: white;
      }
      .contact-info h1 {
        color: white;
        font-size: x-large;
      }
      .contact-info a {
        font-size: 14px;
        font-weight: 200;
        color: aquamarine;
        text-decoration: none;
      }
      .contact-info p {
        color: #bbbbbb;
        font-size: 14px;
        font-weight: 200;
      }
    .contact-info {
        background-color: #006955;
        width: 100%;
        height: 350px;
        padding: 25px;
        margin-bottom: 20px;
        border-radius: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .location{
        background-color: white;
        width: 100%;
        height: 400px;
        border-radius: 20px;
        padding: 25px;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
    }
    .location iframe{
        width: 100%;
        height: 280px;
    }
}