.new-promo {
  margin-top: 100px;
  overflow: hidden;
}

#test_drive > .new-promo__heading,
#leasing > .new-promo__heading {
  background: #000000;
  color: #ffffff;
}

.new-promo__title {
  margin: 0;
  padding: 20px 60px;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

.new-promo__body {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#test_drive > .new-promo__body--test-drive {
  --promo-background-image: image-set(
    url('/img/redesign/test-drive.avif') type('image/avif'),
    url('/img/redesign/test-drive.jpg') type('image/jpeg')
  );
}

#leasing > .new-promo__body--trade-in {
  --promo-background-image: image-set(
    url('/img/redesign/trade-in.avif') type('image/avif'),
    url('/img/redesign/trade-in.jpg') type('image/jpeg')
  );
}

.new-promo__body.is-background-loaded {
  background-image: var(--promo-background-image);
}

.new-promo__body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.65), transparent);
}

.new-promo__body--trade-in::after {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65), transparent);
}

.new-promo__body > .container {
  z-index: 1;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.new-promo .container::after {
  content: none;
}

.new-promo .test_drive__wrap,
.new-promo .trade_in__wrap {
  color: #ffffff;
}

.new-promo .agree_field,
.new-promo .agree_field a {
  color: #ffffff;
}

@media (min-width: 1200px) {
  .new-promo__heading > .container,
  .new-promo__body > .container {
    max-width: 1300px;
  }
}

@media (max-width: 900px) {
  .new-promo__body > .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .new-promo {
    margin-top: 50px;
  }

  .new-promo__title {
    padding: 15px;
    font-size: 8vw;
    text-align: center;
  }

  .new-promo__body::after,
  .new-promo__body--trade-in::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  }

  .new-promo__body > .container {
    padding: 40px 15px;
  }
}
