.component-01 {
  overflow: hidden;

  .begins {
    color: var(--bs-white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    &:before {
      content: "";
      display: block;
      width: 70px;
      height: 14px;
      background: url(../../assets/images/star-empty.svg) repeat scroll left
        center / 14px auto transparent;
      filter: brightness(0) invert(1);
    }
  }

  .oj-media {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;

    &:after {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background-color: rgba(0, 0, 0, 0.3);
    }
    img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }

  @media (min-width: 1200px) {
    .title {
      font-size: var(--fs-90);
      line-height: var(--lh-90);
    }

    .description {
      font-size: var(--fs-30);
      line-height: var(--lh-30);
    }
  }

  @media (max-width: 1399px) {
    display: flex;
    align-items: center;
    min-height: 900px;
  }

  @media (max-width: 1199px) {
    .title {
      font-size: var(--fs-50);
      line-height: var(--lh-50);
    }
    .description {
      font-size: var(--fs-24);
      line-height: var(--lh-24);
    }
  }

  @media (max-width: 991px) {
  }

  @media (max-width: 767px) {
    display: flex;
    align-items: flex-end;
    min-height: 640px;

    .title {
      font-size: var(--fs-30);
      line-height: var(--lh-30);
    }
  }

  @media (max-width: 575px) {
  }
}
