body {
  background-color: #1e1e1e;
  color: white;
  overflow-x: hidden;
}

.hero {
  position: relative;
  display: flex;
  margin: 100px 2% 2% 2%;
}
.hero__image {
  overflow: hidden;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #1e1e1e;
}

.hero__header {
  margin-left: 60px;
  width: max-content;
  font-size: 2rem;
}

.hero__video__container {
  width: 100%;
  height: 500px;
  right: 0;
  overflow: hidden;
}

.hero__video {
  transform: translateY(-200px);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
  opacity: 1;
}

.hero__awards__accent {
  display: none;
  position: absolute;
  right: 40px;
  bottom: 10%;
}

.hero__awards__accent p {
  position: relative;
}

.hero__awards__accent p:first-of-type:before {
  position: absolute;
  content: "";
  width: 4px;
  top: -24px;
  left: -8px;
  background-color: #d90000;
  height: 39px;
}
.commercial__logo {
  width: 220px;
  filter: invert(99%) sepia(93%) saturate(2%) hue-rotate(28deg) brightness(104%)
    contrast(101%);
}

.banner {
  background-color: black;
  color: white;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  text-align: center;
  margin: 0% 2%;
}
.banner__items {
  width: 280px;
}
.banner__items h2 {
  font-size: 2.5rem;
}

@media screen and (max-width: 1100px) {
  .hero__text {
    width: 510px;
  }
  .hero__header {
    font-size: 1.6rem;
    margin-left: 40px;
  }
}
@media screen and (max-width: 900px) {
  .hero {
    height: 700px;
    overflow: hidden;
  }
  .hero__video__container::before {
    display: none;
  }

  .hero__text {
    width: 100%;
    height: 100%;
    z-index: 3;
    position: absolute;
    text-align: center;
    align-items: center;
    left: 0;
  }

  .hero__header {
    margin: 0;
    font-size: 2.2rem;
  }
  .hero__awards__accent {
    top: 550px;
    left: 30%;
    display: none;
    flex-direction: column;
    justify-content: center;
  }
  .hero__video {
    width: 2000px;
    position: relative;
    left: -700px;
    clip-path: none;
  }
  .hero__video__container {
    width: 100%;
    height: fit-content;
    right: 0;
    overflow: hidden;
  }
  .hero__text {
    background-color: transparent;
    clip-path: none;
  }

  .banner {
    flex-direction: column;
    gap: 1.5rem;
    height: max-content;
    padding: 20px;
  }
  .banner__items h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .hero__header {
    margin: 0;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 450px) {
  .hero__awards__accent {
    left: 26%;
  }
}
@media screen and (max-width: 400px) {
  .hero__header {
    font-size: 1.2rem;
  }
  .hero {
    height: 500px;
  }
  .hero__awards__accent {
    top: 420px;
  }
  .commercial__logo {
    width: 170px;
  }
  .hero__awards__accent p {
    font-size: 0.6rem;
  }
  .hero__awards__accent h2 {
    font-size: 0.6rem;
  }
}
