:root {
  --c-brand-primary: #f15722;
  --c-brand-primary-dark: #9c310d;
  --c-brand-secondary: #097f8f;
  --c-brand-secondary-dark: #05434e;
  --font-family-headline: "montserrat", sans-serif;
  --font-family-body: "montserrat", sans-serif;
  --font-weight-headline: 300;
}

.typography ul li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f15722' d='m10.6 16.6l7.05-7.05l-1.4-1.4l-5.65 5.65l-2.85-2.85l-1.4 1.4zM12 22q-2.075 0-3.9-.788t-3.175-2.137q-1.35-1.35-2.137-3.175T2 12q0-2.075.788-3.9t2.137-3.175q1.35-1.35 3.175-2.137T12 2q2.075 0 3.9.788t3.175 2.137q1.35 1.35 2.138 3.175T22 12q0 2.075-.788 3.9t-2.137 3.175q-1.35 1.35-3.175 2.138T12 22m0-2q3.35 0 5.675-2.325T20 12q0-3.35-2.325-5.675T12 4Q8.65 4 6.325 6.325T4 12q0 3.35 2.325 5.675T12 20m0-8'/%3E%3C/svg%3E");
}

.site-header {
  padding: clamp(1rem, 2.4vw, 2rem) clamp(2rem, 4.8vw, 4rem) clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem);
}
.site-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 100;
}
.gin--vertical-toolbar .site-header {
  top: 60px;
}
.site-header .icon-button {
  background: #fff;
  color: var(--c-black);
  margin-left: 1.5em;
  padding: 0.25em 0.5em;
  font-weight: 400;
}
.site-header .icon-button span.i svg {
  width: 70%;
}
.site-header .icon-button:hover {
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 0) and (max-width: 999px) {
  .site-header {
    padding: 0;
    height: 5rem;
    align-items: stretch;
    background: #03232c;
  }
  .site-header .nav-button {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .site-header {
    transform: translateY(-100%);
    opacity: 0;
  }
  .loaded .site-header {
    transform: none;
    opacity: 1;
    transition: all 1s 0.5s var(--ease-cubic);
  }
}

.site-title {
  display: block;
  width: 10vw;
}
.site-title a {
  display: block;
}
.site-title a img {
  display: block;
  width: 100%;
  height: auto;
}
.site-title a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 0) and (max-width: 999px) {
  .site-title {
    width: auto;
    flex-grow: 1;
    font-family: var(--font-family-headline);
  }
  .site-title h1 {
    font-size: 1em;
  }
  .site-title * {
    height: 100%;
  }
  .site-title a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2em;
  }
  .site-title a img {
    width: 8em;
    height: auto;
  }
  .site-title a .desktop {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .site-title .mobile {
    display: none;
  }
}

