@import "./fonts/fonts.css";
@import "variables.css";
@import "base.css";
@import "theme.css";
footer > div, section:not(.full-width) > div, header > div, .contained {
  width: 100%;
  max-width: calc(var(--contained-width) + var(--contained-h-padding) * 2);
  margin: 0 auto;
  padding: var(--contained-v-padding) var(--contained-h-padding);
}

main {
  overflow-x: hidden;
}

h1 {
  font-size: 3.5em;
  line-height: 1;
  font-weight: 700;
}
h1.narrow {
  width: 100%;
  max-width: 35rem;
}

h1:has(+ *) {
  margin-bottom: 3.7rem;
}

h2 {
  font-size: 2.27273em;
  line-height: 1.3;
  color: var(--color-dusty-blue);
}

h2:has(+ *) {
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.36364em;
  line-height: 1.3;
  color: var(--color-dusty-blue);
}

h3:has(+ *) {
  margin-bottom: 1.5rem;
}

h4 {
  font-family: var(--font);
  font-weight: 600;
}

p:has(+ *), ul:has(+ *), ol:has(+ *) {
  margin-bottom: 1em;
}

ul > li:has(+ li) {
  margin-bottom: 0.5em;
}

p.socialicons a {
  font-family: "antisocial";
  font-size: 2.2em;
  margin-right: 0.4em;
}

a.arrow-link {
  color: var(--color-dusty-blue);
  font-weight: 600;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 1.2em;
}
a.arrow-link::after {
  content: url("../assets/icon-arrow-right.svg");
  width: 0.5em;
  position: relative;
  top: 0.05em;
}

img.fill {
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

img, video {
  width: 100%;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

button {
  background-color: var(--color-orange);
  padding: 0.77em 2.46em;
  border-radius: 5em;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

address {
  display: flex;
  flex-direction: column;
  gap: 0.64em;
  font-style: normal;
}
address > div {
  display: flex;
}
address .address-label {
  text-transform: uppercase;
  width: 10.5em;
}
address .address-item a {
  text-decoration: underline;
  font-weight: 600;
}

.socialicons {
  display: flex;
  align-items: center;
  gap: 1em;
}
.socialicons .icon {
  width: 0.9em;
  position: relative;
  top: 0.05em;
}

.align-right {
  display: flex;
  justify-content: flex-end;
}

.richtext * + h2 {
  margin-top: 3rem;
}
.richtext * + h3 {
  margin-top: 2.5rem;
}
.richtext a {
  font-weight: 500;
}

header {
  height: var(--header-height);
  background-color: var(--color-dark-navy);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}
header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
header > div #logo {
  position: relative;
  flex-shrink: 0;
}
header > div #logo img {
  width: 7em;
}
header > div nav {
  display: flex;
  align-items: center;
}
header > div nav input[type=checkbox] {
  display: none;
}
header > div nav input[type=checkbox]:checked + label#menu-icon {
  background-image: url("/assets/icon-close.svg");
}
header > div nav input[type=checkbox]:checked + label#menu-icon + ul {
  display: flex;
}
header > div nav label#menu-icon {
  --size: 1em;
  height: var(--size);
  width: calc(var(--size) * 1.4);
  background-image: url("/assets/icon-menu.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header > div nav > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.3em;
  background-color: var(--color-dark-navy);
}
header > div nav > ul > li {
  height: var(--header-height);
  position: relative;
  margin-bottom: 0;
}
header > div nav > ul > li a {
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1em;
  color: #fff;
}
header > div nav > ul > li a:visited {
  color: #fff;
}
header > div nav > ul > li.active > a, header > div nav > ul > li:hover > a {
  color: var(--color-orange);
}
header > div nav > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
header > div nav > ul > li > ul {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s ease-out, visibility 0.1s ease-out, transform 0.1s ease-out;
  position: absolute;
  --border-width: 0.1em;
  top: calc(100% - var(--border-width));
  left: 50%;
  transform: translate(-50%, 0.25em);
  background-color: var(--color-dark-navy);
  list-style-type: none;
  margin: 0;
  padding: 0;
  min-width: 130%;
  border-top: var(--border-width) solid var(--color-orange);
  padding: 0.6em 0 0.6em;
  text-align: center;
}
header > div nav > ul > li > ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.3em solid transparent;
  border-right: 0.3em solid transparent;
  border-top: 0.6em solid var(--color-orange);
}
header > div nav > ul > li > ul > li {
  margin-bottom: 0;
}
header > div nav > ul > li > ul > li a {
  font-size: 1em;
  padding: 0.5em 1.25em;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}
