main .no-pad {
  padding: 0;
}

main .center-height-content {
  align-items: center;
  flex-direction: column;
  align-self: center;
  padding: 10px;
}

main .video-container button,
main .banner-text button {
  margin: 20px auto 50px;
  font-size: 24px;
  white-space: normal;
  color: #384149;
  background: #fd7d73;
  border: none;
  border-radius: 5px;
  display: block;
}

main .laka-link:hover,
main .banner-text a:hover {
  text-decoration: none;
}

main #top-banner {
  background-image: url("../jpg/insurance-page-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

main #top-banner svg {
  width: 50%;
  top: 5vw;
  position: relative;
}

main .banner-text {
  display: flex;
  justify-content: center;
  margin-right: 10px;
}

main .banner-text h1 {
  text-align: center;
}

main .banner-text .fa-angle-down {
  position: absolute;
  bottom: 15px;
  font-size: 40px;
  padding: 10px 20px;
  cursor: pointer;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
  -webkit-animation: arrowDown 2s infinite;
  animation: arrowDown 2s infinite;
  display: none;
}

main .banner-text p {
  margin: 30px 10px 20px;
  font-size: 16px;
  text-align: center;
}

main .video-container button:hover,
 main .banner-text button:hover {
  background-color: #da5a5a;
}

main #content {
  margin-bottom: 40px;
}

main #content .content-intro {
  font-size: 18px;
}

main #content h2 {
  margin-bottom: 20px;
  text-align: center;
}

main #content .checklist .col-lg-6 {
  margin-top: 10px;
  text-align: center;
  display: flex;
  padding: 30px 15px;
}

main #content .checklist .col-lg-6 p {
  font-size: 24px;
  font-weight: bold;
}

main #content .checklist .col-lg-6 .circle-icon {
  width: 70px;
  height: 70px;
  background: #fd7d73;
  border-radius: 50px;
}

main #content .checklist .col-lg-6 .circle-icon i {
  font-size: 40px;
  display: block;
  color: #fff;
  padding-top: 14px;
  padding-left: 1px;
}

main #content .checklist .col-lg-6 .circle-icon svg {
  width: 50px;
  margin-top: 11px;
}

main .video-container {
  color: #fff;
  background: #333333;
  margin-top: 10px;
  padding: 30px 15px 30px;
}

main .video-container h2 {
  text-align: center;
}

main .video-container #video-box {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

main .video-container #video-box #video-svg-box {
  display: flex;
  justify-content: center;
  height: 100%;
  position: absolute;
  width: calc(100% - 30px);
  z-index: 1;
  align-items: center;
}

main .video-container #video-box svg {
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
  position: absolute;
  opacity: 0.8;
  z-index: 1;
}

main .video-container #video-box:hover svg {
  opacity: 1;
  transform: scale(1.2);
}

main .video-container p {
  text-align: center;
  margin-bottom: 20px;
}

main .video-container .laka-link {
  margin-top: 50px;
  text-align: center;
  display: block;
}

@media (min-width: 992px) {
  main .center-height-content {
    padding: 0;
  }

  main .equal-height-row {
    display: flex;
  }

  main .banner-text {
    color: #fff;
    background: #333333;
  }

  main .banner-text h1 {
    margin: 0;
  }

  main .banner-text .fa-angle-down {
    display: block;
  }

  main #content {
    padding-top: 50px;
  }

  main #content .checklist {
    display: flex;
  }

  main #content .checklist .col-lg-6 {
    padding: 50px 0;
  }

  main .video-container #video-box {
    padding: 80px 10px 40px;
  }
}

@keyframes arrowDown {
  0% {
    bottom: 15px;
  }

  70% {
    bottom: 45px;
  }

  100% {
    bottom: 15px;
  }
}