.primary-nav {
  font-family: var(--font-family-body);
  font-weight: 300;
}
.primary-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (min-width: 0) and (max-width: 999px) {
  .primary-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-transform: capitalize;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 1s;
    z-index: 600;
    max-width: 480px;
  }
  .primary-nav svg {
    display: none;
  }
  .primary-nav.open {
    transform: none;
    opacity: 1;
  }
  .primary-nav nav > .menu-container {
    height: 100%;
  }
  .primary-nav nav > .menu-container > ul {
    overflow-y: scroll;
    height: 100%;
  }
  .primary-nav .menu-container {
    background: black;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: all 0.5s;
  }
  .primary-nav > nav > .menu-container {
    transform: none;
  }
  .primary-nav button.back {
    display: block;
    width: 100%;
    background: var(--c-black);
    color: #fff;
    border: none;
    text-transform: none;
    text-align: left;
    letter-spacing: 0;
    font-size: 1.2em;
    line-height: 1em;
    padding: 1.25em 2em;
  }
  .primary-nav button.back svg {
    display: none;
  }
  .primary-nav button.back span {
    display: block;
    position: relative;
    padding-left: 2em;
  }
  .primary-nav button.back span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.8em;
    height: 0.8em;
    border-style: none none solid solid;
    transform: translate(0, -50%) rotate(45deg);
  }
  .primary-nav nav .menu-container li {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .primary-nav nav .menu-container li a {
    display: block;
    padding: 0 2em;
    line-height: 5em;
    height: 5em;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.25s;
    background: transparent;
    color: white;
  }
  .primary-nav nav .menu-container li a:hover, .primary-nav nav .menu-container li a:focus, .primary-nav nav .menu-container li a.is-active {
    background: #fff !important;
    color: #000 !important;
  }
  .primary-nav nav .menu-container li.expanded {
    position: relative;
  }
  .primary-nav nav .menu-container li.expanded > a {
    margin-right: 5em;
  }
  .primary-nav nav .menu-container li.expanded button.toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 5em;
    height: 5em;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s;
    background: transparent;
  }
  .primary-nav nav .menu-container li.expanded button.toggle::after {
    content: "";
    position: absolute;
    right: 2.5em;
    top: 2.5em;
    width: 0.7em;
    height: 0.7em;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-style: solid solid none none;
    transform: translate(50%, -50%) rotate(45deg);
    transition: all 0.25s;
    transition: all 0.25s;
  }
  .primary-nav nav .menu-container li.expanded button.toggle:hover {
    cursor: pointer;
    background: #fff;
  }
  .primary-nav nav .menu-container li.expanded button.toggle:hover::after {
    border-color: #000;
  }
  .primary-nav nav .menu-container li.expanded button.toggle span {
    overflow: hidden;
    text-indent: 999px;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
  }
  .primary-nav nav .menu-container li.expanded .menu-container {
    z-index: 500;
  }
  .primary-nav nav .menu-container li.expanded .menu-container .menu-container {
    z-index: 501;
  }
  .primary-nav nav .menu-container li.expanded .menu-container .menu-container .menu-container {
    z-index: 502;
  }
  .primary-nav nav .menu-container li.expanded .menu-container .menu-container .menu-container .menu-container {
    z-index: 503;
  }
  .primary-nav nav .menu-container li.expanded li a {
    display: block;
    color: #fff;
    text-transform: none;
    transition: all 0.25s;
  }
  .primary-nav nav .menu-container li.expanded.open::after {
    border-style: solid solid none none;
    transform: translate(50%, -70%) rotate(135deg);
  }
  .primary-nav nav .menu-container li.expanded.open > .menu-container {
    transform: none;
  }
}
@media screen and (min-width: 1000px) {
  .primary-nav {
    white-space: nowrap;
    font-size: 0.7em;
    display: flex;
    align-items: center;
    transition: all 0.25s;
  }
  .primary-nav button {
    display: none;
  }
  .primary-nav > nav > .menu-container > ul {
    display: flex;
    align-items: center;
    position: relative;
  }
  .primary-nav > nav > .menu-container > ul > li {
    padding: 0 0 0 1.5em;
    position: relative;
  }
  .primary-nav > nav > .menu-container > ul > li > a {
    display: block;
    position: relative;
    padding: 0;
    color: #fff;
    transition: all 0.25s;
    line-height: 4.5em;
    font-weight: 300;
  }
  .primary-nav > nav > .menu-container > ul > li > a:hover, .primary-nav > nav > .menu-container > ul > li > a:focus, .primary-nav > nav > .menu-container > ul > li > a.is-active {
    opacity: 0.5;
  }
  .primary-nav > nav > .menu-container > ul > li.mobile-link {
    display: none;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded {
    perspective: 1000px;
    z-index: 100;
    position: relative;
    padding-right: 1.5em;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded::after {
    content: "";
    position: absolute;
    right: 0.25em;
    top: 50%;
    width: 0.5em;
    height: 0.5em;
    border: 2px solid white;
    border-style: solid solid none none;
    transform: translate(-50%, -65%) rotate(45deg);
    transition: all 0.25s;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    perspective: 1000px;
    z-index: -1;
    display: none;
    animation: rotateMenu 0.5s var(--ease-cubic) forwards;
    transform-origin: 50% 0;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container li {
    line-height: 1.2em;
    position: relative;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container li > a {
    transition: all 0.5s 0.3s;
    text-align: left;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container li:last-child {
    margin-top: -1px;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container li.expanded > a {
    position: relative;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container a {
    display: block;
    line-height: 1.2em;
    padding: 1.25em 6em 1.25em 2em;
    color: #fff;
    background: var(--c-brand-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.25s !important;
    font-weight: 400;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container a:hover {
    background: #fff;
    color: var(--c-black);
  }
  .primary-nav > nav > .menu-container > ul > li.expanded .menu-container li:first-child a {
    border-top: none;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded > .menu-container {
    position: absolute;
    left: 0;
    top: 100%;
    font-size: 0.9em;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded > .menu-container li:last-child a {
    border-radius: 0 0 1.5em 1.5em;
    contain: paint;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded > .menu-container li.expanded > a::after {
    content: "";
    position: absolute;
    right: 1.5em;
    top: 50%;
    width: 0.5em;
    height: 0.5em;
    transform: translate(-50%, -65%) rotate(45deg);
    transition: all 0.25s;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded > .menu-container li.expanded > a:hover::after {
    border-color: #000;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded > .menu-container > ul > li > .menu-container {
    top: 0;
    left: 100%;
    border-radius: 0 1rem 1rem 1rem;
  }
  .primary-nav > nav > .menu-container > ul > li.expanded > .menu-container > ul > li > .menu-container li:first-child a {
    border-radius: 0 1rem 0 0;
    contain: paint;
  }
  .primary-nav > nav > .menu-container > ul li.expanded:hover::after {
    transform: translate(-50%, -65%) rotate(135deg) !important;
  }
  .primary-nav > nav > .menu-container > ul li.expanded:hover > .menu-container {
    display: block !important;
  }
}
@media screen and (min-width: 1280px) {
  .primary-nav {
    font-size: 0.9em;
  }
}
@media screen and (min-width: 1600px) {
  .primary-nav {
    font-size: 1.1em;
  }
}

@keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg);
  }
  70% {
    transform: rotateX(20deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
button.primary-nav-toggle {
  padding: clamp(0rem, 0vw, 0rem) clamp(1rem, 2.4vw, 2rem) clamp(0rem, 0vw, 0rem) clamp(1rem, 2.4vw, 2rem);
}
button.primary-nav-toggle {
  height: 100%;
  border-radius: 0;
  border: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 300;
  font-size: 1.2em;
  font-family: var(--font-family-headline);
  text-transform: capitalize;
  background: var(--c-brand-primary);
}
@media screen and (min-width: 640px) {
  button.primary-nav-toggle {
    width: 10em;
  }
}
@media screen and (min-width: 1000px) {
  button.primary-nav-toggle {
    display: none;
  }
}
button.primary-nav-toggle .icon {
  display: block;
  position: relative;
  width: 2em;
  height: 2em;
}
button.primary-nav-toggle .icon .l {
  position: absolute;
  left: 25%;
  width: 50%;
  height: 2px;
  background: #fff;
  transition: all 0.25s;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}
button.primary-nav-toggle .icon .l.t {
  margin-top: -5px;
}
button.primary-nav-toggle .icon .l.b {
  margin-top: 5px;
}
button.primary-nav-toggle.open .icon .l.t, button.primary-nav-toggle.open .icon .l.b {
  transform: rotate(45deg);
  margin-top: 0;
}
button.primary-nav-toggle.open .icon .l.b {
  opacity: 0;
}
button.primary-nav-toggle.open .icon .l.m {
  transform: rotate(-45deg);
}

@media screen and (min-width: 1000px) {
  body::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  body::after {
    content: "";
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s;
    z-index: 490;
  }
  body:has(#sticky-nav:hover)::after {
    opacity: 1;
  }
}
#sticky-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 500;
  margin-top: 0;
  display: flex;
  transform: translateY(-150%);
  transition: all 1s 0.1s;
  padding: 0;
}
#sticky-nav .primary-nav {
  padding-top: 0;
}
@media screen and (min-width: 0) and (max-width: 999px) {
  #sticky-nav {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  }
  #sticky-nav .site-title img.desktop {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  #sticky-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -200%);
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    top: 2rem;
    height: auto !important;
    line-height: initial !important;
    padding: 1rem;
    width: 90%;
    max-width: 34em;
  }
  #sticky-nav .site-title {
    display: none;
  }
  #sticky-nav .navigation {
    width: 100%;
  }
  #sticky-nav .primary-nav {
    padding: 0;
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
    font-size: 1em;
    width: 100%;
  }
  #sticky-nav .primary-nav nav .menu-container ul {
    margin-right: 1em;
    padding-top: 0;
  }
  #sticky-nav .primary-nav nav .menu-container ul li {
    padding-top: 0.2em;
    padding-left: 1em;
    line-height: 1em;
  }
  #sticky-nav .primary-nav nav .menu-container ul li a {
    color: var(--c-text);
    font-weight: 400;
    opacity: 0.7;
    line-height: 1em;
  }
  #sticky-nav .primary-nav nav .menu-container ul li a:hover {
    opacity: 0.4;
  }
  #sticky-nav .primary-nav nav .menu-container ul li:first-child {
    padding-left: 1em;
  }
  #sticky-nav .primary-nav nav .menu-container ul li.expanded {
    padding-right: 0;
  }
  #sticky-nav .primary-nav nav .menu-container ul li.expanded::before, #sticky-nav .primary-nav nav .menu-container ul li.expanded::after {
    display: none;
  }
  #sticky-nav .primary-nav nav .menu-container ul li.expanded ul {
    display: none !important;
  }
  #sticky-nav .primary-nav a.icon-button {
    background: var(--c-brand-primary);
    color: #fff;
    margin-left: 0;
    padding: 0.75em;
  }
  #sticky-nav .primary-nav a.icon-button:hover {
    background: var(--c-brand-primary-dark);
  }
  #sticky-nav > * {
    position: relative;
  }
  #sticky-nav.show {
    transform: translateX(-50%) !important;
  }
}
#sticky-nav.show {
  opacity: 1;
  transition: all 1s 0s;
  transform: none;
}

