.home-hero {
  width: 100%;
  overflow: hidden;
  padding: 0;
}
.home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 8fr);
  margin-bottom: 1rem;
}
.home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  /* padding-inline-start: max(2rem, calc((100vw - 82.5rem) / 2)); */
  padding-inline-end: clamp(2rem, 4vw, 5rem);
  margin-left: auto;
}
.home-hero__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-block-end: 2rem;
}
.home-hero__logo {
  display: block;
}
.home-hero__logo img {
  display: block;
  width: auto;
  max-width: 18rem;
  height: auto;
}
.home-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2rem);
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
}
.home-hero__banner {
  min-width: 0;
  overflow: hidden;
}
.home-hero__banner-image {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1220px;
  object-fit: contain;
  border: 2px solid #fff;
}
@media (max-width: 89.99875rem) {
  .home-hero__logo img {
    max-width: 14rem;
  }
}
@media (max-width: 61.99875rem) {
  .home-hero__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
  .home-hero__content {
    padding-inline-start: 2rem;
    padding-inline-end: 2.5rem;
  }
  .home-hero__logos {
    margin-block-end: 2.5rem;
  }
  .home-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .home-hero__logo img {
    max-width: 10rem;
  }
}

@media (max-width: 47.99875rem) {
  .home-hero__inner {
    grid-template-columns: 1fr;
  }
  .home-hero__content {
    padding: 1.5rem;
  }
  .home-hero__logos {
    gap: 1rem;
    margin-block-end: 0.5rem;
  }
  .home-hero__title {
    max-width: none;
    font-size: 2.25rem;
  }
  .home-hero__banner-image {
    object-fit: contain;
  }
  header .header-logo {
    max-width: 200px;
  }
}

/* video & preloader */

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-preloader__animation {
  width: 100%;
  height: 100%;
}
.home-hero__banner {
  position: relative;
  overflow: hidden;
}
.home-hero__banner-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1220px;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.home-hero__banner-video.is-hidden {
  opacity: 0;
  pointer-events: none;
}
/* end of preloader css */
