.contact-content {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.contact-content > div {
    width: 50%;
}

.contact-content h2 {
    color: var(--color-green-dark);
}

.contact-content .column {
    color: var(--color-green-dark);
    font-weight: 600;
    display: inline-block;
    margin-right: 100px;
}

.contact-content .column a {
    text-decoration: none;
    color: var(--color-green-dark);
    cursor: pointer;
    --webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

.widget-form {
    margin-top: 50px;
}


.contact-content p {
    padding-right: 50px;
}

.map-photo iframe, .map-photo img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.map-photo img {
    object-fit: cover;
    object-position: center center;
}

@media screen and (min-width: 1000px) {
    .contact-content .column a:hover {
        text-decoration: underline;
        color: var(--color-green-dark-2);
    }
}

@media screen and (max-width: 1300px) {
    .contact-content .column {
        margin-right: 0;
    }
}

@media screen and (max-width: 800px) {
    .contact-content {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .contact-content > div {
        width: 100%;
    }

    .map-photo img {
        display: none;
    }

    .contact-content h2 {
        text-align: center;
    }

    .contact-content p {
        padding-right: 20px;
    }

}