header > div nav > ul > li > ul > li a, header > div nav > ul > li > ul > li a:visited {
  color: #fff;
}
header > div nav > ul > li > ul > li:hover > a {
  color: var(--color-orange);
}
header + * {
  margin-top: var(--header-height);
}

section {
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100%;
}
section.large-banner, section.banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
section.large-banner > div, section.banner > div {
  position: relative;
  z-index: 2;
}
section.large-banner::before, section.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../assets/banner-shapes.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 1;
}
section.large-banner {
  height: min(100vh - var(--header-height), 50em);
}
section.large-banner > div hgroup {
  width: 24.7em;
  margin-bottom: 6.2em;
}
section.large-banner > div h1 {
  font-size: 3.86em;
  color: var(--color-orange);
  line-height: 1.17;
  margin-bottom: 1.23rem;
}
section.large-banner > div p {
  font-size: 2em;
  color: #fff;
  font-weight: 500;
}
section.banner {
  height: 30.54545em;
}
section.banner > div h1 {
  font-size: 3.5em;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.23rem;
}
section.banner > div p {
  font-size: 1.5em;
  color: #fff;
  font-weight: 500;
}
section.divider {
  height: 18em;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section.video-background {
  position: relative;
  overflow: hidden;
  background-color: var(--color-dusty-blue);
}
section.video-background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  z-index: 0;
  pointer-events: none;
}
section.text-split > div {
  display: flex;
  gap: 2em;
}
section.text-split > div h2 {
  width: 7.8em;
}
section.cta > div > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5.8em;
  gap: 3em;
}
section.cta > div > div > *:last-child {
  flex-shrink: 0;
}
section.cta > div > div h2 {
  font-size: 1.81em;
  line-height: 1.3;
  margin-bottom: 0.73rem;
  font-weight: 700;
}
section.cta > div > div p {
  color: var(--color-dusty-blue);
  line-height: 1.3;
}

section.border-bottom > div {
  padding-bottom: 0;
}
section.border-bottom > div > div {
  padding-bottom: var(--contained-v-padding);
  border-bottom: 1px solid var(--color-grey);
}
section.indent {
  --indent: 3em;
}
section.indent > div {
  padding-top: calc(var(--contained-v-padding) + var(--indent));
}

footer {
  --footer-bg-color: var(--color-dark-navy);
  color: #fff;
  background-color: var(--footer-bg-color);
}
footer img {
  width: 11em;
}
footer img#footerlogo {
  width: 6em;
}
footer h2 {
  color: #fff;
  font-size: 1.81em;
  margin-bottom: 1rem;
}
footer #footer-content {
  display: flex;
  flex-direction: column;
  gap: 3em;
}
footer #footer-content > div {
  display: flex;
  gap: 2em;
}
footer #footer-content > div > div {
  min-width: 12em;
}
footer #footer-content > div > div + div {
  flex: 1 1 auto;
}
footer #footer-content > div > div > a {
  font-size: 1.4em;
}
footer #footer-content > div > div a, footer #footer-content > div > div a:visited {
  color: #fff;
}
footer #footer-content > div:last-child {
  text-align: center;
  margin-bottom: 0;
}
footer #footer-content > div:last-child > div {
  width: 100%;
}
footer #footer-content > div:last-child p {
  font-size: 0.7em;
  margin-bottom: 0;
}
footer #footer-content > div:last-child p:first-child {
  font-size: 0.9em;
  margin-bottom: 1rem;
}
footer #footer-content iframe {
  background-color: var(--footer-bg-color);
}

.quote {
  line-height: 1.3;
}
.quote h3 {
  font-size: 1.81em;
  color: var(--color-pink);
}
.quote h3:has(+ p) {
  margin-bottom: 1.5rem;
}
.quote p {
  font-weight: 600;
  font-size: 1.36em;
  color: var(--dusty-blue);
}

.scroll-images {
  display: flex;
}
.scroll-images img {
  width: var(--scroll-image-size, 28em);
  flex-shrink: 0;
}

.row {
  display: flex;
  flex-wrap: var(--wrap, no-wrap);
  gap: var(--gap, var(--gap-default));
}
.row > * {
  flex-shrink: var(--shrink, 1);
}
.row.halves > * {
  width: calc((100% - var(--gap, var(--gap-default)) * 1) / 2);
}
.row.thirds > * {
  width: calc((100% - var(--gap, var(--gap-default)) * 2) / 3);
}
.row.quarters > * {
  width: calc((100% - var(--gap, var(--gap-default)) * 3) / 4);
}
.row.fifths > * {
  width: calc((100% - var(--gap, var(--gap-default)) * 4) / 5);
}