#banner {
  height: 100dvh;
  color: #fff;
  clip-path: inset(0 0 0 0);
}
#banner > div {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 5rem;
}
#banner .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#banner .bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#banner .bg::after {
  content: "";
}
#banner .bg::after {
  background: linear-gradient(to right, rgba(2, 2, 12, 0.8) 0%, rgba(2, 2, 12, 0.7) 50%, rgba(2, 2, 12, 0.2) 100%);
}
#banner .bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#banner .bg::before {
  content: "";
}
#banner .bg::before {
  height: 30%;
  background: linear-gradient(to bottom, hsl(240, 71%, 3%) 0%, hsla(240, 71%, 3%, 0.987) 8.1%, hsla(240, 71%, 3%, 0.951) 15.5%, hsla(240, 71%, 3%, 0.896) 22.5%, hsla(240, 71%, 3%, 0.825) 29%, hsla(240, 71%, 3%, 0.741) 35.3%, hsla(240, 71%, 3%, 0.648) 41.2%, hsla(240, 71%, 3%, 0.55) 47.1%, hsla(240, 71%, 3%, 0.45) 52.9%, hsla(240, 71%, 3%, 0.352) 58.8%, hsla(240, 71%, 3%, 0.259) 64.7%, hsla(240, 71%, 3%, 0.175) 71%, hsla(240, 71%, 3%, 0.104) 77.5%, hsla(240, 71%, 3%, 0.049) 84.5%, hsla(240, 71%, 3%, 0.013) 91.9%, hsla(240, 71%, 3%, 0) 100%);
  opacity: 0.9;
}
#banner .bg > div {
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
}
#banner .bg > video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#banner .banner-content {
  padding: clamp(2rem, 4.8vw, 4rem) clamp(2rem, 4.8vw, 4rem) clamp(3rem, 7.2vw, 6rem) clamp(2rem, 4.8vw, 4rem);
}
#banner .banner-content {
  position: relative;
  width: 100%;
}
#banner .field--bnr-overline {
  font-size: var(--step-2);
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5em;
  color: rgba(255, 255, 255, 0.7);
}
#banner h1, #banner h2 {
  font-size: var(--font-size-h1);
  font-weight: 500;
  line-height: 1.1em;
  max-width: 12em;
}
.page-node-type-article #banner h1, .page-node-type-article #banner h2 {
  font-size: var(--font-size-h2);
  line-height: 1.2em;
  max-width: 18em;
}
#banner .field--bnr-button {
  margin-top: 1.5em;
}
.not-front #banner {
  height: 70vh;
}
.not-front #banner > div {
  height: 70vh;
}
.not-front #banner .banner-content {
  width: 100%;
  text-align: left;
}
#banner .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#banner .overlay {
  -webkit-backdrop-filter: blur(calc(10px * var(--scroll-per)));
          backdrop-filter: blur(calc(10px * var(--scroll-per)));
  pointer-events: none;
}
#banner .overlay::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#banner .overlay::after {
  content: "";
}
#banner .overlay::after {
  pointer-events: none;
  background: #464646;
  opacity: var(--scroll-per);
}
@media screen and (min-width: 0) and (max-width: 999px) {
  #banner > div {
    align-items: center;
  }
  #banner .field--bnr-overline {
    font-size: var(--font-size-h5);
    line-height: 1.2em;
  }
  #banner h1, #banner h2 {
    font-size: var(--step-7);
    line-height: 1.2em;
  }
  .not-front #banner .banner-content {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  #banner {
    height: calc(100dvh + 2rem);
  }
}
@media screen and (min-width: 1000px) and (min-width: 1400px) {
  #banner .banner-content {
    max-width: clamp(320px, 93vw, 1680px);
  }
}
@media screen and (min-width: 1000px) {
  #banner {
    min-height: 900px;
  }
  #banner .field--bnr-overline,
  #banner h1, #banner h2,
  #banner .field--bnr-headline,
  #banner .field--bnr-subtext,
  #banner .field--bnr-button,
  #banner .block-system-breadcrumb-block {
    transform: translateY(80px);
    opacity: 0;
  }
  #banner .bg {
    transform: scale(1.2);
    opacity: 0;
  }
  .loaded #banner .bg {
    transform: none;
    opacity: 1;
    transition: all 1.5s var(--ease-cubic);
  }
  .loaded #banner .field--bnr-overline,
  .loaded #banner .field--bnr-headline,
  .loaded #banner .field--bnr-subtext,
  .loaded #banner h1, .loaded #banner h2,
  .loaded #banner .field--bnr-button,
  .loaded #banner .block-system-breadcrumb-block {
    transform: none;
    opacity: 1;
    transition: all 1s 0.5s var(--ease-cubic);
  }
  .loaded #banner .field--bnr-headline,
  .loaded #banner h1, .loaded #banner h2,
  .loaded #banner .field--bnr-subtext {
    transition-delay: 0.75s;
  }
  .loaded #banner .field--bnr-button,
  .loaded #banner .block-system-breadcrumb-block {
    transition-delay: 1s;
  }
  #banner > div {
    min-height: 900px;
  }
}
@media screen and (min-width: 1000px) and (max-height: 1000px) {
  #banner .content {
    padding: clamp(2rem, 4.8vw, 4rem);
  }
}
@media screen and (min-width: 1000px) and (min-height: 900px) and (max-height: 1100px) {
  #banner .content {
    padding: clamp(2rem, 4.8vw, 4rem) clamp(2rem, 4.8vw, 4rem) clamp(4rem, 9.6vw, 8rem) clamp(2rem, 4.8vw, 4rem);
  }
}

