.contenitore-orari {
display: flex;
flex-direction: row;
justify-content: space-between;
margin-bottom: 20px;
}
.colonna-orario {
width: 45%;
}
.colonna-orario img {
width: 100%;
}
.sezione-tariffe {
text-align: center;
margin-top: 20px;
}
.sezione-tariffe img {
width: 50%;
}
.titolo {
color: #104c9a;
font-weight: bold;
font-size: 45px;
}
.separatore{
height: 80px;
}
@media (max-width: 768px) {
.contenitore-orari {
flex-direction: column;
align-items: center;
}
.colonna-orario {
width: 100%;
margin-bottom: 20px;
}
.sezione-tariffe img {
width: 100%;
}
.titolo {
color: #104c9a;
font-weight: bold;
font-size: 30px;
}
}