* {
    font-family: var(--mont);
}

#hero {
    margin-top: var(--hero-mt);
}

.hero-img {
    height: 70vh;
    max-height: 600px;
    object-fit: cover;
}

#contact-form-wrapper {
    background-color: white;
    padding: 24px;
    border-radius: 20px;
    flex: 1;
    box-sizing: border-box;
    box-shadow: 8px 8px 20px 0px rgba(0,0,0,0.2);
}

#contact-form-wrapper h3 {
    margin-top: 0px;
}

form {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
form label {
    margin-top: 10px;
    font-weight: 500;
}
form input, form textarea {
    margin-top: 5px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
form textarea {
    resize: vertical;
}

.impact-orgs-grid {
    height: fit-content;
}