@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
	/*background: rgb(167,194,200);
	background: linear-gradient(90deg, rgba(167,194,200,1) 0%, rgba(255,255,255,1) 50%, rgba(167,194,200,1) 100%);*/
	margin: 0;
	font-family: 'Archivo';
  background-color: #cff8ff;
}

a, a:visited {
	text-decoration: none;
}

/*-------- NAVIGATION -------------------------- */

#stickymenu {
  position: sticky;
  top: 20%;
  line-height: 1.2em;
  text-align: right;
  color: #00a3ff;
  margin-right: 20px;
  transition: .3s;
  margin-left: 10px;
}

.menuitem {
  color: #00a3ff;
  cursor: pointer;
  transition: .3s;
}

.submenuitem {
  font-size: .8em;
  color: #007aa6;
  padding-left: 50%;
}

.blacktext {
  color: black;
}

.buttonbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding-bottom: 30px;
}

.button1 {
  margin: 12px 0px 0px 0px;
  width: 100%;
  height: 40px;
  background-color: #00a3ff;
  background-image: linear-gradient(to top, #00d2ff 0%, #3a7bd5 51%, #00d2ff 100%);
  background-size: auto 200%;
  background-position: center top;
  border: none;
  font-size: 1.4em;
  border-radius: 6px;
  transition: .2s;
  text-align: center;
  padding: 8px 0;
}

.button1:hover {
  background-color: #21a8d9;
  background-position: center bottom;
  cursor: pointer;
  transition: .2s;
}



/*-------- PARAGRAPHS & HEADERS -------------------------- */

.maintitle {
  font-size: 4em;
  color: #00a3ff;
  text-shadow: 0px 0px 4px black;
}

.bigparagraph {
  font-size: 1.2em;
  line-height: 1.4em;
}

.bigparagraphnomargin {
  font-size: 1.2em;
  line-height: 1.4em;
  margin: 0px;
}

.bigparagraphcentered {
  font-size: 1.4em;
  line-height: 1.4em;
  text-align: center;
}

.paragraph1 {
  padding: 30px;
  line-height: 1.5em;
}

.standard {
  line-height: 1.5em;
}

.centeredheading {
  text-align: center;
}

.subtext {
  font-size: .7em;
  line-height: 1em;
}

.headertitle {
  font-size: 3.4em;
  padding: 10px 0 0 10px;
  border-color: #00a3ff;
  border-left-style: dotted;
  border-top-style: dotted;
  border-width: thick;
}

.loginbutton {
  text-align: right;
  color: white;
  margin-bottom: 10px;
}

.headersubtitle {
  font-size: 2.2em;
}

.largetext {
  font-size: 2.8em;
  margin-bottom: 0px;
}

.subheading {
  font-size: 1.6em;
}

.subheadingsmaller {
  font-size: 1.4em;
}

.nomargintop {
  margin-top: 4px;
  margin-right: 20px;
  margin-left: 20px;
}

.nomarginbottom {
  margin-bottom: 4px;
  margin-right: 20px;
  margin-left: 20px;
}

.textright {
  text-align: right;
}


/*-------- COLUMNS & ROWS -------------------------- */

.col-container {
  display: table;
  width: 100%;
}
.col2 {
  display: table-cell;
}
.col1 {
  display: table-cell;
  width: 25%;
}

.col3 {
  display: table-cell;
  width: 50%;
  height: 100%;
}

.col4 {
  display: table-cell;
  width: 30%;
  height: 100%;
}

.column25 {
  float: left;
  width: 25%;
}

.column75 {
  float: left;
  width: 75%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.columnthirty {
  float: left;
  width: 30%;
}

.columnfive {
  float: left;
  width: 5%;
}

.columnfifty {
  float: left;
  width: 50%;
}

.column70 {
  display: table-cell;
  width: 65%;
  height: 100%;
}

.columnforty {
  float: left;
  width: 40%;
}

.columnsixty {
  float: left;
  width: 60%;
}

/*-------- TIMELINE -------------------------- */

.timelinebaronly {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timelinebaronly::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #3dcbff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #3dcbff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.yearbox {
  width: 150px;
  font-size: 1.2em;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
  background-color: white;
}

/* Container around content */
.timelinecontainer {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 30%;
  transition: .3s;
}

.timelinecontainer:hover {
  width: 50%;
  transition: .3s;
}

/* The circles on the timeline */
.timelinecontainer::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #3dcbff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.timelineleft {
  left: 20%;
  transition: .3s;
}

.timelineleft:hover {
  left: 0;
  transition: .3s;
}

/* Place the container to the right */
.timelineright {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.timelineleft::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #3dcbff;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #3dcbff;
}

/* Add arrows to the right container (pointing left) */
.timelineright::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent #3dcbff transparent transparent;
}

