.hero {
  background: var(--secondary);
  position: relative;
}

.hero__container {
  display: flex;
}

.hero__content-wrap {
  flex: 0 0 40.25%;
  max-width: 460px;
  padding-right: 30px;
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  z-index: 2;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 14px;
  color: var(--grey-400);
  margin-bottom: 45px;
}

.hero__content h1,
.hero__content h2,
.hero__content h3,
.hero__content h4,
.hero__content h5,
.hero__content h6 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.hero__content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 14px;
}

.hero__content ul li:last-child {
  margin-bottom: 0;
}

.hero__content ul li:before {
  background: var(--primary);
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  aspect-ratio: 1/1;
  width: 10px;
  margin-right: 15px;
}

.hero__content ul li b,
.hero__content ul li strong {
  color: var(--white);
}

.hero__image {
  flex: 0 0 59.75%;
  position: relative;
}

.hero__image-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% + (100vw - var(--container-width)) / 2);
}

.hero__image-inner:before {
  background: var(--primary);
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  pointer-events: none;
  bottom: 0;
  right: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media (max-width: 1400px) {
  .hero__content h1,
  .hero__content h2,
  .hero__content h3,
  .hero__content h4,
  .hero__content h5,
  .hero__content h6 {
    font-size: 32px;
  }

  .hero__content {
    gap: 15px;
    margin-bottom: 25px;
    font-size: 10px;
  }

  .hero__content ul li {
    padding-left: 20px;
    margin-bottom: 10px;
  }
}

@media (max-width: 760px) {
  .hero {
    background-color: var(--black);
  }

  .hero__container {
    flex-direction: column;
  }

  .hero__content-wrap {
    flex: none;
    max-width: none;
    padding: 90px 0 0px;
    margin-bottom: -23px;
  }

  .hero__content h1,
  .hero__content h2,
  .hero__content h3,
  .hero__content h4,
  .hero__content h5,
  .hero__content h6 {
    font-size: 20px;
  }

  .hero__btn {
    width: 100% !important;
  }

  .hero__image {
    flex: none;
    aspect-ratio: 320/273;
    margin: 0 calc(-20px - (100vw - var(--container-width)) / 2);
  }

  .hero__image-inner {
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero__image-inner:before {
    width: 231px;
    height: 6px;
  }

  .hero__image img {
    -o-object-position: center;
    object-position: center;
  }
}