/*Setup*/
.txt-white {
  color: white;
}

.txt-red {
  color: rgba(255, 0, 0, 0.2);
}

.txt-green {
  color: rgba(0, 128, 0, 0.2);
}

.txt-yellow {
  color: rgba(255, 255, 0, 0.5);
}

.txt-blue {
  color: rgba(0, 0, 255, 0.2);
}

.site-wrapper {
  overflow: hidden;
}

@media only screen and (max-width: 998px) {
  .primary {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.primary.expanded {
  padding-left: 0px;
  padding-right: 0px;
}

/* 
Prevent CSS Transitions from firing on window resize. See related JS in _base.twig 
When the window is resized this can cause the offscreen nav to show. This fixes the issue.
*/
.stop-transitions * {
  animation: none !important;
  transition: none !important;
}
.stop-transitions.open header .navigation {
  display: block;
}

.shadow {
  box-shadow: 0 10px 10px 0 rgba(30, 51, 86, 0.2) !important;
}
.shadow:after {
  content: " ";
  display: block;
  position: absolute;
  width: calc(100% - 30px);
  height: 60px;
  right: 0;
  bottom: -30px;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
  filter: blur(30px);
}

.text-columns2 {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 998px) {
  .text-columns2 p {
    width: 50%;
  }
}

.edit-link {
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 10px;
  background-color: #1e3356;
  color: white;
  position: absolute;
  top: 15px;
  right: 15px;
}
@media only screen and (max-width: 998px) {
  .edit-link {
    display: none;
  }
}

.columns-2 {
  columns: 2;
  column-gap: 30px;
}
.columns-3 {
  columns: 3;
  column-gap: 30px;
}
.columns-4 {
  columns: 4;
  column-gap: 30px;
}

.divider {
  width: 100%;
  height: 1px;
  display: block;
  border-top: 1px solid #95e8b1;
  margin: 45px 0;
}

video {
  display: block;
  width: 100%;
  height: auto;
}
video::-webkit-media-controls-panel {
  background-image: linear-gradient(transparent, transparent) !important;
}

.video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  display: block;
}

@media only screen and (max-width: 998px) {
  .row-reverse {
    flex-direction: column-reverse;
  }
}
html {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 62.5%;
  height: 100%;
}

body,
button,
input,
textarea,
select,
.btn {
  font-family: "Albert Sans", sans-serif;
  font-size: 1.5rem;
}

p {
  font-size: 1.875rem;
  font-family: "Albert Sans", sans-serif;
  color: #1e3356;
}

.lead {
  font-size: 2.55rem;
}
@media only screen and (max-width: 998px) {
  .lead {
    font-size: 2.25rem;
  }
}
.lead strong {
  font-weight: bold;
}

small,
.small {
  font-size: 1.5rem;
  line-height: 120%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Albert Sans", sans-serif;
  letter-spacing: -0.25px;
  color: #1e3356;
}

h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 15px 0;
  color: rgba(var(--spark-color-two), 1);
}

h2 {
  font-size: 3.3rem;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 30px;
}

h3 {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 120%;
  margin: 7.5px 0;
}

h4 {
  font-size: 1.875rem;
  font-weight: normal;
  line-height: 120%;
  margin: 7.5px 0;
}

.white-text * {
  color: #fff;
}
.white-text a {
  color: #95e8b1;
}

/*Partials*/
/* General Definitions */
html {
  height: 100%;
}

body {
  height: 100%;
  padding: 0;
  margin: 0;
}
body.open {
  overflow: hidden;
}

a {
  color: #1e3356;
}
a:hover, a:focus, a:active, a.active {
  color: #95e8b1;
  text-decoration: none;
}

h1 > span,
h2 > span,
h3 > span,
h4 > span {
  scroll-margin-top: 120px;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
}
@media only screen and (max-width: 998px) {
  .container .row > [class*=col-] {
    margin-bottom: 30px;
  }
}

