
/* ===== CONTACT PAGE ===== */
.contact-wrapper {
    display:flex;
    flex-direction: column;
    align-items: center;
    gap:2rem;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items:flex-start
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    width: 90%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius:8px;
  }
  .contact-info h2, .contact-form h2 {
    align-self: center;
    margin-bottom: 15px;
  }
  .contact-info p {
    margin-bottom: 10px;
  }
  .contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
  }
  .contact-info a {
    color: var(--dark-grey);
  }
  label {
    display: block;
    margin-bottom: 5px;
  }
  input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius:4px;
  }

  /*Contact*/
#map {
    height: 450px;
    width:100%;
    border: 1px solid #ccc;
    border-radius:8px;
    margin-top:2rem;
  }
  iframe{
    width:100%;
    height:100%;
    border:none;
  }
  .google-maps {
    position: relative;
    padding-bottom: 5%;
    height: 0;
    overflow: hidden;
    margin-bottom: 2rem;
  }
  .google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .gmaps-error {
    background-color: #f0f0f0;
    color: #d43f3d;
    padding: 1rem;
    text-align: center;
    border: 1px solid #d43f3d;
    border-radius: 0.375rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 769px) {  
    .contact-wrapper{
      flex-direction: row;
      align-items: unset;
      justify-content:space-between;
      width: 80%;
    }
  
    .contact-info h2, .contact-form h2{
      align-self: unset;
    }
  
    .contact-form {
      width: 65%;
      max-width: 700px;
    }
  }