@import 'variables.css';
#is-mobile {
  display: none;
}
body {
  background-color: var(--white);
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  line-height: 1.5;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body .gap-5 {
  height: 5px;
  width: 100%;
}
body .spacer-5 {
  display: inline-block;
  height: 1px;
  width: 5px;
}
body .gap-10 {
  height: 10px;
  width: 100%;
}
body .spacer-10 {
  display: inline-block;
  height: 1px;
  width: 10px;
}
body .gap-15 {
  height: 15px;
  width: 100%;
}
body .spacer-15 {
  display: inline-block;
  height: 1px;
  width: 15px;
}
body .gap-20 {
  height: 20px;
  width: 100%;
}
body .spacer-20 {
  display: inline-block;
  height: 1px;
  width: 20px;
}
body .gap-25 {
  height: 25px;
  width: 100%;
}
body .spacer-25 {
  display: inline-block;
  height: 1px;
  width: 25px;
}
body .gap-30 {
  height: 30px;
  width: 100%;
}
body .spacer-30 {
  display: inline-block;
  height: 1px;
  width: 30px;
}
body .gap-35 {
  height: 35px;
  width: 100%;
}
body .spacer-35 {
  display: inline-block;
  height: 1px;
  width: 35px;
}
body .gap-40 {
  height: 40px;
  width: 100%;
}
body .spacer-40 {
  display: inline-block;
  height: 1px;
  width: 40px;
}
body .gap-45 {
  height: 45px;
  width: 100%;
}
body .spacer-45 {
  display: inline-block;
  height: 1px;
  width: 45px;
}
body .gap-50 {
  height: 50px;
  width: 100%;
}
body .spacer-50 {
  display: inline-block;
  height: 1px;
  width: 50px;
}
body .gap-55 {
  height: 55px;
  width: 100%;
}
body .spacer-55 {
  display: inline-block;
  height: 1px;
  width: 55px;
}
body .gap-60 {
  height: 60px;
  width: 100%;
}
body .spacer-60 {
  display: inline-block;
  height: 1px;
  width: 60px;
}
body .gap-65 {
  height: 65px;
  width: 100%;
}
body .spacer-65 {
  display: inline-block;
  height: 1px;
  width: 65px;
}
body .gap-70 {
  height: 70px;
  width: 100%;
}
body .spacer-70 {
  display: inline-block;
  height: 1px;
  width: 70px;
}
body .gap-75 {
  height: 75px;
  width: 100%;
}
body .spacer-75 {
  display: inline-block;
  height: 1px;
  width: 75px;
}
body .gap-80 {
  height: 80px;
  width: 100%;
}
body .spacer-80 {
  display: inline-block;
  height: 1px;
  width: 80px;
}
body .gap-85 {
  height: 85px;
  width: 100%;
}
body .spacer-85 {
  display: inline-block;
  height: 1px;
  width: 85px;
}
body .gap-90 {
  height: 90px;
  width: 100%;
}
body .spacer-90 {
  display: inline-block;
  height: 1px;
  width: 90px;
}
body .gap-95 {
  height: 95px;
  width: 100%;
}
body .spacer-95 {
  display: inline-block;
  height: 1px;
  width: 95px;
}
body.logged-in header#header {
  top: 32px;
}
* {
  --num-cards: 4;
  --card-height: 600px;
  --card-width: 350px;
}
.mobile-only {
  display: none;
}
.not-mobile {
  display: block;
}
#is-mobile {
  display: none;
}
@media (max-width: 768px) {
  #is-mobile {
    display: block;
  }
}
h1,
h2,
h3,
h4 {
  color: var(--blue);
  font-family: var(--font-family-heading);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.125em;
  text-wrap: pretty;
}
h1 {
  font-size: 3.5em;
}
h2 {
  font-size: 3em;
}
h3 {
  font-size: 2.5em;
  position: relative;
}
h4 {
  font-size: 1.5em;
}
* + h2,
* + h3,
* + h4 {
  margin-top: 40px;
}
p,
ul,
ol {
  font-weight: 400;
  line-height: 1.5;
  list-style-type: square;
  text-wrap: pretty;
}
p a,
ul a,
ol a {
  color: var(--blue);
  text-decoration: underline;
  transition: all 0.1s ease-in-out;
}
p a:hover,
ul a:hover,
ol a:hover {
  color: var(--red-dark);
}
p + p,
ul + p,
ol + p,
p + ul,
p + ol,
ul + ul,
ul + ol,
ol + ul,
ol + ol {
  font-size: 1em;
  margin-top: 0.125em;
}
ul,
ol {
  padding-left: 20px;
}
li {
  padding: 10px 0;
}
.card {
  background-color: var(--white);
  background-image: var(--bg-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  display: grid;
  filter: var(--drop-shadow-filter-alt);
  font-size: 3em;
  font-weight: 600;
  height: var(--card-height);
  padding: 30px 20px;
  place-items: center;
  text-shadow: 0 0 10px var(--black);
  width: var(--card-width);
  z-index: 4;
}
.proof-button {
  background-color: var(--blue);
  border: none;
  border-radius: 30px;
  color: var(--white);
  display: inline-block;
  font-family: var(--font-family);
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.1;
  padding: 10px 40px;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
.proof-button:hover {
  background-color: var(--bright-blue);
}
.proof-button--white {
  background-color: var(--white);
  color: var(--blue);
}
.proof-button--white:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
.proof-button--outlined {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.proof-button--outlined:hover {
  background-color: var(--black);
  color: var(--white);
}
.inset {
  box-sizing: border-box;
  padding: 20px;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.columns {
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
.columns--reverse {
  flex-direction: row-reverse;
}
.columns__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}
.columns__column--column-20 {
  width: 20%;
}
.columns__column--column-25 {
  width: 25%;
}
.columns__column--column-30 {
  width: 30%;
}
.columns__column--column-35 {
  width: 35%;
}
.columns__column--column-40 {
  width: 40%;
}
.columns__column--column-45 {
  width: 45%;
}
.columns__column--column-50 {
  width: 50%;
}
.columns__column--column-55 {
  width: 55%;
}
.columns__column--column-60 {
  width: 60%;
}
.columns__column--column-65 {
  width: 65%;
}
.columns__column--column-70 {
  width: 70%;
}
.columns__column--column-75 {
  width: 75%;
}
.columns__column--column-80 {
  width: 80%;
}
.columns__column--left,
.columns__column--wide {
  flex-grow: 1;
}
.columns__column--right,
.columns__column--narrow {
  width: 360px;
}
.columns__column--border-left {
  border-left: 1px solid var(--grey);
  padding-left: 40px;
}
.columns__column .box {
  align-items: flex-start;
  background: #FFF;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
  filter: var(--drop-shadow-filter);
}
.columns__column .box h4 {
  font-family: var(--font-family);
  font-size: 1.25em;
  margin-bottom: 0.5em;
  margin-top: 0;
}
.columns__column .box .boxes {
  width: 100%;
}
.columns__column .box .boxes__item {
  border-bottom: 1px solid var(--grey);
  margin-top: 30px;
  padding-left: 50px;
  position: relative;
  width: 100%;
}
.columns__column .box .boxes__item:first-child {
  margin-top: 0;
}
.columns__column .box .boxes__item__image {
  background-color: #ADD7EF;
  border-radius: 8px;
  height: 34px;
  left: 0;
  top: 0;
  line-height: 34px;
  text-align: center;
  width: 34px;
  position: absolute;
}
.columns__column .box .boxes__item__image:before {
  color: var(--blue);
  content: var(--font-awesome-icon);
  display: block;
  font-family: var(--font-awesome);
  font-size: 18px;
  font-weight: 700;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.columns__column .box .grey-box {
  background-color: var(--light-grey);
  border-radius: 10px;
  padding: 20px 30px;
}
.columns__column .box__header {
  background-color: var(--blue);
  border-radius: 20px 20px 0 0;
  margin: -40px -40px 0 -40px;
  padding: 30px 40px 30px;
  width: calc(100% + 80px);
}
.columns__column .box__header h2,
.columns__column .box__header h3 {
  color: var(--white);
  margin-bottom: 0.25em;
}
.columns__column .box__header p,
.columns__column .box__header ul,
.columns__column .box__header ol {
  color: var(--white);
  font-size: 1.125em;
}
.columns__column section:first-child {
  padding-top: 0;
}
header#header {
  --scroll-transition: all 0.2s ease-in-out;
  --logo-transition: all 0.1s cubic-bezier(0.6, 0, 0.4, 1);
  --top-logo-height: calc(var(--header-height) - 30px);
  --transition-delay: 0s;
  --logo-width: 240px;
  height: var(--header-height);
  position: absolute;
  left: 0;
  top: 0;
  transition: var(--scroll-transition);
  transition-delay: 0s;
  width: 100%;
  z-index: 1001;
}
header#header .inset {
  display: flex;
  flex-direction: row;
  height: var(--header-height);
  justify-content: space-between;
  padding: 0;
}
header#header .inset .branding {
  display: block;
  width: var(--logo-width);
  z-index: 20;
}
header#header .inset .branding a {
  left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
header#header .inset .branding a svg {
  aspect-ratio: 580/218;
  filter: none;
  height: var(--top-logo-height);
  position: relative;
  width: 100%;
  z-index: 20;
  transition: filter 0.1s ease-in-out;
}
header#header .inset .branding a svg #proof {
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
header#header .inset .branding a svg #arrow {
  transform: translateX(-80%);
  transition: all 0.1s ease-in-out;
}
header#header .inset .branding a:hover,
header#header .inset .branding a.active {
  /*&:before {
                        opacity: 0;
                        transition: opacity 0.2s ease-out;
                    }*/
}
header#header .inset .branding a:hover svg,
header#header .inset .branding a.active svg {
  filter: drop-shadow(0 0 10px var(--white)) drop-shadow(0 0 20px var(--white)) drop-shadow(0 0 50px var(--white)) drop-shadow(0 0 50px var(--white)) drop-shadow(0 0 100px var(--white)) drop-shadow(0 0 200px #FFFFFF80);
}
header#header .inset .branding a:hover svg #proof,
header#header .inset .branding a.active svg #proof {
  opacity: 1;
}
header#header .inset .branding a:hover svg #arrow,
header#header .inset .branding a.active svg #arrow {
  transform: translateX(0);
}
header#header .inset nav {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
  padding-right: 10px;
  position: relative;
  width: calc(100% - var(--logo-width));
  z-index: 10;
}
header#header .inset nav:before {
  content: '';
  display: block;
  height: 1px;
  position: absolute;
  top: 50%;
  width: 100%;
}
header#header .inset nav ul.menu {
  background-color: #ffffffDD;
  backdrop-filter: blur(5px);
  border-radius: 30px;
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: 1.25em;
  font-weight: 500;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 5px 40px;
}
header#header .inset nav ul.menu > li {
  padding: 0;
  position: relative;
}
header#header .inset nav ul.menu > li a {
  color: var(--black);
  display: block;
  font-size: 1em;
  font-weight: 600;
  padding: 5px 30px;
  text-decoration: none;
  transition: all var(--transition-duration);
}
header#header .inset nav ul.menu > li a:hover {
  color: var(--blue);
}
header#header .inset nav ul.menu > li ul {
  backdrop-filter: blur(5px);
  background-color: #ffffffDD;
  border-radius: 26px;
  border: 1px solid var(--light-grey);
  display: none;
  flex-direction: column;
  gap: 0;
  left: -10px;
  list-style: none;
  margin: 0;
  min-width: 240px;
  padding: 10px;
  position: absolute;
  top: calc(100% + 10px);
  z-index: 1000;
  animation: dropdown-fade-in 0.1s ease-in-out forwards;
}
header#header .inset nav ul.menu > li ul:before {
  content: '';
  display: block;
  height: 10px;
  position: absolute;
  top: -10px;
  width: 100%;
}
@keyframes dropdown-fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header#header .inset nav ul.menu > li ul li {
  padding: 0;
  width: 100%;
}
header#header .inset nav ul.menu > li ul li a {
  border-radius: 30px;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 10px 20px;
  width: 100%;
}
header#header .inset nav ul.menu > li ul li a:hover {
  color: var(--blue);
}
header#header .inset nav ul.menu > li.current-page-ancestor > a,
header#header .inset nav ul.menu > li.current-menu-ancestor > a,
header#header .inset nav ul.menu > li.current-menu-item > a {
  background: var(--white);
  border-radius: 30px;
  color: var(--blue);
}
header#header .inset nav ul.menu > li:hover ul {
  display: flex;
}
header#header .inset nav .search-button {
  align-items: center;
  color: var(--white);
  display: flex;
  font-size: 1.25em;
  height: 40px;
  justify-content: center;
  position: relative;
  width: 40px;
}
header#header .inset nav .search-button svg {
  fill: var(--white);
  height: 20px;
  width: 20px;
  transition: all var(--scroll-transition);
}
header#header .inset nav .search-button:hover svg {
  fill: var(--white);
  filter: drop-shadow(0 0 10px var(--black));
}
header#header .inset nav .search-form {
  display: none;
}
body.scrolling header#header * {
  --header-height: 60px;
}
.page-header {
  border-bottom: 1px solid var(--grey);
  padding: 0;
  position: relative;
  text-align: center;
  z-index: 10;
}
.page-header .inset {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--header-height) + 40px) 20px 40px;
  z-index: 10;
}
.page-header .inset h1 {
  color: var(--black);
  display: block;
  font-size: 3.5em;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
  text-align: center;
  text-wrap: balance;
}
.page-header--overlay:before {
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  background-color: var(--bg-overlay-color);
  opacity: var(--bg-overlay-opacity);
}
.header-image {
  display: flex;
  flex-direction: column;
  height: var(--bg-image-height);
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  z-index: 20;
}
.header-image .image {
  background-color: var(--light-grey);
  background-image: var(--bg-image-url);
  background-position: var(--bg-position-x) var(--bg-position-y);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.header-image .inset {
  position: relative;
  z-index: 20;
}
.header-image h1 {
  color: var(--white);
  font-size: 6em;
  font-weight: 900;
  text-transform: uppercase;
}
.header-image:after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  bottom: 0;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 15;
}
.controls {
  --control-height: 15px;
  --progress-width: 80px;
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
  filter: drop-shadow(0 4px 4px #00000044);
}
.controls .progress {
  display: none;
  width: 80px;
}
.controls .progress .bar {
  border: 1px solid var(--white);
  height: var(--control-height);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.controls .progress .bar .fill {
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
.controls .dot,
.controls .prev,
.controls .next {
  background-color: var(--white);
  border-radius: calc(var(--control-height) / 2);
  border: 1px solid var(--white);
  cursor: pointer;
  height: var(--control-height);
  position: relative;
  transition: all 250ms;
  width: var(--control-height);
}
.controls .dot .fill,
.controls .prev .fill,
.controls .next .fill {
  background-color: var(--white);
  border-radius: calc(var(--control-height) / 2);
  display: block;
  height: calc(var(--control-height) - 4px);
  min-width: calc(var(--control-height) - 4px);
  position: absolute;
  top: 1px;
  left: 1px;
}
.controls .dot.active,
.controls .prev.active,
.controls .next.active {
  background-color: transparent;
  width: var(--progress-width);
}
.controls .play-pause {
  border: 1px solid var(--white);
  background-color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  height: calc(var(--control-height) + 6px);
  width: calc(var(--control-height) + 6px);
  position: relative;
}
.controls .play-pause:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%231B1F3B" d="M128 64L0 64 0 448l128 0 0-384zm192 0L192 64l0 384 128 0 0-384z"/></svg>');
  display: block;
  border-radius: 50%;
  height: calc(var(--control-height) - 6px);
  width: calc(var(--control-height) - 6px);
  position: absolute;
  top: 3px;
  left: calc(50% - 1px);
  transform: translate(-50%, -50%);
}
.controls .play-pause.paused:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="%231B1F3B" d="M384 256L0 32V480L384 256z"/></svg>');
  left: 50%;
  top: 2px;
}
#container {
  overflow-x: hidden;
}
section.hero {
  background-color: var(--light-grey);
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
}
section.hero .video-wrapper {
  aspect-ratio: 16/9;
  display: block;
  height: 100%;
  max-height: 80vh;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 10;
}
section.hero .video-wrapper iframe {
  aspect-ratio: 16/9;
  display: block;
  position: absolute;
  pointer-events: none;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  z-index: 20;
}
section.hero .video-wrapper .buttons {
  display: flex;
  flex-direction: row;
  gap: 0;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
section.hero .video-wrapper .buttons span {
  background-color: #FFFFFFDD;
  border: 1px solid var(--white);
  color: var(--black);
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.1;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
section.hero .video-wrapper .buttons span:hover {
  color: var(--blue);
}
section.hero .video-wrapper .buttons span:first-child {
  border-right: none;
  border-radius: 30px 0 0 30px;
}
section.hero .video-wrapper .buttons span:last-child {
  border-left: none;
  border-radius: 0 30px 30px 0;
}
section.hero .video-wrapper .loader {
  animation: spin 1s linear infinite;
  border: 6px solid #FFF;
  border-radius: 50%;
  border-bottom: 4px solid var(--medium-grey);
  height: 40px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  z-index: 15;
}
section.hero .video-wrapper:after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  bottom: 0;
  content: '';
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 30;
}
section.hero .inset {
  bottom: 0;
  left: max(calc((100% - var(--max-width)) / 2), 0px);
  padding: 20px;
  position: absolute;
  z-index: 20;
}
section.hero .inset h1 {
  color: var(--white);
  font-size: 6em;
  font-weight: 900;
  text-transform: uppercase;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
section.countdown {
  background-color: var(--red);
  color: var(--white);
}
section.countdown .inset h2 {
  color: var(--white);
  margin-bottom: 0.5em;
  text-align: center;
}
section.countdown .inset .countdown-timer {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  font-size: 2em;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
}
section.countdown .inset .countdown-timer .time-segment {
  align-items: center;
  display: flex;
  flex-basis: 25%;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  text-align: center;
}
section.countdown .inset .countdown-timer .time-segment .number {
  font-size: 2em;
}
section.countdown .inset .countdown-timer .time-segment .label {
  font-size: 0.75em;
  font-weight: 400;
  text-transform: uppercase;
}
section.countdown .inset .watched {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}
section.countdown .inset .watched.seen {
  opacity: 1;
  transform: translateY(0);
}
section.greater {
  background-color: var(--grey);
  min-height: 760px;
}
section.greater .inset {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 50px;
  justify-content: center;
}
section.greater .inset h2 {
  margin-bottom: 0.5em;
}
section.greater .inset p,
section.greater .inset ul,
section.greater .inset ol {
  font-size: 1.25em;
}
section.greater .inset p + p,
section.greater .inset ul + p,
section.greater .inset ol + p {
  margin-top: 1em;
}
section.greater .copy {
  flex-basis: 50%;
  padding-top: 40px;
}
section.greater .cards {
  flex-basis: 50%;
  position: relative;
}
section.greater .cards .card {
  background-color: var(--white);
  background-image: var(--bg-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  display: grid;
  filter: var(--drop-shadow-filter-alt);
  font-size: 3em;
  font-weight: 600;
  height: var(--card-height);
  padding: 30px 20px;
  place-items: center;
  text-shadow: 0 0 10px var(--black);
  width: var(--card-width);
  z-index: 4;
  position: absolute;
}
section.greater .cards .card:nth-child(2) {
  left: calc((100% - var(--card-width)) / (var(--num-cards) - 1) * 1);
  z-index: 3;
}
section.greater .cards .card:nth-child(3) {
  left: calc((100% - var(--card-width)) / (var(--num-cards) - 1) * 2);
  z-index: 2;
}
section.greater .cards .card:nth-child(4) {
  left: calc((100% - var(--card-width)) / (var(--num-cards) - 1) * 3);
  z-index: 1;
}
section.greater .cards .card.active {
  background-color: var(--orange);
  color: var(--white);
  z-index: 5;
}
.big-ol-gap {
  background-color: var(--blue);
  height: 150px;
  width: 100%;
}
section.quote .inset {
  align-content: center;
  color: var(--black);
  display: grid;
  gap: 50px;
  padding: 80px 20px;
  place-items: center;
  text-align: center;
}
section.quote .inset div.quote-animation {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
}
section.quote .inset div.quote-animation p {
  font-weight: 700;
  line-height: 1.2;
}
section.basic {
  position: relative;
  z-index: 10;
}
section.basic .inset {
  align-items: center;
  text-align: center;
}
section.basic .inset .subheading {
  font-size: 2em;
  line-height: 1.2;
}
section.basic .inset .subheading + h2 {
  margin-top: 0.25em;
}
section.basic .inset p {
  font-size: 1.25em;
}
section.basic .inset .buttons {
  margin-top: 20px;
}
section.services {
  background-color: var(--dark-grey);
}
section.services .inset {
  max-width: none;
}
section.services div.services {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
section.services div.services .service {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
}
section.services div.services .service .card-holder {
  position: relative;
  border-radius: 10px;
  width: var(--card-width);
  height: var(--card-height);
}
section.services div.services .service .label {
  color: var(--white);
  font-size: 1.125em;
}
section.services .buttons {
  margin-top: 40px;
  text-align: center;
}
section.services .buttons .proof-button {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--black);
  padding-left: 60px;
  padding-right: 60px;
  transition: all 0.1s ease-in-out;
}
section.services .buttons .proof-button:hover {
  background-color: var(--black);
  color: var(--white);
}
section.careers .inset {
  text-align: center;
}
section.careers .inset h2,
section.careers .inset h3,
section.careers .inset h4 {
  color: var(--black);
}
section.faq {
  background-color: var(--light-grey);
}
section.faq .inset {
  margin-bottom: 0;
  max-width: 1200px;
}
section.faq .inset .chat-bubbles .faq {
  clear: both;
  display: block;
  margin-bottom: 20px;
}
section.faq .inset .chat-bubbles .faq div.text {
  display: none;
}
section.faq .inset .chat-bubbles .bubbles {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  height: 1.75em;
}
section.faq .inset .chat-bubbles .bubbles .bubble {
  background-color: #00000044;
  border-radius: 50%;
  display: block;
  height: 16px;
  line-height: 1.2;
  padding: 0;
  text-align: center;
  width: 16px;
  animation: bubble 1.5s infinite;
}
section.faq .inset .chat-bubbles .question {
  background-color: var(--light-grey);
  border-radius: 30px;
  color: var(--black);
  clear: both;
  display: inline-block;
  float: left;
  font-size: 1.25em;
  line-height: 1.2;
  margin: 0 0 20px;
  opacity: 0;
  padding: 20px 30px;
  position: relative;
  text-align: left;
  width: fit-content;
}
section.faq .inset .chat-bubbles .question:after {
  bottom: 0;
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 50.04 75.81"><defs><style> .st0 { fill: %23EEEEEE; } </style></defs><path class="st0" d="M23,0C23,54.52,0,75.81,0,75.81,0,75.81,24.75,71.69,50.04,54.36L23,0Z"/></svg>');
  height: 30px;
  position: absolute;
  left: -9px;
  width: 20px;
}
section.faq .inset .chat-bubbles .answer {
  background-color: var(--blue);
  border-radius: 30px;
  color: var(--white);
  clear: both;
  display: block;
  float: right;
  font-size: 1.25em;
  line-height: 1.5;
  margin: 0 0 40px;
  opacity: 0;
  padding: 20px 30px;
  position: relative;
  text-align: right;
  width: fit-content;
}
section.faq .inset .chat-bubbles .answer:after {
  bottom: 0;
  content: url('data:image/svg+xml,<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 50 75"><defs><style> .st0 { fill: %23005181; } </style></defs><path class="st0" d="M27.05,0c0,54.52,23,75.81,23,75.81,0,0-24.75-4.12-50.04-21.45L27.05,0Z"/></svg>');
  height: 30px;
  position: absolute;
  right: -9px;
  width: 20px;
}
section.faq .inset .chat-bubbles .answer .bubbles .bubble {
  background-color: #FFFFFF88;
}
section.faq .inset .chat-bubbles .answer .delivered {
  color: #666;
  display: none;
  font-size: 0.875em;
  line-height: 1.2;
  margin-left: 10px;
  margin-top: 0.25em;
  padding: 0;
  position: absolute;
  right: 30px;
  text-align: right;
  top: 100%;
  text-wrap: nowrap;
}
section.faq .inset .chat-bubbles .clearfix {
  clear: both;
  display: block;
  width: 100%;
}
section.faq .inset div.faqs {
  padding: 0 40px;
}
section.faq .inset div.faqs .faq {
  padding: 20px 0 40px;
}
section.faq .inset div.faqs .question {
  background-color: var(--white);
  border-radius: 30px;
  color: var(--black);
  clear: both;
  display: inline-block;
  float: left;
  font-size: 1.5em;
  line-height: 1.2;
  margin: 0 0 20px;
  padding: 20px 30px;
  position: relative;
  text-align: left;
  width: fit-content;
  filter: var(--drop-shadow-filter);
}
section.faq .inset div.faqs .question:after {
  bottom: 0;
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 50.04 75.81"><defs><style> .st0 { fill: %23FFFFFF; } </style></defs><path class="st0" d="M23,0C23,54.52,0,75.81,0,75.81,0,75.81,24.75,71.69,50.04,54.36L23,0Z"/></svg>');
  height: 30px;
  position: absolute;
  left: -9px;
  width: 20px;
}
section.faq .inset div.faqs .question p {
  font-weight: 400;
}
section.faq .inset div.faqs .question p:before {
  content: '"';
}
section.faq .inset div.faqs .question p:after {
  content: '"';
}
section.faq .inset div.faqs .answer {
  float: right;
  font-size: 2.5em;
  overflow: hidden;
  text-align: right;
  width: min(900px, 100%);
}
section.faq .inset div.faqs .answer p {
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}
section.faq .inset div.faqs .answer .delivered {
  display: none;
}
section.faq .inset div.faqs .clearfix {
  clear: both;
  display: block;
  width: 100%;
}
@keyframes bubble {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
section.faq .inset .bubbles .bubble:nth-child(1) {
  animation-delay: 0s;
}
section.faq .inset .bubbles .bubble:nth-child(2) {
  animation-delay: 0.3s;
}
section.faq .inset .bubbles .bubble:nth-child(3) {
  animation-delay: 0.6s;
}
section.case-studies {
  background-color: var(--light-grey);
  padding: 40px 0 120px;
}
section.case-studies .grid-slider {
  padding: 0;
}
section.case-studies .grid-slider .holder .strip .item {
  padding: 40px 30px;
}
section.case-studies .grid-slider .arrow {
  border-radius: 50%;
  border: 1px solid var(--black);
  opacity: 0.5;
  top: 100%;
  transform: translateY(0);
}
section.case-studies .grid-slider .arrow:before {
  height: 24px;
  width: 15px;
}
section.case-studies .grid-slider .arrow:hover {
  opacity: 1;
}
section.case-studies .grid-slider .arrow--left {
  left: 30px;
}
section.case-studies .grid-slider .arrow--right {
  right: 30px;
}
section.case-studies .study-card {
  background-color: var(--white);
  background-image: var(--bg-image);
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  display: grid;
  filter: var(--drop-shadow-filter-alt);
  font-size: 3em;
  font-weight: 600;
  height: var(--card-height);
  padding: 30px 20px;
  place-items: center;
  text-shadow: 0 0 10px var(--black);
  width: var(--card-width);
  z-index: 4;
  aspect-ratio: 3/5;
  background-image: var(--image-url);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  justify-content: start;
  place-items: flex-end;
  width: 100%;
  transition: transform 0.15s ease-in-out;
}
section.case-studies .study-card:hover,
section.case-studies .study-card.active {
  transform: translateY(-20px);
}
section.case-studies .study-card.active {
  transform: translateY(-20px) scale(1.05);
}
section.case-studies .study-card .info {
  font-size: 1.5rem;
  line-height: 1.1;
  position: relative;
  z-index: 10;
}
section.case-studies .study-card:after {
  content: '';
  display: block;
  height: 30%;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 20px;
  z-index: 1;
}
section.case-study .inset {
  max-width: 1200px;
  padding: 50px 20px 100px;
}
section.case-study .inset .columns__column--card {
  align-items: flex-end;
  position: relative;
  top: -120px;
  filter: var(--drop-shadow-filter-alt);
  margin-bottom: -40px;
}
section.case-study .inset .columns__column h2,
section.case-study .inset .columns__column h3,
section.case-study .inset .columns__column h4 {
  color: var(--black);
  margin-bottom: 0.5em;
}
section.case-study .inset .columns__column h2 em,
section.case-study .inset .columns__column h3 em,
section.case-study .inset .columns__column h4 em {
  font-size: 1.1em;
  font-style: normal;
}
section.case-study .inset .columns__column .intro {
  font-size: 1.25em;
}
section.case-study .inset .quote {
  margin-top: 2em;
  max-width: 800px;
}
section.case-study .inset .quote blockquote {
  color: var(--blue);
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-wrap: pretty;
  /*&:before {
                    content: '“';
                }
                &:after {
                    content: '”';
                }*/
}
section.case-study .inset .quote cite {
  display: block;
  font-style: normal;
  font-size: 1.125em;
  font-weight: 500;
  margin-top: 1em;
}
section.case-study .inset .lower__copy {
  margin-bottom: 2em;
  max-width: 800px;
}
section.case-study .inset .lower__copy .text {
  font-size: 1.125em;
}
section.case-study .inset .lower__copy .text p + p,
section.case-study .inset .lower__copy .text ul + p,
section.case-study .inset .lower__copy .text ol + p,
section.case-study .inset .lower__copy .text p + ul,
section.case-study .inset .lower__copy .text ul + ul,
section.case-study .inset .lower__copy .text ol + ul,
section.case-study .inset .lower__copy .text p + ol,
section.case-study .inset .lower__copy .text ul + ol,
section.case-study .inset .lower__copy .text ol + ol {
  margin-top: 1em;
}
section.case-study .inset .lower__copy .text ul li {
  margin: 0;
  padding: 0;
}
section.case-study .inset .lower__copy--situation h4 {
  color: var(--red);
}
section.case-study .inset .lower__copy--challenge h4 {
  color: var(--orange);
}
section.case-study .inset .lower__copy--solution h4 {
  color: var(--blue);
}
section.case-study .inset .lower__copy--results h4 {
  color: var(--black);
}
section.case-study .inset .case-study-card {
  background-color: var(--white);
  background-image: var(--bg-image);
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  display: grid;
  filter: var(--drop-shadow-filter-alt);
  font-size: 3em;
  font-weight: 600;
  height: var(--card-height);
  padding: 30px 20px;
  place-items: center;
  text-shadow: 0 0 10px var(--black);
  width: var(--card-width);
  z-index: 4;
  aspect-ratio: 3/5;
  background-image: var(--image-url);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  display: inline-grid;
  filter: none;
  height: auto;
  width: 100%;
}
section.case-study .inset .gallery {
  margin-top: 60px;
  opacity: 0;
}
section.case-study .inset .gallery .grid-slider {
  padding: 0;
}
section.case-study .inset .gallery .grid-slider .arrow {
  border-radius: 50%;
  border: 1px solid var(--black);
  opacity: 0.5;
  top: 100%;
  transform: translateY(0);
}
section.case-study .inset .gallery .grid-slider .arrow:before {
  height: 24px;
  width: 15px;
}
section.case-study .inset .gallery .grid-slider .arrow:hover {
  opacity: 1;
}
section.case-study .inset .gallery .grid-slider .arrow--left {
  left: 10px;
}
section.case-study .inset .gallery .grid-slider .arrow--right {
  right: 10px;
}
section.case-study .inset .gallery .photo {
  overflow: hidden;
  position: relative;
}
section.case-study .inset .gallery .photo img {
  aspect-ratio: 1;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
section.case-study .inset .gallery .photo .overlay {
  background-color: #00000080;
  border-radius: 10px;
  bottom: 0;
  color: var(--white);
  font-size: 1.125em;
  font-weight: 500;
  left: 0;
  line-height: 1.2;
  padding: 20px;
  pointer-events: none;
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
section.case-study .inset .gallery .photo .overlay:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path fill="%23FFFFFF" d="M272 96C369.2 96 448 174.8 448 272C448 369.2 369.2 448 272 448C174.8 448 96 369.2 96 272C96 174.8 174.8 96 272 96zM272 480C323.7 480 371 461.2 407.3 430L548.7 571.3C554.9 577.5 565.1 577.5 571.3 571.3C577.5 565.1 577.5 554.9 571.3 548.7L430 407.3C461.2 371 480 323.7 480 272C480 157.1 386.9 64 272 64C157.1 64 64 157.1 64 272C64 386.9 157.1 480 272 480zM256 344C256 352.8 263.2 360 272 360C280.8 360 288 352.8 288 344L288 288L344 288C352.8 288 360 280.8 360 272C360 263.2 352.8 256 344 256L288 256L288 200C288 191.2 280.8 184 272 184C263.2 184 256 191.2 256 200L256 256L200 256C191.2 256 184 263.2 184 272C184 280.8 191.2 288 200 288L256 288L256 344z"/></svg>');
  display: block;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.case-study .inset .gallery .photo:hover .overlay {
  opacity: 1;
}
section.case-study .inset .gallery.watched {
  opacity: 0;
}
section.case-study .inset .gallery.watched.seen {
  animation: fade-in-up 0.35s ease-in-out forwards;
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section.team {
  background-color: var(--black);
}
section.team .inset {
  text-align: center;
}
section.team .inset .heading {
  background-color: var(--white);
  position: relative;
  z-index: 10;
}
section.team .inset .heading h2,
section.team .inset .heading h3,
section.team .inset .heading h4 {
  color: var(--black);
}
section.team .inset .heading:before {
  background-color: var(--white);
  content: '';
  display: block;
  height: calc(100% + 180px);
  left: 50%;
  position: absolute;
  top: -80px;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
}
section.team .inset .bios {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px auto;
  max-width: 1100px;
  justify-content: center;
  position: relative;
  z-index: 20;
}
section.team .inset .bios .bio {
  cursor: pointer;
  display: flex;
  flex-basis: calc(100% / 3 - 40px);
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(0);
}
section.team .inset .bios .bio .photo {
  aspect-ratio: 3/4;
  background-color: var(--light-grey);
  background-image: var(--image-url);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  filter: var(--drop-shadow-filter);
  height: auto;
  object-fit: cover;
  overflow: hidden;
  position: relative;
  width: 100%;
}
section.team .inset .bios .bio .photo .quote {
  background-color: #00000080;
  bottom: 0;
  color: var(--white);
  font-size: 1.125em;
  font-weight: 500;
  left: 0;
  line-height: 1.2;
  padding: 30px 20px;
  position: absolute;
  text-align: center;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.2s ease-in-out;
}
section.team .inset .bios .bio .info {
  color: var(--white);
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
}
section.team .inset .bios .bio .info .job-title {
  font-size: 1.125rem;
  font-weight: 400;
}
section.team .inset .bios .bio:hover .photo .quote {
  transform: translateY(0);
}
section.team .inset .bios .bio.seen {
  opacity: 1;
  animation: fade-in-up 0.35s ease-in-out forwards;
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section.team .inset .bios--smaller .bio {
  flex-basis: calc(100% / 4 - 40px);
}
section.we-create {
  background-color: var(--white);
}
section.we-create .inset {
  align-content: center;
  color: var(--black);
  display: grid;
  gap: 20px;
  height: 400px;
  padding: 80px 20px;
  place-items: center;
  text-align: center;
}
section.we-create .inset h2 {
  color: var(--black);
  font-size: 2.5em;
  font-weight: 300;
  margin-bottom: 0.5em;
}
section.we-create .inset h2 span {
  position: relative;
}
section.we-create .inset h2 span.larger {
  color: var(--blue);
  font-weight: 700;
  font-size: 4rem;
}
section.we-create .inset p,
section.we-create .inset ul,
section.we-create .inset ol {
  font-size: 1.25em;
}
section.we-create .inset p + p,
section.we-create .inset ul + p,
section.we-create .inset ol + p {
  margin-top: 1em;
}
section.we-create .inset .proof-button {
  position: relative;
}
section.testimonials {
  background-color: var(--medium-grey);
}
section.testimonials .inset {
  display: grid;
  min-height: 50vh;
  place-items: center;
  text-align: center;
  color: var(--black);
}
section.testimonials .inset div.testimonials {
  filter: drop-shadow(0 10px 20px #00000044);
}
section.testimonials .inset div.testimonials .testimonial {
  background-color: var(--blue);
  box-sizing: border-box;
  border-radius: 30px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
section.testimonials .inset div.testimonials .testimonial__text {
  font-size: 1.5em;
  text-align: left;
}
section.testimonials .inset div.testimonials .testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  margin-top: 30px;
  min-height: 70px;
  padding-left: 90px;
  position: relative;
}
section.testimonials .inset div.testimonials .testimonial__author img {
  aspect-ratio: 1;
  border-radius: 50%;
  height: 70px;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 70px;
}
section.testimonials .inset div.testimonials .testimonial__author .name {
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
}
section.services-list {
  position: relative;
  z-index: 100;
}
section.services-list .inset .list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0 auto;
  max-width: 1100px;
}
section.services-list .inset .list .service {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 80px;
}
section.services-list .inset .list .service .image {
  display: block;
  flex-basis: 40%;
  text-align: right;
  width: 40%;
}
section.services-list .inset .list .service .image .service-card {
  background-color: var(--white);
  background-image: var(--image-url);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  display: inline-grid;
  filter: var(--drop-shadow-filter-alt);
  font-size: 3em;
  font-weight: 600;
  height: var(--card-height);
  padding: 30px 20px;
  place-items: center;
  text-shadow: 0 0 10px var(--black);
  transform: rotate(0deg);
  width: var(--card-width);
  z-index: 4;
}
section.services-list .inset .list .service .info {
  flex-basis: 60%;
  text-align: left;
  width: 60%;
}
section.services-list .inset .list .service h2,
section.services-list .inset .list .service h3 {
  color: var(--black);
  margin-bottom: 0.25em;
}
section.services-list .inset .list .service h2 a,
section.services-list .inset .list .service h3 a {
  color: var(--black);
  text-decoration: none;
}
section.services-list .inset .list .service h2 a:hover,
section.services-list .inset .list .service h3 a:hover {
  color: var(--blue);
}
section.services-list .inset .list .service ul {
  font-size: 1.125em;
  margin-bottom: 1.5em;
}
section.services-list .inset .list .service ul li {
  padding: 0;
}
section.services-list .inset .list .service .subheading {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 0.5em;
}
section.services-list .inset .list .service a.proof-button {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
section.services-list .inset .list .service a.proof-button:hover {
  background-color: var(--black);
  color: var(--white);
}
section.services-list .inset .list .service .meta {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  font-size: 1em;
  margin-bottom: 1em;
}
section.services-list .inset .list .service .meta a {
  background-color: var(--blue);
  border: none;
  border-radius: 30px;
  color: var(--white);
  display: inline-block;
  font-family: var(--font-family);
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.1;
  padding: 10px 40px;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  border: var(--black) 1px solid;
  background-color: transparent;
  color: var(--black);
  font-size: 1em;
  padding: 5px 30px;
}
section.services-list .inset .list .service .meta a:hover {
  background-color: var(--bright-blue);
}
section.services-list .inset .list .service .meta a--white {
  background-color: var(--white);
  color: var(--blue);
}
section.services-list .inset .list .service .meta a--white:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
section.services-list .inset .list .service .meta a--outlined {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
section.services-list .inset .list .service .meta a--outlined:hover {
  background-color: var(--black);
  color: var(--white);
}
section.services-list .inset .list .service .meta a:hover {
  color: var(--blue);
}
section.services-list .inset .list .service h2 + .subheading,
section.services-list .inset .list .service h3 + .subheading {
  margin-top: -0.25em;
}
section.services-list .inset .list .service h2 + .meta,
section.services-list .inset .list .service h3 + .meta {
  margin-top: 0;
}
section.services-list .inset .list .service .description {
  font-size: 1.125em;
  margin-bottom: 1.5em;
}
section.services-list .inset .list .service:nth-child(even) {
  flex-direction: row-reverse;
}
section.services-list .inset .list .service:nth-child(even) .image {
  text-align: left;
}
section.services-list .inset .list .service:nth-child(even) .image .service-card {
  transform: rotate(0deg);
}
section.services-list .inset .list .service--blue h2,
section.services-list .inset .list .service--blue h3 {
  color: var(--blue);
}
section.services-list .inset .list .service--red h2,
section.services-list .inset .list .service--red h3 {
  color: var(--red);
}
section.services-list .inset .list .service--orange h2,
section.services-list .inset .list .service--orange h3 {
  color: var(--orange);
}
section.counters .inset {
  display: grid;
  min-height: 50vh;
  place-items: center;
  text-align: center;
  color: var(--black);
}
section.counters .inset .blocks {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}
section.counters .inset .blocks .block {
  align-items: center;
  background-color: var(--blue);
  border-radius: 20px;
  color: var(--white);
  display: flex;
  flex-basis: calc(100% / 4);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  top: 0;
  transition: top 0.2s ease-in-out;
}
section.counters .inset .blocks .block:nth-child(2) {
  background-color: var(--orange);
}
section.counters .inset .blocks .block:nth-child(3) {
  background-color: var(--red);
}
section.counters .inset .blocks .block:nth-child(4) {
  background-color: var(--black);
  color: var(--white);
}
section.counters .inset .blocks .block .inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 50px;
}
section.counters .inset .blocks .block .inner svg {
  aspect-ratio: 1;
  display: block;
  height: auto;
  width: 180px;
  position: relative;
  top: 10px;
}
section.counters .inset .blocks .block .inner h3.number {
  color: var(--white);
  font-size: 5em;
  font-weight: 700;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
}
section.counters .inset .blocks .block .inner h3.number.currency:before {
  content: '$';
  font-size: 0.75em;
  top: -0.25em;
  position: relative;
  margin-left: -0.25em;
}
section.counters .inset .blocks .block .inner h3.number.plus:after {
  content: '+';
  font-size: 0.75em;
  top: -0.25em;
  position: relative;
  margin-right: -0.25em;
}
section.counters .inset .blocks .block .inner h3.number.percentage:after {
  content: '%';
  font-size: 0.75em;
  top: -0.25em;
  position: relative;
  margin-right: -0.25em;
}
section.counters .inset .blocks .block .inner span {
  display: block;
  font-size: 1.5em;
  font-weight: 600;
  text-wrap: balance;
}
section.counters .inset .blocks .block svg g,
section.counters .inset .blocks .block svg path {
  transform-origin: 50% 50%;
  transition: all 0.2s cubic-bezier(0, 0.69, 0.31, 1);
}
section.counters .inset .blocks .block svg g.ring {
  transform-origin: 50% 53%;
  transition: all 0.5s cubic-bezier(0.69, 0, 0.31, 1);
}
section.counters .inset .blocks .block svg path#beams {
  transform-origin: 50% 50%;
  opacity: 0;
  transform: scale(0.95);
}
section.counters .inset .blocks .block svg#lightbulb {
  transform-origin: 50% 52%;
  transition: all 0.2s cubic-bezier(0, 0.69, 0.31, 1);
}
section.counters .inset .blocks .block svg#people .person {
  transition: all 0.2s cubic-bezier(0.69, 0, 0.31, 1);
}
section.counters .inset .blocks .block svg#people .person.west {
  transition-delay: 0.05s;
}
section.counters .inset .blocks .block svg#people .person.east {
  transition-delay: 0.1s;
}
section.counters .inset .blocks .block svg#people .person.south {
  transition-delay: 0.15s;
}
section.counters .inset .blocks .block:hover {
  top: -20px;
}
section.counters .inset .blocks .block:hover svg path.star.left {
  transform: translateX(-5px) translateY(-15px) rotate(-15deg) scale(1.1);
}
section.counters .inset .blocks .block:hover svg path.star.center {
  transform: translateY(-15px) scale(1.1);
}
section.counters .inset .blocks .block:hover svg path.star.right {
  transform: translateX(5px) translateY(-15px) rotate(15deg) scale(1.1);
}
section.counters .inset .blocks .block:hover svg g.ring {
  transform: rotate(360deg) scale(1.2);
}
section.counters .inset .blocks .block:hover svg#lightbulb {
  transform: translateY(-10px) scale(1.1);
}
section.counters .inset .blocks .block:hover svg path#beams {
  opacity: 1;
  transform: scale(1.05);
}
section.counters .inset .blocks .block:hover svg path.st1.glare {
  fill: #000000 !important;
  stroke: #000000 !important;
}
section.counters .inset .blocks .block:hover svg#people .person {
  transform: translateY(-10px) scale(1.1);
}
section.more-than,
section.more-than-alt,
section.proof-of {
  background-color: var(--white);
  --num-mores: 1;
  --height: 50vh;
  /*.left {
        align-items: center;
        display: flex;
        justify-content: flex-end;
        min-height: var(--height);
        width: 50%;
        position: absolute;
        top: 0;
        left: 0;

        span {
            font-size: 4em;
            font-weight: 700;
            color: var(--dark-grey);
        }
    }

    .right {
        min-height: calc(var(--height) * var(--num-mores));
        flex-basis: 50%;
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 0;

        .slide {
            min-height: var(--height);
            display: flex;
            align-items: center;
            justify-content: flex-start;
            //position: absolute;
            top: 0;
            left: 0;
            width: 100%;

            &.half {
                min-height: calc(var(--height) * 0.5);
            }

            span {
                font-size: 4em;
                font-weight: 700;
                color: var(--blue);
            }

            &:nth-child(2) {
                span {
                    color: var(--red);
                }
            }

            &:nth-child(3) {
                span {
                    color: var(--orange);
                }
            }
        }
    }*/
}
section.more-than .inset,
section.more-than-alt .inset,
section.proof-of .inset {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  align-items: center;
  min-height: calc(var(--height) * var(--num-mores));
  position: relative;
}
section.more-than .inset .statements,
section.more-than-alt .inset .statements,
section.proof-of .inset .statements {
  display: flex;
  flex-direction: row;
  gap: 1em;
  justify-content: center;
  width: 100%;
}
section.more-than .inset .statements .more-than-stuff,
section.more-than-alt .inset .statements .more-than-stuff,
section.proof-of .inset .statements .more-than-stuff {
  display: flex;
  flex-direction: column;
}
section.more-than .inset span,
section.more-than-alt .inset span,
section.proof-of .inset span {
  color: var(--dark-grey);
  display: inline-block;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}
