/* -------------------------------------------------------------------------- */

/*	Hero
/* -------------------------------------------------------------------------- */

/* Hero Home */

.hero{
  min-height: 100vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.hero .title{
  width: 500px;
  font-size: 9rem;
  line-height: 70%;
  letter-spacing: -5px;
  color: white;
}

.hero .subtitle{
  font-family: var(--font-family-base);
  font-size: 2.5rem;
  color: #2e51bd;
}

.hero .by .img{
  width: 48px;
  aspect-ratio: 1/1;
  border-radius: 100%;
}

.hero video{
  object-fit: cover;
}

.hero .edito{
  z-index: 9;
}

.hero .background-img{
  position: absolute;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.hero .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


@media screen and (max-width: 991px){
  .hero .title{
    width: 100%;
    font-size: 7rem;
  }
  .hero #breadcrumbs{
    font-size: 0.625rem;
  }
  .hero .vc_custom_heading{
    font-size: 0.8rem;
  }
}