.sec-hero{
  background: url(../images/hero-bg.jpg);
  background-size: cover;
  background-position: center;
}
.hero-badge-list{
  display: inline-flex;
  padding: 0.4rem 1.2rem 0.4rem 0.4rem;
  border-radius: 999px;
}
.hero-badge{
  margin-right: 0.4rem;
}
.hero-badge:last-child{
  margin-right: 0;
}
.hero-badge img{
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  object-fit: cover;
}
.hero-text p{
  font-size: 1.6rem;
  letter-spacing: -0.32px;
}
.hero-video{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video video{
  display: block;
  width: 100%;
  height: 60rem;
  object-fit: cover;
  border-radius: 2rem 2rem 0 0;
  border: 0.4rem solid #3D4354;
  border-bottom: 0;
}
#btnHeroVideoPlay{
  position: absolute;
  background: var(--dark-blue);
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  z-index: 1;
  margin-top: 6rem;
  border: 2px solid var(--border-secondary);
  transition: all 0.3s ease-in-out;
}
#btnHeroVideoPlay:hover{
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media(min-width:1360px) and (max-width:1459.98px){
  .hero-text p {
    font-size: 1.5rem;
    letter-spacing: -0.30px;
  }
  .hero-video video {
    height: 53rem;
  }
  #btnHeroVideoPlay {
    margin-top: 3rem;
  }
}
@media(min-width:1200px) and (max-width:1359.98px){
  .sec-hero .col-lg-8{
    width: 73%;
  }
  .hero-text p {
    font-size: 1.5rem;
    letter-spacing: -0.30px;
  }
  .hero-video video {
    height: 47.5rem;
  }
  #btnHeroVideoPlay {
    margin-top: 3rem;
  }
}
@media(min-width:992px) and (max-width:1199.98px){
  .sec-hero .col-lg-8{
    width: 90%;
  }
  .hero-text p {
    font-size: 1.5rem;
    letter-spacing: -0.30px;
  }
  .hero-video video {
    height: 42rem;
  }
  #btnHeroVideoPlay {
    margin-top: 2rem;
  }
}
@media(min-width:768px) and (max-width:991.98px){
  .hero-text p {
    font-size: 1.5rem;
    letter-spacing: -0.30px;
  }
  .hero-video video {
    height: 38.7rem;
  }
  #btnHeroVideoPlay {
    margin-top: 3rem;
  }
}
@media(max-width:767.98px){
  .sec-hero {
    padding-top: 2rem;
  }
  .hero-text {
    text-align: left !important;
  }
  .hero-text p {
    font-size: 1.5rem;
    letter-spacing: -0.30px;
  }
  .hero-video {
    margin-top: 2rem;
  }
  .hero-video video {
    height: 29.2rem;
  }
  #btnHeroVideoPlay {
    width: 4.8rem;
    height: 4.8rem;
    margin-top: 2rem;
  } 
}
@media(max-width:575.98px){
  .hero-video video {
    height: 54vw;
  }
}