<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-image: url(../images/footer-bg-sky.jpg);
    background-position: bottom center;
    background-size: cover;
}

.mapWrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media only screen and (max-width:768px) {
    .mapWrapper {
        grid-template-columns: 1fr;
    }
}

.mapWrapper .mapContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mapWrapper .mapContainer h2 {
    color: #ec1c23;
    font-family: Roboto, Monsterrat, Noto Sans, sans-serif;
    font-weight: bold;
    padding-bottom: 20px;
    border-bottom: 2px solid #ec1c23;
}</pre></body></html>