.banner-landingpage {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  /* margin-top: -160px; */
  background: rgba(144, 217, 249, 0.1);
  min-height: 0!important;
  
}

.banner-landingpage h1,
.banner-landingpage h2,
.banner-landingpage h3,
.banner-landingpage h4,
.banner-landingpage h5,
.banner-landingpage p {
  color:#FFF;
}


@media (min-width: 1200px) {
  .banner-landingpage {
    /* max-height: 900px; */
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .banner-landingpage__container {
    padding-left: 24px;
    padding-right: 24px;
  }
}



.banner-landingpage__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.banner-landingpage__bg-video-wrap {
  height: 100%;
  position: relative;
  max-height: 138vh;
  background-position: top center;
  background-fit: cover;
}

.banner-landingpage__bg-video-wrap video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

.banner-landingpage__bg-video-wrap .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.banner-landingpage__bg-bottom {
  height: 25%;
  /* background: rgba(144, 217, 249, 0.1); */
}

.banner-landingpage__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  color: white;
}

.banner-landingpage__content .banner-landingpage__content-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  
  margin: unset;
}

.banner-landingpage__heading h1,
.banner-landingpage__heading h2,
.banner-landingpage__heading h3,
.banner-landingpage__heading h4,
.banner-landingpage__heading h5 {
  font-size: 36px;
}

@media (min-width: 990px) {
  .banner-landingpage__content .banner-landingpage__content-top {
    /* max-width: 50dvw; */
    max-width: 47%;
  }
}

@media (min-width: 768px) {
  .banner-landingpage__heading h1,
  .banner-landingpage__heading h2,
  .banner-landingpage__heading h3,
  .banner-landingpage__heading h4,
  .banner-landingpage__heading h5 {
    font-size: 56px;
    line-height: 70px;
    font-weight: 400;
  }
}

.banner-landingpage__content-text {
  font-size: 20px;
}

@media (min-width: 768px) {
  .banner-landingpage__content-text {
    font-size: 24px;
  }
}

.banner-landingpage__content-bottom-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.banner-landingpage__content-bottom {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .banner-landingpage__content-bottom {
    padding-top: 0;
  }
}

@media (min-width: 992px) {
  .banner-landingpage__content-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .banner-landingpage__content-bottom-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.banner-landingpage__content-bottom-grid-item {
  background-color: white;
  border-radius: 12px;
  padding: 24px;
  color: #5E5E5E;
  box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
@media (min-width: 768px) {
  .banner-landingpage__content-bottom-grid-item {
    border-radius: 30px;
    padding: 36px 24px;
    /* pointer-events: none; */
  }
}

.banner-landingpage__content-bottom-grid-item h1,
.banner-landingpage__content-bottom-grid-item h2,
.banner-landingpage__content-bottom-grid-item h3,
.banner-landingpage__content-bottom-grid-item h4,
.banner-landingpage__content-bottom-grid-item h5 {
  color: #0070B9;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  margin-bottom: 0;
}

.hover-bar{
  background-color: white;
  width: 30px;
  height: 4px;
  margin: 3px 0px;
}

.banner-landingpage__content-bottom-grid-content {
  margin-top: 0;
  height: 0;
  overflow: hidden;
}

.mobile-show-content .banner-landingpage__content-bottom-grid-content{
  height:auto;
}

@media (min-width: 768px) {
  .banner-landingpage__content-bottom-grid-content,
  .mobile-show-content .banner-landingpage__content-bottom-grid-content {
    height: auto;
  }

  .banner-landingpage__content-bottom-grid-item:hover h1,
  .banner-landingpage__content-bottom-grid-item:hover h2,
  .banner-landingpage__content-bottom-grid-item:hover h3,
  .banner-landingpage__content-bottom-grid-item:hover h4,
  .banner-landingpage__content-bottom-grid-item:hover h5
  {
    font-weight: 800;
  }

  .banner-landingpage__content-bottom-grid-item:hover .hover-bar{
    background-color: #0070B9;
  }
}

.banner-landingpage__content .banner-landingpage__button-controls {
  display: flex;
  align-items: center;
  text-align: center;
  line-height: 24px;
  font-size: 16px;
  border-radius: 50px;
  padding: 2px 12px;
  border: 1px white solid;
  background: transparent;
  color: white;
}