/* Fix the circle for containers on the right side */
.timelineright::after {
  left: -16px;
}

/* The actual content */
.timelinecontent {
  padding: 8px 8px;
  background-color: #3dcbff;
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 1000px) {
  /* Place the timelime to the left */
  .timeline::after {
  left: 31px;
  }

  /* Full-width containers */
  .timelinecontainer {
  width: 60%;
  padding-left: 70px;
  padding-right: 25px;
  }

  .timelinecontainer:hover {
    width: 100%;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timelinecontainer::before {
  left: 60px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent #3dcbff transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .timelineleft::after, .timelineright::after {
  left: 15px;
  }

  /* Make all right containers behave like the left ones */
  .timelineright {
  left: 0%;
  }

  .timelineleft {
    left: 0%;
  }
}

/*-------- TIMELINE 2--------------------*/
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.timeline2 {
  margin: 0px auto;
  max-width: 100%;
  overflow: hidden;
  height: auto;
  position: relative;
  padding: 0px;
  list-style-type: none;
  /*thanks to
     https://twitter.com/JacoKoster
  */
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEElEQVQIW2NMTEz8z8gABAAPKwIlXWq1kgAAAABJRU5ErkJggg==);
  background-repeat: repeat-y;
  background-position: 50% 0;
  /*
    elements 1,(2),3,(4), etc.
    elements in brackets inherit these properties, some are overridden below (2n)
    beginning at 0
  */
}
.timeline2 .year {
  background: #3dcbff;
  font-size: 1.8em;
  max-width: 4em;
  clear: both;
  margin: 1em auto 2em;
  color: black;
  border-radius: 30% / 100%;
  text-align: center;
  margin-top: 2em;
}
.timeline2 .year:first-of-type {
  margin-top: 0 !important;
}
.timeline2 .event {
  position: relative;
  text-align: left;
  float: right;
  clear: right;
  width: 20%;
  margin: 1em 0%;
  right: 25.5%;
  border-radius: 6px;
  list-style-type: none;
  display: block;
  padding: .4em;
  background: #3dcbff;
  z-index: 15;
  color: black;
  transition: .3s;
  text-decoration: none;
}

.pushdown {
  margin-top: 100px !important;
}

.timeline2 .event.featured {
  width: 95% !important;
  background: #3dcbff;
}
.timeline2 .event.featured:after, .timeline2 .event.featured:before {
  display: none;
}
@media all and (max-width: 600px) {
  .timeline2 .event {
    width: 85%;
  }
}
.timeline2 .event.offset-first {
  margin-top: -1.5em !important;
}
.timeline2 .event img {
  margin-top: 10px;
  max-width: 100%;
}
.timeline2 .event:hover {
  background: #3dcbff;
  width: 45%;
  margin: 1em 2.5%;
  transition: .3s;
  right: 0%;
}
.timeline2 .event:hover:after {
  background: #3dcbff;
}
.timeline2 .event:nth-of-type(2n) {
  float: left;
  clear: left;
  text-align: right;
  left: 25%;
}

.timeline2 .event:nth-of-type(2n):hover {
  left: 0%;
}


.timeline2 .eventright {
  float: right !important;
  clear: right !important;
}

