.home {
  max-width: 100vw;
  overflow: hidden;
}
.home section.banner {
  position: relative;
}
.home section.banner .banner-video {
  position: relative;
  z-index: 0;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}
.home section.banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  z-index: 1;
  background: #fff;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.15) 85%, rgba(255, 255, 255, 0) 100%);
}
.home section.banner .content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 2;
}
.home section.banner .content .wrapper {
  width: fit-content;
}
.home section.banner .content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.home section.banner .content h1 em {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 993px) {
  .home section.banner .content h1 em {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 993px) {
  .home section.banner .content h1 {
    font-size: 2.5rem;
  }
}
.home section.banner .content .input {
  position: relative;
}
.home section.banner .content .input input {
  width: 100%;
  height: 50px;
  border-radius: 0.5rem;
  border: 1px solid #B1B1B1;
  padding: 0.25rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.home section.banner .content .input input:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.home section.banner .content .input button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  color: #fff;
}
.home section.describe {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}
@media screen and (max-width: 993px) {
  .home section.describe {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
    text-align: center;
  }
  .home section.describe .button {
    display: block;
    margin: 0 auto;
  }
}
.home section.describe .title::after {
  left: 0%;
  transform: translateX(0%);
}
@media screen and (max-width: 993px) {
  .home section.describe .title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.home section.describe .text {
  margin-bottom: 1rem;
}
.home section.describe .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home section.parts {
  background-color: #DBD7D7;
  padding: 6rem 0;
  text-align: center;
}
.home section.parts .description {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.home section.parts .button {
  display: block;
  margin: 0 auto;
}
.home section.parts .categories {
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "a b c" "a d e";
  gap: 1rem;
}
.home section.parts .categories .category:nth-child(1) {
  grid-area: a;
}
.home section.parts .categories .category:nth-child(2) {
  grid-area: b;
}
.home section.parts .categories .category:nth-child(3) {
  grid-area: c;
}
.home section.parts .categories .category:nth-child(4) {
  grid-area: d;
}
.home section.parts .categories .category:nth-child(5) {
  grid-area: e;
}
@media screen and (max-width: 1198px) {
  .home section.parts .categories {
    display: flex;
    overflow-x: scroll;
    height: 200px;
  }
  .home section.parts .categories .category {
    flex: 0 0 200px;
    margin-right: 1rem;
  }
  .home section.parts .categories .category:last-child {
    margin-right: 0;
  }
}
.home section.parts .categories .category {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 0.5rem;
}
.home section.parts .categories .category .category-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  transform: translateX(30%);
  transition: transform 0.3s ease;
  object-fit: contain;
  user-select: none;
}
.home section.parts .categories .category .label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  margin: 0;
  z-index: 1;
}
.home section.parts .categories .category:not(:nth-child(1)) {
  aspect-ratio: 4/3;
}
.home section.parts .categories .category:not(:nth-child(1)) .label {
  font-size: 1.2rem;
  left: 0.5rem;
  bottom: 0.5rem;
}
.home section.parts .categories .category:hover {
  text-decoration: underline;
}
.home section.parts .categories .category:hover .category-image {
  transform: translateX(30%) scale(1.1);
}
.home section.fluids {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  background-color: #F5F4F4;
}
.home section.fluids > img {
  position: absolute;
  opacity: 1;
}
.home section.fluids > img.disk {
  top: 1rem;
  right: 1rem;
  width: 300px;
  height: auto;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.home section.fluids > img.engine {
  transform: rotate(90deg);
  bottom: 6rem;
  left: 1rem;
  width: 400px;
  height: auto;
  opacity: 0.4;
}
.home section.fluids .container {
  position: relative;
  z-index: 1;
}
.home section.fluids > .description {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.home section.fluids .product {
  display: block;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  margin: 3rem 1rem;
  border-radius: 0.5rem;
}
.home section.fluids .product .product-image {
  aspect-ratio: 6/7;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home section.fluids .product > .description {
  color: #214881;
}
.home section.fluids .product:hover {
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.home section.fluids .button {
  display: block;
  margin: auto;
}
.home section.range {
  padding: 4rem 0;
  text-align: center;
  background-color: #131D53;
  background-image: radial-gradient(#152C4F 0%, #040910 100%);
}
.home section.range .title {
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
}
.home section.range .ranges {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media screen and (max-width: 993px) {
  .home section.range .ranges {
    grid-template-columns: 1fr;
  }
}
.home section.range .ranges .range {
  display: grid;
  grid-template-rows: 1fr auto;
}
.home section.range .ranges .range img {
  width: 65%;
  margin-bottom: 2rem;
  height: 220px;
  object-fit: contain;
}
.home section.range .ranges .range h3, .home section.range .ranges .range a, .home section.range .ranges .range p {
  color: #fff;
}
.home section.range .ranges .range ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.home section.range .ranges .range ul li {
  display: inline-block;
  position: relative;
}
.home section.range .ranges .range ul li::after {
  content: "/";
  color: white;
  margin-right: 4px;
  font-weight: 700;
}
.home section.range .ranges .range ul li:last-child::after {
  content: "";
}
.home section.range .ranges .range ul li a {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}
.home section.range .ranges .range ul li a:hover {
  text-decoration: none;
  color: #406AA7;
}
.home section.expertise {
  position: relative;
  padding: 6rem 0;
  text-align: center;
}
.home section.expertise .subtitle {
  margin-bottom: 0;
}
.home section.expertise .title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.home section.expertise .title em {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 993px) {
  .home section.expertise .title em {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 993px) {
  .home section.expertise .title {
    font-size: 2.5rem;
  }
}
.home section.expertise .engine {
  position: absolute;
  z-index: -1;
  opacity: 0.5;
  width: 50%;
}
.home section.expertise .engine.-one {
  top: 3%;
  right: 0;
  transform: translateX(50%);
}
.home section.expertise .engine.-two {
  bottom: 20%;
  left: 0;
  transform: translateX(-50%);
}
.home section.expertise .item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content image";
  gap: 2rem 3rem;
  align-items: center;
  text-align: right;
}
@media screen and (max-width: 993px) {
  .home section.expertise .item {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "image";
    margin-bottom: 6rem;
  }
  .home section.expertise .item:last-child {
    margin-bottom: 0;
  }
}
.home section.expertise .item .image {
  position: relative;
  grid-area: image;
}
.home section.expertise .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home section.expertise .item .image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  aspect-ratio: 1/1;
  background-color: #214881;
  z-index: -1;
  border-radius: 0.75rem;
}
.home section.expertise .item .content {
  grid-area: content;
}
.home section.expertise .item:last-child .image::before {
  display: none;
}
.home section.expertise .item .icon {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  background-color: #214881;
  margin-left: auto;
  margin-bottom: 1rem;
}
@media screen and (max-width: 993px) {
  .home section.expertise .item .icon {
    width: 60px;
    height: 60px;
  }
}
.home section.expertise .item .icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.home section.expertise .item:nth-child(2n+1) {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image content";
  text-align: left;
}
.home section.expertise .item:nth-child(2n+1) .icon {
  margin-right: auto;
  margin-left: 0;
}
@media screen and (max-width: 993px) {
  .home section.expertise .item:nth-child(2n+1) {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "image";
    margin-bottom: 4rem;
  }
}

.videos {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 5%;
  padding-right: 5%;
}
.videos .title {
  text-align: center;
  margin-bottom: 4rem;
}
.videos .videos-container {
  display: grid;
  gap: 2rem;
}
.videos .videos-container.-middle {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 993px) {
  .videos .videos-container.-middle {
    grid-template-columns: 1fr;
  }
}
.videos .videos-container.-third {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 993px) {
  .videos .videos-container.-third {
    grid-template-columns: 1fr;
  }
}
.videos .videos-container.-quarter {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 993px) {
  .videos .videos-container.-quarter {
    grid-template-columns: 1fr;
  }
}
.videos .videos-container .video-wrapper {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.videos .videos-container .video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
  user-select: none;
}
.videos .videos-container h3 {
  font-size: 1.2rem;
  color: #214881;
}
@media screen and (max-width: 993px) {
  .videos .videos-container h3 {
    font-size: 1rem;
  }
}