.block-system-breadcrumb-block {
  position: relative;
  margin-top: 2em;
  line-height: 1em;
  font-family: var(--font-family-body);
  font-size: var(--step--1);
  line-height: 1.2em;
}
.block-system-breadcrumb-block ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
.block-system-breadcrumb-block ol {
  display: inline-flex;
  align-items: center;
  flex-flow: row wrap;
  flex-grow: 0;
  flex-shrink: 1;
  margin: 0;
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 999px;
  font-weight: 700;
}
.block-system-breadcrumb-block li {
  color: #fff;
}
.block-system-breadcrumb-block li a {
  color: #fff;
}
.block-system-breadcrumb-block li a:hover {
  opacity: 0.5;
  color: #fff;
}
.block-system-breadcrumb-block li:nth-child(1) {
  margin-right: 1em;
}
.block-system-breadcrumb-block li:nth-child(1) a {
  display: block;
  position: relative;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: var(--c-brand-primary);
  transition: all 0.25s;
}
.block-system-breadcrumb-block li:nth-child(1) a span {
  overflow: hidden;
  text-indent: 999px;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
}
.block-system-breadcrumb-block li:nth-child(1) a::before, .block-system-breadcrumb-block li:nth-child(1) a::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.block-system-breadcrumb-block li:nth-child(1) a::before, .block-system-breadcrumb-block li:nth-child(1) a::after {
  content: "";
  background-position: 50% 50%;
  background-size: 50% auto;
  background-repeat: no-repeat;
  transition: all 0.25s;
}
.block-system-breadcrumb-block li:nth-child(1) a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M4 21V9l8-6l8 6v12h-6v-7h-4v7z'/%3E%3C/svg%3E");
}
.block-system-breadcrumb-block li:not(:last-child, :first-child) {
  position: relative;
  padding-right: 1em;
  margin-right: 1em;
}
.block-system-breadcrumb-block li:not(:last-child, :first-child)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 50%;
  width: 0.25em;
  height: 0.25em;
  background: #fff;
  border-radius: 50%;
  transform: translate(50%, 50%);
}
.block-system-breadcrumb-block li:last-child {
  height: 1.2em;
  max-width: 14em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .block-system-breadcrumb-block {
    display: none;
  }
}