.timeline2 .event1:before {
  display: block;
  text-align: center;
  font-size: 14px;
  content: 'Age 2';
  height: 40px;
  width: 50px;
  background-color: white;
  border-color: #3dcbff;
  border-style: solid;
  border-radius: 8px;
  position: absolute;
  left: -40%;
  top: 1.5em;
  transition: .3s;
  z-index: 3;
  padding: 8px 0px;
}

.timeline2 .event1:hover:before {
  left: -12.5%;
  transition: .3s;
}

.timeline2 .event2:before {
  display: block;
  text-align: center;
  font-size: 14px;
  content: 'Age 4';
  height: 40px;
  width: 50px;
  background-color: white;
  border-color: #3dcbff;
  border-style: solid;
  border-radius: 8px;
  position: absolute;
  right: -40%;
  top: 1.5em;
  transition: .3s;
  z-index: 3;
  padding: 8px 0px;
}

.timeline2 .event2:hover:before {
  right: -12.5%;
  transition: .3s;
}

@media all and (min-width: 600px) {
  .timeline2 .event:nth-of-type(2n) {
    margin-top: 1em;
  }
}
@media all and (min-width: 650px) {
  .timeline2 .event:after {
    display: block;
    content: ' ';
    height: 9px;
    width: 10%;
    background: #3dcbff;
    border-radius: 0%;
    position: absolute;
    left: -10%;
    top: 1.5em;
  }
}
.timeline2 .event:nth-child(2n):after {
  right: -10%;
  /* reset the standard declaration I defined before*/
  left: auto;
}

.timeline2 .eventright:after {
  left: -5% !important;
  /* reset the standard declaration I defined before*/
}

/*-------- BOXES -------------------------- */

.padding {
  padding: 10% 10% 0% 5%;
  width: 100%;
  margin: auto;
}

.padding2 {
  padding: 0% 5% 0% 5%;
  width: 100%;
  margin: auto;
}

.padding3 {
  padding: 0% 10% 0% 5%;
}

.lightbluebox {
  background-color: #3dcbff;
  color: black;
  margin: 5%;
  padding: 10px 20px;
  border-radius: 12px;
  height: 90%;
  transition: .2s;
}

.lightblueboxsmaller {
  background-color: #3dcbff;
  color: black;
  margin: auto;
  padding: 10px 20px;
  border-radius: 12px;
  height: 90%;
  transition: .2s;
  width: 60%;
}

.lightbluehover:hover {
  background-color: #21a8d9;
  cursor: pointer;
  transition: .2s;
}

.videosectionbox {
  border-left: 4px;
  border-left-style: double;
  padding-left: 10px;
  border-color: #3dcbff;
}

.form-success {
  margin: 12px;
  color: green;
}

.starthidden {
  display: none;
}

.animateup {
  animation: scale-up-ver-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.form-error {
  margin: 12px;
  color: red;
}

.borderedbox {
  border-style: solid;
  border-color: #3dcbff;
  border-radius: 6px;
  padding: 4px 16px;
}

.imgbox {
  width: 100%;
  box-shadow: -6px -6px #3de8ff;
}

.seventywidth {
  width: 70%;
  margin: auto;
}

.centered {
  width: 90%;
  margin: auto;
}

.smallmarginright {
  margin-right: 10px;
}

.smallmarginleft {
  margin-left: 10px;
}

.fullwidth {
  width: 100%;
}

.inputheight {
  height: 40px;
}

.rounded {
  border-radius: 6px;
  border-style: none;
}

.smallpadding {
  padding: 8px;
}

.darkbackground {
  background-color: rgba(0, 0, 0, .4);
}

.contactbox {
  background-color: #3dcbff;
  margin-left: 20px;
  padding: 20px;
  border-radius: 12px;
  width: 70%;
}

.testbox {
  top: 0;
  width: 100%;
  display: block;
  margin: auto;
  padding: 20px;
}

.submitbutton {
  width: 200px;
  padding: 10px;
  height: 48px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  border-style: none;
}

#header {
  width: 100%;
}

