.contact-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding-bottom: 100px;
}
.contact-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
}
.contact-info .contact-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px;
}
.contact-info .contact-caption {
    margin-bottom: 15px;
}
.contact-info .contact-value {
    margin: 0;
}
.container {
    position: relative;
    height: unset;
}

@media screen and (max-width: 750px) {
    .contact-row {
        flex-direction: column;
        gap: 25px;
        padding-bottom: 50px;
    }

    .contact-info .contact-title {
        margin-bottom: 7px;
    }
}