@charset "UTF-8";
/* Colors */
.layer-wrap, .hero-wrap {
  width: 100%;
  max-width: 81.25em;
  margin: 0 auto;
  position: relative;
}

.news, .spotlight, .work {
  padding: 0;
}
@media (min-width: 48em) {
  .news, .spotlight, .work {
    padding: 1.5rem 0;
  }
}
@media (min-width: 64em) {
  .news, .spotlight, .work {
    padding: 4rem 0;
  }
}
@media (min-width: 81.25em) {
  .news, .spotlight, .work {
    padding: 5rem 0;
  }
}
@media (min-width: 100em) {
  .news, .spotlight, .work {
    padding: 6rem 0;
  }
}
@media (min-width: 112.5em) {
  .news, .spotlight, .work {
    padding: 7rem 0;
  }
}

.news-headline, .spotlight-headline, .work-headline, .hero-stats-headline-big {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 2.5rem;
}
@media (min-width: 48em) {
  .news-headline, .spotlight-headline, .work-headline, .hero-stats-headline-big {
    font-size: 2.8rem;
  }
}
@media (min-width: 81.25em) {
  .news-headline, .spotlight-headline, .work-headline, .hero-stats-headline-big {
    font-size: 3rem;
  }
}
@media (min-width: 100em) {
  .news-headline, .spotlight-headline, .work-headline, .hero-stats-headline-big {
    font-size: 3.3rem;
  }
}
@media (min-width: 112.5em) {
  .news-headline, .spotlight-headline, .work-headline, .hero-stats-headline-big {
    font-size: 3.5rem;
  }
}

.hero-stats-line4 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .hero-stats-line4 {
    font-size: 1.8rem;
  }
}
@media (min-width: 81.25em) {
  .hero-stats-line4 {
    font-size: 2rem;
  }
}
@media (min-width: 100em) {
  .hero-stats-line4 {
    font-size: 2.3rem;
  }
}
@media (min-width: 112.5em) {
  .hero-stats-line4 {
    font-size: 2.5rem;
  }
}

.spotlight-item-headline-featured, .hero-stats-headline-small {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.5rem;
}
@media (min-width: 48em) {
  .spotlight-item-headline-featured, .hero-stats-headline-small {
    font-size: 1.5rem;
  }
}
@media (min-width: 81.25em) {
  .spotlight-item-headline-featured, .hero-stats-headline-small {
    font-size: 1.6rem;
  }
}
@media (min-width: 100em) {
  .spotlight-item-headline-featured, .hero-stats-headline-small {
    font-size: 1.8rem;
  }
}
@media (min-width: 112.5em) {
  .spotlight-item-headline-featured, .hero-stats-headline-small {
    font-size: 2.1rem;
  }
}

.news-item-headline, .work-item-headline, .hero-cta-headline {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.25rem;
}
@media (min-width: 48em) {
  .news-item-headline, .work-item-headline, .hero-cta-headline {
    font-size: 1.35rem;
  }
}
@media (min-width: 81.25em) {
  .news-item-headline, .work-item-headline, .hero-cta-headline {
    font-size: 1.45rem;
  }
}
@media (min-width: 100em) {
  .news-item-headline, .work-item-headline, .hero-cta-headline {
    font-size: 1.55rem;
  }
}
@media (min-width: 112.5em) {
  .news-item-headline, .work-item-headline, .hero-cta-headline {
    font-size: 1.9rem;
  }
}

.spotlight-item-headline {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.25rem;
}
@media (min-width: 81.25em) {
  .spotlight-item-headline {
    font-size: 1.35rem;
  }
}
@media (min-width: 100em) {
  .spotlight-item-headline {
    font-size: 1.4rem;
  }
}
@media (min-width: 112.5em) {
  .spotlight-item-headline {
    font-size: 1.5rem;
  }
}

.spotlight-grid-col-more-headline {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.9rem;
}
@media (min-width: 48em) {
  .spotlight-grid-col-more-headline {
    font-size: 1rem;
  }
}
@media (min-width: 81.25em) {
  .spotlight-grid-col-more-headline {
    font-size: 0.95rem;
  }
}
@media (min-width: 100em) {
  .spotlight-grid-col-more-headline {
    font-size: 1rem;
  }
}
@media (min-width: 112.5em) {
  .spotlight-grid-col-more-headline {
    font-size: 1.1rem;
  }
}