.container-fluid.expanded {
  padding-left: 0;
  padding-right: 0;
}
.container-fluid.expanded > .row {
  margin-left: 0;
  margin-right: 0;
}
.container-fluid.expanded > .row * [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.block {
  opacity: 0;
  transform: translateY(100px);
}

.scroll {
  opacity: 0;
  transform: translateY(-100px);
}

.btn, .btn-primary, button, input[type=submit] {
  background-color: #1e3356;
  border: 2px solid #1e3356;
  color: #fff;
  font-weight: bold;
  padding: 7.5px 30px;
  border-radius: 0 !important;
}
.btn:hover, .btn:focus, .btn:active, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, button:hover, button:focus, button:active, input[type=submit]:hover, input[type=submit]:focus, input[type=submit]:active {
  background-color: transparent;
  color: #1e3356;
  border-color: #1e3356;
}

section {
  margin: 0 auto;
  position: relative;
}
section.content-section {
  --section-background: transparent;
  background-color: var(--section-background);
}

.notch-top-left, .notch-top-right {
  position: relative;
}
.notch-top-left:before, .notch-top-right:before {
  content: "";
  display: block;
  background-color: var(--section-background);
  width: 60vw;
  height: 85px;
  position: absolute;
  top: -85px;
  left: -30px;
  transform: skew(30deg);
  z-index: 1;
}
.notch-top-left .primary > .row > div:first-child {
  transform: translateY(-50px);
  z-index: 2;
}
@media only screen and (max-width: 1200px) {
  .notch-top-left .primary > .row > div:first-child {
    transform: translateY(0);
  }
}
.notch-top-right:before {
  right: -30px;
  left: auto;
  transform: skew(-30deg);
}
.notch-top-right .primary > .row > div:last-child {
  transform: translateY(-50px);
  z-index: 2;
}
@media only screen and (max-width: 1200px) {
  .notch-top-right .primary > .row > div:last-child {
    transform: translateY(0);
  }
}

header {
  padding: 52.5px 15px 37.5px;
}
@media only screen and (min-width: 998px) {
  header {
    padding: 37.5px 15px;
  }
}
header .header-content .row > [class*=col-] {
  margin: 0;
}
header .branding {
  max-width: 350px;
}

footer {
  padding: 45px 15px;
}
footer .branding {
  max-width: 300px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 998px) {
  footer .branding {
    margin: 0 auto 30px;
  }
}
footer .copyright {
  font-size: 1.5rem;
}
@media only screen and (max-width: 998px) {
  footer .copyright {
    text-align: center;
  }
}
footer .copyright p {
  display: inline-block;
  font-size: 1.5rem;
}
footer .copyright p a {
  color: #95e8b1;
}
footer nav.footer ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 30px;
}
@media only screen and (max-width: 998px) {
  footer nav.footer ul {
    justify-content: center;
  }
}
footer nav.footer ul li a {
  text-decoration: none;
}
footer nav.footer ul li a:hover, footer nav.footer ul li a:focus, footer nav.footer ul li a:active {
  background-color: #95e8b1;
  color: #1e3356;
}
footer .social {
  font-size: 2.25rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 998px) {
  footer .social {
    justify-content: flex-start;
  }
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.navigation nav.secondary {
  display: flex;
  justify-content: flex-end;
}
.navigation nav.secondary ul li a {
  color: #1e3356;
  font-size: 1.5rem;
  margin-left: 15px;
}
.navigation nav.primary {
  display: flex;
  justify-content: flex-end;
}
.navigation nav.primary ul li a {
  display: inline-block;
  color: #1e3356;
  font-size: 2.1rem;
  font-weight: bold;
  margin-left: 30px;
  text-decoration: none;
  position: relative;
}
.navigation nav.primary ul li a:after {
  content: "";
  display: block;
  background-color: #95e8b1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  width: 0;
  transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
}
.navigation nav.primary ul li a:hover:after, .navigation nav.primary ul li a:focus:after, .navigation nav.primary ul li a:active:after, .navigation nav.primary ul li a .active:after {
  width: 100%;
}
@media only screen and (max-width: 998px) {
  .navigation nav.primary {
    display: block;
    position: fixed;
    width: 0;
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: -90px;
    right: 0;
    z-index: 99;
    background: rgba(30, 51, 86, 0.75);
    backdrop-filter: blur(10px);
    padding: 45px;
    transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
  }
  .navigation nav.primary ul {
    display: block;
  }
  .navigation nav.primary ul li a {
    margin: 0;
    font-size: 4.5rem;
    color: #fff;
  }
}
.navigation nav.social li a {
  font-size: 3.75rem;
}
.navigation nav.lang ul {
  position: absolute;
  top: 22.5px;
  right: 60px;
}
@media only screen and (min-width: 998px) {
  .navigation nav.lang ul {
    position: static;
    border-left: 1px solid #d0d9e2;
    margin-left: 15px;
    padding-left: 15px;
  }
}
.navigation nav.lang ul li:first-child a {
  margin-left: 0;
  text-decoration: none;
}

.toggle {
  width: 30px;
  height: 37.5px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 130;
  transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
  transform-origin: center center;
  position: absolute;
  display: none;
}
@media only screen and (max-width: 998px) {
  .toggle {
    display: block;
  }
}
.toggle div {
  width: 30px;
  height: 4px;
  position: absolute;
  top: 16px;
  left: 0;
  background-color: #1e3356;
  transform-origin: center center;
  transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
}
.toggle div.top {
  transform: translateY(-10px);
}
.toggle div.bottom {
  transform: translateY(10px);
}

.open .navigation nav.primary {
  width: 100%;
  left: 0;
}
.open .toggle {
  transform: rotate(180deg) translate(-4px, 0px);
}
.open .toggle div {
  width: 37.5px;
  background: white;
}
.open .toggle div.top {
  opacity: 0;
}
.open .toggle div.bottom {
  opacity: 0;
}
.open .toggle div.one {
  transform: rotate(45deg);
}
.open .toggle div.two {
  transform: rotate(-45deg);
}

/* Forms */
form {
  margin-bottom: 30px;
}
form * {
  font-size: 1.5rem;
}
form input, form textarea, form select {
  border-radius: 0;
}
form .form-control {
  padding: 7.5px 15px;
  border: 1px solid white;
  border-radius: 0 !important;
  margin-bottom: 7.5px;
  font-size: 1.5rem;
}
form .form-control::placeholder {
  color: rgba(30, 51, 86, 0.8);
}
form .form-control:focus {
  border-color: #1e3356;
}
form .btn {
  margin: 0 !important;
  width: 100%;
}

.fui-error-message {
  padding: 15px;
  font-size: 1.2rem;
  background: pink;
}

.fui-alert-success {
  margin: 30px 0;
  padding: 15px;
  font-size: 1.6rem;
  background: #95e8b1;
}

/*Sections*/
/* Releases */
.releases .release {
  display: flex;
  align-items: center;
  background: white;
  box-shadow: 0 2px 5px 0 rgba(30, 51, 86, 0.2);
  padding: 15px;
  margin: 0 0 15px 0;
  font-weight: normal;
  text-decoration: none;
  color: black;
}

.releases .release .thumb {
  margin-right: 15px;
  font-size: 2.25rem;
}

.releases .release .caption h4 {
  text-transform: none;
  font-weight: normal;
  color: black;
  margin: 0;
}

.releases .release .caption .datestamp {
  font-size: 1.2rem;
  margin: 0;
}

.boilerplate {
  margin-bottom: 60px;
}

/*Blocks*/
.hero {
  position: relative;
  overflow: hidden;
  height: 60vh;
  min-height: 600px;
  padding: 45px 15px 90px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 998px) {
  .hero {
    min-height: 350px;
  }
}
.hero:before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(30, 51, 86, 0.7) 0%, rgba(30, 51, 86, 0.25) 100%);
}
.hero .caption {
  position: relative;
  z-index: 2;
  color: #fff;
}
@media only screen and (min-width: 998px) {
  .hero .caption .caption-content {
    max-width: 1000px;
  }
}
.hero .caption h1 {
  font-size: 6rem;
  font-weight: 600;
  line-height: 100%;
}
@media only screen and (min-width: 998px) {
  .hero .caption h1 {
    font-size: 8.25rem;
  }
}
.hero .asset {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .asset img, .hero .asset video {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.hero svg {
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: 1;
  width: 60%;
}
@media only screen and (min-width: 998px) {
  .hero svg {
    bottom: -50px;
    width: 50%;
    max-width: 1000px;
  }
}
.hero svg path {
  stroke: #95e8b1;
  stroke-width: 3px;
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
  animation: dash 5s linear forwards;
}
@media only screen and (min-width: 998px) {
  .hero svg path {
    stroke-width: 2px;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
  grid-gap: 30px;
  align-items: center;
}
@media only screen and (max-width: 998px) {
  .tiles {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.tiles .item {
  display: flex;
  align-items: center;
  transition: all 100ms cubic-bezier(0.83, 0, 0.17, 1);
  overflow: hidden;
  display: block;
  position: relative;
  background: rgba(30, 51, 86, 0.2);
}
.tiles .item:hover, .tiles .item:active, .tiles .item:focus {
  transform: translate(0px, 5px) !important;
}
.tiles .item.member {
  background: transparent;
  padding: 15px;
}
.tiles .thumb {
  width: 100%;
  height: auto;
}
.tiles .caption {
  position: relative;
  text-align: left;
  padding: 20px;
  min-height: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: center;
  width: 100%;
}
.tiles .caption p {
  color: rgba(30, 51, 86, 0.2);
}

/* Tabs */
.nav-tabs {
  margin-bottom: 30px;
  justify-content: center;
  border: none;
}
.nav-tabs .nav-link {
  margin: 0 15px;
  color: #1e3356;
  border-width: 0;
  border-bottom: 15px solid #1e3356;
  border-radius: 0;
  transition: all 100ms cubic-bezier(0.83, 0, 0.17, 1);
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-bottom: 15px solid #95e8b1;
}
.nav-tabs .nav-link.active {
  color: #95e8b1;
  border-bottom: 15px solid #95e8b1;
}

.accordion button {
  font-size: revert !important;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.icons .icon-item {
  flex: 40%;
}
@media only screen and (max-width: 998px) {
  .icons .icon-item {
    flex: 100%;
    text-align: center;
  }
}
.icons .icon-item .icon-asset {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media only screen and (max-width: 998px) {
  .icons .icon-item .icon-asset {
    margin: 0 auto 15px;
  }
}
.icons .icon-item .icon-asset svg circle {
  transition: all 100ms cubic-bezier(0.83, 0, 0.17, 1);
}
.icons .icon-item .icon-asset:hover svg circle {
  fill: #95e8b1 !important;
}
.icons .icon-item .icon-content {
  font-size: 1.65rem;
}

/* People */
.people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(1 30px, 1fr));
  grid-gap: 1rem;
}
.people.splide {
  margin-right: -20vw;
}
@media only screen and (max-width: 1200px) {
  .people.splide {
    margin-right: 0;
    margin-top: 30px;
  }
}
.people.splide .item {
  padding: 7.5px;
  opacity: 0.6;
  transition: all 400ms cubic-bezier(0.83, 0, 0.17, 1);
}
.people.splide .item img {
  width: 100%;
}
.people.splide .item.is-active {
  opacity: 1;
}
.people.splide .splide__arrow {
  background: transparent;
  color: currentColor;
}
.people.splide .splide__arrow svg {
  fill: currentColor;
}
.people.splide .splide__arrow:hover svg, .people.splide .splide__arrow:focus svg, .people.splide .splide__arrow:active svg {
  fill: #95e8b1;
}
.people.splide .splide__arrow--next {
  top: auto;
  bottom: 0;
  left: -340px;
  right: auto;
}
@media only screen and (max-width: 1200px) {
  .people.splide .splide__arrow--next {
    right: 7px;
    top: -10px;
    bottom: auto;
    left: auto;
  }
}
.people.splide .splide__arrow--prev {
  top: auto;
  bottom: 0;
  left: -390px;
  right: auto;
}
@media only screen and (max-width: 1200px) {
  .people.splide .splide__arrow--prev {
    right: 60px;
    top: -10px;
    bottom: auto;
    left: auto;
  }
}
.people .personDetails h3 {
  color: #95e8b1;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 15px;
}
.people .personDetails .personJobTitle {
  font-size: 1.8rem;
}

/* Memebers / Partners Logo Parade */
.member-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 15px;
}
.member-wrapper a {
  display: block;
  max-width: 32%;
}
@media only screen and (max-width: 998px) {
  .member-wrapper a {
    max-width: 100%;
  }
}
.member-wrapper a .thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-wrapper a .thumb img {
  max-width: 350px;
  width: 100%;
  height: auto;
}

/* Specific Site Customizations */
#partners h2 {
  text-align: center;
}
@media only screen and (min-width: 998px) {
  #partners h2 {
    text-align: left;
  }
}

/* END Specific Site Customizations */
@media only screen and (max-width: 998px) {
  .site-wrapper .primary {
    padding-left: 30px;
    padding-right: 30px;
  }
  .site-wrapper .primary.expanded {
    padding-left: 0px;
    padding-right: 0px;
  }
}/*# sourceMappingURL=style.css.map */