*{
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

html, body{
  width: 100%;
  overflow-x: hidden;
}

.header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.header.fixed{
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(1.4px);
  padding: 10px 20px;
  box-sizing: border-box;
  -webkit-animation: slide-bottom 0.15s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-bottom 0.15s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.header img{
  height: 60px;
  cursor: pointer;
}

.internalLink{
  color: white;
  text-transform: uppercase;
  padding: 20px;
  cursor: pointer;
  width: 160px;
  text-align: center;
  position: relative;
  font-weight: bold;
}

.video-container{
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.titleMark{
  position: relative;
}

.titleMark:after{
  content:"";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 5px;
  background: #ea8898;
}

.video-container .title{
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  color: white;
  font-size: 70px;
  letter-spacing: 8px;
  position: relative;
  z-index: 2;
  -webkit-animation: text-flicker-in-glow 3s linear both;
	        animation: text-flicker-in-glow 3s linear both;
}

.video-container .subtitle{
  font-family: 'Fjalla One', sans-serif;
  text-transform: uppercase;
  color: white;
  font-size: 25px;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  -webkit-animation: text-flicker-in-glow 3s linear both;
  animation: text-flicker-in-glow 3s linear both;
}

.video-container .video{
  position: absolute;
  top: -80px;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 1;
}
.video-container .video:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.8;
}

.video-container iframe{
  pointer-events: none;
  filter: blur(5px);
}

.about{
  padding: 150px 10px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

.sliderText{
  display: flex;
  flex-wrap: wrap;
}

.textContent .sectionTitle, .textContent .sectionText{
  text-align: left;
}

.sliderImgs{
  width: 450px;
  height: 300px;
  border-radius: 8px;
  margin-left: 42px;
  border: 3px solid white;
  background:#fff;
  overflow: hidden;
}

.sliderImgs img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.invert{
  padding-top: 110px;
  background: #ea8898;
}

.invert .sectionTitle, .invert .sectionText{
  color: white;
}

.sectionTitle{
  font-size: 48px;
  text-transform: uppercase;
  position: relative;
}

.sectionTitle:after{
  content:"";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 12px;
  background: #ea8898;
  z-index: -1;
}

.sectionText{
  font-size: 17px;
  line-height: 1.5;
  color: #818181;
  max-width: 516px;
  text-align: center;
  margin-top: 42px;
}

.sectionText strong{
  color: #ea8898;
}

.videos{
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
  width: 90%;
  max-width: 960px;
  justify-content: flex-start;
}

.videos h3{
  width: 100%;
  font-size: 24px;
  margin-bottom: 24px;
}

.videoCard{
  width: 24%;
  cursor: pointer;
  min-width: 215px;
  margin-bottom: 32px;
  text-decoration: none;
  color: black;
  margin: 4px 4px 24px;
}

.videoCard .imgbox{
  overflow: hidden;
  width: 100%;
  height: 150px;
  border-radius: 8px;
}

.videoCard img{
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}

.videoCard:hover img{
  transform: scale(1.1);
}

.videoCard h4{
  font-size: 17px;
  margin-top: 8px;
}

.videoCard:hover h4{
  text-decoration: underline;
}

.shape1{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-80%);
  z-index: 2;
}
.benefits{
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  width: 90%;
  max-width: 960px;
  justify-content: space-between;
}

.benefits h3{
  width: 100%;
  font-size: 24px;
  margin-bottom: 32px;
  color: white;
}

.benefitCard{
  width: 20%;
  cursor: pointer;
  min-width: 150px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white
}

.benefitCard img{
  width: 100px;
  height: 100px;
}

.benefitCard h4{
  margin-top: 8px;
}

.ringsBg{
  position: absolute;
  width: 850px;
  top: 31px;
  opacity: 0.1;
  pointer-events: none;
}

.sliderDepositions{
  width: 400px;
  margin: 40px auto 80px;
  position: relative;
}

.ovh{
  overflow: hidden;
  width: 100%;
}

#slideContent{
  width: 100%;
  display: flex;
  transition: all ease-in 0.3s;
}

.arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  width: 50px;
  cursor: pointer;
}

.arrow.right{
  right: -80px;
}

.arrow.left{
  left: -80px;
  transform: rotateY(180deg) translateY(-100%);
}

.sliderDepositions .card p{
  font-size: 16px;
  line-height: 1.4;
  color: #818181;
}

.sliderDepositions .card h4{
  font-size: 16px;
  color: #ea8898;
  margin-top: 8px;
}

.sliderDepositions .card{
  min-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

#slideSteps{
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

#slideSteps span{
  width: 8px;
  height: 8px;
  margin: 4px;
  border-radius: 50%;
  background: #a1a1a1;
  cursor: pointer;
}

#slideSteps .active{
  background: #ea8898;
}

.spotify{
  margin: 40px auto;
  border: 16px solid #ea8898;
  display: flex;
  justify-content: space-between;
  width: 700px;
  padding: 20px;
}

.spotify h3{
  font-size: 44px;
  margin: 24px 0 28px;
}

.spotify p{
  font-size: 16px;
  line-height: 1.5;
  max-width: 280px;
}

.spotify strong{
  color: #ea8898;
  margin-top: 8px;
  display: block;
  text-transform: uppercase;
}

.contact{
  position: relative;
  background: #ea8898;
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.contact h3{
  font-family: 'Fjalla One', sans-serif;
  font-size: 42px;
  margin-bottom: 6px;
}

.contact h4{
  font-size: 22px;
}

.contact .contactContent a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid white;
  transition: all ease-in-out 0.2s;
  margin-top: 8px;
  margin: 12px 2px 0;
}

