@charset "UTF-8";
.velo-slider__hint > span, .btn-draw {
  font-family: "Montserrat", Helvetica, sans-serif;
  font-size: 0.8em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@font-face {
  font-family: 'MavenPro-Black';
  src: url('font/MavenPro-Black.ttf') format('truetype');
}

@font-face {
  font-family: 'MavenPro-Bold';
  src: url('font/MavenPro-Bold.ttf') format('truetype');
  /* font-weight: bold; */
}

@font-face {
  font-family: 'MavenPro-ExtraBold';
  src: url('font/MavenPro-ExtraBold.ttf') format('truetype');
  /* font-weight: bolder; */
}

@font-face {
  font-family: 'MavenPro-Medium';
  src: url('font/MavenPro-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'MavenPro-Regular';
  src: url('font/MavenPro-Regular.ttf') format('truetype');
  /* font-weight: normal; */
}

@font-face {
  font-family: 'MavenPro-SemiBold';
  src: url('font/MavenPro-SemiBold.ttf') format('truetype');
}

body {
  margin: 0;
  width: 100%;
  font-weight: 400;
  font-style: normal;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/** 
 * Default to Border Box
 */
*, *:before, *:after {
  box-sizing: border-box;
}

/**
 * Links
 */
a {
  text-decoration: none;
  background-color: transparent;
  outline: 0;
}

.top-section {
  height: 100vh;
  /* background: url("https://upload.wikimedia.org/wikipedia/commons/archive/e/e1/20141028134401%21Icefields%282013.07.16%29byRyanSchroeder.jpg") no-repeat center; */
  background-size: cover;
}

.btn-draw {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  transition: all 0.4s ease-in-out;
}

.btn-draw {
  color: #00ffc8;
  margin-left: 2.3em;
}
.btn-draw:after {
  content: "";
  top: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: #00ffc8;
}
.btn-draw:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.4em;
  height: 1px;
  width: 3em;
  background-color: #00ffc8;
  transition: all 0.25s ease;
}
.btn-draw .btn-draw__text {
  position: relative;
  display: block;
  padding: 0.7555em 2.29em;
  line-height: 1.5;
  transition: transform 0.5s ease;
}
.btn-draw .btn-draw__text:before, .btn-draw .btn-draw__text:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  background-color: #00ffc8;
}
.btn-draw .btn-draw__text:before {
  top: 0;
  left: 0;
  transition: width 0.15s 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-draw .btn-draw__text:after {
  bottom: 0;
  right: 0;
  transition: width 0.15s 0.15s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-draw .btn-draw__text > span:before, .btn-draw .btn-draw__text > span:after {
  content: "";
  position: absolute;
  height: 0;
  width: 1px;
  background-color: #00ffc8;
  transition: all 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9);
}
.btn-draw .btn-draw__text > span:before {
  left: 0;
  bottom: 0;
  transition: height 0.15s 0 cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-draw .btn-draw__text > span:after {
  right: 0;
  top: 0;
  transition: height 0.15s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (hover) {
  .btn-draw:hover, a:hover .btn-draw {
    cursor: pointer;
    color: #00ffc8;
  }
  .btn-draw:hover ~ .velo-slide__bg {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .btn-draw:hover:before, a:hover .btn-draw:before {
    width: 0;
    transition: all 0.4s ease;
  }
  .btn-draw:hover .btn-draw__text, a:hover .btn-draw .btn-draw__text {
    transform: translateX(-2.2em);
    transition: transform 0.5s ease, width 1s ease;
  }
  .btn-draw:hover .btn-draw__text:before, a:hover .btn-draw .btn-draw__text:before {
    width: 100%;
    max-width: 100%;
    transition: width 0.15s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .btn-draw:hover .btn-draw__text:after, a:hover .btn-draw .btn-draw__text:after {
    width: 100%;
    transition: width 0.15s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .btn-draw:hover .btn-draw__text > span:before, a:hover .btn-draw .btn-draw__text > span:before {
    left: 0;
    height: 100%;
    transition: height 0.15s 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .btn-draw:hover .btn-draw__text > span:after, a:hover .btn-draw .btn-draw__text > span:after {
    right: 0;
    height: 100%;
    transition: height 0.15s 0.15s cubic-bezier(0.77, 0, 0.175, 1);
  }
}

.btn-draw.btn--white {
  color: #fff;
}
.btn-draw.btn--white:before, .btn-draw.btn--white:after,
.btn-draw.btn--white .btn-draw__text:before,
.btn-draw.btn--white .btn-draw__text:after,
.btn-draw.btn--white .btn-draw__text > span:before,
.btn-draw.btn--white .btn-draw__text > span:after {
  background-color: #fff;
}
.btn-draw.btn--white:hover, a:hover .btn-draw.btn--white {
  color: #fff;
}

.btn-draw .register {
  position: relative;
  display: block;
  padding: 0.7555em 2.29em;
  line-height: 1.5;
  transition: transform 0.5s ease;
}
.btn-draw .register:before, .btn-draw .register:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  background-color: #00ffc8;
}
.btn-draw .register:before {
  top: 0;
  left: 0;
  transition: width 0.15s 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-draw .register:after {
  bottom: 0;
  right: 0;
  transition: width 0.15s 0.15s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-draw .register > span:before, .btn-draw .register > span:after {
  content: "";
  position: absolute;
  height: 0;
  width: 1px;
  background-color: #00ffc8;
  transition: all 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9);
}
.btn-draw .register > span:before {
  left: 0;
  bottom: 0;
  transition: height 0.15s 0 cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-draw .register > span:after {
  right: 0;
  top: 0;
  transition: height 0.15s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (hover) {
  .btn-draw:hover, a:hover .btn-draw {
    cursor: pointer;
    color: #00ffc8;
  }
  .btn-draw:hover ~ .velo-slide__bg {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .btn-draw:hover:before, a:hover .btn-draw:before {
    width: 0;
    transition: all 0.4s ease;
  }
  .btn-draw:hover .register, a:hover .btn-draw .register {
    transform: translateX(-2.2em);
    transition: transform 0.5s ease, width 1s ease;
  }
  .btn-draw:hover .register:before, a:hover .btn-draw .register:before {
    width: 100%;
    max-width: 100%;
    transition: width 0.15s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .btn-draw:hover .register:after, a:hover .btn-draw .register:after {
    width: 100%;
    transition: width 0.15s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .btn-draw:hover .register > span:before, a:hover .btn-draw .register > span:before {
    left: 0;
    height: 100%;
    transition: height 0.15s 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .btn-draw:hover .register > span:after, a:hover .btn-draw .register > span:after {
    right: 0;
    height: 100%;
    transition: height 0.15s 0.15s cubic-bezier(0.77, 0, 0.175, 1);
  }
}

.btn-draw.btn--white {
  color: #fff;
}
.btn-draw.btn--white:before, .btn-draw.btn--white:after,
.btn-draw.btn--white .register:before,
.btn-draw.btn--white .register:after,
.btn-draw.btn--white .register > span:before,
.btn-draw.btn--white .register > span:after {
  background-color: #fff;
}

body {
  font-family: "Montserrat", Georgia, serif;
  line-height: 1.6;
}

body {
  font-size: 100%;
}
@media (min-width: 32em) {
  body {
    font-size: 102%;
  }
}
@media (min-width: 54em) {
  body {
    font-size: 103%;
  }
}
@media (min-width: 65em) {
  body {
    font-size: 107%;
  }
}
@media (min-width: 75em) {
  body {
    font-size: 110%;
  }
}
@media (min-width: 91em) {
  body {
    font-size: 120%;
  }
}
@media (min-width: 115em) {
  body {
    font-size: 130%;
  }
}
@media (min-width: 130em) {
  body {
    font-size: 140%;
  }
}

.velo-slide__vid-wrap2 {
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.velo-slide__vid-wrap2:after {
  /* z-index: 0; */
  /* content: ""; */
  /* position: absolute; */
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: #111;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Helvetica, sans-serif;
  font-weight: 700;
}

.velo-slides {
  z-index: 8;
  position: relative;
  height: 100vh;
  background-color: #e2dcdc;
}
.velo-slides[data-velo-slider=on] {
  overflow: hidden;
}

.velo-slide {
  height: 100vh;
  z-index: 4;
}
@media (min-width: 54em) and (max-width: 65em) {
  .velo-slide {
    font-size: 80%;
  }
}
@media (min-width: 54em) and (min-height: 0) and (max-height: 45em) {
  .velo-slide {
    font-size: 70%;
  }
}
[data-velo-slider=on] .velo-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.velo-slide.is-active {
  z-index: 8;
}
.velo-slide__bg {
  z-index: 7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  color: #c68119;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background-color: rgb(255, 248, 249);
  overflow: hidden;
}
.velo-slide__bg:after {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.9;
  background: #c68119;
}
.is-hovering .velo-slide__bg::after {
  opacity: 0;
}

.velo-slide__figure {
  z-index: 0;
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.is-hovering .velo-slide__figure {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}


.velo-slide__figures {
  z-index: 0;
  position: relative;
  height: 80%;
  width: 80%;
  top: 100px;
  left: 250px;
  overflow: hidden;
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.is-hovering .velo-slide__figures {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

.velo-slide__vid-wrap {
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.velo-slide__vid-wrap:after {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: #111;
}
.is-hovering .velo-slide__vid-wrap {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}
.velo-slide__vid {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  min-width: 100%;
  max-width: none;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.velo-slide__header {
  z-index: 9;
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  overflow-y: hidden;
  padding: 6%;
}
.velo-info {
  z-index: 9;
  position: relative;
  border-color: red;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  overflow-y: hidden;
  padding: 6%;
}

.infos{
  width: 100%;
  max-width: 60%; 
  align-items: flex-end;
  text-align: end;
  font-size: 34px;
  /* background-color: rgb(255, 248, 249); */
}

h6 {
  color: #c68119; /* Example color for h6 */
}

h5 {
  color: white; /* Example color for h7 */
}

h6, h5 {
  display: inline; /* Display headers inline */
}

.color1 {
  color: #c68119; /* Color for the first group of words */
}

.color2 {
  color: white; /* Color for the second group of words */
}

@media (max-width: 768px) {
  /* Styles for screens up to 768px width */
  .velo-slide__header,
  .velo-info {
    align-items: center;
    text-align: center;
  }

  .infos {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  /* Styles for screens up to 480px width */
  .velo-slide__header,
  .velo-info {
    padding: 3%;
  }

  .infos {
    font-size: 18px;
  }
}
.velo-info__title {
  margin-bottom: 0.1em;
  margin-right: 2.5em;
  line-height: 1.1;
  color: #fff;
  font-family: 'MavenPro-Bold';
  letter-spacing: -0.025em;
  font-weight: 700;
  font-size: 2.25em;
}
@media (min-width: 54em) {
  .velo-info__title {
    font-size: 5em;
  }
}
@media (min-width: 65em) {
  .velo-info__title {
    font-size: 5em;
  }
}
@media (min-width: 91em) {
  .velo-info__title {
    font-size: 5em;
  }
}
.velo-info__text {
  color: #fff;
  max-width: 30em;
  display: block;
  margin: 1em 0 1.5em 1%;
  font-size: 1.1em;
  line-height: 1.8;
  font-weight: 300;
}

.velo-slide__pretitle {
  color: #fff;
  max-width: 22em;
}
@media (min-width: 54em) {
  .velo-slide__pretitle {
    margin-left: 7%;
  }
}
.velo-slide__title {
  margin-bottom: 0.1em;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.025em;
  font-weight: 700;
  font-size: 2.25em;
  font-family: 'MavenPro-Bold';
}
@media (min-width: 54em) {
  .velo-slide__title {
    font-size: 5em;
  }
}
@media (min-width: 65em) {
  .velo-slide__title {
    font-size: 5em;
  }
}
@media (min-width: 91em) {
  .velo-slide__title {
    font-size: 5em;
  }
}
.velo-slide__text {
  color: #fff;
  max-width: 30em;
  display: block;
  margin: 1em 0 1.5em 1%;
  font-size: 1.1em;
  line-height: 1.8;
  font-weight: 300;
}
.velo-slide__btn {
  opacity: 0;
}
@media (min-width: 54em) {
  .velo-slide__btn {
    margin-left: 1vw;
  }
}
.is-active .velo-slide__btn {
  opacity: 1;
}
.velo-slide__btn > a > span {
  opacity: 0;
  overflow-y: hidden;
  transform: translate3d(0, 100%, 0);
}
.is-active .velo-slide__btn > a > span {
  opacity: 1;
  z-index: 9999;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s ease, opacity 0.8s ease;
}



body {
  margin: 0;
  background: rgb(255, 248, 249);
  color: #f8f5f5;
  font-family: 'MavenPro-Regular';
}

h1 {
  position: relative;
  color: #fff;
  opacity: 0;
  transition: .8s ease-in-out;
}

#progress {
  position: absolute;
  background: #c68119;
  height: 100vh;
  width: 0;
  transition: width 0.2s ease-in-out;
}

.center {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/******
  Form
 ******/

#register {
  background: #fff;
  position: relative;
  width: 410px;
  padding: 2px 15px 20px 15px;
  box-shadow: 0 16px 24px 2px rgba(0,0,0,0.14), 0 6px 30px 5px rgba(0,0,0,0.12), 0 8px 10px -5px rgba(0,0,0,0.3);
  transition: transform .1s ease-in-out;
}

#register.close {
  width: 0;
  padding: 0;
  overflow: hidden;
  transition: .8s ease-in-out;
  box-shadow: 0 16px 24px 2px rgba(0,0,0,0);
}

.next {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 40px;
  color: rgb(255, 248, 249);
  float: right;
  cursor: pointer;
}
.next:hover {color: #333}
.wrong .next {color: #ff2d26}
.close .next {color: #fff}

#inputContainer {
  position: relative;
  opacity: 0;
  width: 350px;
  margin-top: 25px;
  transition: opacity .3s ease-in-out;
}

#inputContainer input {
  color: rgb(255, 248, 249);
  width: 100%;
  padding: 0 5px;
  border: none;
  font-size: 20px;
  font-weight: bold;
  outline: 0;
  background: transparent;
  box-shadow:none;
}

#inputLabel {
  position: absolute;
  pointer-events: none;
  top: -7em;
  height:100%;
  left: -10em;
  font-size: 34px;
  color: white;
  font-weight: bold;
  padding: 0 15px;
  transition: .2s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .social-media {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; /* Center align the content */
  }
  #inputLabel {
    position: absolute;
    pointer-events: none;
    top: -3em;
    width: 100%;
    height:100%;
    left: 2em;
    font-size: 34px;
    color: white;
    font-weight: bold;
    padding: 0 15px;
    transition: .2s ease-in-out;
  }

}

@media only screen and (max-width: 1168px) {
  .social-media {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; /* Center align the content */
  }
  #inputLabel {
    position: absolute;
    pointer-events: none;
    top: -3em;
    width: 100%;
    height:100%;
    left: 2em;
    font-size: 34px;
    color: white;
    font-weight: bold;
    padding: 0 15px;
    transition: .2s ease-in-out;
  }

}
/* #inputContainer input:valid + #inputLabel {
  top: -24px;
  font-size: 15px;
  font-weight: normal;
  color: #9e9e9e;
} */

#inputProgress {
  position: absolute;
  border-bottom: 2px solid #25a3ff;
  padding: 3px 0;
  width: 0;
  transition: width .6s ease-in-out;
}

.wrong #inputProgress {
  border-color: #ff2d26;
}