.block--hero .section-header {
  margin-bottom: 0;
}
.block--hero .section-header .field--body {
  max-width: 25em;
  font-size: var(--font-size-body-xlarge);
  line-height: 1.5em;
  margin-bottom: 1em;
}

#footer-main-wrapper {
  position: relative;
}
#footer-main-wrapper .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#footer-main-wrapper .bg {
  background: var(--c-brand-secondary);
}
#footer-main-wrapper .bg video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
}

#footer-second {
  padding: clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem) clamp(0rem, 0vw, 0rem) clamp(2rem, 4.8vw, 4rem);
}
@media screen and (min-width: 1400px) {
  #footer-second {
    max-width: clamp(320px, 93vw, 1200px);
  }
}
#footer-second {
  margin: auto;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}
#footer-second > .inner {
  padding: clamp(6rem, 14.4vw, 12rem) clamp(0rem, 0vw, 0rem) clamp(6rem, 14.4vw, 12rem) clamp(0rem, 0vw, 0rem);
}
#footer-second > .inner {
  font-size: var(--step--1);
  line-height: 1.5em;
  text-align: center;
}
#footer-second > .inner > * {
  padding: clamp(0.5rem, 1.2vw, 1rem);
}
@media screen and (min-width: 768px) {
  #footer-second > .inner {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
}
#footer-second h2 {
  color: #fff;
  font-size: var(--step-0);
  line-height: 1.2em;
  margin-bottom: 0.25em;
}
#footer-second a {
  color: #fff;
}
#footer-second a:hover {
  opacity: 0.5;
}
#footer-second .footer-logo {
  width: 12em;
}
#footer-second .footer-logo a {
  display: block;
}
#footer-second .footer-logo a img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  #footer-second .footer-logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
  }
}
@media screen and (min-width: 1000px) {
  #footer-second .block {
    transform: translateY(80px);
    opacity: 0;
  }
  #footer-second.loaded .block {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
  #footer-second.loaded .block:nth-child(2) {
    transition-delay: 0.25s;
  }
  #footer-second.loaded .block:nth-child(3) {
    transition-delay: 0.5s;
  }
  #footer-second.loaded .block:nth-child(4) {
    transition-delay: 0.75s;
  }
}

#footer-bar {
  padding: clamp(1.5rem, 3.6vw, 3rem) clamp(2rem, 4.8vw, 4rem) clamp(1.5rem, 3.6vw, 3rem) clamp(2rem, 4.8vw, 4rem);
}
#footer-bar {
  position: relative;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--step--1);
  line-height: 1.2em;
  background: rgba(5, 28, 39, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
#footer-bar a {
  color: #fff;
}
#footer-bar a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  #footer-bar {
    text-align: center;
  }
  #footer-bar .social {
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 768px) {
  #footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #footer-bar .social {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  #footer-bar .right .copyright {
    display: flex;
    align-items: center;
    line-height: 1em;
  }
  #footer-bar .right .copyright > div:first-child {
    margin-right: 1em;
    padding-right: 1em;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
  }
  #footer-bar .left {
    transform: translateX(-80px);
    opacity: 0;
  }
  #footer-bar .right {
    transform: translateX(80px);
    opacity: 0;
  }
  #footer-bar.loaded .left,
  #footer-bar.loaded .right {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
}

@media screen and (min-width: 1000px) {
  #footer-first {
    border-radius: 0 0 2rem 2rem;
    position: relative;
    overflow: clip;
    background: #fff;
    z-index: 400;
  }
  #footer-main-wrapper {
    clip-path: inset(0 0 0 0);
    margin-top: -2rem;
  }
  #footer-main-wrapper #footer-main {
    width: 100vw;
    left: 0;
    bottom: 0;
    display: flex;
    flex-flow: column;
    transform: translateY(calc(25% - 25% * var(--scroll-per)));
  }
  #footer-main-wrapper #footer-main #footer-second {
    flex-grow: 1;
  }
  #footer-main-wrapper[data-height] {
    height: var(--el-height);
  }
  #footer-main-wrapper[data-height] #footer-main {
    height: var(--el-height);
    position: fixed;
  }
}
@media screen and (min-width: 768px) {
  #page-content {
    border-radius: 2rem 2rem 0 0;
    margin-top: -2rem;
    z-index: 400;
    overflow: clip;
  }
}