.contact .contactContent a:hover{
  background-color: rgba(255,255,255,0.2);
}

.contact .contactContent a img{
  width: 70%;
  max-height: 70%;
}

.contactContent{
  margin: 50px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactContent .footer-logo{
  width: 156px;
  border-right: 4px solid white;
  padding-right: 16px;
  margin-right: 18px;
}

.info h4, .info h5{
  width: 100%;
}

.info h5{
  font-size: 14px;
}

.link-form{
  background: #ffffff;
    border: 0;
    padding: 14px 25px;
    font-size: 16px;
    color: #2d2d2d;
    border-radius: 20px;
    margin-top: 30px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}


@media (max-width: 1024px){
 .sliderText{
   flex-direction: column;
 }

 .sliderImgs{
   margin-left: 0;
   margin-top: 24px;
   width: 100%;
 }
 
}

@media (max-width: 800px){
  .internalLink{
    display: none;
  }

  .video-container .title{
    font-size: 50px;
  }
  .video-container .subtitle{
    font-size: 19px;
  }

  .about{
    padding: 70px 10px 100px;
  }

  .invert{
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .spotify{
    flex-direction: column;
    width: 370px;
    align-items: center;
    padding: 16px;
    border: 8px solid #ea8898;
  }

  .spotify iframe{
    margin-top: 24px;
  }
}

@media (max-width: 600px){
  .videoCard{
    width: 100%;
  }

  .sectionTitle{
    font-size: 30px;
  }
  .sectionTitle:after{
    height: 8px;
  }

  .sectionText{
    margin-top: 24px;
  }

  .video{
    background-image: url("/assets/bg-mobile.jpg");
    background-size: cover;
    background-position: 65%;
  }

  .videoCard{
    width: 47%;
  }

  .videos{
    margin-top: 70px;
  }

  .benefitCard img{
    width: 60px;
    height: 60px;
  }

  .sliderDepositions{
    width: 80%;
  }

  .arrow{
    width: 35px;
  }
  .arrow.left{
    left: -35px;
  }
  .arrow.right{
    right: -35px;
  }

  .spotify{
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
  }

  .contactContent .footer-logo{
    width: 100px;
    border-right: 2px solid white;
  }

  .contact h3{
    font-size: 36px;
  }
  .contact h4{
    font-size: 20px;
  }

  .contact .contactContent a{
    width: 30px;
    height: 30px;
  }
}


@-webkit-keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2020-8-3 14:29:9
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation text-flicker-in-glow
 * ----------------------------------------
 */
 @-webkit-keyframes text-flicker-in-glow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
    text-shadow: none;
  }
  10.1% {
    opacity: 1;
    text-shadow: none;
  }
  10.2% {
    opacity: 0;
    text-shadow: none;
  }
  20% {
    opacity: 0;
    text-shadow: none;
  }
  20.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
  }
  20.6% {
    opacity: 0;
    text-shadow: none;
  }
  30% {
    opacity: 0;
    text-shadow: none;
  }
  30.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  30.5% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  30.6% {
    opacity: 0;
    text-shadow: none;
  }
  45% {
    opacity: 0;
    text-shadow: none;
  }
  45.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  55% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  55.1% {
    opacity: 0;
    text-shadow: none;
  }
  57% {
    opacity: 0;
    text-shadow: none;
  }
  57.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
  }
  60% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
  }
  60.1% {
    opacity: 0;
    text-shadow: none;
  }
  65% {
    opacity: 0;
    text-shadow: none;
  }
  65.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  75% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  75.1% {
    opacity: 0;
    text-shadow: none;
  }
  77% {
    opacity: 0;
    text-shadow: none;
  }
  77.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  85% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  85.1% {
    opacity: 0;
    text-shadow: none;
  }
  86% {
    opacity: 0;
    text-shadow: none;
  }
  86.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
  }
}
@keyframes text-flicker-in-glow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
    text-shadow: none;
  }
  10.1% {
    opacity: 1;
    text-shadow: none;
  }
  10.2% {
    opacity: 0;
    text-shadow: none;
  }
  20% {
    opacity: 0;
    text-shadow: none;
  }
  20.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
  }
  20.6% {
    opacity: 0;
    text-shadow: none;
  }
  30% {
    opacity: 0;
    text-shadow: none;
  }
  30.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  30.5% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  30.6% {
    opacity: 0;
    text-shadow: none;
  }
  45% {
    opacity: 0;
    text-shadow: none;
  }
  45.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  55% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.45), 0 0 60px rgba(255, 255, 255, 0.25);
  }
  55.1% {
    opacity: 0;
    text-shadow: none;
  }
  57% {
    opacity: 0;
    text-shadow: none;
  }
  57.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
  }
  60% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35);
  }
  60.1% {
    opacity: 0;
    text-shadow: none;
  }
  65% {
    opacity: 0;
    text-shadow: none;
  }
  65.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  75% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.35), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  75.1% {
    opacity: 0;
    text-shadow: none;
  }
  77% {
    opacity: 0;
    text-shadow: none;
  }
  77.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  85% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.55), 0 0 60px rgba(255, 255, 255, 0.4), 0 0 110px rgba(255, 255, 255, 0.2), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  85.1% {
    opacity: 0;
    text-shadow: none;
  }
  86% {
    opacity: 0;
    text-shadow: none;
  }
  86.1% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
  }
}