@import 'variables.css';
#is-mobile {
  display: none;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--light-grey);
  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;
}
.mobile-only {
  display: none;
}
.not-mobile {
  display: block;
}
h1,
h2,
h3,
h4 {
  color: var(--blue);
  font-family: var(--font-family-heading), serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.25em;
  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-size: 1.125em;
  font-weight: 400;
  line-height: 1.75;
}
p a,
ul a,
ol a {
  color: var(--red);
  text-decoration: underline;
  transition: all 0.1s ease-in-out;
}
p a:hover,
ul a:hover,
ol a:hover {
  color: var(--red-dark);
}
p strong,
ul strong,
ol strong {
  font-weight: 600;
}
p + p,
ul + p,
ol + p,
p + ul,
p + ol,
ul + ul,
ul + ol,
ol + ul,
ol + ol {
  margin-top: 0.125em;
}
ul,
ol {
  padding-left: 20px;
}
li {
  padding: 5px 0;
}
.hht-button {
  background-color: var(--blue);
  border-radius: 5px;
  border: none;
  color: var(--white);
  display: inline-block;
  font-family: var(--font-family), serif;
  font-size: 1.375em;
  font-weight: 600;
  line-height: 1.1;
  padding: 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
}
.hht-button:hover {
  background-color: var(--bright-blue);
}
.hht-button--white {
  background-color: var(--white);
  color: var(--blue);
}
.hht-button--white:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
.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--copy {
  display: block;
  padding: 20px 0;
}
.columns__column--copy .buttons {
  margin-top: 2em;
}
.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: 80px;
  --transition-delay: 0s;
  --logo-width: 240px;
  height: var(--header-height);
  position: fixed;
  left: 0;
  top: 0;
  transition: var(--scroll-transition);
  transition-delay: 0s;
  width: 100%;
  z-index: 100;
}
header#header .inset {
  display: flex;
  flex-direction: row;
  height: var(--header-height);
  justify-content: space-between;
  padding: 0;
  z-index: 30;
}
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 img {
  aspect-ratio: 382/114;
  height: var(--top-logo-height);
  width: 100%;
}
header#header .inset nav {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 40px;
  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 {
  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: 0;
  text-transform: uppercase;
}
header#header .inset nav ul.menu li {
  padding: 0;
  position: relative;
}
header#header .inset nav ul.menu li a {
  color: var(--white);
  display: block;
  font-size: 1em;
  font-weight: 500;
  padding: 10px 20px;
  text-decoration: none;
  transition: all var(--scroll-transition);
}
header#header .inset nav ul.menu li:hover > a {
  color: var(--white);
  filter: drop-shadow(0 0 10px var(--black)) drop-shadow(0 0 20px #00000033);
}
header#header .inset nav ul.menu li ul {
  background-color: var(--white);
  border: 1px solid var(--dark-blue);
  border-radius: 10px;
  box-shadow: 0 4px 8px #00000044;
  color: var(--blue);
  display: flex;
  flex-direction: column;
  font-size: 1.125rem;
  gap: 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  padding: 20px 0;
  pointer-events: none;
  position: absolute;
  transform: translateY(-10px);
  top: 100%;
  left: 0;
  width: 320px;
  z-index: 1000;
  transition: all 150ms ease-in-out;
}
header#header .inset nav ul.menu li ul li a {
  color: var(--blue);
  line-height: 1.2;
  padding: 10px 20px;
}
header#header .inset nav ul.menu li ul li a:hover {
  color: var(--bright-blue);
  filter: none;
}
header#header .inset nav ul.menu li:hover ul {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
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;
}
header#header:after {
  background: linear-gradient(180deg, #3b525f 0%, rgba(59, 82, 95, 0) 99%);
  top: 0;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 20;
}
body.logged-in header#header {
  top: 32px;
}
.header-bkgd {
  background-color: var(--blue);
  height: var(--header-height);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
}
body.scrolling header#header * {
  --header-height: 60px;
}
section.hero {
  background-color: var(--blue);
  color: var(--white);
  min-height: calc(60vh + var(--header-height));
  position: relative;
  z-index: 90;
}
section.hero .svg-filters {
  height: 0;
  left: -9999em;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 0;
}
section.hero .slide {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.hero .slide .photo-bkgd {
  background: var(--white);
  background-image: var(--bg-image);
  background-position: var(--image-position-x) var(--image-position-y);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: url('#hero-gradient-map');
}
section.hero .slide .inset {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0;
  position: relative;
  width: 100%;
}
section.hero .slide .inset .photo {
  aspect-ratio: 4/3;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  opacity: 0;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: calc(45% - 60px);
  filter: drop-shadow(0 4px 8px #00000044) drop-shadow(0 8px 16px #00000033);
}
section.hero .slide .inset .copy {
  border-radius: 0 30px 30px 0;
  color: #FFF;
  min-width: 500px;
  opacity: 0;
  padding: 40px 30px 50px;
  position: relative;
  width: calc(55%);
}
section.hero .slide .inset .copy h2 {
  color: var(--white);
  font-size: 4.5em;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px #00000044) drop-shadow(0 4px 8px #00000044) drop-shadow(0 8px 16px #00000033);
  text-wrap: balance;
}
section.hero .slide .inset .copy p {
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1.4;
  filter: drop-shadow(0 4px 8px #00000044) drop-shadow(0 4px 8px #00000044) drop-shadow(0 8px 16px #00000033);
  margin-bottom: 20px;
}
section.hero .slide .inset .copy p strong {
  font-size: 1.4em;
}
section.hero .slide .inset .copy .hht-button {
  background-color: var(--bright-blue);
  color: var(--white);
  font-size: 2em;
  margin-top: 0.5em;
  padding: 15px 40px;
}
section.hero .slide .inset .copy .hht-button:hover {
  background-color: var(--hover-blue);
  color: var(--white);
}
section.hero .slide--active {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.hero .slide--activate {
  animation: slide-activate 1s forwards;
}
section.hero .slide--activate .photo {
  animation: slide-activate_photo ease-in-out 500ms forwards;
}
section.hero .slide--activate .copy {
  animation: slide-activate_copy ease-in-out 750ms forwards;
  animation-delay: 0.25s;
}
section.hero .slide--deactivate {
  --copy-translate: 0;
}
@keyframes slide-activate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-activate_copy {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-activate_photo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
section.hero .controls {
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 10000;
}
section.payment-types {
  background-color: var(--white);
}
section.payment-types .inset {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  padding: 15px 20px;
  flex-wrap: wrap;
}
section.payment-types .inset span {
  font-size: 1.375em;
  text-transform: uppercase;
}
section.payment-types:after {
  display: none;
}
section.faqs .inset {
  padding: 60px 40px;
}
.page-header {
  background-color: var(--blue);
  color: var(--white);
  padding: 0;
  position: relative;
  text-align: center;
  z-index: 90;
}
.page-header .photo-bkgd {
  background: var(--white);
  background-image: var(--bg-image);
  background-position: var(--image-position-x) var(--image-position-y);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.875;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: url('#hero-gradient-map');
}
.page-header .svg-filters {
  height: 0;
  left: -9999em;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 0;
}
.page-header .inset {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: calc(var(--max-width) - 80px);
  min-height: 400px;
  padding: 0 20px 30px;
  text-align: left;
  z-index: 10;
  filter: drop-shadow(0 4px 8px #00000044) drop-shadow(0 4px 8px #00000044) drop-shadow(0 8px 16px #00000033);
}
.page-header .inset h1 {
  color: var(--white);
  display: block;
  font-size: 3.5em;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
  text-wrap: balance;
}
.page-header .inset h1 span {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
  margin-top: 0.25em;
}
.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);
}
.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;
}
section.page-content .inset {
  max-width: calc(var(--max-width) - 80px);
  padding-bottom: 60px;
}
section.page-content .inset p,
section.page-content .inset ul,
section.page-content .inset ol {
  font-size: 1.25em;
}
section.page-content .inset p + p,
section.page-content .inset ul + p,
section.page-content .inset ol + p,
section.page-content .inset p + ul,
section.page-content .inset p + ol,
section.page-content .inset ul + ul,
section.page-content .inset ul + ol,
section.page-content .inset ol + ul,
section.page-content .inset ol + ol {
  margin-top: 1em;
}
section.how {
  background-color: var(--grey);
  min-height: 400px;
}
section.how .inset .columns {
  gap: 0;
}
section.how .inset .columns__column--copy {
  padding-right: 80px;
}
section.how .service-cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 40px;
}
section.how .service-cards .card {
  background-color: var(--white);
  border-radius: 10px;
  display: block;
  padding: 40px;
  position: relative;
  filter: var(--drop-shadow-filter) var(--drop-shadow-filter-alt);
}
section.how .service-cards .card:nth-child(3n - 1) {
  transform: translateX(-20px);
}
section.how .service-cards .card:nth-child(3n) {
  transform: translateX(20px);
}
section.how .service-cards .card h3 {
  font-size: 2.25em;
  margin-bottom: 1em;
}
section.how .service-cards .card p {
  font-size: 1.125em;
}
section.how .service-cards .card img {
  border: 1px solid var(--white);
  border-radius: 10px;
  bottom: -20px;
  height: 120px;
  position: absolute;
  right: 20px;
  width: 120px;
}
section.areas {
  background-color: var(--white);
  min-height: 400px;
}
section.areas .inset {
  padding-bottom: 60px;
}
section.areas .inset svg {
  height: auto;
  width: 100%;
}
section.areas .inset svg path {
  pointer-events: none;
  transition: all 0.1s ease-in-out;
}
section.areas .inset svg path:hover,
section.areas .inset svg path.county--hovered {
  fill: var(--bright-red) !important;
}
section.areas .inset ul.areas-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  left: -20px;
  list-style-type: none;
  margin: 20px 0;
  padding: 0;
  position: relative;
}
section.areas .inset ul.areas-list li {
  color: var(--charcoal);
  cursor: default;
  font-size: 1.125em;
  font-weight: 500;
  margin: 0;
  padding: 0;
  position: relative;
  text-transform: uppercase;
}
section.areas .inset ul.areas-list li span {
  border-radius: 5px;
  padding: 5px 20px;
  transition: all 0.1s ease-in-out;
}
section.areas .inset ul.areas-list li:hover span,
section.areas .inset ul.areas-list li.county-name--hovered span {
  background-color: var(--light-grey);
  color: var(--red);
  width: fit-content;
}
section.half-image .inset {
  padding: 0;
}
section.half-image .inset h1,
section.half-image .inset h2,
section.half-image .inset h3 {
  color: var(--purple);
  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.125em;
  margin-bottom: 1em;
}
section.half-image .inset .columns {
  column-gap: 0;
  row-gap: 0;
}
section.half-image .inset .columns .columns__column .images {
  align-content: center;
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  justify-items: center;
}
section.half-image .inset .columns .columns__column--copy {
  display: block;
  padding: 60px 40px;
}
section.half-image .inset .columns .columns__column--copy img {
  height: auto;
  margin-bottom: 1em;
  max-width: 50%;
  mix-blend-mode: multiply;
  width: auto;
}
section.half-image .inset .columns .columns__column--copy img + h2,
section.half-image .inset .columns .columns__column--copy img + h3 {
  margin-top: 0;
}
section.half-image .inset .columns .columns__column--content {
  display: block;
  padding: 40px;
}
section.half-image .inset .columns .columns__column--image {
  background-color: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.half-image .inset .columns .columns__column--image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
section.half-image .inset .columns .columns__column--image .half-image-content__image {
  height: 100%;
}
section.half-image .inset .columns .columns__column--image .half-image-content__image--proportional img {
  border-radius: 5px;
  height: auto;
  margin-top: 40px;
  width: calc(100% - 40px);
}
section.half-image .inset .columns .columns__column--image:has(.half-image-content__image--proportional) {
  background-image: none;
  background-color: transparent;
}
section.half-image .inset .columns .columns__column--items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 40px;
}
section.half-image .inset .columns .columns__column--items ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
section.half-image .inset .columns .columns__column--items ul li {
  background-color: var(--bkgd-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  color: var(--charcoal);
  font-weight: 500;
  padding: 10px 20px;
  text-transform: uppercase;
}
section.half-image .inset .columns .columns__column .youtube {
  position: relative;
}
section.half-image .inset .columns .columns__column .youtube iframe {
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
  height: 100%;
  width: 100%;
  z-index: 1;
}
section.half-image .inset .columns .columns__column .youtube .poster {
  background-color: var(--black);
  background-image: var(--bg-image-url);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  height: 100%;
  width: 100%;
  z-index: 2;
}
section.half-image .inset .columns .columns__column .youtube .poster.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
section.half-image .inset .columns .columns__column .youtube .poster:hover:before {
  background-color: rgba(0, 0, 0, 0.8);
}
section.half-image .inset .columns .columns__column .youtube .poster:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
}
section.half-image .inset .columns .columns__column .youtube .poster:after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23FFF" d="M96 52v408l320-204L96 52z"/></svg>');
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% + 5px);
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 1;
}
section.half-image .inset .buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-top: 1em;
}
section.half-image .inset .buttons .button {
  background-color: var(--blue);
  border-radius: 5px;
  border: none;
  color: var(--white);
  display: inline-block;
  font-family: var(--font-family), serif;
  font-size: 1.375em;
  font-weight: 600;
  line-height: 1.1;
  padding: 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
}
section.half-image .inset .buttons .button:hover {
  background-color: var(--bright-blue);
}
section.half-image .inset .buttons .button--white {
  background-color: var(--white);
  color: var(--blue);
}
section.half-image .inset .buttons .button--white:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
section.half-image .inset .buttons:not(:has(.button)) {
  display: none;
}
section.half-image .inset.grey .inset .columns .columns__column--image {
  background-color: transparent;
}
section.half-image--content .inset .columns {
  align-items: flex-start;
}
section.half-image--right .inset .columns {
  flex-direction: row-reverse;
}
section.half-image--center .inset {
  padding: 40px 20px;
}
section.half-image--center .inset .columns {
  flex-direction: column;
  justify-content: center;
}
section.half-image--center .inset .columns .columns__column {
  flex-basis: auto;
  padding: 20px;
  text-align: center;
  width: 100%;
}
section.half-image--center .inset .columns .columns__column h2,
section.half-image--center .inset .columns .columns__column h3,
section.half-image--center .inset .columns .columns__column h4,
section.half-image--center .inset .columns .columns__column p {
  text-align: center;
}
section.half-image--center .inset .columns .columns__column--copy {
  padding: 20px 20px 0;
  text-align: center;
}
section.half-image--center .inset .columns .columns__column:last-child {
  padding-top: 0;
}
section.half-image--center .inset .columns .columns__column--items ul {
  margin: 0 auto;
  max-width: calc(var(--max-width) - 200px);
  justify-content: center;
}
section.half-image--center .inset .footer-text {
  margin-top: 0;
  text-align: center;
}
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;
}
section.boxes .inset p + p {
  margin-top: 1em;
}
section.boxes .inset div.boxes {
  display: block;
  gap: 30px;
  margin-top: 30px;
}
section.boxes .inset div.boxes--columns-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
section.boxes .inset div.boxes--columns-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
section.boxes .inset div.boxes .boxes__item {
  background: var(--bkgd-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--charcoal);
  position: relative;
  text-decoration: none;
}
section.boxes .inset div.boxes .boxes__item__content {
  padding: 20px 30px;
  text-align: left;
  text-wrap: balance;
}
section.boxes .inset div.boxes .boxes__item__content h3 {
  color: var(--charcoal);
  font-size: 1.375em;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--transition-duration) ease-in-out;
}
section.boxes .inset div.boxes .boxes__item__content p {
  font-size: 1.125em;
  line-height: 1.4;
}
section.boxes .inset div.boxes .boxes__item__content ul li {
  color: var(--charcoal);
  line-height: 1.2;
}
section.boxes .inset div.boxes .boxes__item__image {
  background-color: var(--light-grey);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  border: 1px solid var(--white);
  bottom: -20px;
  height: 60px;
  position: absolute;
  right: 20px;
  width: 60px;
}
section.boxes .inset div.boxes .boxes__item__button {
  color: var(--white);
  font-size: 1.125em;
  font-weight: 500;
  margin-right: 24px;
  position: relative;
}
section.boxes .inset div.boxes .boxes__item__button:after {
  content: url(../../assets/images/icons/up-arrow-box.svg);
  display: inline-block;
  height: 14px;
  position: absolute;
  left: calc(100% + 10px);
  top: -1px;
  width: 14px;
}
section.boxes .inset div.boxes .boxes__item:hover .boxes__item__image {
  transform: translateY(-5px);
}
section.boxes .inset div.boxes .boxes__item[href=""] {
  pointer-events: none;
}
section.boxes .inset div.boxes .grid-slider.no-slider .holder {
  overflow: visible;
}
section.boxes .inset div.boxes .grid-slider.no-slider .holder .strip {
  display: block;
  gap: 20px;
  width: 100%;
}
section.boxes .inset div.boxes .grid-slider.no-slider .holder .strip .boxes__item {
  float: left;
  height: auto;
  margin-bottom: 20px;
  width: calc(100% / var(--per) - 20px);
}
section.boxes .inset div.boxes .grid-slider.no-slider .holder .strip .boxes__item:has(.boxes__item__image) {
  margin-bottom: 30px;
  padding-bottom: 40px;
}
section.boxes.image-bkgd div.boxes {
  filter: var(--drop-shadow-filter);
}
section.boxes.image-bkgd div.boxes__item__content span {
  color: var(--white);
}
section.boxes.image-bkgd .inset div.boxes .boxes__item__button:after,
section.boxes.image-dark-bkgd .inset div.boxes .boxes__item__button:after,
section.boxes.blue-bkgd .inset div.boxes .boxes__item__button:after {
  content: url('data:image/svg+xml,<svg width="13" height="14" fill="%23FFFFFF" viewBox="0 0 13 14" xmlns="http://www.w3.org/2000/svg"><path d="M11.1429 0.4375H1.85714C0.831362 0.4375 0 1.27715 0 2.3125V11.6875C0 12.7229 0.831362 13.5625 1.85714 13.5625H11.1429C12.1686 13.5625 13 12.7229 13 11.6875V2.3125C13 1.27715 12.1672 0.4375 11.1429 0.4375ZM9.98214 8.64062C9.98214 9.15889 9.5669 9.57812 9.05357 9.57812C8.54025 9.57812 8.125 9.15889 8.125 8.64062V6.68652L4.60223 10.2432C4.42232 10.4248 4.18437 10.5156 3.94643 10.5156C3.70848 10.5156 3.47112 10.4241 3.29004 10.241C2.92732 9.87476 2.92732 9.28149 3.29004 8.91528L6.81339 5.35938H4.875C4.36167 5.35938 3.94643 4.94014 3.94643 4.42188C3.94643 3.90361 4.36167 3.48438 4.875 3.48438H9.05357C9.5669 3.48438 9.98214 3.90361 9.98214 4.42188V8.64062Z"/></svg>');
}
section.team .inset {
  padding-bottom: 60px;
}
section.team .inset div.bios {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
section.team .inset div.bios__item {
  margin-bottom: -40px;
  position: relative;
  text-align: center;
  width: calc((100% / 4) - 20px);
}
section.team .inset div.bios__item__photo {
  background-color: var(--bkgd-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 10px;
  position: relative;
  z-index: 10;
}
section.team .inset div.bios__item__photo__image {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  display: block;
  height: auto;
  width: 100%;
  margin-bottom: 0;
}
section.team .inset div.bios__item__info {
  background: var(--bkgd-color);
  border-radius: 5px;
  border: 1px solid var(--border-color);
  top: -40px;
  max-width: calc(100% - 60px);
  padding: 10px 40px 10px 20px;
  position: relative;
  left: 20px;
  text-align: left;
  width: fit-content;
  z-index: 20;
}
section.team .inset div.bios__item__info h3 {
  font-size: 1.5em;
  margin-bottom: 0;
}
section.team .inset div.bios__item__info__position {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 5px;
}
section {
  --bkgd-color: var(--light-grey);
  --border-color: var(--grey);
  z-index: 10;
}
section .inset {
  padding: 40px 20px;
  position: relative;
  z-index: 10;
}
section .inset.watched {
  opacity: 0;
}
section .inset.watched.seen {
  animation: seen-fade-in 500ms forwards ease-in-out;
}
section:after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0) 90%);
  bottom: 0;
  display: block;
  height: 40px;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 20;
}
section.default-bkgd {
  background-color: var(--white);
}
section.grey-bkgd {
  background-color: var(--light-grey);
  --bkgd-color: var(--white);
}
section.grey-bkgd .inset h2,
section.grey-bkgd .inset h3 {
  color: var(--blue);
}
section.grey-bkgd .inset ul,
section.grey-bkgd .inset ol {
  color: var(--blue);
}
section.blue-bkgd {
  background-color: var(--blue);
  --bkgd-color: var(--light-grey);
  --border-color: var(--dark-blue);
  color: var(--white);
}
section.blue-bkgd .inset h1,
section.blue-bkgd .inset h2,
section.blue-bkgd .inset h3 {
  color: var(--white);
}
section.blue-bkgd .inset p,
section.blue-bkgd .inset ul,
section.blue-bkgd .inset ol {
  color: var(--white);
}
section.blue-bkgd .inset p a,
section.blue-bkgd .inset ul a,
section.blue-bkgd .inset ol a {
  color: var(--white);
  text-decoration: underline;
}
section.blue-bkgd .inset p a:hover,
section.blue-bkgd .inset ul a:hover,
section.blue-bkgd .inset ol a:hover {
  color: var(--orange);
}
section.blue-bkgd .inset .hht-button {
  background-color: var(--white);
  color: var(--blue);
}
section.blue-bkgd .inset .hht-button:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
section.teal-bkgd {
  background-color: var(--light-teal);
  --bkgd-color: var(--white);
  --border-color: var(--teal);
  color: var(--charcoal);
}
section.teal-bkgd .inset h1,
section.teal-bkgd .inset h2,
section.teal-bkgd .inset h3 {
  color: var(--dark-grey);
}
section.teal-bkgd .inset p,
section.teal-bkgd .inset ul,
section.teal-bkgd .inset ol {
  color: var(--charcoal);
}
section.teal-bkgd .inset p a,
section.teal-bkgd .inset ul a,
section.teal-bkgd .inset ol a {
  color: var(--charcoal);
  text-decoration: underline;
}
section.teal-bkgd .inset p a:hover,
section.teal-bkgd .inset ul a:hover,
section.teal-bkgd .inset ol a:hover {
  color: var(--orange);
}
section.teal-bkgd .inset .hht-button {
  background-color: var(--white);
  color: var(--blue);
}
section.teal-bkgd .inset .hht-button:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
section.image-dark-bkgd,
section.image-bkgd {
  background-image: var(--bg-image);
  background-position: var(--bg-position-x) var(--bg-position-y);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  position: relative;
}
section.image-dark-bkgd .inset,
section.image-bkgd .inset {
  z-index: 10;
}
section.image-dark-bkgd .inset h1,
section.image-bkgd .inset h1,
section.image-dark-bkgd .inset h2,
section.image-bkgd .inset h2,
section.image-dark-bkgd .inset h3,
section.image-bkgd .inset h3 {
  color: var(--white);
}
section.image-dark-bkgd .inset .hht-button,
section.image-bkgd .inset .hht-button {
  background-color: var(--white);
  color: var(--blue);
}
section.image-dark-bkgd .inset .hht-button:hover,
section.image-bkgd .inset .hht-button:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
section.image-dark-bkgd:before,
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-dark-bkgd:after,
section.image-bkgd:after {
  background-image: var(--bg-image);
  background-position: var(--bg-position-x) var(--bg-position-y);
  background-attachment: var(--bg-attachment);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
section.image-dark-bkgd:before {
  background-color: var(--black);
  opacity: 0.75;
}
section.group-bkgd {
  background-color: transparent;
  color: inherit;
  position: relative;
  z-index: 10;
}
section.group-bkgd:before {
  display: none;
}
section.group-bkgd .inset {
  z-index: 10;
}
section.group-bkgd .inset .hht-button {
  background-color: var(--white);
  color: var(--blue);
}
section.group-bkgd .inset .hht-button:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
@keyframes seen-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-wrap {
  z-index: 10;
}
.section-wrap:has(section) + .section-wrap:has(section.same-bkgd) {
  margin-top: -60px;
  position: static;
  z-index: 9;
}
.section-wrap:has(section) + .section-wrap:has(section.same-bkgd) section:before {
  display: none;
}
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: 60px 20px;
  justify-content: space-between;
}
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 a {
  font-weight: 600;
  text-transform: uppercase;
  width: fit-content;
}
footer#footer .inset a img.home-logo {
  display: block;
  height: 80px;
  width: auto;
}
footer#footer .inset a img.home-logo + span {
  display: block;
  text-align: center;
}
footer#footer .inset p.contact-info {
  color: var(--white);
  display: block;
  flex-direction: column;
  gap: 5px;
}
footer#footer .inset p.contact-info strong {
  display: inline;
  font-size: 1.125em;
  font-weight: 600;
}
footer#footer .inset p.contact-info a[href^="tel:"] {
  color: var(--white);
  display: block;
  font-size: 1.25em;
  font-weight: 600;
  margin-top: 1em;
  text-decoration: none;
}
footer#footer .inset p.contact-info a[href^="tel:"]:hover {
  color: var(--white);
  filter: drop-shadow(0 0 10px var(--black));
}
footer#footer .inset p.contact-info a[href^="mailto:"] {
  color: var(--white);
  display: block;
  font-size: 1em;
  font-weight: 400;
  margin-top: 1em;
  text-decoration: none;
}
footer#footer .inset p.contact-info a[href^="mailto:"]:hover {
  color: var(--white);
  filter: drop-shadow(0 0 10px var(--black));
}
footer#footer .inset .social-links ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  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 a {
  color: var(--medium-grey);
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
footer#footer .inset a:hover {
  color: var(--white);
}
footer#footer .inset .columns__column {
  gap: 20px;
}
footer#footer .inset .columns__column nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 1.125em;
  justify-content: flex-end;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#footer .inset .columns__column nav ul li {
  display: block;
  margin: 0;
  padding: 0;
  text-align: left;
}
footer#footer .inset .columns__column nav ul li > a {
  display: block;
  margin-bottom: 0.5em;
  text-align: left;
}
footer#footer .inset .columns__column nav ul li ul {
  align-items: flex-start;
  flex-direction: column;
  font-size: 1rem;
  justify-content: flex-start;
  gap: 10px;
}
footer#footer .inset .columns__column nav ul li ul li a {
  margin-bottom: 0;
}
footer#footer .inset .columns__column:last-child {
  text-align: right;
}
footer#footer .inset .copyright {
  color: var(--grey);
  font-size: 0.9em;
  margin-top: 200px;
  text-align: right;
  width: 100%;
}
footer#footer .inset .copyright a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
footer#footer .inset .copyright a:hover {
  color: var(--white);
  filter: drop-shadow(0 0 10px var(--black));
}
.form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  margin: 30px auto;
  max-width: 1000px;
}
.form .field {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.form .field--half {
  width: calc(50% - 10px);
}
.form .field:has(button) {
  justify-content: flex-start;
  margin-top: 10px;
}
.form .field label {
  font-size: 0.875em;
  line-height: 1.2;
  padding: 0 10px;
  text-wrap: pretty;
  text-transform: uppercase;
}
.form .field input,
.form .field select,
.form .field textarea {
  background-color: var(--white);
  border: 1px solid var(--grey);
  border-radius: 5px;
  color: var(--charcoal);
  font-family: var(--font-family), sans-serif;
  font-size: 1.25em;
  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 small {
  display: block;
  padding: 0 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(--montserrat);
  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 button {
  background-color: var(--blue);
  border-radius: 5px;
  border: none;
  color: var(--white);
  display: inline-block;
  font-family: var(--font-family), serif;
  font-size: 1.375em;
  font-weight: 600;
  line-height: 1.1;
  padding: 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
  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);
}
.toggles {
  box-shadow: var(--shadow-elevation-high);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 30px 0 50px;
}
.toggles__item {
  background: var(--bkgd-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  transition: all var(--transition-duration) ease-in-out;
}
.toggles__item__heading {
  align-items: center;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-size: 1.3em;
  font-weight: 500;
  gap: 10px;
  justify-content: flex-start;
  line-height: 1.1;
  padding-left: 30px;
  position: relative;
  user-select: none;
  transition: all var(--transition-duration) ease-in-out;
}
.toggles__item__heading small.labels {
  display: flex;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 50%;
}
.toggles__item__heading:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%233b525f" d="M256 80l0-32-64 0 0 32 0 144L48 224l-32 0 0 64 32 0 144 0 0 144 0 32 64 0 0-32 0-144 144 0 32 0 0-64-32 0-144 0 0-144z"/></svg>');
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 16px;
}
.toggles__item__heading:hover {
  color: var(--navy);
}
.toggles__item__content {
  display: grid;
  grid-template-rows: 0fr;
  font-size: 0.9em;
  line-height: 1.5;
  padding-left: 30px;
  transition: all var(--transition-duration) ease-in-out;
}
.toggles__item__content__inner {
  border-top: 1px solid var(--blue-30);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-duration) ease-in-out;
}
.toggles__item__content__inner p:first-child {
  margin-top: 20px;
}
.toggles__item__content__inner p a,
.toggles__item__content__inner ul a,
.toggles__item__content__inner ol a {
  color: var(--charcoal);
  text-decoration: underline;
}
.toggles__item__content__inner p a:hover,
.toggles__item__content__inner ul a:hover,
.toggles__item__content__inner ol a:hover {
  color: var(--blue);
}
.toggles__item.open .toggles__item__heading:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%231E6BB8" d="M432 288l-32 0L48 288l-32 0 0-64 32 0 352 0 32 0 0 64z"/></svg>');
}
.toggles__item.open .toggles__item__content {
  grid-template-rows: 1fr;
}
.toggles__item.open .toggles__item__content__inner {
  border-top-color: var(--blue);
}
.toggles__item .elev-button {
  background-color: var(--blue);
}
.toggles__item .elev-button:hover {
  background-color: var(--navy);
}
.toggles--columns-2 {
  grid-template-columns: 1fr 1fr;
}
.toggles--columns-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
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: var(--blue);
  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: 24px;
  transition: all var(--transition-duration) ease-in-out;
  width: 15px;
}
.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="%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;
}
.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="%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: -5px;
}
.grid-slider .dots {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.grid-slider .dots .dot {
  background-color: var(--blue);
  border-radius: 50%;
  cursor: pointer;
  height: 10px;
  width: 10px;
}
.grid-slider .dots .dot.active {
  background-color: var(--bright-blue);
}
.grid-slider.no-slider .arrow,
.grid-slider.no-slider .dots {
  display: none;
}
.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__content img {
  outline: 1px solid var(--bright-blue);
  outline-offset: 2px;
  max-width: 100%;
  width: 100%;
}
.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;
}
body.logged-in .header-bkgd {
  top: 32px;
}
@media screen and (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  .not-mobile {
    display: none;
  }
  #is-mobile {
    display: block;
  }
  body h1 {
    font-size: 2.8em;
  }
  body h2 {
    font-size: 2.4em;
  }
  body h3 {
    font-size: 1.2em;
  }
  body h3.label {
    font-size: 1.2em;
    margin-bottom: 0;
  }
  footer#footer .columns {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  footer#footer .columns__column:nth-child(1),
  footer#footer .columns__column:nth-child(2) {
    flex-basis: 100%;
  }
}
/*# sourceMappingURL=style.less.css.map */