/* WRAP */
.contact-page-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ROW */
.contact-section-container {
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    gap: 15rem;
    
}

.col {
    background: #BDD0AE;
    flex: 1 1 40rem;
    border-radius: 20px;
}

.contact-mb-details {
    padding: 3rem;
}

  .contact-mb-details h1 {
    margin-bottom: 3rem;
    text-align: center;
  }

  .contact-details-grid {
    position: relative;
    display: grid;
    grid-template-columns: max-content auto auto;
    grid-template-rows: auto;
    column-gap:2rem;
    row-gap: 3rem;
    margin-bottom: 3rem;
  }

  .contact-form-details-wrapper h1 {
    padding: 3rem 0;
    text-align: center;
  }

form {
    
    display: flex;
    flex-direction: column;
    align-items: center;

}
.form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.5rem;
}

.form-group input {
    height: 3rem;
    width: 35rem;
    border-radius: 5px;
    border: none;
    font-size: 1.8rem;
    padding: 0.5rem;
}

#subject {
    width: 50rem;
}

.form-group label {
    margin-right: 1rem;
    color: #000086;
    font-size: 2rem;
    font-weight: 600;
}

.text-area-group {
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-content: center;
    width: 50rem;
    padding: 1.5rem;
}

.text-area-group label {
    margin-right: 1rem;
    color: #000086;
    font-size: 2rem;
}

.contact-form-details-wrapper textarea {
    border-radius: 10px;
    border: none;
    font-size: 2rem;
    padding: 1rem;
}


.contact-form-details-wrapper button {
    width: 50%;
    margin: 2rem 0 3rem 0;
    padding: 1.5rem 3rem;
    background: #007BFF;
    border: 2px solid #8DBFF4;
    color: whitesmoke;
    font-size: 2rem;
    font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 0.2rem;
    border-radius: 25px;
    }

    .contact-form-details-wrapper button:hover {
        background: #063362;
    }