.wrapper.wrapper-hero-sec{
    position: relative;
}

.hero-sec-content{
    padding-top: 64px;
    transition: all 0.3s ease-in-out;
}
.hero-text-container{
    height: 473px;
    z-index: 1;
    padding-bottom: 64px;
}

.hero-text-container h1.secondText{
    font-size: 168px;
    margin-bottom: 0;
}

.hero-text-container h1.bigText{
    font-size: 448px;
    color: #0064FF !important;
    margin-bottom: 0;
}

.hero-media-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-video-content {
  width: 100%;
  flex-direction: column;
  position: relative;
}

.hero-media-container .hero-video-content article{
  width: 100%;
}

.hero-media-container .hero-img-content img, .hero-media-container .hero-video-content video{
    width: 100%;
    aspect-ratio: 16/9;
}



.responsive-video{
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
    display: inline-block;
}

.hero-media-container .media-title-content .eyebrow-container h6{
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.video-overlay-side {
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    top: 0;
    background-color: #000a3c;
    z-index:2;
}
.video-overlay-top {
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    background-color: #000a3c;
    z-index:2;
}
/*** Video Controls CSS ***/
.hero-video-container {
  width: 100%;
}

.hero-controls-wrapper {
  height: 50px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(360deg, rgba(0, 10, 60, 0.80) 0%, rgba(0, 10, 60, 0.00) 100%) no-repeat;
  /*linear-gradient(360deg, rgb(152 169 251 / 80%) 0%, rgba(0, 10, 60, 0.00) 100%) no-repeat;*/
}



.hero-video-controls {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 15px;
  padding-inline: 50px;
  transition: opacity 0.35s;
  box-sizing: border-box;
}

.hide {
  visibility: hidden;
  opacity: 0;
}

.show {
  visibility: inherit;
  opacity: 1;
}

.hero-play-pause-wrapper {
  display: flex;
}

.hero-play-pause {
  color: #7feaed;
  transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 1;
  height: 40px;
  width: 40px;
  background: transparent;
  border: none;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  padding: 0;
  border-radius: 50%;
}

.hero-play-pause:focus-visible {
  outline: 2px solid #fff;
}

.hero-play-pause .icon {
  color: #fff;
  height: 50%;
  width: 50%;
  position: absolute;
  outline: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hero-play-pause .icon.play svg,
.hero-play-pause .icon.pause svg {
  fill: #fff;
}

.hero-play-pause .icon.play.active-btn svg,
.hero-play-pause .icon.pause.active-btn svg {
  fill: red;
}


.hero-play-pause .icon.pause:hover svg {
  fill: #1475ff;
}

.hero-play-pause .icon.play:hover svg {
  fill: #1475ff;
}

.hero-play-pause .icon svg {
  height: auto;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  max-width: 2rem;
  max-height: 2rem;
}

.hero-progress-wrapper {
  height: 1.6rem;
  width: 100%;
}

.hero-progress-wrapper .hero-progress {
  height: 4px;
  width: 100%;
  position: relative;
  background-color: #e9ecef;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.hero-progress-wrapper .hero-progress .hero-internal-progress {
  background-color: #1475ff;
  position: absolute;
  top: 0;
  left: 0;
  outline: thin solid #1475ff;
  height: 100%;
  width: 0px;
}

/*** Video Controls CSS ***/
@media (min-width: 1025px){
  .hero-text-container .firstText,.hero-text-container h1.secondText,.hero-text-container h1.bigText{
    opacity:0;
  }
}
@media (max-width:1024px){
    .hero-text-container{
        height: 186px;
        margin-bottom: 0;
    }

    .video-overlay-side,
    .video-overlay-top{
      display: none !important;
    }

    .hero-text-container h3.firstText{
        font-size: 40px;
    }
    .hero-text-container h1.secondText{
        font-size: 72px;
        line-height: 86%;
    }
    .hero-text-container h1.bigText{
        font-size: 160px;
        line-height: 75%;
    }

    .hero-media-container .hero-video-content{
        height: 375px;
        width: 100%;
    }

    .hero-media-container .hero-video-content video{
        aspect-ratio: 1/1;
    }

    .hero-media-container .hero-img-content img{
        aspect-ratio: 1/1;
    }
   .hero-text-container .firstText{
     margin-bottom: 0;
   }
}
@media (max-width: 991px) {
  .hero-controls-wrapper {
    padding-left: 10px;
    padding-right: 20px;
    max-width: 145rem;
  }

  .hero-video-controls {
    padding-inline: 0;
    column-gap: 0;
  }

  .hero-video-container.playIconRight {
    margin-right: 0;
  }
}
