.home-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 100svh;
  padding: 10rem 0 5rem;
  color: var(--color-white);
  background-color: var(--color-black);

  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    opacity: 0.75;
  }
}

.our-projects-swiper {
  overflow: visible;
  .swiper-wrapper {
    .swiper-slide {
      height: auto;
    }
  }
  .swiper-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;

    .swiper-button-next-unique,
    .swiper-button-prev-unique {
      font-size: 2rem;
      color: var(--color-green);
    }

    .swiper-button-disabled {
      color: var(--color-darkgray);
    }
  }
  .project {
    position: relative;
    display: flex;
    padding: 2rem;
    height: 100%;
    min-height: 22rem;
    background-color: var(--color-black);

    .project-image {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0.75;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
        user-select: none;
      }
    }

    .project-info {
      width: 100%;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      text-align: center;
      color: var(--color-white);

      .project-status {
        width: 100%;
        display: flex;
        justify-content: end;
        text-transform: uppercase;
        font-weight: 500;
        margin-bottom: 2rem;
      }

      .project-name {
        margin-top: auto;
        color: var(--color-white);
      }
    }
  }
}
