#contact {
    padding-top: 9rem;
}

#contact > h1 {
    text-align: center;
    color: #203149;
    padding-top: 1rem;
}

#contact > .wrapper {
    justify-content: center;
    align-items: center;
}

#contact-form {
    background: #fff;
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    padding: 1rem;
    max-width: 600px;
    margin: 1rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

#contact-form p {
    width: 100%;
}

#contact-form input[name="email"],
#contact-form select[name="subject"],
#contact-form select > option,
#contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius 3px;
    font-size: 1rem;
    outline: none;
}
#contact-form input[name="email"] {
    padding: 1rem;
    margin-bottom: 1rem;
}

#contact-form select[name="subject"],
#contact-form select > option {
    padding: 0.5rem;
}

#contact-form select[name="subject"] {
    margin-bottom: 1rem;
    /* -webkit-appearance: none; */
}

#contact-form textarea {
    padding: 0.5rem;
    margin-bottom: 0.75rem;
}

#p-button {
    text-align: center;
}

#contact-form button {
    display: inline-block;
    background: #e9464b;
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 1.25rem 3rem;
    border-radius: 3px;
    transition: background 1s linear;
    cursor: pointer;
}

#contact-form button:hover {
    background: #c31e24;
}

#contact-form .g-recaptcha {
    margin-bottom: 0.75rem;
}

@media screen and (max-width: 620px) {
    #contact > h1 {
        font-size: 2rem;
    }

}






