:root {
    --blue: #0069b4;
    --white: #FFFFFF;
    --grey: #f0f0f0;
}

* {
    margin: 0;
}

h1 {
    color: var(--blue);
    font-size: 40px;
    font-weight: 300;
}

h2 {
    color: var(--white);
    font-style: normal;
    font-weight: 200;
    font-size: 18px;
}

h3 {
    color: var(--blue);
    font-size: 22px;
    font-weight: 200;
}

h4 {
    color: var(--white);
    font-style: normal;
    font-weight: 200;
    font-size: 26px;
}

h5 {
    margin-top: 3px;
    color: var(--white);
    font-style: normal;
    font-weight: 100;
    font-size: 18px;
}

html,
body {
    height: 100%;
    font-family: Calibri;
    font-size: 15px;
}

body {
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.content {
    min-height: 100%;
    margin-bottom: -35px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    overflow: auto;
}

.map-icon {
    position: fixed;
    top: 5px;
    left: 5px;
}

.map-icon img {
    width: 36px;
    height: 36px;
}

.site-footer {
    height: 35px;
    line-height: 35px;
    font-weight: 100;
    color: var(--blue);
    text-align: center;
    z-index: 2;
    background-color: var(--white);
    margin-right: 40px;
}

.fadeIn {
    -webkit-transform: scale(1) translateZ(0px) !important;
    -moz-transform: scale(1) translateZ(0px) !important;
    -ms-transform: scale(1) translateZ(0px) !important;
    -o-transform: scale(1) translateZ(0px) !important;
    transform: scale(1) translateZ(0px) !important;
}

.text-content {
    visibility: collapse;
    display: none;
    flex-direction: column;
}

.text-content h1 {
    align-self: center;
}

.text-content:last-child {
    height: calc(100% - 25px);
}

.visible {
    visibility: visible !important;
    display: flex !important;
}

.invisible {
    visibility: collapse !important;
    display: none !important;
}

.menu-wrapper {
    width: 100%;
}

.circle {
    width: 150px;
    height: 150px;
    border-radius: 50vmin;
}

@media all and (max-width: 65em) {
    h1 {
        font-size: 60px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 30px;
    }
    h4 {
        font-size: 40px;
    }
    h5 {
        font-size: 24px;
    }
    .content {
        margin-bottom: -50px;
    }
    .site-footer {
        height: 50px;
        line-height: 50px;
        font-size: 30px;
    }
}