.card {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}
.card.small .card-title {
  height: auto;
  padding: 0.5em 0.7em;
}
.card.small .card-title h4 {
  font-size: 1em;
}
.card.small .card-title p {
  font-size: 0.8em;
}
.card.small .card-content {
  height: 11.63em;
}
.card.small .card-content .card-rollover {
  padding: 0.75em 1em;
}
.card.small .card-content .card-rollover p {
  font-size: 0.8em;
}
.card.medium .card-title {
  height: 5.45em;
}
.card.medium .card-title h4 {
  font-size: 1.36em;
}
.card.large .card-title {
  height: 4.73em;
}
.card.large .card-title h4 {
  font-size: 1.82em;
}
.card.large .card-content {
  height: 22.37em;
}
.card.large .card-content > div {
  width: 100%;
  max-width: 24.77em;
  padding: 1.5em 2.32em;
}
.card.large .card-content > div p {
  font-size: 1.36364em;
}
.card.variable-height {
  height: var(--height);
  display: flex;
  flex-direction: column;
}
.card.variable-height .card-content {
  height: auto !important;
  flex-grow: 1;
}
.card.variable-height .card-title {
  padding: 1.5em 1.5em;
}
.card .card-content {
  height: 13.73em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--bg-position, center);
  position: relative;
  overflow: hidden;
}
.card .card-content .card-rollover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: translateY(100%);
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1.25em 1.75em;
  transition: transform 0.2s ease-out;
  color: #fff;
}
.card:hover .card-content .card-rollover {
  transform: translateY(0);
}
.card .card-title {
  height: 4.45em;
  display: flex;
  align-items: center;
  padding: 0 1.5em;
}
.card .card-title h4 {
  width: 100%;
  font-size: 1.18em;
  line-height: 1.23;
}

a .card:hover .card-title {
  background-color: var(--color-offwhite);
  color: var(--color-medium-grey);
}

.small-card-grid h3 {
  font-size: 1.81em;
  margin-bottom: 1em;
}

.slideshow {
  position: relative;
  --distance: 0em;
}
.slideshow .slides {
  display: flex;
  gap: var(--gap, 0.318em);
  transition: transform 0.2s ease-out;
}
.slideshow .slides .slide {
  width: 100%;
  flex-shrink: 0;
}
.slideshow .slides .slide:not(.active) {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.slideshow .slides .slide:not(.active) a {
  pointer-events: none;
}
.slideshow.clipped .slideshow-container {
  overflow-x: hidden;
}
.slideshow.buttons:not(.clipped) .slides .slide:not(.active) {
  pointer-events: none;
  opacity: 0.05;
}
.slideshow .slideshow-indicators {
  display: flex;
  gap: 0.227em;
  margin: 1.7em 0.14em 0;
}
.slideshow .slideshow-indicators > div {
  --size: 0.73em;
  width: var(--size);
  height: var(--size);
  background-color: var(--color-soft-blue);
  border-radius: 100%;
}
.slideshow .slideshow-indicators > div.active {
  background-color: var(--color-dusty-blue);
}
.slideshow .slideshow-indicators > div:not(.active) {
  cursor: pointer;
}
.slideshow .slideshow-indicators.centered {
  justify-content: center;
}
.slideshow .slideshow-arrow-left, .slideshow .slideshow-arrow-right {
  width: 4em;
  position: absolute;
  top: 46.5%;
  transform: translateY(-50%);
  padding: 1em 1.5em;
  cursor: pointer;
  display: flex;
}
.slideshow .slideshow-arrow-left .svg path, .slideshow .slideshow-arrow-right .svg path {
  stroke: var(--color-dusty-blue);
}
.slideshow .slideshow-arrow-left.hidden, .slideshow .slideshow-arrow-right.hidden {
  display: none;
}
.slideshow .slideshow-arrow-left {
  transform: rotate(180deg) translateY(50%);
  right: calc(100% + var(--distance));
  align-items: flex-end;
}
.slideshow .slideshow-arrow-right {
  left: calc(100% + var(--distance));
}

.block {
  height: var(--height, 18.68182em);
  display: flex;
  align-items: center;
}
.block p {
  font-size: 1.63636em;
  line-height: 1.3;
  font-weight: 700;
  width: 100%;
  padding: 0 2rem;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}/*# sourceMappingURL=main.css.map */