.header {
  & .header-logo--navy {
    display: none !important;
  }
  & .header-logo--snow {
    display: block !important;
  }
  
  & * {
    color: var(--snow) !important;
  }
  & .header-nav__content * {
    color: var(--ink) !important;
  }
  & .header-nav__trigger-toggle {
    background-color: var(--snow);
    &::before, &::after {
      background-color: var(--snow);
    }
  }
  &.active {
    & .header-logo--navy {
      display: block !important;
    }
    & .header-logo--snow {
      display: none !important;
    }
    & .header-nav__trigger-toggle {
      background-color: var(--navy);
      &::before, &::after {
        background-color: var(--navy);
      }
    }
  }
}

.home-hero {
  height: calc(100 * var(--vh, 1vh));
  & .swiper:not(.swiper-initialized) {
    & .swiper-slide {
      min-width: 100%;
      width: 100%;
    }
  }
  & .swiper, & .swiper-wrapper, & .swiper-slide {
    height: 100%;
  }
  & .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.home-concept {
  overflow: hidden;

  & .swiper:not(.swiper-initialized) {
    & .swiper-slide {
      min-width: 400px;
      width: 400px;
    }
  }
  & .swiper {
    overflow: visible;
  }
  & .swiper-wrapper {
    transition-timing-function: linear;
  }
  & .swiper-slide {
    aspect-ratio: 1 / 1;
    position: relative;
    background-color: var(--snow);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08), 0px 16px 24px 0px rgba(0, 0, 0, 0.04);
    & img {
      width: 90%;
      height: 90%;
      position: absolute;
      top: 5%;
      left: 5%;
      object-fit: contain;
    }
  }
}

.home-business-n-features-text {
  position: absolute;
  top: 8.75rem;
  left: 2.5rem;
}

.home-business {
  overflow: hidden;
  min-height: calc(100 * var(--vh, 1vh));
}

.home-business__image {
  height: 28.125rem;
  @media screen and (min-width: 1024px) {
    height: auto;
  }
}

.why-choose-us-text {
  position: absolute;
  top: 2.5rem;
  right: 1rem;
}

.home-company-images {
  width: calc(100% + 2.5rem);
  margin: 0 -1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  
  & > img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    
    &:nth-of-type(2) {
      margin-top: 1.25rem;
    }
    &:nth-of-type(3) {
      margin-top: 2.5rem;
    }
  }
  
  @media screen and (min-width: 768px) {
    width: calc(100% + 5rem);
    margin: 0 -2.5rem;
    gap: 3rem;
    
    & > img {
      &:nth-of-type(2) {
        margin-top: 2.5rem;
      }
      &:nth-of-type(3) {
        margin-top: 5rem;
      }
    }
  }
  @media screen and (min-width: 1200px) {
    width: calc(300px * 3 + 6rem);
    position: absolute;
    top: 0;
    right: 5%;
    margin: 0;
    
    & > img {
      &:nth-of-type(2) {
        margin-top: 2.5rem;
      }
      &:nth-of-type(3) {
        margin-top: 5rem;
      }
    }
  }
}

.the-artisan-text {
  width: 45%;
  max-width: 412px;
  position: absolute;
  top: 5rem;
  left: 5rem;
}
.n-company-text {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
}

.home-map {
  height: 15rem;
  width: 100%;
  position: relative;
  
  @media screen and (min-width: 768px) {
    height: 20rem;
  }
  @media screen and (min-width: 1024px) {
    height: 30rem;
  }
  
  & iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    margin: 0;
  }
}




