.home-hero {
  height: calc(var(--vh) * 100);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 12.5rem 0.625rem 2.5rem 0.625rem;
  gap: 0.625rem;
  
  @media screen and (min-width: 768px) {
    padding-bottom: 5rem;
  }
}

.home-title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 2;
}

.home-hero-subtle {
  font-family: "Hammersmith One", var(--font-sans);
  letter-spacing: 0;
  line-height: 1;
  font-size: 3.75rem;
  color: hsl(from var(--yellow) h s l / 55%);
  white-space: nowrap;
  
  @media screen and (min-width: 768px) {
    font-size: 4.5rem;
  }
  
  @media screen and (min-width: 1024px) {
    font-size: 6rem;
  }
  
  @media screen and (min-width: 1200px) {
    font-size: 7.5rem;
  }
}

.hero-typo {
  position: absolute;
  left: 0;
  bottom: -2.5rem;
  width: 100%;
  
  & .swiper-wrapper {
    transition-timing-function: linear;
  } 
  
  & .swiper-slide {
    width: fit-content;
  } 
}

.home-hero {
  & .swiper:not(.swiper-initialized) {
    & .swiper-wrapper {
      display: flex;
      overflow-x: auto;
    }
    & .swiper-slide {
      min-width: 100%;
      width: 100%;
    }
  }
  
  & .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.home-hero-news {
  position: relative;
  width: 100%;
  z-index: 3;
  
  @media screen and (min-width: 1024px) {
    position: absolute;
    bottom: 5rem;
    right: 0;
    width: 30rem;
  }
}

.home-concept-bg {
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
  }
}
.home-services {
  position: relative;
  @media screen and (min-width: 1200px) {
    height: 720px;
  }
  & .home-services__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% + 2rem);
    position: relative;
    & > img {
      margin: 0 -1rem;
    }
    
    @media screen and (min-width: 1200px) {
      height: 42.5rem;
      width: 40rem;
      position: absolute;
      top: 2.5rem;
      right: 5%;
      display: block;
      
      & > img {
        width: 250px;
        margin: 0;
        position: absolute;
        &:nth-child(1) {
          top: 0;
          left: 0;
        }
        &:nth-child(2) {
          right: 4.375rem;
          top: 2.5rem;
        }
        &:nth-child(3) {
          bottom: 2.5rem;
          left: 4.375rem;
        }
        &:nth-child(4) {
          bottom: 0;
          right: 0;
        }
      }
    }
    @media screen and (min-width: 1440px) {
      right: 15%;
      width: 45rem;
      & > img {
        width: 280px;
      }
    }
  }
}

.home-projects-grid {
  width: 100%;
  aspect-ratio: 374 / 280;
  position: relative;
  display: grid;
  gap: 0.125rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
}


