.contact-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    align-items: center;
    color: white;
}

  .option-link {
    margin: 1rem;

  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1rem;
  height: 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%), #1B3B6F;
  
  color: white;
  border: none;
  text-decoration: none;
  
  font-size: clamp(1rem, 3vw, 1.5rem);
  
  padding: clamp(0.5rem, 2vw, .6rem)clamp(1rem, 4vw, 1.5rem);
  border-radius: clamp(0.5rem, 5vw, 2.5rem);
  
  /* make sure the icon scales nicely */
  .option-icon {
    width: 2rem;
    height: 2rem;
  }
}


.map{
  width: 350px;
  height: 300px;
  border-radius: 24px;
  object-fit: cover;
  background-size: cover;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

}


.section-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

@media screen and (max-width: 600px) {
  .option-link .prefix {
    display: none;
  }  
  .option-link .value {
    text-align: center;
    display: inline-block;
  }
  .section-grid {
    flex-direction: column;
  }
}
