#contact {
    background-color: #000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#contact .grid {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
}

#contact .grid > div, #contact .grid > a {
    background-color: #000;
}

@media (max-width: 600px) {
    #contact .grid {
        grid-template-columns: 1fr;
    }
    #contact .grid > div:first-child {
        background: none;
    }
}

#contact a {
    text-decoration: none;
    color: #ae9701;
}

#contact .header {
    background-color: #ae9701;
    text-align: center;
    font-size: 2rem;
    line-height: 2rem;
    display: block;
    color: #fff;
    text-transform: uppercase;
}

#contact img {
    width: 100%;
}

#contact .header img {
    height: 78px;
    margin-bottom: -15px
}

#contact .header span {
    display: block;
    padding: 0.75rem 0 0.5rem 0;
}

#contact .social {
    margin-top: 1.5rem;
}

#contact .social a {
    color: #fff;
    margin: 0 1rem;
}
