.cell-layer {
  z-index: 1;
}
/* hide join in button that goes to register page */
.btn-register {
  display: none;
}
/* general */
.container-landing h2,
.container-landing p {
  margin: 0;
}
.container-landing h2 {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.container-landing section {
  padding: 40px 0;
}
.underlined {
  text-decoration: underline;
}
.grey-bkg {
  background-color: #f8f8f8;
}

/* section1 - carousel */
#heroCarousel {
  height: 115px;
}
.carousel-indicators {
  bottom: -40px;
}
.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #418d8d;
  margin: 0 2%;
}

/* section2 */
.section2 {
  display: flex;
  flex-direction: column-reverse;
}
.section2 div,
.section5 div {
  align-self: center;
}
.continer-section2 {
  display: grid;
  grid-template-columns: 1fr 8fr;
  grid-gap: 15px;
  align-items: center;
  background-color: white;
  margin-top: 30px;
  height: 70px;
  width: 100%;
  border-radius: 5px;
  padding: 15px;
  position: relative;
  z-index: 1;
}
.continer-section2 .svg-inline--fa {
  font-size: 2rem;
  color: #418d8d;
}
.continer-section2 p {
  font-weight: 600;
  font-size: 1rem;
}

/* section4 */
.section4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 21px;
}
.section4 p {
  font-weight: 300;
  font-size: 13px;
}
.beep {
  background-image: url(/static/landing/images/beep-red.gif);
  background-size: 150px auto;
  background-position: 100% 70%;
  background-repeat: no-repeat;
  width: 100%;
  margin: auto;
}

/* section5 */
.section5 {
  display: flex;
  flex-direction: column;
}

.video {
  width: 100%;
  border-radius: 10px;
}

@media (min-width: 400px) {
  .beep {
    background-size: 200px auto;
  }
}

/* Tablet styles (≥576px) */
@media (min-width: 576px) {
  .container-landing h2 {
    font-size: 35px;
  }
  .container-landing section {
    padding: 60px 0;
  }
  .beep {
    background-size: 320px auto;
    background-position: 100% 61%;
  }
  #heroCarousel {
    height: 180px;
  }
  .carousel-indicators li {
    width: 15px;
    height: 15px;
  }

  /* .grid-container */
  .section2,
  .section4 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    grid-gap: 40px;
  }

  .continer-section2 {
    margin: 15px 0;
  }
  .continer-section2 p {
    font-size: 0.9rem;
  }
  .section4 p {
    font-size: 21px;
  }
}

/* Small desktop styles (≥768px) */
@media (min-width: 768px) {
  .container-landing h2 {
    font-size: 50px;
  }
  .container-landing section {
    padding: 80px 0;
  }
  .beep {
    background-size: 430px auto;
    background-position: 100% 63%;
  }
  #heroCarousel {
    height: 230px;
  }
  .carousel-indicators li {
    width: 20px;
    height: 20px;
  }
  /* .grid-container */
  .section2,
  .section4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 50px;
  }
  .continer-section2 p {
    font-size: 1.1rem;
  }
  .section4 p {
    font-size: 28px;
  }
}

/* Medium desktop styles (≥992px) */
@media (min-width: 992px) {
  .container-landing h2 {
    font-size: 70px;
  }
  .container-landing section {
    padding: 80px 0;
  }
  .beep {
    background-size: 530px auto;
    background-position: 100% 72%;
  }

  #heroCarousel {
    height: 300px;
  }

  .carousel-indicators li {
    width: 25px;
    height: 25px;
  }

  .continer-section2 {
    grid-gap: 35px;
    font-size: 1.4rem;
    margin-top: 0px;
    margin-bottom: 30px;
    height: 110px;
    width: 450px;
    padding: 20px;
  }
  .continer-section2 .svg-inline--fa {
    font-size: 3.5rem;
  }
  .continer-section2 p {
    font-size: 1.4rem;
  }

  /* .section4 {
    grid-template-columns: 1.2fr 1fr;
  } */

  /* .grid-container */
  .section4 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 105px;
  }

  .section4 p {
    font-size: 35px;
  }
}

/* Large desktop styles (≥1200px) */
@media (min-width: 1200px) {
  .container-landing h2 {
    font-size: 86px;
    line-height: 1.2;
  }
  .container-landing section {
    padding: 60px 0;
  }
  .beep {
    background-size: 600px auto;
    background-position: 100% 85%;
    padding: 10px 0;
  }
  #heroCarousel {
    height: 370px;
    margin-top: 60px;
  }
  .carousel-txt {
    height: 300px;
  }
  .carousel-indicators {
    bottom: -60px;
  }
  .carousel-indicators li {
    width: 30px;
    height: 30px;
  }
  /* .grid-container */
  .section2 {
    grid-gap: 80px;
  }
  .section4 {
    grid-gap: 155px;
  }

  .continer-section2 {
    grid-gap: 40px;
    font-size: 1.7rem;
    height: 130px;
    width: 500px;
    padding: 25px;
  }
  .continer-section2 .svg-inline--fa {
    font-size: 4.2rem;
  }
  .continer-section2 p {
    font-size: 1.7rem;
  }
  .section4 p {
    font-size: 43px;
  }
}
