.main {
    display: flex;
    margin-top: var(--navbar-height);
    height: calc(100dvh - var(--navbar-height));
    width: 100%;
}
.image {
    height: 100%;
    width: 50%;
    background-image: url("../images/contact/contact.png");
    background-size: cover;
    background-position: left 20% top 30%;
}
.contact__container {
    display: flex;
    align-items: center;
    padding-left: 132px;
}
.contact {
    width: 345px;
    height: 368px;
    padding: 30px 30px 72px 30px;
    display: flex;
    flex-direction: column;
    background-color: var(--app-teal);
    color: white;
}
.contact h4 {
    padding-bottom: 11px;
    margin-bottom: 36px;
    border-bottom: 2px solid white;
    font: 600 24px Quicksand, sans-serif;
}
.contact p {
    font: 400 18px Lato, sans-serif;
}
.contact a {
    color: white;
    text-decoration: underline;
}
/* .contact a:hover {
    text-decoration: none;
} */
.contact p.charity {
    font-size: 12px;
}
@media(max-width: 1024px) {
    .main {
        margin-top: var(--navbar-height-mobile);
        height: calc(100dvh - var(--navbar-height-mobile));
    }
    .image {
        display: none;
    }
    .contact__container {
        width: 100%;
        justify-content: center;
        padding-left: 0;
        overflow-y: auto;
    }
    .contact {
        width: min(304px, var(--content-width));
    }
    .contact p {
        font-size: 16px;
    }
}