
body {
    font-family: 'Roboto', sans-serif;
    color: #00274F;
    margin: 0;
    font-size: 1.5rem;
}

h1, h2 {
    font-weight: normal;
    font-family: Bebas Neue, sans-serif;
    color: #00274F;
    font-size: 3.7rem;
    margin: 0;
}

a, a:active, a:hover, a:visited {
    text-decoration: none;
    color: #167bb0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background:white;
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 5rem;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
	font-size: 1.4rem;
    user-select: none;
    z-index: 5;
    color: #167bb0;
}

#header-top {
    background-color: white;
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 10;
}

#header-logo {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}

#header-link {
    height: 50%;
}

#header-img {
    height: 100%;
    filter: brightness(100%) saturate(100%) contrast(100%);
    transition: filter .5s;
    
}

#header-img:hover {
    filter: brightness(80%) saturate(110%) contrast(130%);;
    transition: filter .5s;
}

.menu {
	display: flex;
	width: 30%;
	height: 100%;
	align-items: center;
}

.menu-section {
    position: relative;
    display: flex;
    height: 100%;
	flex-grow: 1;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.menu-txt {
    display: inline;
    z-index: 20;
}

.menu-line-SVG {
    position: absolute;
    width: 0;
    top: -15%;
    margin: auto;
    transition: width .3s;
}

.menu-line {
    stroke:#69c8f1;
    stroke-width: 2px;
}

#menu-icon {
    display: none;
    position: absolute;
    right: 3.5vh;
    height: 10vh;
    align-items: center;
}

#menu-img {
    height: 30%;
    transition: transform .7s;
}

#menu-img.menu-hidden {

}

#menu-img.menu-open {
    transform: rotate(270deg);
}

.menu-section:hover {
    color: #01517c;
}

#full-menu {
    position: fixed;
    height: 60vh;
    width: 100%;
    top: -100vh;
    padding-top: 20vh;
    padding-bottom: 20vh;
    background-color: white;
    transition: top .7s;
    z-index: -2;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#full-menu.menu-hidden {
    top: -100vh;
}

#full-menu.menu-open {
    top: 0vh;
}

#main {
    position: relative;
    top: 5rem;
    width: 100%;
}

@media screen and (max-width: 50em) {

    #header-top {
        height: 5rem;
    }

    #main {
        top: 5rem;
    }

    .menu {
        display: none;
    }

    #menu-icon {
        display: flex;
    }

    #full-menu {
        visibility: visible;
    }

    .menu-section {
        font-size: 2rem;
    }

}

#footer {
    text-align: center;
    padding: 2% 5% 2% 5%;
}

#footer-top {
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.footer-column {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    flex: 1 0 110px;
}

#footer-logo {
    height: 9rem;
}

#footer-logo-wrapper {
    height: 9rem;
}

.footer-header {
    margin: 5px 0;
    font-weight: bold;
    color: #167bb0;
    font-size: 1.4rem;
}

.footer-link {
    margin: 5px 0;
    font-size: 1.2rem;
}

.footer-social-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.footer-social-icon {
    width: 2.25rem;
    margin: 0.25rem;
    filter: invert(20%) sepia(23%) saturate(6226%) hue-rotate(180deg) brightness(95%) contrast(99%);
}

#footer-bottom {
    font-size: 1.2rem;
    color: #167bb0;
    line-height: 1.5rem;
    padding: 1% 0;
}

#fr-link, #fr:link:visited {
    color:  #167bb0;
    font-size: 1.4rem;
    margin-bottom: 1.75rem;
    text-decoration: underline;
}

#fr-link:active {
    color: #58b1df;
}

@media screen and (max-width: 800px) {

    html {
        font-size: 13px;
    }

    #footer-top {
        position: relative;
        height: 60vh;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    #footer-logo {
        height: 9rem;
    }

    .footer-column {
        flex-grow: 1;
        height: 50%;
    }

}