.region.region-hero {
  padding: 0;
}

.hero-wrap {
  max-width: 100dvw;
  overflow: hidden;
}

.hero-wrap.full {
  font-size: 0;
}

.hero-wrap.full .image img {
  width: 100%;
  height: auto;
}

.hero-wrap.custom .secondary-image-wrap {
  background-image: none;
}

.hero-wrap.full .secondary-image-wrap {
  position: relative;
  background-size: 130%;
}

.hero-wrap.full.custom .secondary-image-wrap {
  display: grid;
  grid-template-areas: "blurredHero";
  max-height: 24rem;
  place-content: center;
  place-items: center;
  height: 100%;
  overflow: hidden;
}

.hero-wrap.full.custom .secondary-image-wrap > * {
  grid-area: blurredHero;
}

.hero-wrap.full.custom .secondary-image-wrap > img {
  width: 100%;
  height: 100%;
  filter: blur(var(--heroBlur));
}


.hero-wrap.full .secondary-image-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.hero-wrap.full .secondary-image-wrap.red .overlay {
  background: rgba(197, 5, 12, .775);
}

.hero-wrap.full .secondary-image-wrap.red hr {
  background-color: #fff;
}

.hero-wrap.full .content-inner {
  margin: 0 auto;
  max-width: var(--content-width-narrower);
}

.hero-wrap.full .secondary-image-wrap.red .content-wrap {
  color: #fff;
}

.hero-wrap.full .content-wrap {
  background-repeat: no-repeat;
  margin-inline: auto;
  position: relative;
  padding: 3rem;
  text-align: center;
  color: #000;
  font-weight: bold;
  font-size: 1.8rem;
  width: calc(100vw - 6vw);
}

.hero-wrap.full .secondary-image-wrap.yes .content {
  display: flex;
  justify-content: space-between;
  column-gap: 8rem;
  align-items: center;
}

.hero-wrap.full .secondary-image-wrap.yes .content .links-wrap ul {
  display: block;
}

.hero-wrap.full .secondary-image-wrap.yes .content .links-wrap ul li {
  margin-bottom: 2rem;
}


.hero-wrap.full .content-wrap .content {
  /* max-width: 52rem; */
  text-align: left;
  /* margin: 0 auto; */
  /* margin-top: -15px; */
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 15px;
  padding: 3rem;
  max-width: var(--content-width-normal);
  margin: 0 auto;
}

.hero-wrap.full .content-wrap h1 {
  /* padding-left: 112px; */
  /* margin-bottom: .5rem; */
  text-transform: none;
  line-height: 1.2;
  font-size: 4rem;
  /* max-width: 120rem; */
  /* margin: 0 auto; */
  font-weight: bold;
  margin-bottom: 0;
}

.hero-wrap.full .content-wrap .copy {
  /* padding-left: 112px; */
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-wrap.full .links-wrap {
  margin: 2rem auto 0;
  max-width: 120rem;
}

.hero-wrap.full .links-wrap ul {
  display: flex;
  justify-content: space-between;
}

.hero-wrap.full .links-wrap li {
  list-style: none;
  margin: 0;
}

.hero-wrap.full .links-wrap a {

  border-radius: 8px;
  font-size: 2rem;
  font-weight: bold;
  padding: 1rem 4rem;
  display: block;
  text-align: center;
  max-width: 25rem;
  transition: all 0.25s ease-in;
  text-decoration: none;
  min-width: 25rem;
  background-color: var(--color-uw-red);
  border: 2px solid var(--color-uw-red);
  color: #fff;

}

.hero-wrap.full .links-wrap a:hover,
.hero-wrap.full .links-wrap a:focus-visible {

  text-decoration: none;
  background-color: #fff;
  color: var(--color-uw-red);
}

.hero-wrap.full .secondary-image-wrap.red .links-wrap a {
  background-color: #fff;
  border: 2px solid var(--color-uw-red);
  color: var(--color-uw-red);
}

.hero-wrap.full .secondary-image-wrap.red .links-wrap a:hover,
.hero-wrap.full .secondary-image-wrap.red .links-wrap a:focus-visible {
  background-color: var(--color-uw-red);
  color: #fff;
}

.hero-wrap.small.default {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-image: url("../images/level2-blur-original2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}


.hero-wrap .overlay {
  background-color: rgba(255, 255, 255, var(--heroOpacity)) !important;
  -webkit-backdrop-filter: blur(var(--heroBlur));
  backdrop-filter: blur(var(--heroBlur));
  width: 100%;
  height: 100%;
}

.hero-wrap.small.default .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
}

.hero-wrap.small.custom {
  display: grid;
  grid-template-areas: 'smallHero';
  background-size: cover;
  background-repeat: no-repeat;
  max-height: 30rem;
  place-content: center;
  place-items: center;
  max-width: 100vw;
  overflow: hidden;
}

.hero-wrap.small.custom > * {
  grid-area: smallHero;
}

.hero-wrap.small.custom > img {
  width: 100%;
  height: 100%;
}

.hero-wrap.small .content {
  position: relative;
  margin: 5rem auto;
  max-width: var(--content-width-narrow);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  padding: 3rem;
  width: calc(100% - calc(12vw + 6rem));
  height: fit-content;
}

.hero-wrap.small h1 {
  text-transform: none;
  max-width: 120rem;
  font-weight: bold;
  margin-bottom: 0;
}

.basic-title {
  max-width: var(--content-width-normal);
  margin: 3rem auto 0;
}

.hero-wrap.news {
  background-color: var(--color-uw-dark-red);
  color: #fff;
  padding: 4rem 4vw;
  font-size: 2.2rem;
  font-weight: bold;
}

.hero-wrap.news .region {
  max-width: var(--content-width-normal);
  margin: 0 auto;
}

.hero-wrap.news a.back-to-news {
  text-decoration: none;
  color: #fff;
}

.hero-wrap.news a.back-to-news::before {
  content: ' ';
  background-image: url(../images/arrow-red.svg);
  background-repeat: no-repeat;
  display: inline-block;
  width: 25px;
  height: 25px;
  /* vertical-align: sub; */
  margin-right: 5px;
  transform: rotate(180deg);
}

.hero-wrap.full .image.mobile {
  display: none;
}

@media screen and (max-width: 1280px) {

  .hero-wrap .content {
    margin: 2rem 6vw;
  }
}

@media screen and (max-width: 1024px) {
  .hero-wrap.full .content-wrap,
  .hero-wrap.small .content-wrap {
    width: calc(100vw - 12vw);
  }
}

@media screen and (max-width: 980px) {

  .hero-wrap.full .secondary-image-wrap .overlay {
    background-color: var(--color-uw-page);
  }

  .hero-wrap.full.custom .secondary-image-wrap > img{
    display: none;
  }

  .hero-wrap.full .image.desktop {
    display: none;
  }

  .hero-wrap.full .image.mobile {
    display: block;
  }
  .hero-wrap.full .secondary-image-wrap {
    background-image: none;
    margin-top: -1px;
  }

  .hero-wrap.small .content {
    margin: 3rem 6vw;
    padding: 3rem;
  }

  .hero-wrap.full .content-wrap h1 {
    text-align: left;
    font-size: 2.4rem;
  }

  .hero-wrap.full .content-wrap {
    padding: 1rem 6vw;
  }

  .hero-wrap.full .secondary-image-wrap.red .overlay {
    background: rgba(197, 5, 12, .88);
  }

  .hero-wrap.full .content-wrap .content {
    padding: 1.5rem 0;
  }

}

