.home-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 10rem 1.25rem 0;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 812px;
  max-height: 1200px;
  @media (min-width: 768px) {
    padding-left: 3rem;
    padding-right: 2.5rem;
  }
  @media (min-width: 1024px) {
    padding-left: 5rem;
    padding-right: 3.75rem;
  }
  @media (min-width: 1200px) {
    padding-left: 7.5rem;
    padding-right: 5rem;
  }
  
  & .home-hero__title-image {
    position: relative;
    max-width: 37.125rem;
  }
  & .home-hero__title-bubble {
    position: absolute;
    width: 25rem;
    right: 0;
    bottom: -10%;
    transform: translateX(85%);
    display: none;
    @media (min-width: 1024px) {
      display: block;
    }
    @media (min-width: 1200px) {
      width: 32.5625rem;
      bottom: -20%;
      transform: translateX(100%);
    }
  }
  
  & .home-hero__slide {
    position: relative;
    & .home-hero__slide-wrapper {
      display: flex;
      width: max-content; 
      height: 100%;
      & .home-hero__slide-item {
        display: flex;
        align-items: start;
        animation: infinity-scroll 30s linear infinite both;
        & > * {
          margin-right: 1.5rem;
          width: auto;
          &:first-child {
            padding-top: clamp(1.5rem, 7.1428571429%, 7.5rem);
            height: 100%;
            & img {
              height: 100%;
              width: auto;
            }
          }
          &:nth-child(2) {
            height: 82.69230769%;
          }
          &:last-child {
            padding-top: clamp(1rem, 3.5714285714%, 3.75rem);
            height: 88.46153846%;
            & img {
              height: 100%;
              width: auto;
            }
          }
        }
      }
    }
  }
  
  & .home-hero__news {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem 1.25rem;
    background-color: var(--snow);
    width: 100%;
    @media (min-width: 768px) {
      bottom: 3rem;
      padding-left: 3rem;
      padding-right: 2rem;
      flex-direction: row;
      align-items: center;
      gap: 1.5rem;
      width: 30rem;
      border-top-right-radius: 1.5rem;
      border-bottom-right-radius: 1.5rem;
    }
    @media (min-width: 1024px) {
      bottom: 3.75rem;
    }
  }
}

.home-strengths-links {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  & a:first-child {
    grid-column: 1 / span 2;
  }
}

.home-strengths-illust {
  position: absolute;
  width: 46.6666666667%;
  top: 28%;
  left: -2%;
  @media (min-width: 1200px) {
    width: 56%;
    top: 13%;
    left: -35%;
  }
}

.home-insta-bg {
  position: absolute;
  inset: 0;
  opacity: 15%;
  & img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  &::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background-color: hsl(0 0 0 / 1%);
    backdrop-filter: blur(6px);
  }
}

.home-insta1 {
  width: 100%;
  overflow: visible;
  & .swiper-pagination {
    position: relative;
    margin-top: 1.5rem;
  }
  & .webgene-no-items {
    color: var(--snow);
  }
}

.fans-dec {
  &.fans-dec--home-strengths {
    top: -1.25rem;
    right: -4.75rem;
    @media (min-width: 768px) {
      top: 5rem;
      right: -2.75rem;
    }
  }
  &.fans-dec--home-insta {
    top: -6rem;
    left: 45%;
  }
}









