/* Contact form */
#contact input,
#contact select,
#contact option,
#contact textarea {
    font-family: 'Avenir-light', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
    width: 100%;
    border-width: 0 0 1px 0;
    margin-top: 1rem;
}

#contact textarea{
    /* resize: none; */
    height:3lh;
}

#contact input:focus,
#contact select:focus,
#contact textarea:focus {
    outline: none;
    border-width: 0 0 2px 0;
    border-color: var(--primary-color);
    border-radius: 0;
}

#contact {
    padding: 50px 0;
    background: var(--light-color);
    color: var(--secondary-color);
    width: 100vw;
}

#contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

#contact .contact-subheading {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: -1rem;
    font-size: small;
    color: var(--secondary-color);
}

#contactForm div{
    display: flex;
    flex-direction: column;
    width: 100%;
}

#contactForm {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
}

#contact form {
    width: 80%;
    justify-self: center;
}

#contact form .form-control {
    border-radius: 5px;
}

#contact form button {
    background: white;
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 20px;
    transition: transform 0.3s;
    text-align: center;
    width: 100%;
}

#contact form button:hover {
    text-decoration: underline;
    text-underline-offset: 1rem;
}

#contact form button i {
    transition: 0.3s ease;
}

#contact form button:hover i {
    transform: rotate(60deg)
}