
/* .page-title-photo > img {
    min-width: 100%;
} */

#index-contact-div > div {
    width: 84%;
    margin: 3vh auto;
}

#main-content-block-contact {
    margin: 0 4%;
    padding: 3vh 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: space-evenly;
}

#main-content-img-txt-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: space-evenly;
}

#main-content-block-contact-img {
    width: 50%;
    max-height: 60vh;
    object-fit: cover;
    border: 1px solid transparent;
    border-radius: 12px;
}

#main-content-block-contact-text {
    margin-top: 4%;
    width: 50%;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    #main-content-img-txt-container {
        flex-direction: column;
    }

    #main-content-block-contact-img {
        width: 100%;
    }

    #main-content-block-contact-text {
        width: 100%;
    }
}