.layer-intro, .news-item, .spotlight-item-featured, .spotlight-item, .spotlight-grid-col-more-headline, .hero-cta {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.8s cubic-bezier(0.57, 0.2, 0.21, 0.89), transform 0.8s cubic-bezier(0.5, 1.65, 0.4, 0.8);
}

.layer-intro.reveal, .news-item.reveal, .spotlight-item-featured.reveal, .spotlight-item.reveal, .spotlight-grid-col-more-headline.reveal, .hero.reveal .hero-cta {
  opacity: 1;
  transform: translateX(0);
}

.alert {
  background-color: #f0a818;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem 0px rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 48em) {
  .alert {
    margin-bottom: 2rem;
  }
}
@media (min-width: 81.25em) {
  .alert {
    border-radius: 3rem;
  }
}
.alert.has-yellow-background-color {
  background-color: #f0a818;
}
.alert.has-yellow-background-color .alert-text {
  color: #0c0e21;
}
.alert.has-yellow-background-color .alert-text strong:after {
  background-color: #202659 !important;
}
.alert.has-yellow-background-color .button {
  background-color: #0c0e21;
  color: #f0a818;
}
.alert.has-yellow-background-color .button-text {
  color: #fff;
}
.alert.has-yellow-background-color .button:hover {
  background-color: #2e4575;
}
.alert.has-dark-blue-background-color {
  background-color: #131633;
}
.alert.has-dark-blue-background-color .alert-text strong:after {
  background-color: #202659 !important;
}
.alert.has-white-background-color {
  background-color: #fff;
}
.alert.has-white-background-color .alert-text {
  color: #202659;
}
.alert.has-white-background-color .alert-text strong {
  color: #202659;
}
.alert.has-white-background-color .alert-text strong:after {
  background-color: #2e4575;
}
.alert.has-white-background-color .button {
  background-color: #2e4575;
  color: #f0a818;
}
.alert.has-white-background-color .button-text {
  color: #fff;
  white-space: nowrap;
}
.alert.has-white-background-color .button:hover {
  background-color: #0c0e21;
}
.alert-wrap {
  max-width: 81.25rem;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  padding: 0;
}
@media (min-width: 81.25em) {
  .alert-wrap {
    font-size: 1.3rem;
  }
}
.alert-grid {
  padding: 1rem 0.5rem;
}
@media (min-width: 48em) {
  .alert-grid {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
}
@media (min-width: 81.25em) {
  .alert-grid {
    padding: 1rem 0.5rem;
  }
}
.alert-text {
  display: inline-block;
  margin-bottom: 1rem;
  line-height: 1.1;
}
@media (min-width: 48em) {
  .alert-text {
    font-weight: 500;
    margin-right: 1rem;
    margin-bottom: 0;
    line-height: 1;
  }
}
@media (min-width: 100em) {
  .alert-text {
    margin-right: 2rem;
  }
}
.alert-text strong {
  position: relative;
  font-weight: 800;
}
.alert-text strong:after {
  content: "";
  width: 100%;
  height: 0.25rem;
  display: block;
  background-color: #202659;
  position: absolute;
  top: 90%;
  left: 0;
}
.alert .button {
  display: table;
}
@media (min-width: 48em) {
  .alert .button {
    display: inline-block;
  }
}
.alert .button {
  overflow: visible;
  padding: 0.75rem 1rem;
}
.alert .button:before, .alert .button:after {
  display: none;
}

.hero {
  background-color: #202659;
  background: linear-gradient(200deg, #05060e, #2e4575 100%);
  background-image: url(/wp-content/themes/sbpc/assets/images/bg-texture.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: #fff;
  width: 100%;
  z-index: 100;
  padding: 0;
}
@media (max-width: 64em) {
  .hero {
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 48em) {
  .hero {
    background-image: url(/wp-content/themes/sbpc/assets/images/hero-angle.png), url(/wp-content/themes/sbpc/assets/images/bg-texture.jpg);
    background-position: 70% center, bottom left;
    background-size: auto 100%, cover;
    padding-right: 1rem;
    padding: 1.5rem 0;
  }
}
@media (min-width: 64em) {
  .hero {
    padding: 3rem 0;
  }
}
@media (min-width: 81.25em) {
  .hero {
    padding: 3.5rem 0;
    padding-right: 0;
  }
}
@media (min-width: 100em) {
  .hero {
    padding: 4rem 0;
  }
}
@media (min-width: 112.5em) {
  .hero {
    padding: 4.5rem 0;
  }
}
.hero.has-alert {
  padding-top: 0;
}
@media (min-width: 48em) {
  .hero.has-alert {
    padding-top: 0;
  }
}
@media (min-width: 81.25em) {
  .hero.has-alert {
    padding-top: 1.25rem;
  }
}
.hero.has-alert .hero-wrap {
  flex-wrap: wrap;
}
@media (min-width: 48em) {
  .hero-wrap {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
}
.hero-stats {
  z-index: 101;
  text-align: left;
  padding: 2rem;
}
@media (min-width: 48em) {
  .hero-stats {
    width: 60%;
    padding: 2rem;
  }
}
@media (min-width: 81.25em) {
  .hero-stats {
    width: 55%;
    padding: 2rem;
  }
}
@media (min-width: 112.5em) {
  .hero-stats {
    padding: 3rem;
  }
}
.hero-stats-slider {
  position: relative;
  height: 95px;
}
@media (min-width: 48em) {
  .hero-stats-slider {
    height: 95px;
  }
}
@media (min-width: 64em) {
  .hero-stats-slider {
    height: 125px;
  }
}
@media (min-width: 81.25em) {
  .hero-stats-slider {
    height: 135px;
  }
}
@media (min-width: 100em) {
  .hero-stats-slider {
    height: 160px;
  }
}
@media (min-width: 112.5em) {
  .hero-stats-slider {
    height: 220px;
  }
}
.hero-stats-slide {
  position: absolute;
  top: 0;
  left: 0;
}
.hero-stats-slide.on {
  display: block;
}
.hero-stats-slide.on .hero-stats-transition {
  transform: translateY(0%);
}
.hero-stats-slide.off {
  display: none;
}
.hero-stats-headline {
  text-align: left;
  margin: 0 auto;
  padding: 0;
}
.hero-stats-headline-big, .hero-stats-headline-small {
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
  white-space: nowrap;
}
.hero-stats-headline-big {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
  line-height: 1;
}
@media (max-width: 64em) {
  .hero-stats-headline-big {
    font-size: 2.2rem;
  }
}
.hero-stats-headline-small {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
}
@media (max-width: 64em) {
  .hero-stats-headline-small {
    font-size: 1.3rem;
  }
}
.hero-stats-big, .hero-stats-small, .hero-stats-line4 {
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.hero-stats-line:nth-of-type(1) .hero-stats-transition {
  transition-delay: 0.5s;
}
.hero-stats-line:nth-of-type(2) .hero-stats-transition {
  transition-delay: 1s;
}
.hero-stats-line:nth-of-type(3) .hero-stats-transition {
  transition-delay: 1.5s;
}
.hero-stats-line4 {
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: block;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 64em) {
  .hero-stats-line4 {
    font-size: 1.4rem;
  }
}
.hero-stats-line4 .hero-stats-transition {
  transition-delay: 1.8s;
}
.hero-stats-transition {
  display: block;
  transform: translateY(100%);
  transition: 0.8s transform cubic-bezier(0.57, 0.2, 0.21, 0.89);
}
.hero-stats-hr {
  width: 5rem;
  height: 0.5rem;
  background: #f0a818;
  margin: 1rem 0;
  display: block;
  transform: scaleX(0);
  transform-origin: left center;
  transition: 0.8s transform cubic-bezier(0.57, 0.2, 0.21, 0.89);
  transition-delay: 1.5s;
}
@media (min-width: 81.25em) {
  .hero-stats-hr {
    margin: 1.5rem 0;
  }
}
.hero-stats-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  font-size: 7rem;
  color: #fff;
  opacity: 10%;
  font-weight: 900;
}
.hero-cta {
  background: #2e4575;
  background: linear-gradient(65deg, rgba(62, 92, 155, 0.9), 30%, rgba(32, 38, 89, 0.9) 100%);
  margin: 0.5rem 1.5rem 0;
  text-align: left;
  padding: 1.5rem;
  color: #fff;
  line-height: 1;
  box-shadow: 0 0.5rem 2rem 0px rgba(0, 0, 0, 0.6);
  transition-delay: 1.5s;
}
@media (min-width: 48em) {
  .hero-cta {
    width: calc(40% - 2rem);
    margin: 0 auto;
    margin-right: 2rem;
  }
}
@media (min-width: 81.25em) {
  .hero-cta {
    width: calc(45% - 2rem);
    padding: 3rem;
  }
}
.hero-cta-headline {
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 81.25em) {
  .hero-cta-headline {
    margin-bottom: 1.5rem;
  }
}
.hero-cta .button {
  margin: 0;
}
.hero.reveal .hero-stats-hr {
  transform: scaleX(1);
}
.hero.reveal .hero-stats-line4 .hero-stats-transition {
  transform: translateY(0%);
}
.work {
  width: 100%;
}
@media (max-width: 64em) {
  .work {
    padding-bottom: 1rem;
  }
}
.work-headline {
  font-weight: 900;
  color: #2e4575;
}
.work-teaser {
  max-width: 48em;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 300;
}
.work-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  width: 100%;
}
.work-item {
  width: 100%;
  transition: 1s all cubic-bezier(0.5, 1.65, 0.4, 0.8);
}
@media (min-width: 48em) {
  .work-item {
    width: 33.33%;
  }
}
.work-item-link {
  padding: 1.5rem;
  display: block;
}
@media (min-width: 48em) {
  .work-item-link {
    padding: 2rem;
  }
}
@media (min-width: 81.25em) {
  .work-item-link {
    padding: 3rem;
  }
}
.work-item-icon {
  width: 7rem;
  height: 7rem;
  margin-bottom: 1rem;
  position: relative;
}
@media (min-width: 48em) {
  .work-item-icon {
    width: 8rem;
    height: 8rem;
  }
}
@media (min-width: 81.25em) {
  .work-item-icon {
    width: 9rem;
    height: 9rem;
    margin-bottom: 2rem;
  }
}
.work-item-icon-svg {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0.5);
  z-index: 100;
  opacity: 0;
  transition: 0.5s transform cubic-bezier(0.5, 1.65, 0.4, 0.8);
  filter: drop-shadow(0.15rem 0.2rem 0.25rem rgba(0, 0, 0, 0.15));
}
.work-item-icon-bg {
  box-shadow: 0 0.5rem 1.25rem 0 rgba(0, 0, 0, 0.2);
  width: 75%;
  height: 75%;
  opacity: 0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 90;
  transition: 0.5s all cubic-bezier(0.5, 1.65, 0.4, 0.8);
  box-shadow: inset 0 0 0 0 #f0a818;
}
.work-item-headline {
  color: #2e4575;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  transition: 0.5s color cubic-bezier(0.57, 0.2, 0.21, 0.89);
}
.work-item-teaser {
  color: #000;
  font-weight: 300;
  transition: 0.5s color cubic-bezier(0.57, 0.2, 0.21, 0.89);
  line-height: 1.5;
  font-size: 1.1rem;
}
@media (min-width: 81.25em) {
  .work-item-teaser {
    font-size: 1.2rem;
  }
}
.work-item:nth-of-type(1) .work-item-icon-bg {
  background-image: linear-gradient(61deg, #623881 0%, #b767ef 100%);
}
.work-item:nth-of-type(2) .work-item-icon-bg {
  background-image: linear-gradient(61deg, #ddae00 0%, #f5c204 100%);
}
.work-item:nth-of-type(3) .work-item-icon-bg {
  background-image: linear-gradient(61deg, #007571 0%, #006260 100%);
}
.work-item:nth-of-type(4) .work-item-icon-bg {
  background-image: linear-gradient(61deg, #ffc638 0%, #fc9d19 100%);
}
.work-item:nth-of-type(5) .work-item-icon-bg {
  background-image: linear-gradient(61deg, #EF087B 0%, #F94EAC 100%);
}
.work-item:nth-of-type(6) .work-item-icon-bg {
  background-image: linear-gradient(61deg, #569181 0%, #7fd6bf 100%);
}
.work-item.reveal:hover {
  background: #2e4575;
  box-shadow: 0px 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.6);
}
.work-item.reveal:hover .work-item-icon-svg {
  transform: translateX(-50%) translateY(-50%) scale(0.8);
  transition-delay: 0s;
}
.work-item.reveal:hover .work-item-icon-bg {
  width: 105%;
  height: 105%;
  box-shadow: 0 0.5rem 1.25rem 0 rgba(0, 0, 0, 0.2);
  transition-delay: 0s;
}
.work-item.reveal:hover .work-item-headline {
  color: #f0a818;
}
.work-item.reveal:hover .work-item-teaser {
  color: #fff;
}
.work-item.reveal .work-item-icon-svg {
  transform: translateX(-50%) translateY(-50%) scale(1);
  transition-delay: 0.3s;
  opacity: 1;
}
.work-item.reveal .work-item-icon-bg {
  width: 95%;
  height: 95%;
  opacity: 1;
}
.spotlight {
  width: 100%;
}
.spotlight-headline {
  font-weight: 900;
  color: #2e4575;
}
@media (min-width: 81.25em) {
  .spotlight .layer-intro {
    padding-bottom: 1rem;
  }
}
.spotlight-teaser {
  max-width: 48em;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 300;
}
@media (min-width: 48em) {
  .spotlight-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
    width: 100%;
  }
}
.spotlight-grid-col:first-child {
  margin-top: 1rem;
}
@media (min-width: 48em) {
  .spotlight-grid-col:first-child {
    width: 40%;
    margin-top: 0;
  }
}
.spotlight-grid-col:first-child .button {
  margin: 1rem 0;
}
.spotlight-grid-col-more {
  margin-top: 1rem;
}
@media (min-width: 48em) {
  .spotlight-grid-col-more {
    padding-right: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
    width: 60%;
    margin-top: 0;
  }
}
.spotlight-grid-col-more-headline {
  width: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 81.25em) {
  .spotlight-grid-col-more-headline {
    padding-left: 2rem;
  }
}
.spotlight-grid-col-more-headline-link {
  color: #2e4575;
}
.spotlight-item {
  padding: 1.5rem;
  margin: 0.5rem 0;
}
@media (min-width: 48em) {
  .spotlight-item {
    width: 50%;
    margin-top: 0;
  }
}
@media (min-width: 81.25em) {
  .spotlight-item {
    padding: 2rem;
  }
}
.spotlight-item:hover {
  background: #2e4575;
  box-shadow: 0px 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.6);
  transition: 0.5s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
}
.spotlight-item:hover .spotlight-item-cat {
  color: #fff;
}
.spotlight-item:hover .spotlight-item-headline {
  color: #f0a818;
}
.spotlight-item:hover .spotlight-item-teaser {
  color: #fff;
}
.spotlight-item:hover .spotlight-item-more {
  color: #f0a818;
}
.spotlight-item-featured {
  color: #000;
  padding: 1.5rem;
  position: relative;
}
@media (min-width: 81.25em) {
  .spotlight-item-featured {
    padding: 2rem;
  }
}
@media (min-width: 112.5em) {
  .spotlight-item-featured {
    padding: 2rem 3rem;
  }
}
.spotlight-item-featured:hover {
  background: #2e4575;
  transition: 0.5s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
}
.spotlight-item-featured:hover .spotlight-item-cat-featured {
  color: #fff;
}
.spotlight-item-featured:hover .spotlight-item-headline-featured {
  color: #f0a818;
}
.spotlight-item-featured:hover .spotlight-item-teaser-featured {
  color: #fff;
}
.spotlight-item-featured:hover .spotlight-item-more-featured {
  color: #f0a818;
}
.spotlight-item-link {
  display: block;
}
.spotlight-item-cat {
  letter-spacing: 2px;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #5f5f5f;
  display: block;
  margin-bottom: 0.5rem;
}
.spotlight-item-cat-featured {
  letter-spacing: 2px;
  font-weight: 900;
  text-transform: uppercase;
  color: #f0a818;
  display: block;
  margin-bottom: 0.5rem;
}
.spotlight-item-headline {
  line-height: 1rem;
  color: #2e4575;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.spotlight-item-headline-featured {
  color: #2e4575;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.spotlight-item-teaser {
  color: #000;
  line-height: 1.5;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 81.25em) {
  .spotlight-item-teaser {
    font-size: 1rem;
  }
}
.spotlight-item-teaser-featured {
  color: #000;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 300;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 81.25em) {
  .spotlight-item-teaser-featured {
    font-size: 1.2rem;
  }
}
.spotlight-item-more {
  display: block;
  color: #2e4575;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

.news {
  background: linear-gradient(30deg, #202659 0%, #202659 50%, #3e5c9b 100%);
  width: 100%;
}
@media (max-width: 64em) {
  .news {
    padding-bottom: 2.5rem;
    margin-top: 1rem;
  }
}
@media (min-width: 48em) {
  .news-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
    width: 100%;
  }
}
.news-headline {
  font-weight: 900;
  color: #fff;
}
.news-headline-link {
  color: #fff;
  transition: 0.5s color cubic-bezier(0.57, 0.2, 0.21, 0.89);
}
.news-headline-link:hover {
  color: #f0a818;
}
.news-item {
  margin: 1rem 0;
  padding: 1.5rem;
}
@media (min-width: 48em) {
  .news-item {
    width: 50%;
    margin: 0;
  }
}
@media (min-width: 81.25em) {
  .news-item {
    padding: 2rem;
  }
}
@media (min-width: 112.5em) {
  .news-item {
    padding: 3rem;
  }
}
.news-item-featured {
  color: #000;
}
.news-item-link {
  display: block;
}
.news-item-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}
.news-item-meta-source {
  background: #fff;
  width: 2.5rem;
  height: 2.5rem;
  box-shadow: 0 0.5rem 1.25rem 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: block;
  text-align: center;
  padding: 1rem;
  position: relative;
}
@media (min-width: 81.25em) {
  .news-item-meta-source {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.news-item-meta-source-img {
  width: 70%;
  height: auto !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.news-item-meta-source-svg {
  width: 100%;
  fill: #2e4575;
}
.news-item-meta-type {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  display: block;
  font-size: 0.9rem;
  margin-left: 1rem;
}
.news-item-headline {
  transition: 0.5s color cubic-bezier(0.57, 0.2, 0.21, 0.89);
  line-height: 1rem;
  color: #f0a818;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item-teaser {
  color: #fff;
  line-height: 1.5;
  transition: 0.5s color cubic-bezier(0.57, 0.2, 0.21, 0.89);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 81.25em) {
  .news-item-teaser {
    font-size: 1.1rem;
  }
}
.news-item-more {
  display: block;
  color: #f0a818;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-top: 0.75rem;
  transition: 0.5s color cubic-bezier(0.57, 0.2, 0.21, 0.89);
}
.news-item:hover {
  background: #fff;
  box-shadow: 0px 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.6);
  transition: 1s all cubic-bezier(0.5, 1.65, 0.4, 0.8);
}
.news-item:hover .news-item-meta-type {
  color: #202659;
}
.news-item:hover .news-item-headline {
  color: #2e4575;
}
.news-item:hover .news-item-teaser {
  color: #000;
}
.news-item:hover .news-item-more {
  color: #202659;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-slide {
  display: none;
  visibility: hidden;
}
.slick-slider .slick-slide:first-child {
  display: block;
  visibility: visible;
}
.slick-slider.slick-initialized .slick-slide, .slick-slider.slick-initialized:first-child {
  display: block;
  visibility: visible;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.content-wrap {
  width: 100%;
}

.layer-wrap {
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 48em) {
  .layer-wrap {
    padding: 0 2rem;
  }
}
@media (min-width: 81.25em) {
  .layer-wrap {
    padding: 0;
  }
}
.layer-intro {
  padding: 2rem 1.5rem 0;
}
@media (min-width: 48em) {
  .layer-intro {
    padding: 0 0 1rem 2rem;
  }
}
@media (min-width: 64em) {
  .layer-intro {
    padding: 0 0 2rem 2rem;
  }
}
@media (min-width: 81.25em) {
  .layer-intro {
    padding: 0 0 2rem 2rem;
  }
}
@media (min-width: 112.5em) {
  .layer-intro {
    padding: 0 0 3rem 3rem;
  }
}