.opening-hours {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.opening-hours .day,
.opening-hours .date,
.opening-hours .time {
    display: block;
    text-align: center;
}

@media (max-width: 900px) {

    .opening-hours .day-card {
        width: 100% !important;
        display: flex;
        justify-content: space-between;
    }

    .opening-hours .day-card .day,
    .opening-hours .day-card .time {
        width: 40%;
    }
}