#contact .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 608px;
    width: 100%;
}

.form-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.form-container p {
    margin-bottom: 1rem;
}

.beekeeper {
    display: none;
}

#client-form {
    display: flex;
    flex-direction: column;
}

#client-form input, #client-form textarea {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.25rem;
}

#client-form button:focus {
    outline: auto;
}

.contact-box {
    width: 100%;
    min-height: 569px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    color: white;
    padding: 4rem 2rem;
    justify-content: flex-end;
}

.contact-box picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact-box picture:after {
    position: absolute;
    content: '';
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-box picture img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.contact-box a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 0.5rem;
}

@media only screen and (min-width: 830.1px) {
    #contact .container {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-box {
        margin-top: auto;
    }
}