/*!
 Additional css outside of Materialize for this website only
 */

/*! Set height of Nav container at top of page so the logo fits nicely  */
.additionalvideostyles {
    min-height: 100px !important;
  }


/*! Side nav doesn't work unless z-index is 0.  Overridding materilze css  */
  .sidenav-overlay {
    z-index: 0 !important;
}



html{
  scroll-behavior: smooth;
}

  


/*! Set height of Nav container at top of page so the logo fits nicely  */
.navcontainerlarger {
    height: 70px;
  }

/*! Set max height of logo in the Hero Banner  */
  .herobannerlogosize {
    max-height: 130px;
}
/*! Set max height of logo in the Hero Banner  */
.rowmarginzero {
    margin-bottom: 0px !important;
}



h5 {
  font-family: Roboto;
  margin-top: 0px;
  margin-bottom: 20px;
}

h4 {
  font-family: Roboto;
}

body {
  background-color: black;
  color:white;
}


input {
   background-color: #3CBC8D;
  color: white;
}

textarea {
  background-color: #3CBC8D;
  color: white;
}


.video-container {
  padding-bottom: 40%;
}



/*! Sets the min height of the imageswapper div. Otherwise the page jumps on image load  */

.imageswapper{
  min-height: 600px;
}



/* From Uiverse.io by reshades */ 
.ovalbutton {
  background-color: #ffffff00;
  color: #fff;
  width: 8.5em;
  height: 2.9em;
  border: white 0.1em solid;
  border-radius: 20px;
  text-align: center;
  transition: all 0.6s ease;
  padding-left:50px;
  padding-right: 50px;
  padding-top:5px;
  padding-bottom:5px;
  font-size:20px;
  font-family: Roboto;
}

.ovalbutton:hover {
  background-color: white;
  cursor: pointer;
  color:black;
}

.ovalbutton svg {
  width: 1.6em;
  margin: -0.2em 0.8em 1em;
  position: absolute;
  display: flex;
  transition: all 0.6s ease;
}

.ovalbutton:hover svg {
  transform: translateX(5px);
}

.text {
  margin: 0 1.5em
}









.sidenav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 997;
  display: none;
}




@media only screen and (min-width: 390px) {
 
nav {
  color: #fff;
  background-color: #ee6e73;
  width: 100%;
  min-height: 64px;
  line-height: 64px;
}

nav.nav-extended {
  height: auto;
}

nav.nav-extended .nav-wrapper {
  min-height: 64px;
  height: auto;
}
}





@keyframes appear {
  from {
    opacity: 0;
    clip-path: inset(100% 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.SCROLLME {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 10%;
}



.animatepop {
  animation-name: animatepop;
  animation-timing-function: ease-in-out;
  animation-duration: 1.5s;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.animatepopNOW {
  animation-name: animatepop;
  animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
  animation-duration: 1.0s;
}


@keyframes animatepop {
  0% {
    opacity: 0;
    transform: scale(0.1, 0.1);
  }

  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}














.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.delay-1s {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}



@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}



.supersecretfield {
    position: absolute;
    left: -9999px;
}