section.more-than .inset span.orange,
section.more-than-alt .inset span.orange,
section.proof-of .inset span.orange {
  color: var(--orange);
}
section.more-than .inset span.red,
section.more-than-alt .inset span.red,
section.proof-of .inset span.red {
  color: var(--red);
}
section.more-than .inset span.blue,
section.more-than-alt .inset span.blue,
section.proof-of .inset span.blue {
  color: var(--blue);
}
section.more-than-alt .inset .statements {
  flex-direction: column;
  gap: 10px;
  max-width: none;
}
section.more-than-alt .inset .statements .line {
  display: flex;
  flex-direction: row;
  gap: 1em;
  text-wrap: nowrap;
  width: 100%;
}
section.more-than-alt .inset .statements .line .left,
section.more-than-alt .inset .statements .line .right {
  flex-basis: 50%;
  width: 50%;
  text-align: right;
}
section.more-than-alt .inset .statements .line .right {
  text-align: left;
}
section.proof-logo {
  background-color: var(--light-grey);
  height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
}
section.proof-logo img.proof-logo {
  aspect-ratio: 580/218;
  display: block;
  height: auto;
  max-width: 600px;
  width: 100%;
  z-index: 10;
  filter: drop-shadow(0 10px 20px #00000044);
}
section.proof-logo .overlay {
  background-color: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, calc(100vh * 0.6) 50%, 0 0);
  height: 100%;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 150%;
  z-index: 20;
}
section.proof-logo .overlay .this-is {
  color: var(--white);
  display: grid;
  font-size: 4em;
  font-weight: 700;
  height: 100%;
  place-items: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 30;
}
/*section.proof-of {
    background-color: var(--dark-grey);
    min-height: 100vh;
    position: relative;

    .photos {
        width:fit-content;
        display:flex;
        flex-wrap:nowrap;
        gap: 0;
        position: relative;
        z-index: 10;

        .photo {
            background-image: var(--bg-image);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 100vh;
            width: 100vw;
        }
    }

    .captions {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 0;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 20;

        .caption {
            height: 100vh;
            width: 100vw;
            display: grid;
            place-items: center;
            color: var(--white);
            font-size: 4em;
            font-weight: 700;
            text-wrap: balance;
            text-align: center;
            text-shadow: 0 0 10px var(--black);

            span {
                display: inline-block;
                line-height: 1.1;
                max-width: 900px;
                padding: 0 20px;
            }
            //opacity: 0;

            &.active {
                opacity: 1;
                transition: opacity 500ms ease-in-out;
            }
        }
    }
}*/
section.contact-cta {
  align-items: center;
  background-color: var(--blue);
  color: var(--white);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  min-height: 80vh;
  overflow: hidden;
  position: relative;
  text-align: center;
}
section.contact-cta .form {
  background-color: #000000BB;
  bottom: 0;
  height: auto;
  left: 0;
  max-width: 100%;
  padding: 40px 20px;
  position: absolute;
  width: 100%;
  z-index: 10;
}
section.contact-cta .form .inset {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: calc(100vw - var(--max-width) / 2);
  padding: 20px;
  width: 100%;
  align-items: center;
}
section.contact-cta .form .inset h3 {
  color: var(--white);
  filter: drop-shadow(0 2px 4px #00000080) drop-shadow(0 10px 20px #00000080);
  font-size: 3.5em;
  margin-top: 0;
}
section.contact-cta .form .inset p {
  font-size: 1.5em;
  text-wrap: balance;
  filter: drop-shadow(0 2px 4px #00000080) drop-shadow(0 10px 20px #00000080);
}
section.contact-cta .form .inset a.proof-button {
  background-color: transparent;
  border: 1px solid var(--white);
  margin-top: 0.5em;
  width: fit-content;
}
section.contact-cta .form .inset a.proof-button:hover {
  background-color: var(--white);
  color: var(--black);
}
section.contact-cta .photos {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  width: 100%;
  z-index: 10;
  /*&:after {
            content: '';
            display: block;
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background-color: var(--blue);
            opacity: 0.65;
            z-index: 2;
        }*/
}
section.contact-cta .photos .photo {
  background-image: var(--bg-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
section.half-image {
  background-color: var(--white);
}
section.half-image .inset h1,
section.half-image .inset h2,
section.half-image .inset h3 {
  color: var(--blue);
  margin-bottom: 0.5em;
  text-align: left;
}
section.half-image .inset p,
section.half-image .inset ul,
section.half-image .inset ol {
  font-size: 1.25em;
  margin-top: 1em;
}
section.half-image .inset ul,
section.half-image .inset ol {
  font-weight: 700;
}
section.half-image .inset ul.two-columns,
section.half-image .inset ol.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}
section.half-image .inset .columns {
  align-items: center;
  column-gap: 40px;
  row-gap: 0;
}
section.half-image .inset .columns .columns__column--copy {
  display: block;
  position: relative;
  z-index: 20;
}
section.half-image .inset .columns .columns__column .box {
  background-color: var(--blue);
  color: var(--white);
  gap: 20px;
  padding: 40px;
}
section.half-image .inset .columns .columns__column .box p,
section.half-image .inset .columns .columns__column .box ul,
section.half-image .inset .columns .columns__column .box ol {
  color: var(--white);
  font-weight: 500;
}
section.half-image .inset .columns .columns__column .box p strong,
section.half-image .inset .columns .columns__column .box ul strong,
section.half-image .inset .columns .columns__column .box ol strong {
  color: #91d7ff;
  font-size: 1.1em;
  font-weight: 700;
}
section.half-image .inset .columns .columns__column .box p:first-child,
section.half-image .inset .columns .columns__column .box ul:first-child,
section.half-image .inset .columns .columns__column .box ol:first-child {
  margin-top: 0;
}
section.half-image .inset .columns .columns__column:first-child {
  padding-left: 0;
  padding-right: 50px;
}
section.half-image .inset .buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
section.half-image .inset .header-image {
  margin-bottom: 30px;
  width: 100%;
}
section.half-image .inset .image img {
  border-radius: 40px;
  display: block;
  height: auto;
  width: 100%;
  object-fit: cover;
  filter: drop-shadow(0 10px 20px #00000044);
}
section.half-image .inset .images {
  display: block;
  height: 600px;
  position: relative;
}
section.half-image .inset .images img {
  border-radius: 20px;
  display: block;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  filter: var(--drop-shadow-filter);
  width: calc(100% / (var(--num, 2) * 0.5));
}
section.half-image .inset .pinned-text strong {
  font-size: 2em;
}
section.half-image .inset .pinned-text p {
  text-wrap: balance;
}
section.half-image .inset .pinned-text p:first-child {
  margin-top: 0;
}
section.half-image .inset .stacked-text .line {
  display: block;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}
section.half-image .inset .stacked-text .line:nth-child(1) {
  color: var(--orange);
}
section.half-image .inset .stacked-text .line:nth-child(2) {
  color: var(--red);
}
section.half-image .inset .stacked-text .line:nth-child(3) {
  color: var(--blue);
}
section.half-image .inset .logo-animation {
  position: relative;
}
section.half-image .inset .logo-animation svg {
  filter: motionBlur(0deg, 0px);
  max-height: 300px;
}
section.half-image .inset .columns .columns__column:has(.logo-animation) {
  z-index: 10;
}
section.half-image .inset .quote {
  max-width: 800px;
}
section.half-image .inset .quote blockquote {
  color: var(--black);
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-wrap: pretty;
  /*&:before {
                    content: '“';
                }
                &:after {
                    content: '”';
                }*/
}
section.half-image .inset .quote cite {
  display: block;
  font-style: normal;
  font-size: 1.125em;
  font-weight: 500;
  margin-top: 1em;
}
section.half-image--yes .columns__column--image {
  border: 2px solid var(--black);
  padding: 25px 30px;
}
section.half-image--blue {
  background-color: var(--blue);
  color: var(--white);
}
section.half-image--blue .inset h2,
section.half-image--blue .inset h3 {
  color: var(--white);
}
section.half-image--blue .inset p,
section.half-image--blue .inset ul,
section.half-image--blue .inset ol {
  color: var(--white);
}
section.half-image--blue .inset p a,
section.half-image--blue .inset ul a,
section.half-image--blue .inset ol a {
  color: var(--white);
  text-decoration: underline;
}
section.half-image--blue .inset p a:hover,
section.half-image--blue .inset ul a:hover,
section.half-image--blue .inset ol a:hover {
  color: var(--orange);
}
section.half-image--red {
  background-color: var(--red);
  color: var(--white);
}
section.half-image--red .inset h2,
section.half-image--red .inset h3 {
  color: var(--white);
}
section.half-image--red .inset p,
section.half-image--red .inset ul,
section.half-image--red .inset ol {
  color: var(--white);
}
section.half-image--red .inset p a,
section.half-image--red .inset ul a,
section.half-image--red .inset ol a {
  color: var(--white);
  text-decoration: underline;
}
section.half-image--red .inset p a:hover,
section.half-image--red .inset ul a:hover,
section.half-image--red .inset ol a:hover {
  color: var(--orange);
}
section.half-image--red .inset blockquote {
  border-left: 5px solid var(--orange);
}
section.half-image--green {
  background-color: var(--green);
  color: var(--white);
}
section.half-image--green .inset h2,
section.half-image--green .inset h3 {
  color: var(--white);
}
section.half-image--green .inset p,
section.half-image--green .inset ul,
section.half-image--green .inset ol {
  color: var(--white);
}
section.half-image--green .inset p a,
section.half-image--green .inset ul a,
section.half-image--green .inset ol a {
  color: var(--white);
  text-decoration: underline;
}
section.half-image--green .inset p a:hover,
section.half-image--green .inset ul a:hover,
section.half-image--green .inset ol a:hover {
  color: var(--orange);
}
section.half-image--right .inset .columns {
  flex-direction: row-reverse;
}
section.half-image--right .inset .columns .columns__column:first-child {
  padding-left: 50px;
  padding-right: 0;
}
section.half-image--pinned-text .inset h2 {
  margin-bottom: 0;
}
section.half-image--pinned-text .inset .columns {
  align-items: flex-start;
  gap: 0;
}
section.half-image--pinned-text .inset .columns__column--copy {
  padding-right: 40px;
  text-align: right;
}
section.half-image--pinned-text .inset .columns__column--copy h2 {
  text-align: right;
}
section.image-banner {
  min-height: 80vh;
  overflow: hidden;
  position: relative;
}
section.image-banner .form {
  background-color: #000000BB;
  bottom: 0;
  height: auto;
  left: 0;
  margin-top: 0;
  max-width: 100%;
  padding: 80px 20px;
  position: absolute;
  width: 100%;
  z-index: 10;
}
section.image-banner .form .inset {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 20px;
  width: 100%;
  align-items: center;
}
section.image-banner .form .inset h3 {
  color: var(--white);
  filter: drop-shadow(0 2px 4px #00000080) drop-shadow(0 10px 20px #00000080);
  font-size: 3.5em;
  margin-top: 0;
}
section.image-banner .form .inset p {
  color: var(--white);
  font-size: 2em;
  font-weight: 700;
}
section.image-banner .form .inset a.proof-button {
  background-color: transparent;
  border: 1px solid var(--white);
  margin-top: 0.5em;
  width: fit-content;
}
section.image-banner .form .inset a.proof-button:hover {
  background-color: var(--white);
  color: var(--black);
}
section.image-banner .photos {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  width: 100%;
  z-index: 10;
  /*&:after {
            content: '';
            display: block;
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background-color: var(--blue);
            opacity: 0.65;
            z-index: 2;
        }*/
}
section.image-banner .photos .photo {
  background-image: var(--bg-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
section.boxes .inset {
  text-align: center;
}
section.boxes .inset h1,
section.boxes .inset h2,
section.boxes .inset h3 {
  margin-bottom: 0.5em;
  text-align: center;
}
section.boxes .inset p {
  font-size: 1.25em;
  margin-bottom: 20px;
}
section.boxes .inset div.boxes {
  display: block;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}
section.boxes .inset div.boxes .box {
  text-decoration: none;
}
section.boxes .inset div.boxes .box__image {
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  transform: translateY(0);
}
section.boxes .inset div.boxes .box__image img {
  aspect-ratio: 1;
  border-radius: 20px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}
section.boxes .inset div.boxes .box__content {
  padding: 0;
  text-wrap: balance;
}
section.boxes .inset div.boxes .box__content h3 {
  font-size: 1.5em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--transition-duration) ease-in-out;
}
section.boxes .inset div.boxes .box__button {
  color: var(--white);
  font-size: 1.125em;
  font-weight: 500;
  margin-right: 24px;
  position: relative;
}
section.boxes .inset div.boxes .box__button:after {
  display: inline-block;
  height: 14px;
  position: absolute;
  left: calc(100% + 10px);
  top: -1px;
  width: 14px;
}
section.boxes .inset div.boxes .box:hover .boxes__item__image {
  transform: translateY(-5px);
}
section.boxes .inset div.boxes--default .box {
  text-align: left;
}
section.boxes .inset div.boxes--default .box__content h3 {
  color: var(--color);
  font-size: 2em;
  text-align: left;
  text-transform: none;
}
section.boxes .inset div.boxes--cards .grid-slider {
  padding: 0;
}
section.boxes .inset div.boxes--cards .grid-slider .holder {
  overflow: visible;
}
section.boxes .inset div.boxes--cards .box {
  background-color: var(--color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  justify-content: flex-start;
  padding: 30px 20px 30px;
  position: relative;
}
section.boxes .inset div.boxes--cards .box__image--icon {
  aspect-ratio: 1;
  border-radius: 50%;
  height: 80px;
  margin: 0 auto 20px;
  width: 80px;
}
section.boxes .inset div.boxes--cards .box__image--icon img {
  border: 2px solid var(--white);
  border-radius: 50%;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
section.boxes .inset div.boxes--cards .box__content h3 {
  color: var(--white);
  font-size: 1.25em;
}
section.boxes .inset div.boxes--cards .box__content p {
  color: var(--white);
}
section.boxes .inset div.boxes--cards .item {
  padding: 40px 10px;
  position: relative;
  /*&:nth-child(2n) {
                        top: 20px;
                    }

                    &:nth-child(3n) {
                        top: -20px;
                    }*/
}
section.boxes .inset div.boxes--cards .item .box {
  pointer-events: none;
  top: 0;
  transition: top 0.2s ease-in-out;
}
section.boxes .inset div.boxes--cards .item:hover .box {
  top: -20px;
}
section.boxes.image-bkgd div.boxes {
  filter: var(--drop-shadow-filter);
}
section.boxes.image-bkgd div.boxes__item__content span {
  color: var(--white);
}
.section-wrap:has(#our-legacy) div.boxes .box.watched {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}
.section-wrap:has(#our-legacy) div.boxes .box.watched.seen {
  opacity: 1;
  transform: translateY(0);
}
.section-wrap:has(#our-legacy) .item:nth-child(1) .box.watched.seen {
  transition-delay: calc(1 * 150ms);
}
.section-wrap:has(#our-legacy) .item:nth-child(2) .box.watched.seen {
  transition-delay: calc(2 * 150ms);
}
.section-wrap:has(#our-legacy) .item:nth-child(3) .box.watched.seen {
  transition-delay: calc(3 * 150ms);
}
.section-wrap:has(#our-legacy) .item:nth-child(4) .box.watched.seen {
  transition-delay: calc(4 * 150ms);
}
.section-wrap:has(#our-legacy) .item:nth-child(5) .box.watched.seen {
  transition-delay: calc(5 * 150ms);
}
.section-wrap:has(#our-legacy) .item:nth-child(6) .box.watched.seen {
  transition-delay: calc(6 * 150ms);
}
.section-wrap:has(#our-legacy) .item:nth-child(7) .box.watched.seen {
  transition-delay: calc(7 * 150ms);
}
.section-wrap:has(#our-legacy) .item:nth-child(8) .box.watched.seen {
  transition-delay: calc(8 * 150ms);
}
.section-wrap:has(#our-legacy) .item:nth-child(9) .box.watched.seen {
  transition-delay: calc(9 * 150ms);
}
section.blog-content .inset h1,
section.blog-content .inset h2,
section.blog-content .inset h3,
section.blog-content .inset h4,
section.blog-content .inset h5 {
  color: var(--black);
  margin-bottom: 0;
  text-align: left;
  text-transform: uppercase;
}
section.blog-content .inset h2,
section.blog-content .inset h3,
section.blog-content .inset h4,
section.blog-content .inset h5 {
  margin-top: 1.5em;
}
section.blog-content .inset .meta {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  font-size: 1em;
  margin-bottom: 1em;
  margin-top: 1em;
}
section.blog-content .inset .meta a {
  background-color: var(--blue);
  border: none;
  border-radius: 30px;
  color: var(--white);
  display: inline-block;
  font-family: var(--font-family);
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.1;
  padding: 10px 40px;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  border: var(--black) 1px solid;
  background-color: transparent;
  color: var(--black);
  font-size: 1em;
  padding: 5px 30px;
}
section.blog-content .inset .meta a:hover {
  background-color: var(--bright-blue);
}
section.blog-content .inset .meta a--white {
  background-color: var(--white);
  color: var(--blue);
}
section.blog-content .inset .meta a--white:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
section.blog-content .inset .meta a--outlined {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
section.blog-content .inset .meta a--outlined:hover {
  background-color: var(--black);
  color: var(--white);
}
section.blog-content .inset .meta a:hover {
  color: var(--blue);
}
section.blog-content .inset .meta .categories {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
section.blog-content .inset .content p,
section.blog-content .inset .content ul,
section.blog-content .inset .content ol {
  font-size: 1.25em;
  margin-top: 1em;
}
section.blog-content .inset p img {
  border-radius: 20px;
  clear: both;
  display: block;
  float: right;
  height: auto;
  margin: 0 0 40px 40px;
  max-width: 50%;
}
section.blog-content .inset p:has(img) {
  clear: both;
}
section.blog-content .inset .wp-caption {
  background-color: var(--light-grey);
  border-radius: 10px;
  padding: 10px;
  margin: 20px 0;
}
section.blog-content .inset .wp-caption img {
  border-radius: 10px;
  display: block;
  height: auto;
  width: 100%;
}
section.blog-content .inset .wp-caption .wp-caption-text {
  color: var(--dark-grey);
  font-size: 0.9em;
  margin-top: 5px;
  text-align: center;
}
section.blog-content .inset .post-navigation {
  clear: both;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 60px;
}
section.blog-content .inset .post-navigation a {
  background-color: var(--blue);
  border: none;
  border-radius: 30px;
  color: var(--white);
  display: inline-block;
  font-family: var(--font-family);
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.1;
  padding: 10px 40px;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  border: var(--black) 1px solid;
  background-color: transparent;
  color: var(--black);
  font-size: 1em;
  padding: 5px 30px;
}
section.blog-content .inset .post-navigation a:hover {
  background-color: var(--bright-blue);
}
section.blog-content .inset .post-navigation a--white {
  background-color: var(--white);
  color: var(--blue);
}
section.blog-content .inset .post-navigation a--white:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
section.blog-content .inset .post-navigation a--outlined {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
section.blog-content .inset .post-navigation a--outlined:hover {
  background-color: var(--black);
  color: var(--white);
}
section.blog-content .inset .post-navigation a:hover {
  color: var(--blue);
}
.section-wrap:has(section.services-list) + .section-wrap:has(section.basic) {
  margin-top: -120px;
}
section.half-image .inset .images img:nth-child(1) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (1 - 1));
  z-index: calc(100 - 1);
}
section.half-image .inset .images img:nth-child(2) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (2 - 1));
  z-index: calc(100 - 2);
}
section.half-image .inset .images img:nth-child(3) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (3 - 1));
  z-index: calc(100 - 3);
}
section.half-image .inset .images img:nth-child(4) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (4 - 1));
  z-index: calc(100 - 4);
}
section.half-image .inset .images img:nth-child(5) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (5 - 1));
  z-index: calc(100 - 5);
}
section.half-image .inset .images img:nth-child(6) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (6 - 1));
  z-index: calc(100 - 6);
}
section.half-image .inset .images img:nth-child(7) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (7 - 1));
  z-index: calc(100 - 7);
}
section.half-image .inset .images img:nth-child(8) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (8 - 1));
  z-index: calc(100 - 8);
}
section.half-image .inset .images img:nth-child(9) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (9 - 1));
  z-index: calc(100 - 9);
}
section.half-image .inset .images img:nth-child(10) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (10 - 1));
  z-index: calc(100 - 10);
}
section.half-image .inset .images img:nth-child(11) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (11 - 1));
  z-index: calc(100 - 11);
}
section.half-image .inset .images img:nth-child(12) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (12 - 1));
  z-index: calc(100 - 12);
}
section.half-image .inset .images img:nth-child(13) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (13 - 1));
  z-index: calc(100 - 13);
}
section.half-image .inset .images img:nth-child(14) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (14 - 1));
  z-index: calc(100 - 14);
}
section.half-image .inset .images img:nth-child(15) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (15 - 1));
  z-index: calc(100 - 15);
}
section.half-image .inset .images img:nth-child(16) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (16 - 1));
  z-index: calc(100 - 16);
}
section.half-image .inset .images img:nth-child(17) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (17 - 1));
  z-index: calc(100 - 17);
}
section.half-image .inset .images img:nth-child(18) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (18 - 1));
  z-index: calc(100 - 18);
}
section.half-image .inset .images img:nth-child(19) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (19 - 1));
  z-index: calc(100 - 19);
}
section.half-image .inset .images img:nth-child(20) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (20 - 1));
  z-index: calc(100 - 20);
}
section.half-image .inset .images img:nth-child(21) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (21 - 1));
  z-index: calc(100 - 21);
}
section.half-image .inset .images img:nth-child(22) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (22 - 1));
  z-index: calc(100 - 22);
}
section.half-image .inset .images img:nth-child(23) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (23 - 1));
  z-index: calc(100 - 23);
}
section.half-image .inset .images img:nth-child(24) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (24 - 1));
  z-index: calc(100 - 24);
}
section.half-image .inset .images img:nth-child(25) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (25 - 1));
  z-index: calc(100 - 25);
}
section.half-image .inset .images img:nth-child(26) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (26 - 1));
  z-index: calc(100 - 26);
}
section.half-image .inset .images img:nth-child(27) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (27 - 1));
  z-index: calc(100 - 27);
}
section.half-image .inset .images img:nth-child(28) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (28 - 1));
  z-index: calc(100 - 28);
}
section.half-image .inset .images img:nth-child(29) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (29 - 1));
  z-index: calc(100 - 29);
}
section.half-image .inset .images img:nth-child(30) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (30 - 1));
  z-index: calc(100 - 30);
}
section.half-image .inset .images img:nth-child(31) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (31 - 1));
  z-index: calc(100 - 31);
}
section.half-image .inset .images img:nth-child(32) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (32 - 1));
  z-index: calc(100 - 32);
}
section.half-image .inset .images img:nth-child(33) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (33 - 1));
  z-index: calc(100 - 33);
}
section.half-image .inset .images img:nth-child(34) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (34 - 1));
  z-index: calc(100 - 34);
}
section.half-image .inset .images img:nth-child(35) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (35 - 1));
  z-index: calc(100 - 35);
}
section.half-image .inset .images img:nth-child(36) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (36 - 1));
  z-index: calc(100 - 36);
}
section.half-image .inset .images img:nth-child(37) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (37 - 1));
  z-index: calc(100 - 37);
}
section.half-image .inset .images img:nth-child(38) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (38 - 1));
  z-index: calc(100 - 38);
}
section.half-image .inset .images img:nth-child(39) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (39 - 1));
  z-index: calc(100 - 39);
}
section.half-image .inset .images img:nth-child(40) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (40 - 1));
  z-index: calc(100 - 40);
}
section.half-image .inset .images img:nth-child(41) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (41 - 1));
  z-index: calc(100 - 41);
}
section.half-image .inset .images img:nth-child(42) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (42 - 1));
  z-index: calc(100 - 42);
}
section.half-image .inset .images img:nth-child(43) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (43 - 1));
  z-index: calc(100 - 43);
}
section.half-image .inset .images img:nth-child(44) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (44 - 1));
  z-index: calc(100 - 44);
}
section.half-image .inset .images img:nth-child(45) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (45 - 1));
  z-index: calc(100 - 45);
}
section.half-image .inset .images img:nth-child(46) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (46 - 1));
  z-index: calc(100 - 46);
}
section.half-image .inset .images img:nth-child(47) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (47 - 1));
  z-index: calc(100 - 47);
}
section.half-image .inset .images img:nth-child(48) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (48 - 1));
  z-index: calc(100 - 48);
}
section.half-image .inset .images img:nth-child(49) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (49 - 1));
  z-index: calc(100 - 49);
}
section.half-image .inset .images img:nth-child(50) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (50 - 1));
  z-index: calc(100 - 50);
}
section.half-image .inset .images img:nth-child(51) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (51 - 1));
  z-index: calc(100 - 51);
}
section.half-image .inset .images img:nth-child(52) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (52 - 1));
  z-index: calc(100 - 52);
}
section.half-image .inset .images img:nth-child(53) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (53 - 1));
  z-index: calc(100 - 53);
}
section.half-image .inset .images img:nth-child(54) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (54 - 1));
  z-index: calc(100 - 54);
}
section.half-image .inset .images img:nth-child(55) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (55 - 1));
  z-index: calc(100 - 55);
}
section.half-image .inset .images img:nth-child(56) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (56 - 1));
  z-index: calc(100 - 56);
}
section.half-image .inset .images img:nth-child(57) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (57 - 1));
  z-index: calc(100 - 57);
}
section.half-image .inset .images img:nth-child(58) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (58 - 1));
  z-index: calc(100 - 58);
}
section.half-image .inset .images img:nth-child(59) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (59 - 1));
  z-index: calc(100 - 59);
}
section.half-image .inset .images img:nth-child(60) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (60 - 1));
  z-index: calc(100 - 60);
}
section.half-image .inset .images img:nth-child(61) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (61 - 1));
  z-index: calc(100 - 61);
}
section.half-image .inset .images img:nth-child(62) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (62 - 1));
  z-index: calc(100 - 62);
}
section.half-image .inset .images img:nth-child(63) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (63 - 1));
  z-index: calc(100 - 63);
}
section.half-image .inset .images img:nth-child(64) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (64 - 1));
  z-index: calc(100 - 64);
}
section.half-image .inset .images img:nth-child(65) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (65 - 1));
  z-index: calc(100 - 65);
}
section.half-image .inset .images img:nth-child(66) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (66 - 1));
  z-index: calc(100 - 66);
}
section.half-image .inset .images img:nth-child(67) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (67 - 1));
  z-index: calc(100 - 67);
}
section.half-image .inset .images img:nth-child(68) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (68 - 1));
  z-index: calc(100 - 68);
}
section.half-image .inset .images img:nth-child(69) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (69 - 1));
  z-index: calc(100 - 69);
}
section.half-image .inset .images img:nth-child(70) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (70 - 1));
  z-index: calc(100 - 70);
}
section.half-image .inset .images img:nth-child(71) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (71 - 1));
  z-index: calc(100 - 71);
}
section.half-image .inset .images img:nth-child(72) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (72 - 1));
  z-index: calc(100 - 72);
}
section.half-image .inset .images img:nth-child(73) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (73 - 1));
  z-index: calc(100 - 73);
}
section.half-image .inset .images img:nth-child(74) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (74 - 1));
  z-index: calc(100 - 74);
}
section.half-image .inset .images img:nth-child(75) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (75 - 1));
  z-index: calc(100 - 75);
}
section.half-image .inset .images img:nth-child(76) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (76 - 1));
  z-index: calc(100 - 76);
}
section.half-image .inset .images img:nth-child(77) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (77 - 1));
  z-index: calc(100 - 77);
}
section.half-image .inset .images img:nth-child(78) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (78 - 1));
  z-index: calc(100 - 78);
}
section.half-image .inset .images img:nth-child(79) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (79 - 1));
  z-index: calc(100 - 79);
}
section.half-image .inset .images img:nth-child(80) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (80 - 1));
  z-index: calc(100 - 80);
}
section.half-image .inset .images img:nth-child(81) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (81 - 1));
  z-index: calc(100 - 81);
}
section.half-image .inset .images img:nth-child(82) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (82 - 1));
  z-index: calc(100 - 82);
}
section.half-image .inset .images img:nth-child(83) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (83 - 1));
  z-index: calc(100 - 83);
}
section.half-image .inset .images img:nth-child(84) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (84 - 1));
  z-index: calc(100 - 84);
}
section.half-image .inset .images img:nth-child(85) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (85 - 1));
  z-index: calc(100 - 85);
}
section.half-image .inset .images img:nth-child(86) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (86 - 1));
  z-index: calc(100 - 86);
}
section.half-image .inset .images img:nth-child(87) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (87 - 1));
  z-index: calc(100 - 87);
}
section.half-image .inset .images img:nth-child(88) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (88 - 1));
  z-index: calc(100 - 88);
}
section.half-image .inset .images img:nth-child(89) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (89 - 1));
  z-index: calc(100 - 89);
}
section.half-image .inset .images img:nth-child(90) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (90 - 1));
  z-index: calc(100 - 90);
}
section.half-image .inset .images img:nth-child(91) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (91 - 1));
  z-index: calc(100 - 91);
}
section.half-image .inset .images img:nth-child(92) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (92 - 1));
  z-index: calc(100 - 92);
}
section.half-image .inset .images img:nth-child(93) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (93 - 1));
  z-index: calc(100 - 93);
}
section.half-image .inset .images img:nth-child(94) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (94 - 1));
  z-index: calc(100 - 94);
}
section.half-image .inset .images img:nth-child(95) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (95 - 1));
  z-index: calc(100 - 95);
}
section.half-image .inset .images img:nth-child(96) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (96 - 1));
  z-index: calc(100 - 96);
}
section.half-image .inset .images img:nth-child(97) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (97 - 1));
  z-index: calc(100 - 97);
}
section.half-image .inset .images img:nth-child(98) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (98 - 1));
  z-index: calc(100 - 98);
}
section.half-image .inset .images img:nth-child(99) {
  left: calc(((100% - (100% / (var(--num, 2) * 0.5))) / (var(--num) - 1)) * (99 - 1));
  z-index: calc(100 - 99);
}
section .inset {
  padding: 80px 20px;
}
section .inset.watched {
  opacity: 0;
}
section .inset.watched.seen {
  animation: seen-fade-in 500ms forwards ease-in-out;
}
section.default-bkgd {
  background-color: var(--white);
}
section.default-bkgd .inset h2,
section.default-bkgd .inset h3,
section.default-bkgd .inset h4,
section.default-bkgd .inset p {
  color: var(--black);
}
section.default-bkgd .inset ul,
section.default-bkgd .inset ol {
  color: var(--blue);
}
section.default-bkgd .inset a {
  color: var(--blue);
  text-decoration: underline;
}
section.default-bkgd .inset a:hover {
  color: var(--orange);
}
section.default-bkgd .inset .proof-button {
  border: 1px solid var(--black);
  background-color: transparent;
  color: var(--black);
  text-decoration: none;
}
section.default-bkgd .inset .proof-button:hover {
  background-color: var(--black);
  color: var(--white);
}
section.grey-bkgd {
  background-color: var(--light-grey);
}
section.grey-bkgd .inset h2,
section.grey-bkgd .inset h3,
section.grey-bkgd .inset h4 {
  color: var(--black);
}
section.grey-bkgd .inset p,
section.grey-bkgd .inset ul,
section.grey-bkgd .inset ol {
  color: var(--black);
}
section.grey-bkgd .inset .proof-button {
  border: 1px solid var(--black);
  background-color: transparent;
  color: var(--black);
}
section.grey-bkgd .inset .proof-button:hover {
  background-color: var(--black);
  color: var(--white);
}
section.blue-bkgd {
  background-color: var(--blue);
  color: var(--white);
}
section.blue-bkgd .inset h2,
section.blue-bkgd .inset h3,
section.blue-bkgd .inset h4,
section.blue-bkgd .inset p {
  color: var(--white);
}
section.blue-bkgd .inset .proof-button {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--blue);
}
section.blue-bkgd .inset .proof-button:hover {
  background-color: transparent;
  color: var(--white);
}
section.image-bkgd {
  background-image: var(--bg-image);
  background-position: var(--image-position-x) var(--image-position-y);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  position: relative;
}
section.image-bkgd .inset {
  z-index: 10;
}
section.image-bkgd .inset h1,
section.image-bkgd .inset h2,
section.image-bkgd .inset h3 {
  color: var(--white);
}
section.image-bkgd .inset .proof-button {
  background-color: var(--white);
  color: var(--blue);
}
section.image-bkgd .inset .proof-button:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
section.image-bkgd:before {
  background-color: var(--blue);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.85;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
section.image-bkgd:after {
  background-image: var(--bg-image);
  background-position: var(--image-position-x) var(--image-position-y);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@keyframes seen-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
footer#footer {
  background-color: var(--dark-grey);
  position: relative;
  text-align: left;
  z-index: 100;
}
footer#footer .inset {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 80px 20px;
  justify-content: space-between;
}
footer#footer .inset img {
  display: block;
  height: auto;
  max-width: 300px;
  width: 100%;
  filter: var(--drop-shadow-filter);
}
footer#footer .inset h2,
footer#footer .inset h3,
footer#footer .inset h4 {
  color: var(--white);
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}
footer#footer .inset p.contact-info {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer#footer .inset .social-links ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}
footer#footer .inset .social-links ul a {
  color: var(--white);
  display: block;
  font-size: 1.5em;
  height: 28px;
  width: 28px;
  transition: all 0.1s ease-in-out;
}
footer#footer .inset .social-links ul a svg {
  fill: var(--grey);
  height: 100%;
  width: 100%;
  transition: all 0.1s ease-in-out;
}
footer#footer .inset .social-links ul a:hover svg {
  fill: var(--white);
}
footer#footer .inset .newsletter-form {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer#footer .inset .newsletter-form label {
  color: var(--white);
  font-size: 1.2em;
  font-weight: 600;
  text-transform: uppercase;
}
footer#footer .inset .newsletter-form input {
  background-color: var(--light-grey);
  border: none;
  border-radius: 10px;
  color: var(--blue);
  font-family: var(--font-family);
  font-size: 1.2em;
  padding: 12px 15px;
  width: 100%;
  transition: all 0.1s ease-in-out;
}
footer#footer .inset .newsletter-form input:focus {
  background: var(--white);
  outline: none;
}
footer#footer .inset .newsletter-form .proof-button {
  border-color: var(--white);
  color: var(--white);
  margin: 5px 0;
}
footer#footer .inset a {
  color: var(--grey);
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
footer#footer .inset a:hover {
  color: var(--white);
  filter: drop-shadow(0 0 10px var(--black));
}
footer#footer .inset .columns__column {
  gap: 20px;
}
footer#footer .inset .columns__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#footer .inset .columns__column ul li {
  margin: 0 0 5px;
  padding: 0;
}
footer#footer .inset .columns__column:last-child {
  text-align: right;
}
footer#footer .copyright {
  color: var(--medium-grey);
  font-size: 0.9em;
  padding: 20px;
  width: 100%;
  text-align: center;
}
footer#footer .copyright a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
footer#footer .copyright a:hover {
  color: var(--white);
  filter: drop-shadow(0 0 10px var(--black));
}
.alert {
  background-color: var(--red);
  border-radius: 40px;
  color: var(--white);
  font-size: 1.25em;
  font-weight: 600;
  margin: 20px auto;
  max-width: 1000px;
  padding: 15px 20px;
  text-align: center;
  width: calc(100% - 40px);
}
.alert--success {
  background-color: var(--green);
}
.form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 40px;
  margin: 30px auto 0;
  max-width: 1000px;
}
.form .field {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.form .field--file {
  flex-direction: column;
}
.form .field--half {
  width: calc(50% - 10px);
}
.form .field:has(button) {
  justify-content: center;
  margin-top: 10px;
}
.form .field label {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-left: 0;
  text-transform: uppercase;
  text-wrap: pretty;
}
.form .field input,
.form .field select,
.form .field textarea {
  background-color: var(--white);
  border: 1px solid var(--black);
  border-radius: 10px;
  color: var(--brown);
  font-family: var(--font-family);
  font-size: 1.2em;
  padding: 12px 15px;
  width: 100%;
  transition: all 0.1s ease-in-out;
}
.form .field input:focus,
.form .field select:focus,
.form .field textarea:focus {
  background: var(--white);
  outline: none;
}
.form .field input[type=file],
.form .field select[type=file],
.form .field textarea[type=file] {
  border: none;
  font-size: 1em;
  padding-left: 10px;
}
.form .field--checkbox {
  align-items: center;
  display: flex;
  gap: 10px;
  padding: 0;
}
.form .field--checkbox label {
  text-align: left;
  /*font-size: 1.1em;
                line-height: 1.3;
                text-wrap: pretty;*/
}
.form .field input[type="checkbox"] {
  display: none;
}
.form .field input[type="checkbox"] + label {
  cursor: pointer;
  display: block;
  font-family: var(--font-family);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.2;
  padding: 2px 0 0 40px;
  position: relative;
  transition: background 0.1s, color 0.1s;
  text-wrap: balance;
}
.form .field input[type="checkbox"] + label:before {
  border: 2px solid var(--white);
  border-radius: 4px;
  content: '';
  display: block;
  font-family: var(--font-awesome);
  font-size: 1rem;
  font-weight: 700;
  height: 20px;
  line-height: 20px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.form .field input[type="checkbox"]:checked + label:before {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--blue);
  content: '\f00c';
}
.form .field textarea {
  height: 200px;
  resize: none;
}
.form .field__comments {
  margin-left: 10px;
}
.form .field .upload-button {
  background-color: var(--blue);
  border: none;
  border-radius: 30px;
  color: var(--white);
  display: inline-block;
  font-family: var(--font-family);
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.1;
  transition: all 0.1s ease-in-out;
  border: 1px solid var(--black);
  background-color: transparent;
  color: var(--black);
  cursor: pointer;
  display: block;
  padding: 10px 40px;
  text-align: center;
  text-decoration: none;
}
.form .field .upload-button:hover {
  background-color: var(--bright-blue);
}
.form .field .upload-button--white {
  background-color: var(--white);
  color: var(--blue);
}
.form .field .upload-button--white:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
.form .field .upload-button--outlined {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.form .field .upload-button--outlined:hover {
  background-color: var(--black);
  color: var(--white);
}
.form .field .upload-button:hover {
  background-color: var(--black);
  color: var(--white);
}
.form .field button {
  background-color: var(--blue);
  border: none;
  border-radius: 30px;
  color: var(--white);
  display: inline-block;
  font-family: var(--font-family);
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  border: 1px solid var(--black);
  background-color: transparent;
  color: var(--black);
  cursor: pointer;
  padding: 10px 40px;
}
.form .field button:hover {
  background-color: var(--bright-blue);
}
.form .field button--white {
  background-color: var(--white);
  color: var(--blue);
}
.form .field button--white:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
.form .field button--outlined {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.form .field button--outlined:hover {
  background-color: var(--black);
  color: var(--white);
}
.form .field button:hover {
  background-color: var(--black);
  color: var(--white);
}
.form .field--required label:after {
  color: var(--red);
  content: '*';
  font-weight: 700;
  margin-left: 2px;
}
a.back-to-top {
  background-color: var(--blue);
  border-radius: 0;
  bottom: 20px;
  color: #FFF;
  display: flex;
  height: 50px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 20px;
  text-align: center;
  text-decoration: none;
  width: 50px;
  transform: translateX(100px);
  transition: all 0.2s ease-in-out;
  z-index: 1000;
}
a.back-to-top i {
  color: #FFF;
  font-size: 1.2em;
  line-height: 50px;
}
a.back-to-top.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
a.back-to-top:hover {
  background-color: var(--bright-blue);
}
.grid-slider {
  padding: 0 50px;
  position: relative;
}
.grid-slider .holder {
  --gap: 50px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.grid-slider .holder .strip {
  display: grid;
  grid-template-columns: repeat(var(--num), 1fr);
  gap: 0;
  top: 0;
  left: 0;
  position: relative;
  white-space: nowrap;
  width: calc(var(--num) / var(--per) * 100%);
}
.grid-slider .holder .strip.sliding {
  transition: transform 250ms ease-in-out;
}
.grid-slider .holder .strip .item {
  box-sizing: border-box;
  display: block;
  height: 100%;
  max-width: none !important;
  padding: 10px;
  text-wrap: auto;
}
.grid-slider .arrow {
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  width: 40px;
  z-index: 1000;
  transition: all var(--transition-duration) ease-in-out;
}
.grid-slider .arrow:hover {
  background-color: var(--bright-blue);
}
.grid-slider .arrow:before {
  display: block;
  height: 40px;
  transition: all var(--transition-duration) ease-in-out;
  width: 25px;
}
.grid-slider .arrow--left {
  left: 0;
}
.grid-slider .arrow--left:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23000" d="M15 239c-9.4 9.4-9.4 24.6 0 33.9L207 465c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L65.9 256 241 81c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L15 239z"/></svg>');
  right: 0;
}
.grid-slider .arrow--right {
  right: 0;
}
.grid-slider .arrow--right:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23000" d="M305 239c9.4 9.4 9.4 24.6 0 33.9L113 465c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l175-175L79 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L305 239z"/></svg>');
  left: -5px;
}
.grid-slider .dots {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.grid-slider .dots .dot {
  background-color: var(--black);
  border-radius: 50%;
  cursor: pointer;
  height: 10px;
  width: 10px;
}
.grid-slider .dots .dot.active {
  background-color: var(--blue);
}
.yt-embed {
  max-width: 100% !important;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
}
.yt-embed iframe {
  width: 100%;
  height: 100%;
  transform: scale(1.2);
}
.yt-embed .yt-embed-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lightbox-overlay {
  background-color: rgba(0, 0, 0, 0.69);
  backdrop-filter: blur(5px);
  display: none;
  height: 100vh;
  left: 0;
  overflow: hidden auto;
  padding: 60px;
  position: fixed;
  top: 0;
  width: 100vw;
  animation: lightbox-fade-in 0.25s ease-in-out forwards;
  z-index: 11000;
}
.lightbox-overlay--active {
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes lightbox-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.lightbox-overlay .lightbox {
  height: calc(100vh);
  width: calc(100vw);
}
.lightbox-overlay .lightbox__content {
  display: flex;
  height: calc(100vh);
  justify-content: center;
  align-items: center;
  width: calc(100vw);
  padding: 80px 60px;
}
.lightbox-overlay .lightbox__content img {
  border-radius: 10px;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  filter: var(--drop-shadow-filter-alt);
}
.lightbox-overlay .lightbox__content img.from-left {
  animation: lightbox-slide-in-left 0.25s cubic-bezier(0.01, 0.69, 0.31, 1) forwards;
}
.lightbox-overlay .lightbox__content img.from-right {
  animation: lightbox-slide-in-right 0.25s cubic-bezier(0.01, 0.69, 0.31, 1) forwards;
}
.lightbox-overlay .lightbox__close {
  cursor: pointer;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
}
.lightbox-overlay .lightbox__close::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23FFF" d="M393.4 41.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 256 438.6 425.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 301.3 54.6 470.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L178.7 256 9.4 86.6C-3.1 74.1-3.1 53.9 9.4 41.4s32.8-12.5 45.3 0L224 210.7 393.4 41.4z"/></svg>');
  display: block;
  text-align: center;
}
.lightbox-overlay .lightbox__arrow {
  cursor: pointer;
  display: block;
  height: 60px;
  position: absolute;
  top: 50%;
  width: 40px;
  z-index: 1000;
}
.lightbox-overlay .lightbox__arrow:before {
  display: block;
  height: 30px;
  position: absolute;
  top: 50%;
  transition: all var(--transition-duration) ease-in-out;
  transform: translateY(-50%);
  width: 30px;
}
.lightbox-overlay .lightbox__arrow--prev {
  left: 10px;
}
.lightbox-overlay .lightbox__arrow--prev:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23FFF" d="M15 239c-9.4 9.4-9.4 24.6 0 33.9L207 465c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L65.9 256 241 81c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L15 239z"/></svg>');
  right: 0;
}
.lightbox-overlay .lightbox__arrow--prev:hover:before {
  right: 10px;
}
.lightbox-overlay .lightbox__arrow--next {
  right: 10px;
}
.lightbox-overlay .lightbox__arrow--next:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23FFF" d="M305 239c9.4 9.4 9.4 24.6 0 33.9L113 465c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l175-175L79 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L305 239z"/></svg>');
  left: 0;
}
.lightbox-overlay .lightbox__arrow--next:hover:before {
  left: 10px;
}
@keyframes lightbox-slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes lightbox-slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  * {
    --card-height: 400px;
  }
  .mobile-only {
    display: block;
  }
  .not-mobile {
    display: none;
  }
  #is-mobile {
    display: block;
  }
  body h1 {
    font-size: 3.2em;
  }
  body h2 {
    font-size: 2.6em;
  }
  body h3 {
    font-size: 2.2em;
  }
  body h3.label {
    font-size: 1.2em;
    margin-bottom: 0;
  }
  .proof-button {
    display: block;
    text-align: center;
    width: 100%;
  }
  .header-image {
    background-attachment: scroll;
    height: 360px !important;
  }
  .header-image h1 {
    font-size: 4em;
  }
  .columns {
    flex-direction: column;
    gap: 40px;
    column-gap: 40px;
    row-gap: 40px;
  }
  .columns__column {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }
  header#header .inset nav {
    backdrop-filter: blur(5px);
    background-color: #ffffffDD;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100vh;
    justify-content: flex-start;
    left: 0;
    opacity: 0;
    padding: 150px 20px 20px;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: all 0.2s ease-in-out;
    width: 100vw;
    z-index: 1000;
  }
  header#header .inset nav div {
    width: 100%;
  }
  header#header .inset nav ul.menu {
    background-color: transparent;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    transform: translateY(-10px);
    width: 100%;
  }
  header#header .inset nav ul.menu li {
    text-align: center;
    width: 100%;
  }
  header#header .inset nav ul.menu li a {
    font-size: 1.5rem;
  }
  header#header .inset nav ul.menu li ul {
    background-color: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    display: flex;
    left: 0;
    padding: 0;
    position: relative;
    top: 0;
  }
  header#header .inset nav ul.menu li ul li a {
    font-size: 1.25rem;
    padding: 10px;
  }
  header#header .mobile-menu-button {
    --line-inset: 12px;
    background-color: #ffffffDD;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 50px;
    justify-content: center;
    position: absolute;
    right: 15px;
    top: 20px;
    width: 50px;
    z-index: 1000;
  }
  header#header .mobile-menu-button__line {
    background-color: var(--black);
    border-radius: 2px;
    position: absolute;
    top: calc(var(--line-inset) + 4px);
    left: var(--line-inset);
    height: 4px;
    width: calc(100% - (var(--line-inset) * 2));
    transition: all 0.1s ease-in-out;
  }
  header#header .mobile-menu-button__line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  header#header .mobile-menu-button__line:nth-child(3) {
    top: auto;
    bottom: calc(var(--line-inset) + 4px);
  }
  header#header .mobile-menu-button--active .mobile-menu-button__line:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
  }
  header#header .mobile-menu-button--active .mobile-menu-button__line:nth-child(2) {
    display: none;
  }
  header#header .mobile-menu-button--active .mobile-menu-button__line:nth-child(3) {
    bottom: 23px;
    transform: rotate(-45deg);
  }
  body.menus--active {
    overflow: hidden;
  }
  body.menus--active header#header .inset .branding {
    z-index: 1001;
  }
  body.menus--active header#header .inset .branding a svg {
    filter: drop-shadow(0 0 10px var(--white)) drop-shadow(0 0 20px var(--white)) drop-shadow(0 0 50px var(--white)) drop-shadow(0 0 50px var(--white)) drop-shadow(0 0 100px var(--white)) drop-shadow(0 0 200px #FFFFFF80);
  }
  body.menus--active header#header .inset .branding a svg #proof {
    opacity: 1;
  }
  body.menus--active header#header .inset .branding a svg #arrow {
    transform: translateX(0);
  }
  body.menus--active header#header .inset nav {
    opacity: 1;
  }
  body.menus--active header#header .inset nav ul.menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  section.hero {
    z-index: 20;
  }
  section.hero .inset h1 {
    font-size: 3.5em;
  }
  section.hero .video-wrapper .buttons {
    bottom: auto;
    top: calc(100% + 20px);
  }
  section.greater {
    min-height: auto;
  }
  section.greater .inset {
    flex-direction: column;
    gap: 40px;
  }
  section.greater .inset .copy {
    margin-top: 40px;
    padding-top: 0;
  }
  section.more-than-alt {
    height: auto;
  }
  section.more-than-alt .inset {
    height: 70vh;
    min-height: 70vh;
    padding: 80px 20px;
  }
  section.more-than-alt .inset .statements {
    gap: 30px;
  }
  section.more-than-alt .inset .statements .line {
    display: block;
  }
  section.more-than-alt .inset .statements .line .left,
  section.more-than-alt .inset .statements .line .right {
    text-align: center;
    width: auto;
  }
  section.more-than-alt .inset span {
    display: block;
    font-size: 2.75em;
    text-align: left;
    width: auto;
  }
  section.proof-logo .overlay {
    width: 230%;
  }
  section.proof-logo img.proof-logo {
    width: calc(100% - 40px);
  }
  section.services div.services {
    flex-direction: column;
    gap: 30px;
  }
  section.counters .inset div.blocks {
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }
  section.counters .inset div.blocks .block {
    width: 100%;
  }
  section.counters .inset div.blocks .block .inner {
    padding: 0 20px 40px;
  }
  section.counters .inset div.blocks .block:hover {
    top: auto;
    transform: none;
  }
  section.we-create .inset h2 {
    font-size: min(8vw, 2.5rem);
  }
  section.we-create .inset h2 span {
    display: block;
  }
  section.we-create .inset h2 span.larger {
    font-size: 140%;
  }
  section.countdown {
    z-index: 10;
  }
  section.countdown .inset {
    padding-top: 100px;
  }
  section.countdown .inset .countdown-timer {
    flex-direction: column;
    gap: 20px;
  }
  section.countdown .inset .countdown-timer .countdown-timer__unit {
    font-size: 2em;
  }
  section.faq .inset div.faqs {
    padding: 0 10px;
  }
  section.faq .inset div.faqs .question {
    font-size: 1.25em;
  }
  section.faq .inset div.faqs .answer {
    font-size: 1.75em;
  }
  section.team .inset .bios .bio {
    flex-basis: 100%;
    max-width: 280px;
  }
  section.half-image .inset {
    padding: 40px 20px;
  }
  section.half-image .inset .columns {
    flex-direction: column;
    gap: 40px;
  }
  section.half-image .inset .columns__column {
    width: 100% !important;
  }
  section.half-image .inset .image img {
    height: 320px;
  }
  section.half-image--pinned-text .inset .columns {
    flex-direction: column;
    gap: 40px;
  }
  section.half-image--pinned-text .inset .columns__column--copy .content h2 {
    text-align: left;
    position: relative;
    z-index: 20;
  }
  section.half-image--pinned-text .inset .columns__column--copy .content:before {
    content: '';
    position: absolute;
    top: -40px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 50px);
    background-color: var(--blue);
    z-index: 10;
  }
  section.half-image--pinned-text .inset .image img {
    height: 320px;
  }
  section.half-image--logo-animation .columns__column--other {
    display: none;
  }
  section.basic .inset {
    padding: 40px 20px;
  }
  section.case-studies {
    padding: 0 20px 80px;
  }
  section.case-studies .study-card {
    aspect-ratio: 3/2;
  }
  section.case-studies .study-card:hover,
  section.case-studies .study-card.active {
    transform: none;
  }
  section.case-study .inset .columns__column--card {
    margin-bottom: 0;
    top: 0;
  }
  section.case-study .inset .case-study-card {
    aspect-ratio: 3/4;
  }
  section.case-study .inset .lower {
    margin-top: 40px;
  }
  section.services-list .inset .list .service,
  section.services-list .inset .list .service:nth-child(even) {
    flex-direction: column;
    gap: 30px;
  }
  section.services-list .inset .list .service h2 + .subheading,
  section.services-list .inset .list .service:nth-child(even) h2 + .subheading {
    line-height: 1.1;
  }
  section.services-list .inset .list .service ul,
  section.services-list .inset .list .service:nth-child(even) ul,
  section.services-list .inset .list .service ol,
  section.services-list .inset .list .service:nth-child(even) ol {
    margin-left: 0.5em;
  }
  section.services-list .inset .list .service .image,
  section.services-list .inset .list .service:nth-child(even) .image,
  section.services-list .inset .list .service .info,
  section.services-list .inset .list .service:nth-child(even) .info {
    flex-basis: auto;
    width: 100% !important;
  }
  section.services-list .inset .list .service .image,
  section.services-list .inset .list .service:nth-child(even) .image {
    text-align: left !important;
  }
  section.services-list .inset .list .service .image .service-card,
  section.services-list .inset .list .service:nth-child(even) .image .service-card {
    height: 400px;
  }
  section.blog-content .inset .meta {
    flex-direction: column;
    align-items: flex-start;
  }
  section.blog-content .inset p img {
    max-width: 100%;
    height: auto;
  }
  section.blog-content .inset .post-navigation {
    flex-direction: column;
    gap: 30px;
  }
  section.blog-content .inset .post-navigation .post-navigation__item {
    width: 100%;
  }
  section.blog-content .inset .post-navigation__next {
    text-align: right;
  }
  section.boxes .inset div.boxes .box__image img {
    object-fit: contain;
    max-height: 120px;
  }
  section.boxes .inset div.boxes--default .box {
    text-align: center;
  }
  section.boxes .inset div.boxes--default .box__content {
    text-align: center;
  }
  section.boxes .inset div.boxes--default .box__content h3 {
    text-align: center;
  }
  section.boxes .inset div.boxes--default .box__content p {
    margin-bottom: 0;
  }
  section.boxes .grid-slider .holder .strip {
    grid-template-columns: 1fr;
    width: auto;
  }
  section.boxes .grid-slider .holder .strip .item {
    padding: 0 0 20px;
  }
  section.boxes .grid-slider .holder .strip .item:hover {
    transform: none;
  }
  section.boxes .grid-slider .holder .strip .item:hover .box {
    top: auto;
    transform: none;
  }
  section.quote .inset div.quote-animation {
    font-size: 2.25em;
  }
  section.contact-cta .form .inset {
    max-width: 100%;
    padding: 20px;
  }
  section.contact-cta .form .inset h3 {
    font-size: 2.25em;
  }
  section.contact-cta .form .inset a.proof-button {
    width: 100%;
  }
  section .inset {
    padding: 40px 20px;
  }
  .section-wrap:has(section.services-list) + .section-wrap:has(section.basic) {
    margin-top: 0;
  }
  .form .field {
    width: 100%;
  }
  .grid-slider .holder .strip {
    width: calc(var(--num) * 100%);
  }
  footer#footer .columns {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }
  footer#footer .columns__column ul li {
    font-size: 1.25em;
  }
  footer#footer .columns__column:nth-child(1),
  footer#footer .columns__column:nth-child(2) {
    flex-basis: 100%;
  }
  footer#footer .columns__column--column-30,
  footer#footer .columns__column--column-40 {
    flex-basis: auto;
    width: 100%;
  }
  footer#footer .inset {
    align-items: center;
    padding: 40px 20px;
  }
  footer#footer .inset img {
    display: block;
    max-width: 200px;
    margin: 0 auto;
  }
  footer#footer .inset .newsletter-form label {
    text-align: center;
    width: 100%;
  }
  footer#footer .inset .social-links ul {
    justify-content: center;
  }
}
/*# sourceMappingURL=style.less.css.map */