#hero {
  margin-top: 40px;
  padding-top: 80px;
  height: calc(100vh - 40px);
  position: relative;

  /* .container-background{
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    border-radius: 0 0 0 100px ;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
  } */

  .content-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;

    &::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, #fff, transparent 40%);
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
    }

    video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
    }

    .owl-hero {
      height: 100%;

      .owl-stage-outer,
      .owl-stage,
      .owl-item {
        height: 100%;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
      }
    }
  }
}