.content {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 100px;
}

.content .open-title {
    font-weight: bold;
    margin: 20px 0;
}

.content .location-on-map,
.content .street-view {
    margin: 15px 0;
}

.content .map-iframe,
.content .street-view-iframe {
    width: 600px;
    height: 450px;
}

@media all and (max-width: 768px) {
    .content .map-iframe,
    .content .street-view-iframe {
        width: 78vw;
    }
}