.node-profile.node-teaser a {
  display: block;
  color: var(--c-text);
}
.node-profile.node-teaser a .field--field-media-image {
  overflow: clip;
  border-radius: 1em;
  position: relative;
}
.node-profile.node-teaser a .field--field-media-image img {
  display: block;
  width: 100%;
  height: auto;
}
.node-profile.node-teaser a .field--field-media-image::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.node-profile.node-teaser a .field--field-media-image::after {
  content: "";
}
.node-profile.node-teaser a .field--field-media-image::after {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 1em;
  opacity: 0;
  transition: all 0.25s;
}
.node-profile.node-teaser a .content {
  margin-top: 1em;
  transition: all 0.25s;
}
.node-profile.node-teaser a h3 {
  font-size: var(--font-size-h5);
  line-height: 1.2em;
}
.node-profile.node-teaser a .field--subtitle {
  color: color-mix(in srgb, var(--c-text), transparent 30%);
}
.node-profile.node-teaser a:hover .field--field-media-image::after {
  opacity: 1;
}
.node-profile.node-teaser a:hover .content {
  opacity: 0.5;
}

.node-service.node-teaser a {
  display: block;
  color: var(--c-text);
}
.node-service.node-teaser a .field--field-media-image {
  overflow: clip;
  border-radius: 1em;
  position: relative;
}
.node-service.node-teaser a .field--field-media-image img {
  display: block;
  width: 100%;
  height: auto;
}
.node-service.node-teaser a .field--field-media-image::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.node-service.node-teaser a .field--field-media-image::after {
  content: "";
}
.node-service.node-teaser a .field--field-media-image::after {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1em;
  opacity: 0;
  transition: all 0.25s;
}
.node-service.node-teaser a .content {
  margin-top: 1em;
  transition: all 0.25s;
}
.node-service.node-teaser a h3 {
  font-size: var(--font-size-h4);
  line-height: 1.2em;
}
.node-service.node-teaser:hover .field--field-media-image::after {
  opacity: 1;
}
.node-service.node-teaser:hover .content {
  opacity: 0.5;
}

.node-article.node-teaser a {
  display: block;
  color: var(--c-text);
}
.node-article.node-teaser a .field--field-media-image {
  overflow: clip;
  border-radius: 1em;
  position: relative;
}
.node-article.node-teaser a .field--field-media-image img {
  display: block;
  width: 100%;
  height: auto;
}
.node-article.node-teaser a .field--field-media-image::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.node-article.node-teaser a .field--field-media-image::after {
  content: "";
}
.node-article.node-teaser a .field--field-media-image::after {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1em;
  opacity: 0;
  transition: all 0.25s;
}
.node-article.node-teaser a .content {
  margin-top: 1em;
  transition: all 0.25s;
}
.node-article.node-teaser a h3 {
  font-size: var(--font-size-h3);
  line-height: 1.2em;
}
.node-article.node-teaser:hover .field--field-media-image::after {
  opacity: 1;
}
.node-article.node-teaser:hover .content {
  opacity: 0.5;
}

.node-article.node-full {
  transition: all 1s var(--ease-cubic);
}
.node-article.node-full[data-color=b] {
  background: var(--c-brand-secondary);
}
.node-article.node-full[data-color=b] span.w {
  color: #fff;
}

