@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --font: 'Ubuntu', sans-serif;
}

/* body
----------------------------------------------------------------------------------------------------------------------*/
html,
body {
    width: auto;
    margin: 0;
    padding: 0;
    font-family: var(--font), serif;
    font-size: 14px;
    font-weight: 400;
}
body {
    width: 100%;
    min-height: 100vh;
}
.wrap {
    width: auto;
    height: auto;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
}
div {
    outline: none !important;
}
img {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    outline: none !important;
}
a {
    outline: none !important;
    transition: color .15s;
}
button {
    outline: none !important;
}

/* header
----------------------------------------------------------------------------------------------------------------------*/
header {
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, .5);
    backdrop-filter: blur(20px);
    position: sticky;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .1);
    z-index: 99;
}
header section {
}
header section.header--top {
}

/* main
----------------------------------------------------------------------------------------------------------------------*/
main {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
main section {
    padding: 3rem 1rem;
}
main section .section-body {
}

/* map
----------------------------------------------------------------------------------------------------------------------*/
main section.map {
    padding: 0;
    flex: 1 0 400px;
}
main section .section-body {
    width: 100%;
    height: 100%;
    position: relative;
}
main section .section-body #map-content {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

/* footer
----------------------------------------------------------------------------------------------------------------------*/
footer {
    padding: 0;
    margin-top: auto;
}
footer section {
}
footer section.footer--top {
    background: #2b2e31;
}
footer section.footer--bottom {
}