#seesystembanner {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: auto;
}

.newsboxpadding {
  height: 100%;
  width: 100%;
}

.titlebox {
  color: white;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.whitetext {
  color: white;
}

.sidebox {
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.newsbox {
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 4px;
}

.image {
 object-fit: contain;
}

.smallmargins {
  margin: 16px 6px;
}

.smallermargins {
  margin: 8px;
}

.headermargins {
  margin: 10px 20px;
}

.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.zeromargintop {
  margin-top: 0px;
}

.zeromarginbottom {
  margin-bottom: 0;
}

.zeromargintopbottom {
  margin-top: 0px;
  margin-bottom: 0px;
}

.highlighted {
  font-weight: bold;
  transition: .3s;
  color: #0b578a;
}

#footer {
  text-align: center;
  padding: 20px;
}

.background-video {
  position: absolute;
  display: block;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#miniheader {
  display: none;
}

.mobilemenubutton {
  display: none;
  float: right;
  position: sticky;
  top: 14px;
  right: 14px;
  width: 90px;
  height: 42px;
  z-index: 20;
  background-color: #3dcbff;
  border-radius: 4px;
  text-align: center;
  font-size: 30px;
  border-color: white;
  border-style: double;
  color: white;
}

/*----ANIMATIONS-----------*/
@keyframes scale-up-ver-top {
  0% {
    transform: scaleY(0.1);
    transform-origin: 100% 0%;
		opacity: 0%;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 100% 0%;
		opacity: 100%;
  }
}

/*---FOR MOBILE --------------------------------------------*/
@media only screen
  and (max-device-width: 812px) {

  .mobilemenubutton {
    display: block;
  }

  .headerclass {
    display: none;
  }

  #miniheader {
    display: block;
  }

  .col1 {
    display: inline-block;
    width: 100%;
  }

  .col2 {
    display: inline-block;
    width: 100%;
  }

  #stickymenu {
    display: none;
    position: fixed;
    width: 100%;
    margin: 0;
    top: 0;
    background-color: #cff8ff;
    text-align: left;
    padding-right: 16px;
    padding-bottom: 30px;
    border-color: #3dcbff;
    border-style: double;
    border-radius: 4px;
    z-index: 10;
  }

  .contactbox {
    width: 90%;
  }

  .seventywidth {
    width: 95%;
  }
}

@media only screen
  and (max-device-width: 812px)
  and (orientation: portrait)
  {
    .columnfive {
      display: none;
    }

    .columnthirty {
      width: 100%;
      display: inline-block;
      margin: auto;
    }

    .column70 {
      width: 100%;
      display: inline-block;
      margin: auto;
    }

    .maintitle {
      font-size: 2.2em;
    }

    .columnsixty {
      width: 100%;
      display: inline-block;
      margin: auto;
    }

    .columnforty {
      width: 100%;
      display: inline-block;
      margin: auto;
    }

    #stickymenu {
      padding-left: 18px;
      padding-top: 90px;
    }

    .rowgroup {
      border-color: white;
      border-style: dotted;
      border-radius: 10px;
      margin-bottom: 6px;
    }

    .col2 {
      width: 100%;
      display: inline-block;
      margin: auto;
    }

    .col3 {
      width: 100%;
      display: inline-block;
      margin: auto;
    }

    .columnfifty {
      width: 100%;
      display: inline-block;
      margin: auto;
    }

    .timelinecontainer {
      width: 80%;
    }

    .lightblueboxsmaller {
      width: 90%;
    }
  }

@media only screen
  and (max-device-width: 812px)
  and (orientation: landscape)
  {
    .testbox {
      padding: 40px;
    }

    .maintitle {
      font-size: 3em;
    }

    #stickymenu {
      padding-left: 48px;
      padding-top: 20px;
    }

    .lightblueboxsmaller {
      width: 75%;
    }

    .mobilemenubutton {
      right: 40px;
    }
  }
