@import "../../components/splitText/style.css";
.home-banner {
  position: relative;
  z-index: 1;
}
.home-banner > .bg {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.home-banner > .bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.home-banner-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 0 var(--block-spacing);
  display: grid;
  grid-template-columns: 47.9166666667% 1fr;
  align-items: start;
}
.home-banner-container > .img {
  aspect-ratio: 690/610;
  clip-path: url(#image-clip-br);
}
.home-banner-container > .img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (width < 1024px) {
  .home-banner-container {
    grid-template-columns: 100%;
  }
  .home-banner-container > .img {
    clip-path: url(#image-clip-tr);
    order: 1;
  }
}
.home-banner-content {
  padding: 20px 80px 0 60px;
}
.home-banner-content > h5 {
  color: white;
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 12px;
  margin-bottom: 12px;
}
.home-banner-content > h5::before {
  content: "";
  display: block;
  height: 2px;
  width: 60px;
  background-color: white;
}
.home-banner-content > .content-grid {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px 12px;
  align-items: start;
  margin-top: 40px;
}
.home-banner-content > .content-grid h5 {
  color: white;
  margin-bottom: 12px;
  font-weight: 600;
}
.home-banner-content > .content-grid p {
  color: var(--color-gray-5);
}

@media screen and (width < 1440px) {
  .home-banner-content {
    padding: 20px max((100vw - 1280px) / 2, 24px) 0 60px;
  }
}
@media screen and (width < 1024px) {
  .home-banner-content {
    padding: 24px;
  }
}
@media screen and (width < 768px) {
  .home-banner-content > .content-grid {
    grid-template-columns: 36px 1fr;
  }
}