@font-face {
    font-family: 'Metrophobic';
    src: url('/fonts/metrophobic.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #E6F6CFFF;
    font-family: Metrophobic, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: #007a6e;
}


.content {
    display: flex;
    flex-direction: column;

    height: 100vh;
}

h1.head {
    text-align: center;
    margin: clamp(2rem, 6vw, 6rem) auto 0 auto;
    padding: 0 1rem;
    display: block;
    flex-grow: 0;
}

h1.head a {
    text-decoration: none;
}

h1.head img {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
}

.inline {
    display: inline-block;
}

.flex {
    display: flex;
}

.cat {
    width: 50px;
    position: fixed;
    bottom: 0;
    left: 1rem;
}

.map {
    max-width: 100%;
    height: auto;
}

.bottom-right {
    width: 300px;
    position: fixed;
    bottom: 20px;
    right: 1rem;
    font-size: 24px;
}

.body {
    margin: auto auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

ul {
    margin: 0 0 3rem 0;
    padding-inline-start: 10px;
    max-width: 800px;
}


li {
    list-style: none;
    margin-bottom: 1rem;
}


.bullets li {
    list-style: disc;
    margin-left: 1rem;
    margin-bottom: 0;
}

.back {
    display: inline-block;
    margin: 2rem 0;
    float: left;
}

.next {
    display: inline-block;
    margin: 2rem 0;
    float: right;
}

.table {
    display: grid;
    grid-template-columns: 1fr auto;
}

.table .price {
    text-align: right;
}

@media (max-width: 640px) {
    .cat {
        width: 32px;
    }
    .bottom-right {
        position: static;
        width: auto;
        text-align: center;
        margin: 2rem 1rem;
        font-size: 1rem;
    }
    .body {
        font-size: 1.15rem;
        padding: 0 1rem;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #007a6e;
    outline-offset: 2px;
    border-radius: 2px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip-link:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    background: #007a6e;
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 100;
    text-decoration: none;
}

#contact-form label {
    display: block;
    margin-bottom: 1rem;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    max-width: 500px;
    padding: 0.5rem;
    border: 1px solid #888;
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

#contact-form button {
    background: #007a6e;
    color: #fff;
    border: 0;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 3px;
    cursor: pointer;
}

.concept {
    background: #fff3cd;
    border-left: 4px solid #f0ad4e;
    padding: 0.75rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}