:root {
  --color-hero-dark: #112e51;
  /* dark blue */
  --color-hero-mid: rgba(0, 60, 102, .8);
  /* mid blue @80% */
  --color-hero-light: rgba(0, 94, 162, 0.4);
  /* light blue @ 40% */
}

.block-full-width-banner {
  padding-bottom: 1.3rem !important;
  padding-top: 2rem !important;
  background-image: linear-gradient(90deg, var(--color-hero-dark) 0%, var(--color-hero-mid) 60%, var(--color-hero-light) 100%), var(--hero-bg-image);
  /* First value = gradient, second = DNA image */
  background-repeat: no-repeat, no-repeat;
  background-position: center, right center;
  background-size: cover, cover;
}
.block-full-width-banner .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.block-full-width-banner .banner-content__title {
  font-size: 2.4rem;
}
.block-full-width-banner .banner-content.cta-block-align-left {
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .block-full-width-banner .banner-content.cta-block-align-left {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  .block-full-width-banner .banner-content {
    flex-direction: row;
  }
}
.block-full-width-banner .banner-content .text-section__content-col {
  color: var(--text-color, var(--vads-color-white));
}
@media (min-width: 1024px) {
  .block-full-width-banner .banner-content .text-section__content-col {
    padding-right: 6.5rem !important;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .block-full-width-banner .banner-content .text-section__content-col {
    width: 80% !important;
  }
}
.block-full-width-banner .banner-content .text-section__content-col h2,
.block-full-width-banner .banner-content .text-section__content-col h3 {
  margin-top: 0;
  color: var(--title-color, inherit);
}
.block-full-width-banner .banner-content .text-section__content-col .description p {
  margin-top: var(--vads-site-margins-width);
}
@media (min-width: 1024px) {
  .block-full-width-banner .banner-content .text-section__content-col .description p {
    max-width: 87%;
  }
}
.block-full-width-banner .banner-content .image-cta-section__content-col {
  position: relative;
}
.block-full-width-banner .banner-content .image-cta-section__content-col .va-card__content p {
  font-weight: 400;
  font-size: 20px !important;
  margin-bottom: 0.5rem !important;
}
.block-full-width-banner .banner-content .image-cta-section__content-col .va-card__content button {
  padding: 20px 50px !important;
}
.block-full-width-banner .banner-content .image-cta-section__content-col .btn-container .usa-button,
.block-full-width-banner .banner-content .image-cta-section__content-col .btn-container a.usa-button,
.block-full-width-banner .banner-content .image-cta-section__content-col .btn-container .full-width-banner-cta-button {
  width: 180px !important;
  height: 56px !important;
  min-width: 180px !important;
  max-width: 180px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  padding: 0 1rem !important;
  margin-right: 0;
  box-sizing: border-box;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
}
.block-full-width-banner .banner-content .image-cta-section__content-col {
  text-align: var(--button-alignment, left);
}
.block-full-width-banner .banner-content .image-cta-section__content-col .cta-image-block__content-col va-card {
  padding: var(--vads-spacing-2) var(--vads-spacing-3);
  padding-bottom: 0.5rem;
}
.block-full-width-banner .banner-content .image-cta-section__content-col .cta-image-block__content-col va-card img {
  width: 100%;
}
.block-full-width-banner .banner-content .image-cta-section__content-col iframe {
  min-height: 350px !important;
}
.block-full-width-banner .banner-content .image-cta-section__content-col .bg-white va-card {
  background-color: var(--vads-color-white);
}
.block-full-width-banner .banner-content .image-cta-section__content-col .bg-black va-card {
  background-color: var(--vads-color-black);
}
.block-full-width-banner .banner-content .image-cta-section__content-col .bg-light-blue va-card {
  background-color: #ddefff;
}
.block-full-width-banner .banner-content .image-cta-section__content-col .bg-mvp-dark-blue va-card {
  background-color: #112e51;
}
.block-full-width-banner va-card {
  border-radius: 5px;
}