/* open-sans-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/open-sans-v34-latin-300.eot'); /* IE9 Compat Modes */
    src: url('fonts/open-sans-v34-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/open-sans-v34-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
         url('fonts/open-sans-v34-latin-300.woff') format('woff'), /* Modern Browsers */
         url('fonts/open-sans-v34-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
         url('fonts/open-sans-v34-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
  }
  /* open-sans-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/open-sans-v34-latin-regular.eot'); /* IE9 Compat Modes */
    src: url('fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/open-sans-v34-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('fonts/open-sans-v34-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('fonts/open-sans-v34-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
  }
  /* open-sans-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/open-sans-v34-latin-500.eot'); /* IE9 Compat Modes */
    src: url('fonts/open-sans-v34-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/open-sans-v34-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
         url('fonts/open-sans-v34-latin-500.woff') format('woff'), /* Modern Browsers */
         url('fonts/open-sans-v34-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
         url('fonts/open-sans-v34-latin-500.svg#OpenSans') format('svg'); /* Legacy iOS */
  }
  /* open-sans-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/open-sans-v34-latin-600.eot'); /* IE9 Compat Modes */
    src: url('fonts/open-sans-v34-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/open-sans-v34-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
         url('fonts/open-sans-v34-latin-600.woff') format('woff'), /* Modern Browsers */
         url('fonts/open-sans-v34-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
         url('fonts/open-sans-v34-latin-600.svg#OpenSans') format('svg'); /* Legacy iOS */
  }
  /* open-sans-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/open-sans-v34-latin-700.eot'); /* IE9 Compat Modes */
    src: url('fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/open-sans-v34-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
         url('fonts/open-sans-v34-latin-700.woff') format('woff'), /* Modern Browsers */
         url('fonts/open-sans-v34-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
         url('fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
  }
  /* open-sans-800 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: url('fonts/open-sans-v34-latin-800.eot'); /* IE9 Compat Modes */
    src: url('fonts/open-sans-v34-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/open-sans-v34-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
         url('fonts/open-sans-v34-latin-800.woff') format('woff'), /* Modern Browsers */
         url('fonts/open-sans-v34-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
         url('fonts/open-sans-v34-latin-800.svg#OpenSans') format('svg'); /* Legacy iOS */
  }

/* HEXAGON BG
=====================================*/
.hex-container {
    transform: scale(3);
    opacity: 0.5;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 3vw;
    /* width: 100vw; */
  }
  .hex-container .hexagon {
    position: absolute;
    height: 160px;
    width: 140px;
    animation: hexAni 15s ease-in-out infinite;
  }
  .hex-container .hexagon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(-170deg, #f6fbff 0%, #DAE7F1 100%);
    clip-path: polygon(0 28%, 51% 0, 100% 28%, 100% 74%, 49% 100%, 0 74%);
  }
  .hex-container .hexagon.-small {
    transform: scale(0.5);
    animation: hexAni-small 10s ease-in-out infinite;
  }
  .hex-container .hexagon.-big {
    transform: scale(1.5);
    animation: hexAni-big 20s ease-in-out infinite;
  }
  .hex-container .hexagon:nth-of-type(1) {
    top: 3rem;
    left: 5rem;
  }
  .hex-container .hexagon:nth-of-type(2) {
    top: 11rem;
    left: 18rem;
  }
  .hex-container .hexagon:nth-of-type(3) {
    top: 0;
    left: 25rem;
  }
  .hex-container .hexagon:nth-of-type(4) {
    top: 22rem;
    left: 10rem;
  }
  .hex-container .hexagon:nth-of-type(5) {
    top: 27rem;
    left: 20rem;
  }
  .hex-container .hexagon:nth-of-type(6) {
    top: 30rem;
    left: 5rem;
  }
  .hex-container .hexagon:nth-of-type(7) {
    top: 8rem;
    left: 29rem;
  }
  .hex-container .hexagon:nth-of-type(8) {
    top: 13rem;
    left: 1rem;
  }
  .hex-container .hexagon:nth-of-type(9) {
    top: 19rem;
    left: 26rem;
  }
  @keyframes hexAni {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(0.7);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes hexAni-big {
    0% {
      transform: scale(1.5);
      opacity: 1;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.5;
    }
    100% {
      transform: scale(1.5);
      opacity: 1;
    }
  }
  @keyframes hexAni-small {
    0% {
      transform: scale(0.5);
      opacity: 1;
    }
    50% {
      transform: scale(0.3);
      opacity: 0.5;
    }
    100% {
      transform: scale(0.5);
      opacity: 1;
    }
  }

* {
    box-sizing: border-box;
    font-family: "Open Sans" !important;
}




.slides section {
    height: 100vh;
}

  header {
    display: inline-flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 5vh 8vw;
    align-items: center;
    align-content: center;
    position: relative;
    height: 15vh;
    width: 100vw;
    background-color: #fff;
  }

  header > img:first-of-type {
    width: 22vw;
    height: auto;
    align-self: center;
    max-height: 1000px;
  }

  header > img:last-of-type {
    width: 18vw;
    height: auto;
    align-self: center;
    max-height: 1000px;
  }

  .overview {
    height: 82vh;
    width: auto;
    position: relative;
    top:8vh;
    display: block;
    /* left: 20vw; */
    margin: 0 auto !important
  }

  .infogrid {
    width: 78vw;
    display: inline-flex;
    justify-content: space-between;
    /* background: rgba(255,0,0,0.3); */
    
    margin-top: 20vh;

  }

  .movie, .presentation {
    width: 70vw;
    /* width: calc(100% * 0.45); */
    /* background: red; */
    height: 70vh;
    position: absolute;
    top: 20vh;
    left: 15vw;
    /* left: calc(11vw + ((100% * 0.45) / 2)) */
  }

  .presentation.movie {
    width: calc(65vw - 9px);
    left: 18vw;
  }

.presentation {
  background: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  z-index: 250;
  top: 500vh;
  transition: all .5s;
}

.presentation.active {
  top: 13vh
}

.videotoggle {
  position: absolute;
bottom: 0vh;
height: 4vh;
margin: 0 auto;
left: calc(50vw - 2.4vh);
z-index: 200;
}

  .presentation article {
    height: 100%;
    width: 100%;
    
    
  }

  .blurry {
    background: rgba(255,255,255,.9);
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: block;
    z-index: 238;
    display: none;

  }

  .presentation article > div {
    width: calc(100% * 0.54);
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
    /* display: inline-flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap; */
  }

  .presentation article > div img{
    display: none;
    margin: 0 auto;
  }

  .presentation article > div img.active {
    display: block;
  }

  .presentation nav {
    background: #EFBB41;
    padding: 1vh 2vw;

  }

  .presentation nav img {
    margin: 0 10px;
    height: 3vh;
    width: auto;
  }

  .presentation nav img:last-of-type {
    transform: rotate(180deg);
  }

  .presentation article > div img {
    align-self: center;
  }

  .movie video {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    /* box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); */
  }

  h1 {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #2F6CAE !important;
    padding-bottom: 5vh;
    margin-top: -2vh !important;
    text-transform: uppercase !important;
    height: calc(6rem + 5vh)
  }

  section.green h1 {
    color: #fff !important;
  }

  h3 {
    font-size: 1.7rem !important;
    font-weight: 700 !important;
  }

  h2 {
    font-size: 1.7rem !important;
    font-weight: 400 !important;
    color: #2F6CAE !important;
  }

  h4 {
    font-size: 1.7rem !important;
    font-weight: 400 !important;
    
  }

  h5 {
    font-size: 1.7rem !important;
    font-weight: 400 !important;
    color: #EFBB41 !important;
  }

  .infogrid ul {
    font-size: 1.7rem !important;
    font-weight: 300 !important;
    margin-bottom: 3vh;
    list-style-type: none;
  }

  .infogrid ul li{
    position: relative;
    padding-left: 10px;
  }

  .infogrid ul li:before{
    content: "";
    background-color: #EFBB41;
    width: 1rem;
    height: 1rem;
    position: absolute;
    top:.7rem;
    left: -1.4rem;
    border-radius: 50%;
  }

  .infogrid div {
    text-align: left;
  }

  .infogrid div:nth-child(1) {
    width: 30%;
    margin-top: -2vh;
  }

  .infogrid div:nth-child(2) {
    width: 40%;
    padding-left: 50px;
  }

  .infogrid.diagram div:nth-child(2) {
    width: 70%;
  }

  .infogrid.diagram div:nth-child(2) img {
    height: calc(100vh - 6rem - 5vh - 20vh - 5vh);
  }

  .infogrid div:nth-child(3) {
    width: 30%;
    position: relative;
    padding-left: 5vw;
    padding-top: 13vh;
  }

  .infogrid div:nth-child(3):before {
    position: absolute;
    top:13vh;
    left: 0;
    content: "";
    width: 0.2vw;
    height: 60vh;
    background: #ddd;
  }

  


  section:not(.fallback):after {
    position: absolute;
    top: 15vh;
    left: 0;
    width: 100vw;
    height: 13vh;
    content: "";
    background: #EFBB41;
    z-index: -2;
  }

  section.green:after {
    background: #499E46;
  }

  .qrcode {
    height: 10vh;
    width: auto;
    margin: 0 !important;
  }

  footer {
    position: absolute;
    background: #fff;
    background: none;
    bottom: 0;
    left: 0;
    height: 7vh;
    display: block;
    width: 100vw;
    padding: 2vh 8vw;
    display: flex;
    justify-content: space-between;
    z-index: 222;
    pointer-events: none;
  }

  footer img{
    margin: 0 !important;
    display: block;
    height: 100%;
    width: auto;
    pointer-events: all;
  }

  .burgermenu {
    pointer-events: all;
    position: absolute;
    left: 6vw;
    bottom: 0;
    background: #2F6CAE;
    color: #fff;
    width: 25vw;
    width: auto;
    height: auto;
    padding: 3vh 1vw;
    display: inline-flex;
    flex-direction: column;
    bottom: -200vh;
    
    transition: all .3s;
    
  }

  .burgermenu.right {
    left: auto;
    right: 6vw;
  }

  .burgermenu.open {
    bottom: 0;
    /* -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
  }

  /* ----------------------------------------------
 * Generated by Animista on 2023-3-15 11:21:12
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}


  .burgermenu > div {
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
    align-items:flex-start;
    align-content: flex-start;
    flex-direction: row;
    font-size: 1.7rem !important;
    margin-bottom: 1vh;
    text-transform: uppercase;
  }

  .burgermenu img {
    height: 1.7rem;
    width: auto;
  }

  .burgermenu p {
    margin:  0 !important;
    line-height: 100%;
  }

  .burgermenu p:first-of-type {
    width: 8vw;
  }

  .burgermenu p:last-of-type {
    width: auto
  }

  .burgermenu > div > * {
    margin-right: 1vw;
    
    white-space:nowrap;
  }

  .burgermenu > div > p:first-of-type {
    font-weight: 700;
    padding-left: 1vw;
    
  }

  .burgermenu > div > p:last-of-type {
    font-weight: 100;
    text-transform: uppercase;
    display: inline-flex;
    flex-direction: column;
    line-height: 100%;
  }

  .burgermenu > div > p span{
    display: block;
    margin-bottom: 1vh;

  }

  .burgermenu > div > p span a {
    color: inherit;
    display: block;
    
  }

  .burgermenu > div:last-of-type {
    margin-bottom: 0 !important;
  }

  .burgermenu.right > div:last-of-type {
    justify-content: flex-end;
  }