.bwf-hero {
  overflow-x: hidden;
  background: rgb(var(--bg-color-6));
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 200px;
  padding-bottom: 150px;
  z-index: 0;

  .bwf-hero__svg {
    position: absolute;
    z-index: 2;
    top: -230px;
    width: 100%;
  }

  .bwf-hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;

    .video_source,
    .bwf-hero__image,
    iframe {
      position: absolute;
      top: 50%;
      right: 0%;
      transform: translateY(-50%);
      width: 65%;
      height: 100%;
      pointer-events: none;
      user-select: none;
      object-fit: cover;
      object-position: center center;
    }

    iframe {
      width: 100vw;
      height: 56.25vw;
    }
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
        #021326 0%,
        rgba(2, 19, 38, 0.98) 20%,
        rgba(2, 19, 38, 0.92) 35%,
        rgba(2, 19, 38, 0.75) 48%,
        rgba(2, 19, 38, 0.35) 62%,
        rgba(2, 19, 38, 0) 100%);
  }

  &::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    z-index: 2;
    background: radial-gradient(circle,
        rgb(var(--bg-color-10), 24%) 0%,
        rgb(var(--bg-color-11), 14%) 35%,
        transparent 70%,
        transparent 100%);
    width: 480px;
    height: 480px;
  }

  .bwf-hero__arrow {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 13px;
    cursor: pointer;
  }

  .site__container--lg {
    .bwf-hero__content {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      gap: 30px;

      .bwf-hero__details {
        display: flex;
        flex-direction: column;
        gap: 45px;

        h1 {
          max-width: 1067px;
          font-family: var(--font-source-serif-4);
          font-size: var(--font-1);
          font-weight: 600;
          line-height: 1;
          letter-spacing: var(--letter-spacing-11);
          color: rgba(var(--text-color-1));
        }

        .bwf-hero__description {
          width: fit-content;
          padding-bottom: 30px;
          border-bottom: 1px solid;
          border-image: linear-gradient(90deg,
              rgba(var(--border-color-1)),
              rgba(var(--border-color-5))) 1;
        }

        p {
          max-width: 644px;
          color: rgba(var(--text-color-1));
          font-size: var(--font-21);
          line-height: 1.4;
          font-weight: 400;
        }

        a {
          margin-top: 24px;
        }
      }

      .feefo-review-card__link {
        display: flex;
        gap: 22px;
        align-items: center;

        .feefo-img {
          max-width: 100px;
          width: 100%;
          object-fit: contain;
        }

        .feefo-review-card__rating {
          font-size: var(--font-21);
          font-weight: 500;
          line-height: 1.4;
          color: rgba(var(--text-color-1));
        }

        .review-img {
          max-width: 112px;
          width: 100%;
          height: auto;
          object-fit: contain;
        }

        .feefo-review-card__review-count {
          font-size: var(--font-26);
          font-weight: 500;
          line-height: 1.6;
          color: rgba(var(--text-color-1));
          text-decoration: underline;
        }
      }
    }
  }

  @media (max-width: 1280px) {
    .bwf-hero__media .video_source {
      width: 80%;
      height: 100%;
    }

    svg {
      top: -200px;
    }
  }

  @media (max-width: 1024px) {
    min-height: 800px;
  

    .bwf-hero__details {
      gap: 36px !important;
    }

    .bwf-hero__media .video_source,
    .bwf-hero__media .bwf-hero__image {
      display: none !important;
    }

  }

  @media (max-width: 768px) {
    min-height: 800px;

    .bwf-hero__details {
      gap: 24px !important;
    }

    svg {
      top: -125px !important;
    }

    &::before {
      opacity: 0.95 !important;
    }

    .feefo-review-card__link {
      gap: 6px !important;
    }

    .feefo-img {
      max-width: 70px !important;
    }

    .feefo-review-card__rating {
      font-size: var(--font-26) !important;
    }

    .review-img {
      max-width: 70px !important;
    }

    .feefo-review-card__review-count {
      font-size: var(--font-26) !important;
    }

    .bwf-hero__arrow {
      bottom: -75px;
    }
  }

  @media (max-width: 480px) {
    svg {
      top: -70px;
    }
  }
}