.flashing-button-landing {
  animation: glowing 2000ms;
  animation-delay: 4s;
  animation-iteration-count: 2;
}

@keyframes glowing {
  0% { box-shadow: 0 0 3px #00be00; }
  50% { box-shadow: 0 0 30px #00be00; color: black; }
  100% { box-shadow: 0 0 3px #00be00; }
}

.landing-navbar-link {
  text-decoration: none;
  font-size: 18px;
  padding-right: 30px;
}

/* SECTION: Splash */

#splash-section {
  padding-top: 50px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)), url('/img/kid-with-a-computer.jpg') center center no-repeat;;
  background-size: cover;
  height: 100vh;
}

#splash-section h1 {
  color: white;
  font-size: 40px;
  max-width: 350px;
  /* animation: fade-slide-down 1s ease forwards; */
}

#splash-section h3 {
  font-size: 25px;
  color: white;
  font-weight: 100;
  max-width: 350px;
  /* animation: pop-in 1s ease 0.5s forwards; */
  /* animation: fade-slide-left 1s ease 0.5s forwards; */
}

@media only screen and (max-width: 600px) {
  #splash-section h1 {
    font-size: 25px;
  }
  
  #splash-section h3 {
    font-size: 15px;
  }
}

.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
  cursor: pointer;
  
  position: absolute;
  top: 85vh;
  left: calc(50vw - 18px);
}
.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0;}
}

/* SECTION: Features */

#features-section {
  padding-top: 50px;
}

.feature-container {
  text-align: center;
}

.feature-title {
  /* font-weight: 500; */
}

.feature-description {
  padding-left: 50px;
  padding-right: 50px;
  text-align: center;
  color: darkgray;
}

#features-section i {
  font-size: 50px !important;
}

/* SECTION: How it works */
#how-it-works-section {
  text-align: center;
  background: #ebebeb;
  /* background: #f8fafd; */
  /* min-height: 100vh; */
}

#how-it-works-section h2 {
  margin-bottom: 30px;
}

#how-it-works-section .explainer-button-container {
  margin-bottom: 50px;
}

#how-it-works-section i.step-icon {
  font-size: 150px !important;
}

#how-it-works-section img.step-image {
  max-height: 250px;
  max-width: 90vw;

}

#how-it-works-section .steps {
  margin-bottom: 50px;
}

#how-it-works-section .step-description {
  padding-left: 50px;
  padding-right: 50px;
  text-align: center;
}

/* SECTION: Numbers */
#numbers-section {
  /* background: #37386f; */
  /* background: #48484a; */
  background: #ebebeb;
  /* color: white; */
  text-align: center;
}

#numbers-section .number-title {
  font-size: 40px;
  font-weight: 600;
}

#numbers-section .number-description {
  padding-left: 50px;
  padding-right: 50px;
}

/* SECTION: On completion */
#on-completion-section {
  /* color: white; */
  /* background: #f0f0f7; */
  min-height: 50vh;
  text-align: center;
  /* border-bottom: 1px solid lightgrey; */
}

.on-completion-card {
  margin: auto;
  max-width: 400px;
  text-align: left;
}

#on-completion-section h5 {
  font-size: 18px;
}

.on-completion-card ul {
  list-style: none;
}

.on-completion-card li {
  padding-bottom: 10px;
}

.on-completion-card i {
  position: relative;
  top: 5px;
  color: #00be00;
  /* font-size: 20px; */
}

@media only screen and (max-width: 600px) {
  .on-completion-card li {
    font-size: 10px;
  }
}

hr {
  margin-left: 2vw;
  margin-right: 2vw;
  padding: 0;
  /* height: 1px; */
  border: none;
  border-bottom: 1px solid lightgray;
  /* color: lightgray; */
}


/* SECTION: Thank you */
#thank-you-section {
  background: #f8fafd;
  padding-bottom: 50px;
  /* background: #ebebeb; */
}

#thank-you-section h2 {
  text-align: center;
  padding-bottom: 30px;
}

.friend-block {
  text-align: center;
}

.friend-logo {
  height: 60px;
  max-width: 95vw;
}

.friend-description {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
}