@font-face {
    font-family: "Clother";
    src: url("try-clother-light.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}

* {
    font-family: "Clother", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    background-color: #C7DADE;
    -webkit-font-smoothing: antialiased;
}

/* Page header bar */
.page-header {
    width: 100%;
    background-color: #bdd3d7;
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.page-header h1 {
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 500;
}

/* Maps page */
.box-maps {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 20px auto;
    gap: 15px;
}

.box-maps > * {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-icon {
    width: 150px;
    height: 150px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.map-walk  { background-image: url(../img/maps/walk.svg); }
.map-velo  { background-image: url(../img/maps/velo.svg); }
.map-car   { background-image: url(../img/maps/car-solid1.svg); }
.map-sap   { background-image: url(../img/maps/sap.svg); }

.map-caption {
    font-size: 24px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* Additional page */
.additional-page {
    font-size: 23px;
    padding: 20px 5vw;
}

.sub-caption {
    font-weight: bold;
    font-size: 5vw;
    margin-top: 4vw;
    margin-bottom: 2vw;
}

.price-grid {
    display: grid;
    width: 88vw;
    grid-template-columns: 62vw 25vw;
    gap: 2vw 0;
}

.price-grid > div {
    font-size: 4.5vw;
}

.price-grid > div:nth-child(even) {
    text-align: right;
}

.usage-note {
    margin-top: 5vw;
    margin-bottom: 5vw;
    font-size: 4vw;
}

.usage-note a {
    color: #2d75d7;
}

/* Instructions page */
.instruction-page {
    font-size: 23px;
    padding: 20px 25px;
}

.tel-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.tel-number {
    color: black;
    font-size: 26px;
    text-decoration: none;
}

/* Footer */
.page-footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: 80px;
}