.view-profiles .view-content {
  margin-left: clamp(-0.5rem, -0.6vw, -0.25rem);
  margin-right: clamp(-0.5rem, -0.6vw, -0.25rem);
}
.view-profiles .view-content {
  display: flex;
  flex-flow: row wrap;
}
.view-profiles .view-content .views-row {
  padding: clamp(0rem, 0vw, 0rem) clamp(0.25rem, 0.6vw, 0.5rem) clamp(2rem, 4.8vw, 4rem) clamp(0.25rem, 0.6vw, 0.5rem);
}
@media screen and (min-width: 0) and (max-width: 639px) {
  .view-profiles .view-content .views-row {
    width: 100%;
  }
  .view-profiles .view-content .views-row .node {
    max-width: 24em;
    margin: auto;
  }
}
@media screen and (min-width: 0) and (max-width: 639px) {
  .view-profiles .view-content .views-row {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .view-profiles .view-content .views-row {
    width: 33.3%;
  }
}
@media screen and (min-width: 1000px) {
  .view-profiles .view-content .views-row .node {
    transform: translateY(80px);
    opacity: 0;
  }
  .view-profiles .view-content .views-row .node.loaded {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
  .view-profiles .view-content .views-row:nth-child(3n+2) .node.loaded {
    transition-delay: 0.25s;
  }
  .view-profiles .view-content .views-row:nth-child(3n+3) .node.loaded {
    transition-delay: 0.5s;
  }
}

.view-services .view-content {
  margin-left: clamp(-0.5rem, -0.6vw, -0.25rem);
  margin-right: clamp(-0.5rem, -0.6vw, -0.25rem);
}
.view-services .view-content {
  display: flex;
  flex-flow: row wrap;
}
.view-services .view-content .views-row {
  padding: clamp(0rem, 0vw, 0rem) clamp(0.25rem, 0.6vw, 0.5rem) clamp(2rem, 4.8vw, 4rem) clamp(0.25rem, 0.6vw, 0.5rem);
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .view-services .view-content .views-row {
    width: 100%;
  }
  .view-services .view-content .views-row .node {
    max-width: 24em;
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  .view-services .view-content .views-row {
    width: 50%;
  }
}
@media screen and (min-width: 1000px) {
  .view-services .view-content .views-row:nth-child(odd) .node {
    transform: translateX(-80px);
    opacity: 0;
  }
  .view-services .view-content .views-row:nth-child(odd) .node.loaded {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
  .view-services .view-content .views-row:nth-child(even) .node {
    transform: translateX(80px);
    opacity: 0;
  }
  .view-services .view-content .views-row:nth-child(even) .node.loaded {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
}

.view-services.view-display-id-embed_featured .node-service.node-teaser a {
  color: #fff;
}

.paragraph--services--page {
  transition: all 1s var(--ease-cubic);
}
.paragraph--services--page[data-color=b] {
  background: var(--c-brand-secondary);
}
.paragraph--services--page[data-color=b] span.w {
  color: #fff;
}

.view-articles .view-content {
  margin-left: clamp(-0.5rem, -0.6vw, -0.25rem);
  margin-right: clamp(-0.5rem, -0.6vw, -0.25rem);
}
.view-articles .view-content {
  display: flex;
  flex-flow: row wrap;
}
.view-articles .view-content .views-row {
  padding: clamp(0rem, 0vw, 0rem) clamp(0.25rem, 0.6vw, 0.5rem) clamp(2rem, 4.8vw, 4rem) clamp(0.25rem, 0.6vw, 0.5rem);
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .view-articles .view-content .views-row {
    width: 100%;
  }
  .view-articles .view-content .views-row .node {
    max-width: 24em;
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  .view-articles .view-content .views-row {
    width: 50%;
  }
}
@media screen and (min-width: 1000px) {
  .view-articles .view-content .views-row:nth-child(odd) .node {
    transform: translateX(-80px);
    opacity: 0;
  }
  .view-articles .view-content .views-row:nth-child(odd) .node.loaded {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
  .view-articles .view-content .views-row:nth-child(even) .node {
    transform: translateX(80px);
    opacity: 0;
  }
  .view-articles .view-content .views-row:nth-child(even) .node.loaded {
    transform: none;
    opacity: 1;
    transition: all 1s var(--ease-cubic);
  }
}

.paragraph--articles--page {
  transition: all 1s var(--ease-cubic);
}
.paragraph--articles--page[data-color=b] {
  background: var(--c-brand-secondary);
}
.paragraph--articles--page[data-color=b] span.w {
  color: #fff;
}

.paragraph--profiles--featured {
  background: #f1f1f1;
}

.paragraph--overview--profile .image {
  margin-bottom: 2em;
  max-width: 26em;
}
.paragraph--overview--profile .image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.paragraph--overview--profile .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1em;
}
.paragraph--overview--profile .actions .toggle {
  margin-top: 0;
}
.paragraph--overview--profile .content {
  max-width: 30em;
}
.paragraph--overview--profile .body {
  color: color-mix(in srgb, var(--c-text), transparent 30%);
  line-height: 1.5em;
  max-width: 22em;
}
@media screen and (min-width: 768px) {
  .paragraph--overview--profile {
    margin-left: clamp(-2rem, -2.4vw, -1rem);
    margin-right: clamp(-2rem, -2.4vw, -1rem);
  }
  .paragraph--overview--profile {
    display: flex;
    align-items: center;
  }
  .paragraph--overview--profile > div {
    padding: clamp(0rem, 0vw, 0rem) clamp(1rem, 2.4vw, 2rem) clamp(0rem, 0vw, 0rem) clamp(1rem, 2.4vw, 2rem);
  }
  .paragraph--overview--profile .image {
    margin-bottom: 0;
    max-width: none;
    flex-grow: 1;
    flex-basis: 0;
  }
  .paragraph--overview--profile .content {
    min-width: 40%;
  }
}

.paragraph--services--featured .section-header {
  color: #fff;
}
.paragraph--services--featured .bg {
  background: var(--c-brand-secondary);
}
.paragraph--services--featured .bg > div {
  mix-blend-mode: multiply;
  opacity: 0.75;
}

.paragraph--overview--service .image {
  margin-bottom: 2em;
  max-width: 26em;
}
.paragraph--overview--service .image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.paragraph--overview--service .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1em;
}
.paragraph--overview--service .actions .toggle {
  margin-top: 0;
}
.paragraph--overview--service .content {
  max-width: 30em;
}
.paragraph--overview--service .body {
  color: color-mix(in srgb, var(--c-text), transparent 30%);
  line-height: 1.5em;
  max-width: 22em;
}
@media screen and (min-width: 768px) {
  .paragraph--overview--service {
    margin-left: clamp(-2rem, -2.4vw, -1rem);
    margin-right: clamp(-2rem, -2.4vw, -1rem);
  }
  .paragraph--overview--service {
    display: flex;
    align-items: center;
  }
  .paragraph--overview--service > div {
    padding: clamp(0rem, 0vw, 0rem) clamp(1rem, 2.4vw, 2rem) clamp(0rem, 0vw, 0rem) clamp(1rem, 2.4vw, 2rem);
  }
  .paragraph--overview--service .image {
    margin-bottom: 0;
    max-width: none;
    flex-grow: 1;
    flex-basis: 0;
  }
  .paragraph--overview--service .content {
    min-width: 40%;
  }
}

.paragraph--hero--text-columns .h3 {
  text-align: center;
  margin-bottom: 1em;
}
.paragraph--hero--text-columns .field--paragraphs > .field-items {
  margin-left: clamp(-1rem, -1.2vw, -0.5rem);
  margin-right: clamp(-1rem, -1.2vw, -0.5rem);
}
.paragraph--hero--text-columns .field--paragraphs > .field-items {
  font-size: var(--font-size-body-large);
  line-height: 1.5em;
}
.paragraph--hero--text-columns .field--paragraphs > .field-items > .field-item {
  padding: clamp(0rem, 0vw, 0rem) clamp(1rem, 2.4vw, 2rem) clamp(0rem, 0vw, 0rem) clamp(1rem, 2.4vw, 2rem);
}
.paragraph--hero--text-columns .field--paragraphs > .field-items > .field-item .paragraph {
  max-width: 26em;
  margin: auto;
}
@media screen and (min-width: 0) and (max-width: 767px) {
  .paragraph--hero--text-columns .field--paragraphs > .field-items > .field-item:first-child {
    margin-bottom: 1.5em;
  }
}
@media screen and (min-width: 768px) {
  .paragraph--hero--text-columns .field--paragraphs > .field-items {
    display: flex;
  }
  .paragraph--hero--text-columns .field--paragraphs > .field-items > .field-item {
    width: 50%;
  }
}

.paragraph--template--service .section:has(.field--expandable-text-images) > .inner {
  padding-top: 0;
}
.paragraph--template--service .field--expandable-text-images > .field-items > .field-item:not(:last-child) {
  margin-bottom: clamp(4rem, 9.6vw, 8rem);
  margin-top: clamp(0rem, 0vw, 0rem);
}
.paragraph--template--service .field--expandable-text-images > .field-items > .field-item:nth-child(odd) .paragraph--expandable-text-image .image {
  order: 999;
}

.node-service.node-full {
  transition: all 1s var(--ease-cubic);
}
.node-service.node-full[data-color=b] {
  background: #f1f1f1;
}
.node-service.node-full[data-color=c] {
  background-color: var(--c-brand-secondary);
}
.node-service.node-full[data-color=c] span.w {
  color: #fff;
}
.node-service.node-full[data-color=c] .field--body > div,
.node-service.node-full[data-color=c] .field--body-below > div {
  color: rgba(255, 255, 255, 0.7);
}

.paragraph--template--about {
  transition: all 1s var(--ease-cubic);
}
.paragraph--template--about .section:has(.field--expandable-text-images) > .inner {
  padding-bottom: 0;
}
.paragraph--template--about .field--expandable-text-images > .field-items > .field-item:not(:last-child) {
  margin-bottom: clamp(4rem, 9.6vw, 8rem);
  margin-top: clamp(0rem, 0vw, 0rem);
}
.paragraph--template--about .field--expandable-text-images > .field-items > .field-item:nth-child(even) .paragraph--expandable-text-images .image {
  order: 999;
}
.paragraph--template--about[data-color=b] {
  background-color: var(--c-brand-secondary-dark);
}
.paragraph--template--about[data-color=b] span.w {
  color: #fff;
}
.paragraph--template--about[data-color=b] .field--body > div,
.paragraph--template--about[data-color=b] .field--body-below > div {
  color: rgba(255, 255, 255, 0.7);
}
.paragraph--template--about[data-color=c] {
  background: #f1f1f1;
}

.node-profile.node-full {
  transition: all 1s var(--ease-cubic);
}
.node-profile.node-full .section:has(.field--overview) > .inner,
.node-profile.node-full .section.paragraph--hero--text-columns > .inner {
  padding-bottom: 0;
}
.node-profile.node-full[data-color=b] {
  background: #f1f1f1;
}
.node-profile.node-full[data-color=c] {
  background-color: var(--c-brand-secondary);
}
.node-profile.node-full[data-color=c] span.w {
  color: #fff;
}
.node-profile.node-full[data-color=c] .field--body > div,
.node-profile.node-full[data-color=c] .field--body-below > div {
  color: rgba(255, 255, 255, 0.7);
}

.paragraph--type--pull-quote .field--body {
  color: color-mix(in srgb, var(--c-text), transparent 40%);
}

.paragraph--webform .blurbs .paragraph--blurb .field--body {
  font-size: var(--step--1);
  line-height: 1.5em;
}

.paragraph--webform .blurbs > .inner .field--webform--blurbs {
  background: var(--c-brand-secondary-dark);
  color: #fff;
}

.paragraph--webform .blurbs > .inner .field--webform--blurbs > .field-items > .field-item:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.1);
}

.paragraph--webform .form-item label,
.paragraph--webform .form-item legend {
  font-weight: 400;
}

.paragraph--webform[data-color=b] {
  background-color: var(--c-brand-secondary-dark);
}
.paragraph--webform[data-color=b] span.w {
  color: #fff;
}
.paragraph--webform[data-color=b] .form-item label,
.paragraph--webform[data-color=b] .form-item legend {
  color: #fff;
}
.paragraph--webform[data-color=b] .form-item input,
.paragraph--webform[data-color=b] .form-item textarea,
.paragraph--webform[data-color=b] .form-item select {
  background: rgba(255, 255, 255, 0.3);
}
.paragraph--webform[data-color=b] .form-item input:focus,
.paragraph--webform[data-color=b] .form-item textarea:focus,
.paragraph--webform[data-color=b] .form-item select:focus {
  background: rgba(255, 255, 255, 0.6);
}

.field--webform form > .form-actions button {
  color: #fff;
}
.field--webform form > .form-actions button .icon::before {
  border-color: #fff;
}
.field--webform form > .form-actions button .icon::after {
  background: #fff;
}
.field--webform form > .form-actions button .icon .curve {
  border-color: transparent #fff #fff transparent;
}