#contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    margin: 1rem 0rem;
    padding: 1rem;
}

.headerContact {
    width: 100%;
    height: max-content;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;

    overflow-x: hidden;

    margin: 1rem 0;
    column-gap: 1rem;
    row-gap: 1.5rem;
}

.contactItem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 300px;

    row-gap: 0.1rem;

    text-decoration: none;
    color: black;
}

.contactItem box-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.contactForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 80%;
    height: max-content;
    border-top: 1px solid black;
    border-bottom: 1px solid black;

    row-gap: 1rem;
    margin: 1rem 0rem;
    padding: 2rem 0rem;
}

.contactFormItem {
    width: 100%;
    height: max-content;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-family: 'Montserrat', sans-serif;
}

.contactFormItem label {
    color: black;
    opacity: 0.7;
}

.contactFormItem input {
    width: 80%;
    height: 2rem;

    border: none;
    background-color: rgba(232, 226, 226, 0.7);
}

.contactFormItem textarea {
    width: 90%;
    height: 10rem;

    border: none;
    background-color: rgba(232, 226, 226, 0.7);
}

#contactSubmit {
    width: 7rem;
    height: 4rem;

    background-color: black;
    border-radius: 15px;
    color: white;
    font-family: 'Montserrat', sans-serif;

    cursor: pointer;

    transition: all 500ms ease-in-out;
}

#contactSubmit:hover {
    background-color: blue;
}

.ourLocation {
    width: 100%;
    height: 30rem;

    padding: 1rem;
}