.banner-hero {
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  background: rgba(144, 217, 249, 0.1);
  display: flex;
  align-items: self-end;
}

@media (min-width: 768px) {
  .banner-hero {
    padding-top: 180px;
  }
}

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


/* @media (min-width: 1200px) {
  .banner-hero {
    max-height: 900px;
  }
} */

.banner-hero__container {
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
  /* max-width: 1440px; */
}

.banner-hero__bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 190px;
  width: 100%;
  /* height: 100%; */
}

.banner-hero__bg-video-wrap {
  height: 100%;
  position: relative;
  max-height: 138vh;
}

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

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

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

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

.banner-hero__content .banner-hero__content-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 660px;
  padding-left: 20px;
  margin: unset;
}

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

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

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

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

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

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

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

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

.banner-hero__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;
  border: 2px solid transparent;
}
@media (min-width: 768px) {
  .banner-hero__content-bottom-grid-item {
    border-radius: 30px;
    padding: 36px 24px;
    /* pointer-events: none; */
  }
}

.banner-hero__content-bottom-grid-item h1,
.banner-hero__content-bottom-grid-item h2,
.banner-hero__content-bottom-grid-item h3,
.banner-hero__content-bottom-grid-item h4,
.banner-hero__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-hero__content-bottom-grid-content {
  margin-top: 0;
  height: 0;
  overflow: hidden;
}

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

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

  .banner-hero__content-bottom-grid-item:hover {
    border: 2px solid var(--Blue-Highlight, #90D9F9);
    box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.25);
  }

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

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

.banner-hero__content .banner-hero__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;
  transition: all 0.2s ease-in-out;
}

.banner-hero__content .banner-hero__button-controls:hover {
  background-color: #0070B9;
}