/* lato-300 - latin */
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/lato-v20-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/lato-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/lato-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/lato-v20-latin-300.woff') format('woff'), /* Modern Browsers */
         url('../fonts/lato-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/lato-v20-latin-300.svg#Lato') format('svg'); /* Legacy iOS */
  }
  /* lato-regular - latin */
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v20-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/lato-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/lato-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/lato-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/lato-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/lato-v20-latin-regular.svg#Lato') format('svg'); /* Legacy iOS */
  }
  /* lato-700 - latin */
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v20-latin-700.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/lato-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/lato-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/lato-v20-latin-700.woff') format('woff'), /* Modern Browsers */
         url('../fonts/lato-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/lato-v20-latin-700.svg#Lato') format('svg'); /* Legacy iOS */
  }
  /* lato-900 - latin */
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/lato-v20-latin-900.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/lato-v20-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/lato-v20-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/lato-v20-latin-900.woff') format('woff'), /* Modern Browsers */
         url('../fonts/lato-v20-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/lato-v20-latin-900.svg#Lato') format('svg'); /* Legacy iOS */
  }


body { padding: 20px; }
#logout { position: absolute; right: 10px; top: 10px;}
.bg-light { background-color: #f8f9fa!important; }
.container { max-width: 960px; }
.w-25px { width: 25px; }
.fa { font-size: 19px; }

h1, h2, h3, h4, h5, h6 {
    font-family: Lato;
}

#login-form {
    max-width: 400px;
    padding: 20px;
    margin: auto;

    position:absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    height: 250px; /*requires explicit height*/
    background-color: white;
}

/*
* navigation
*/
nav.menu {
    width: 33px;
    height: 36px;
    margin: 30px 30px 0 0;
    z-index: 999;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
}
nav.menu div.strokes {
    width: 100%;
    height: 3px;
    margin: 0 0 9px 0;
    background: rgb(0, 98, 204);
    transition:  transform 0.3s, opacity 0.1s;
}

nav.menu div.strokes.hide {
    opacity: 0;
    transform:  translateX(-42px);
}
nav.menu div.strokes.animate0 {
    transform: rotate(45deg) translateY(17px);
    background: white;
}
nav.menu div.strokes.animate2 {
    transform: rotate(-45deg) translateY(-17px);
    background: white;
}

.fullscreenmenu {
    background-color: rgba(164, 187, 202, 0);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
    position: absolute;
    opacity: 0;
    -webkit-transition: background 0.5s ease-in-out, opacity 0.5s;
    -moz-transition: background 0.5s ease-in-out, opacity 0.5s;
    -ms-transition: background 0.5s ease-in-out, opacity 0.5s;
    -o-transition: background 0.5s ease-in-out, opacity 0.5s;
    transition: background 0.5s ease-in-out, opacity 0.5s;
    text-align: center;
    z-index: 4;
}
.fullscreenmenu.show {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.85);
    -webkit-transition: background 0.5s ease-in-out, visibility 0.5s;
    -moz-transition: background 0.5s ease-in-out, visibility 0.5s;
    -ms-transition: background 0.5s ease-in-out, visibility 0.5s;
    -o-transition: background 0.5s ease-in-out, visibility 0.5s;
    transition: background 0.5s ease-in-out, visibility 0.5s;
}
.fullscreenmenu ul {
    padding: 65px 0 0 0;
    list-style: none;
}
.fullscreenmenu li a {
    visibility: inherit;
    color: white;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: clamp(36px,10vw,56px);
    text-decoration: none;
    line-height: 150%;
    display: block;
}