@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background-color: none;
  background: none;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
}

::-webkit-details-marker {
  font-size: 0px;
  display: none;
}

@font-face {
  font-family: "Whyte Book";
  src: url("../fonts/ABCWhyte-Book.eot");
  src: url("../fonts/ABCWhyte-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/ABCWhyte-Book.woff2") format("woff2"), url("../fonts/ABCWhyte-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Whyte";
  src: url("../fonts/ABCWhyte-Medium.eot");
  src: url("../fonts/ABCWhyte-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/ABCWhyte-Medium.woff2") format("woff2"), url("../fonts/ABCWhyte-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --fontSuper: 5rem;
  --fontLarge: 3.28rem;
  --fontMedium: 2rem;
  --blue: #1b3282;
  --lightblue: #b0cdff;
  --green: #1b4e44;
  --lightgreen: #54d6ae;
  --white: #fff;
  --bg: var(--blue);
  --font: var(--white);
  --accent: var(--lightblue);
  --mainpad: 3rem;
  --timing: cubic-bezier(1, 0, 0.29, 1);
}
@media (max-width: 900px) {
  :root {
    --fontLarge: 2.428571rem;
    --mainpad: 1.071428rem;
  }
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

html {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  line-height: 140%;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 120%;
}

.reg_grid {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-auto-rows: auto;
  column-gap: 10px;
  row-gap: 0;
  width: 100%;
}

.grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: auto;
  column-gap: 10px;
  width: 100%;
}

.hero_block,
.feature_block,
.image_text_block,
.cards_block,
.privacy_block {
  min-height: 45vh;
  background-color: var(--bg);
  color: var(--font);
  padding: 200px 0;
  position: relative;
}

.pill_btn_container {
  margin: 1rem 0;
}
.pill_btn_container .pill_btn {
  display: inline-block;
  border: 2px solid var(--font);
  padding: 1rem 2rem;
  border-radius: 50rem;
  color: var(--font);
  transition: color 0.3s ease, border 0.3s ease, background-color 0.3s ease;
}
.pill_btn_container .pill_btn:hover {
  border: 2px solid var(--accent);
  color: var(--bg);
  background-color: var(--accent);
}

@media screen and (max-width: 1000px) {
  .pill_btn_container {
    margin: 1rem 0;
  }
  .pill_btn_container .pill_btn {
    border: 1px solid var(--font);
    padding: 0.5rem 1.5rem;
    font-size: 13px;
  }
  .pill_btn_container .pill_btn:hover {
    border: 1px solid var(--accent);
  }
}
details[open] summary ~ * {
  animation: open 0.5s ease;
}

details {
  transition: all 0.5s ease;
}

@keyframes open {
  0% {
    opacity: 0;
    margin-left: -15px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}
.pts {
  padding-top: 100px;
}

.ptl {
  padding-top: 200px;
}

.pbs {
  padding-bottom: 100px;
}

.pbl {
  padding-bottom: 200px;
}

.fs_s {
  font-size: 16px;
  font-family: "Whyte Book";
  line-height: 1.2;
}

.fs_sm {
  font-size: 20px;
  font-family: "Whyte Book";
  line-height: 1.2;
}

.fs_m {
  font-size: 22px;
  font-family: "Whyte Book";
  line-height: 1.2;
}

.fs_l {
  font-size: 32px;
  line-height: 1.2;
  font-family: "Whyte Book";
}

.fs_xl {
  font-size: 52px;
  font-family: "Whyte Book";
  line-height: 1.2;
}

strong,
.strong {
  font-family: "Whyte" !important;
}

.tall {
  line-height: 140%;
}

@media screen and (max-width: 1000px) {
  .pts {
    padding-top: 60px;
  }
  .ptl {
    padding-top: 100px;
  }
  .pbs {
    padding-bottom: 60px;
  }
  .pbl {
    padding-bottom: 100px;
  }
  .fs_s {
    font-size: 14px;
  }
  .fs_sm {
    font-size: 15px;
  }
  .fs_m {
    font-size: 16px;
  }
  .fs_l,
  .fs_xl {
    font-size: 26px;
  }
}
.pt_s {
  padding-top: 100px;
}

.pt_l {
  padding-top: 200px;
}

.pb_s {
  padding-top: 100px;
}

.pb_l {
  padding-top: 200px;
}

.block {
  opacity: 0;
  transform: translateY(5vh);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.block.entered {
  transform: translateY(0);
  opacity: 1;
}

.mobile_nav {
  display: none;
}

.burger_menu {
  display: none;
}

.headroom-wrapper {
  height: auto !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.headroom {
  transition: all 0.3s ease-in-out;
  position: relative;
}

.headroom--unfixed {
  transform: translateY(0);
}

.headroom--unpinned {
  transform: translateY(-100%);
}

.headroom--pinned {
  transform: translateY(0%);
}

header {
  height: 7rem;
  padding: 2.5rem 0;
  background-color: var(--blue);
  color: var(--white);
  overflow: hidden;
  align-items: flex-start;
  transition: height 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none !important;
}
header.drop:hover {
  height: 18rem;
  max-height: auto !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: height 0.3s ease 0.3s, box-shadow 0.3s ease 0.3s;
}
header .header_logo {
  grid-column: 2/4;
  pointer-events: auto !important;
}
header .header_logo svg {
  width: 100%;
  height: 100%;
  min-width: 115px;
  min-height: 24px;
  max-width: 150px;
  max-height: 30px;
}
header .nav {
  grid-column: 10/17;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  padding-top: 0.5rem;
  padding-right: 5.5rem;
  pointer-events: auto;
}
header .nav a {
  transition: color 0.3s ease;
}
header .nav a:hover {
  color: var(--accent);
}
header .nav .has_sub {
  cursor: default;
}
header .nav .main_nav_item {
  margin-bottom: 4rem !important;
  width: 8rem;
}
header .nav .main_nav_item.has_sub:first-child {
  margin-bottom: 4rem !important;
  width: 9rem;
}
header .nav .main_nav_item:last-child {
  width: auto;
}
header .nav .sub_menu {
  margin-top: 3rem;
}
header .nav .sub_menu li {
  text-align: left;
  margin-bottom: 15px;
}
header .nav .sub_menu .fs_sm a:not(.cards_filter),
header .nav .sub_menu .fs_s a:not(.cards_filter),
header .nav .sub_menu .fs_m a:not(.cards_filter),
header .nav .sub_menu .fs_l a:not(.cards_filter),
header .nav .sub_menu .fs_xl a:not(.cards_filter) {
  text-decoration: unset;
  transition: background-color 0.3s ease;
}
header .nav .sub_menu .fs_sm a:not(.cards_filter):hover,
header .nav .sub_menu .fs_s a:not(.cards_filter):hover,
header .nav .sub_menu .fs_m a:not(.cards_filter):hover,
header .nav .sub_menu .fs_l a:not(.cards_filter):hover,
header .nav .sub_menu .fs_xl a:not(.cards_filter):hover {
  color: var(--accent);
}

@media screen and (max-width: 1000px) {
  header {
    height: 5rem;
    padding: 2rem 0;
    z-index: 1000;
  }
  .nav {
    display: none !important;
  }
  .burger_menu {
    pointer-events: auto !important;
    display: inline-block;
    position: fixed;
    z-index: 1000;
    right: 7%;
    top: 2rem;
    height: 1rem;
    width: 1.5rem;
  }
  .burger_menu svg {
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
  }
}
footer {
  margin-top: 40px;
  padding: 40px 0;
  background-color: var(--blue) !important;
  color: var(--white) !important;
}
footer .fs_sm a:not(.cards_filter),
footer .fs_s a:not(.cards_filter),
footer .fs_m a:not(.cards_filter),
footer .fs_l a:not(.cards_filter),
footer .fs_xl a:not(.cards_filter) {
  text-decoration: none;
  transition: background-color 0.3s ease;
}
footer .fs_sm a:not(.cards_filter):hover,
footer .fs_s a:not(.cards_filter):hover,
footer .fs_m a:not(.cards_filter):hover,
footer .fs_l a:not(.cards_filter):hover,
footer .fs_xl a:not(.cards_filter):hover {
  color: unset;
  opacity: 0.5;
}

.footer_logo {
  grid-column: 2/5;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer_logo a {
  width: 100%;
}
.footer_logo a svg {
  width: 100%;
  height: 100%;
}

.footer_text {
  grid-column: 2/7;
  grid-row: 2;
}
.footer_text p {
  font-size: 13px;
}

.footer-socials {
  grid-column: 14/-1;
  display: flex;
  column-gap: 12px;
}
.footer-socials svg {
  width: 30px;
  height: 30px;
}
.footer-socials svg path {
  fill: var(--white);
}
.footer-socials a {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-socials a:hover {
  opacity: 0.5;
  transform: scale(0.95);
}

.footer_menu:nth-of-type(4n + 1) {
  grid-column: 8/10;
}

.footer_menu:nth-of-type(4n + 2) {
  grid-column: 10/12;
}

.footer_menu:nth-of-type(4n + 3) {
  grid-column: 12/14;
}

.footer_menu:nth-of-type(4n + 4) {
  grid-column: 14/16;
}

.footer_menu {
  margin-bottom: 100px;
}
.footer_menu li {
  padding-bottom: 10px;
  font-size: 13px;
}

@media screen and (max-width: 1000px) {
  .footer_logo {
    grid-column: 2/16;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 4rem;
  }
  .footer_logo a {
    width: 100%;
  }
  .footer_logo a svg {
    width: 100%;
    height: 100%;
  }
  .footer_text {
    grid-column: 2/16;
    grid-row: 4;
  }
  .footer_text p {
    font-size: 9px;
  }
  .footer_menu:nth-of-type(4n + 1) {
    grid-column: 2/8;
    grid-row: 2;
  }
  .footer_menu:nth-of-type(4n + 2) {
    grid-column: 9/16;
    grid-row: 2;
  }
  .footer_menu:nth-of-type(4n + 3) {
    grid-column: 2/8;
    grid-row: 3;
  }
  .footer_menu:nth-of-type(4n + 4) {
    grid-column: 9/16;
    grid-row: 3;
  }
  .footer-socials {
    grid-column: 2/10;
    display: flex;
    column-gap: 12px;
    padding-top: 20px;
  }
  .footer-socials svg {
    width: 20px;
    height: 20px;
  }
}
.error {
  height: 80vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  padding: 20px;
}

.hero_mobile_heading_Wide,
.hero_mobile_heading_Narrow {
  display: none;
}

.hero_block.flex {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 6rem;
}
.hero_block.flex .hero_block_toprow {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}
.hero_block.flex .hero_block_toprow.Spaced .hero_image {
  padding-top: 10rem;
}
.hero_block.flex .hero_block_toprow.Spaced .hero_block_toprow_content {
  padding-top: 4rem;
}
.hero_block.flex .hero_block_toprow .hero_image {
  width: 55%;
  min-width: 50rem;
}
.hero_block.flex .hero_block_toprow .hero_image .aspectholder {
  width: 100%;
  height: 100%;
}
.hero_block.flex .hero_block_toprow .hero_image .aspectholder * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero_block.flex .hero_block_toprow .hero_block_toprow_content {
  display: flex;
  flex-direction: column;
  width: 40%;
  height: 100%;
  margin-left: -5rem;
}
.hero_block.flex .hero_block_toprow .hero_block_toprow_content .pill_btn_container {
  padding-top: 2rem;
}
.hero_block.flex .hero_block_bottomrow {
  display: flex;
  flex-direction: column;
  margin-left: calc(55% - 5rem);
  width: 40%;
  padding: 100px 0 150px 0;
}
.hero_block.flex .hero_block_bottomrow .pill_btn_container {
  padding: 2rem 0;
}

.hero_block.Spaced .hero_image_Wide.Left,
.hero_block.Spaced .hero_image_Wide.Right {
  padding-top: 100px;
}
.hero_block.Spaced .aspectholder {
  height: 50% !important;
  max-height: 550px !important;
  margin-top: 15%;
}
.hero_block.Spaced .hero_text_Wide,
.hero_block.Spaced .hero_text_Narrow {
  justify-content: flex-start;
  padding-top: 200px !important;
  padding-bottom: 100px;
  z-index: 1;
}
.hero_block.Spaced .hero_text_Wide h4,
.hero_block.Spaced .hero_text_Narrow h4 {
  padding-bottom: 40%;
}

.hero_image_Wide.Left .heroswiper,
.hero_image_Wide.Right .heroswiper,
.hero_image_Wide.Spaced .heroswiper,
.hero_image_Narrow .heroswiper {
  z-index: -1;
  width: 100%;
  height: 100%;
}
.hero_image_Wide.Left .swiper-wrapper,
.hero_image_Wide.Right .swiper-wrapper,
.hero_image_Wide.Spaced .swiper-wrapper,
.hero_image_Narrow .swiper-wrapper {
  height: 100%;
  width: 100%;
}
.hero_image_Wide.Left .swiper-slide,
.hero_image_Wide.Right .swiper-slide,
.hero_image_Wide.Spaced .swiper-slide,
.hero_image_Narrow .swiper-slide {
  width: 100%;
  height: 100%;
}
.hero_image_Wide.Left .swiper-slide img,
.hero_image_Wide.Right .swiper-slide img,
.hero_image_Wide.Spaced .swiper-slide img,
.hero_image_Narrow .swiper-slide img {
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_image_Wide.Left {
  grid-column: 1/10;
  grid-row: 1;
  height: 100%;
}

.hero_image_Wide.Right {
  grid-column: 6/17;
  grid-row: 1;
}

.hero_image_Wide .aspectholder {
  width: 100%;
  aspect-ratio: 1/1;
  height: 100%;
}
.hero_image_Wide .aspectholder * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_image_Wide.Spaced .aspectholder {
  padding-top: 13rem;
  width: 100%;
  aspect-ratio: 4/3;
}
.hero_image_Wide.Spaced .aspectholder * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spaced_content {
  grid-column: 10/16;
  padding: 80px 0 130px 0;
  margin-left: -15%;
}
.spaced_content div,
.spaced_content h4,
.spaced_content p {
  padding: 20px 0;
}

.hero_text_Wide.Left {
  grid-column: 10/16;
  margin-left: -17.5%;
  grid-row: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.hero_text_Wide.Right {
  grid-column: 1/9;
  grid-row: 1;
  margin-left: 15%;
  z-index: 1;
}

.hero_text_Wide {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0;
  z-index: 1;
}
.hero_text_Wide div,
.hero_text_Wide h4,
.hero_text_Wide p {
  padding: 20px 0;
}
.hero_text_Wide p.Spaced {
  margin-top: 20rem;
}

.hero_image_Narrow {
  grid-column: 1/8;
  padding-top: 10rem;
}
.hero_image_Narrow .aspectholder {
  width: 100%;
  height: 100%;
}
.hero_image_Narrow .aspectholder * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_text_Narrow {
  height: 100%;
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  grid-column: 10/15;
  margin-left: -15%;
  padding-bottom: 15rem;
}
.hero_text_Narrow div,
.hero_text_Narrow h4,
.hero_text_Narrow p {
  padding: 20px 0;
}

.image_text_block.type_svg {
  height: auto;
  padding: 10rem 0;
}

.otseo_icon {
  position: absolute;
  z-index: 1;
}
.otseo_icon.Left {
  left: 37.6%;
  bottom: -20%;
}
.otseo_icon.Right {
  right: 38%;
  bottom: 0%;
}

.image_text_image.Right {
  grid-column: 10/15;
  grid-row: 1;
}
.image_text_image.Right.Wide {
  grid-column: 11/15;
}

.image_text_image.Left {
  grid-column: 3/8;
  grid-row: 1;
}
.image_text_image.Left.Wide {
  grid-column: 3/7;
}

.image_text_image_mobile,
.image_text_svg_mobile {
  display: none;
}

.image_text_image,
.image_text_image_mobile {
  height: 100%;
}
.image_text_image .aspectholder,
.image_text_image_mobile .aspectholder {
  width: 100%;
  height: 100%;
}
.image_text_image .aspectholder *,
.image_text_image_mobile .aspectholder * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image_text_image .heroswiper,
.image_text_image_mobile .heroswiper {
  z-index: -1;
  width: 100%;
  height: 100%;
}
.image_text_image .swiper-wrapper,
.image_text_image_mobile .swiper-wrapper {
  height: 100%;
  width: 100%;
}
.image_text_image .swiper-slide,
.image_text_image_mobile .swiper-slide {
  width: 100%;
  height: 100%;
}
.image_text_image .swiper-slide img,
.image_text_image_mobile .swiper-slide img {
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image_text_image_mobile .aspectholder * {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.image_text_text.Right {
  grid-column: 3/8;
  grid-row: 1;
}
.image_text_text.Right.Wide {
  grid-column: 3/9;
}

.image_text_text.Left {
  grid-column: 10/15;
  grid-row: 1;
}
.image_text_text.Left.Wide {
  grid-column: 9/15;
}

.image_text_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.image_text_text div {
  padding: 20px 0;
}

.image_text_list li {
  padding: 10px 0;
  border-top: 1px solid var(--font);
}
.image_text_list li svg {
  position: absolute;
  width: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image_text_list li:hover svg {
  opacity: 1;
  transition: opacity 0.3s ease 0.15s;
}
.image_text_list li:hover a {
  padding: 10px 0 10px 30px;
}
.image_text_list li a {
  transition: padding 0.3s ease;
}

.image_text_list li:last-child {
  border-bottom: 1px solid var(--font);
}

.top_line {
  border-top: 1px solid var(--font);
  grid-column: 2/16;
  padding-bottom: 60px;
  height: 0;
}

.feature_0 {
  grid-column: 2/10;
}
.feature_0 .feature_one_copy {
  padding-bottom: 40px;
}
.feature_0 .feature_one_copy h4 {
  padding-bottom: 40px;
}
.feature_0 .feature_one_cards {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 60px;
}
.feature_0 .feature_one_cards .feauture_one_card {
  width: 48%;
  margin: 0;
}
.feature_0 .feature_one_cards .feauture_one_card .aspectholder {
  width: 100%;
  aspect-ratio: 10/12;
  margin-bottom: 20px;
  transition: filter 0.3s ease;
}
.feature_0 .feature_one_cards .feauture_one_card .aspectholder * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature_1 {
  grid-column: 11/16;
}
.feature_1 .feature_one_copy {
  padding-bottom: 40px;
}
.feature_1 .feature_one_cards {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 60px;
}
.feature_1 .feature_one_cards .feauture_one_card {
  width: 100%;
  margin: 0;
}
.feature_1 .feature_one_cards .feauture_one_card .aspectholder {
  width: 100%;
  aspect-ratio: 10/12;
  margin-bottom: 20px;
}
.feature_1 .feature_one_cards .feauture_one_card .aspectholder * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info_block {
  color: var(--font);
}
.info_block .info_ctas {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
}
.info_block .info_ctas .pill_btn_container:first-child {
  margin-right: 40px;
}

.info_top_line {
  grid-column: 9/16;
  padding-bottom: 30px;
  border-top: 1px solid var(--accent);
}

.info_header {
  grid-column: 5/8;
}
.info_header h4 {
  margin-bottom: 30px;
}

.info_header_link {
  padding-top: 30px;
  transition: opacity 0.3s ease;
  border-bottom: 1px solid var(--font);
}
.info_header_link svg {
  margin-left: 10px;
}
.info_header_link:hover {
  opacity: 0.6;
}

.info_content {
  grid-column: 9/15;
}
.info_content.Table {
  grid-column: 9/16;
}
.info_content div:last-child,
.info_content ul:last-child {
  padding-bottom: 0;
}

.info_content_text,
.info_content_text_list {
  width: 90%;
  padding-bottom: 30px;
}

.list_arrow {
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.list_arrow svg {
  margin-right: 20px;
  margin-top: 7px;
  color: var(--accent);
  min-width: 30px !important;
}

.list_bullet {
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.list_bullet span {
  margin-left: 10px;
}

.list_lined {
  padding: 10px 0;
  border-top: 1px solid var(--accent);
}

.list_lined:last-child {
  border-bottom: 1px solid var(--accent);
}

.list_icon .aspectholder {
  padding-bottom: 20px;
  max-width: 130px;
}
.list_icon .aspectholder * {
  width: 100%;
  object-fit: cover;
}

.info_image .aspectholder {
  width: 80%;
}
.info_image .aspectholder * {
  width: 100%;
  object-fit: cover;
}

input[name=Date] {
  display: inline-block;
  position: relative;
  min-height: 1.5rem;
}

input[name=Date]:after {
  color: var(--font);
  content: attr(placeholder) !important;
  font-size: 14px;
}

input[name=Date]:focus:after {
  content: "" !important;
}

input[name=Date]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

.info_form {
  grid-column: 9/14;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.info_form ::placeholder {
  color: var(--font);
}
.info_form ::selection {
  background: transparent;
}
.info_form ::-moz-selection {
  background: transparent;
}
.info_form input,
.info_form select,
.info_form textarea {
  position: relative;
  border: none;
  border-bottom: 1px solid var(--accent);
  padding: 5px 0;
  margin-bottom: 30px;
  background: transparent;
  color: var(--font);
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.info_form input:focus,
.info_form select:focus,
.info_form textarea:focus {
  outline-offset: 0px;
  outline: none;
}
.info_form select,
.info_form input[name=Date] {
  cursor: pointer;
}
.info_form textarea {
  resize: none;
}
.info_form input[name="First Name"],
.info_form input[name="Last Name"],
.info_form input[name=Date],
.info_form select[name=Time] {
  width: 48%;
}
.info_form ::-webkit-calendar-picker-indicator {
  filter: brightness(0) saturate(100%) invert(10%) sepia(95%) saturate(2712%) hue-rotate(223deg) brightness(98%) contrast(87%);
}
.info_form .select_wrapper {
  position: relative;
  width: 100%;
  height: auto;
}
.info_form .select_wrapper::before {
  content: ">";
  position: absolute;
  transform: rotate(90deg);
  top: 5px;
  right: 5px;
  font-size: 12px;
  color: var(--accent);
  z-index: 100;
}
.info_form .select_wrapper.time,
.info_form .select_wrapper.date {
  width: 48%;
}
.info_form .select_wrapper.time select,
.info_form .select_wrapper.time input,
.info_form .select_wrapper.date select,
.info_form .select_wrapper.date input {
  width: 100%;
}

.info_content_acc {
  padding: 20px 0;
  border-top: 1px solid var(--accent);
}
.info_content_acc summary {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.info_content_acc ::marker {
  font-size: 0px;
  display: none;
}
.info_content_acc:last-child {
  border-bottom: 1px solid var(--accent);
}
.info_content_acc p {
  padding: 20px 0 40px 0;
  width: 100%;
}
.info_content_acc a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
  margin-bottom: 20px;
}
.info_content_acc a:hover {
  opacity: 0.4;
}

.plus-minus-toggle {
  position: relative;
}
.plus-minus-toggle:before, .plus-minus-toggle:after {
  background: var(--font);
  content: "";
  height: 1px;
  left: -21px;
  position: absolute;
  top: 0;
  width: 21px;
  transition: transform 0.2s ease;
}
.plus-minus-toggle:after {
  transform-origin: center;
}
.plus-minus-toggle.collapsed:after {
  transform: rotate(90deg);
}
.plus-minus-toggle.collapsed:before {
  transform: rotate(180deg);
}

.table_item {
  min-height: 35px;
}
.table_item .table_item_left {
  grid-column: 1/5;
}
.table_item .table_item_right {
  grid-column: span 2;
  text-align: right;
}
.table_item .table_item_righter {
  grid-column: span 1;
  text-align: right;
}

.cards_block_topbar_mobile {
  display: none;
}

.cards_block_heading {
  grid-column: 3/15;
  padding-bottom: 40px;
}

.cards_block_topbar {
  grid-column: 3/15;
  border-top: 1px solid var(--font);
  padding: 30px 0 100px 0;
}
.cards_block_topbar ul {
  display: flex;
  flex-direction: row;
}
.cards_block_topbar ul li {
  margin-right: 100px;
}
.cards_block_topbar ul .cards_filter:hover, .cards_block_topbar ul .cards_filter.active {
  border-bottom: 1px solid var(--font);
}
.cards_block_topbar ul .cards_filter svg {
  height: 12px;
  width: 12px;
}

.cards_block_cards {
  grid-column: 3/15;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  column-gap: 20px;
  row-gap: 100px;
  width: 100%;
  padding-bottom: 200px;
}
.cards_block_cards .card {
  grid-column: span 4;
  width: 100%;
}
.cards_block_cards .card .aspectholder {
  width: 100%;
  aspect-ratio: 10/12;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}
.cards_block_cards .card .aspectholder:hover {
  filter: grayscale(0);
}
.cards_block_cards .card .aspectholder * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards_block_cards .card .card_copy {
  padding: 40px 0 20px 0;
}
.cards_block_cards .card .card_copy h4 {
  padding-bottom: 20px;
}
.cards_block_cards .card .card_copy h4 svg {
  height: 23px;
  width: 23px;
  margin-right: 5px;
}
.cards_block_cards .card .book_btn {
  border-bottom: 1px solid var(--font);
}
.cards_block_cards .card .book_btn:hover {
  border-bottom: none;
}
.cards_block_cards .card .book_btn svg {
  height: 12px;
  width: 12px;
}
.cards_block_cards .card:nth-of-type(8n + 1),
.cards_block_cards .card:nth-of-type(8n + 3),
.cards_block_cards .card:nth-of-type(8n + 6) {
  grid-column: 1/5;
}
.cards_block_cards .card:nth-of-type(8n + 2),
.cards_block_cards .card:nth-of-type(8n + 4),
.cards_block_cards .card:nth-of-type(8n + 7) {
  grid-column: 5/9;
}
.cards_block_cards .card:nth-of-type(8n + 5),
.cards_block_cards .card:nth-of-type(8n + 8) {
  grid-column: 9/13;
}

.cards_block.Small .cards_block_topbar {
  display: none;
}
.cards_block.Small .cards_block_heading {
  grid-column: 5/9;
}
.cards_block.Small .cards_block_cards {
  grid-column: 9/15;
  grid-template-columns: repeat(8, 1fr);
}
.cards_block.Small .cards_block_cards .card {
  grid-column: span 4 !important;
}
.cards_block.Small .cards_block_cards .card_copy {
  padding: 20px 0 10px 0;
}
.cards_block.Small .cards_block_cards .card_copy .card_heading.fs_l {
  font-size: 22px;
  font-family: "Whyte Book";
  line-height: 1.2;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 5px;
}
.cards_block.Small .cards_block_cards .card_copy h4 svg {
  height: 18px;
  width: 18px;
  margin-right: 5px;
}

@media screen and (max-width: 1000px) {
  .cards_block.Small .cards_block_heading {
    grid-column: 2/-2;
  }
  .cards_block.Small .cards_block_topbar_mobile {
    display: none;
  }
  .cards_block.Small .cards_block_cards {
    grid-column: 2/-2;
    grid-template-columns: repeat(12, 1fr);
  }
  .cards_block.Small .cards_block_cards .card {
    grid-column: span 12 !important;
  }
}
.faq_content_acc {
  grid-column: 5/16;
  color: var(--font);
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.faq_content_acc ::marker {
  font-size: 0px;
}
.faq_content_acc summary {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--accent);
  padding: 30px 0;
  cursor: pointer;
}
.faq_content_acc summary span {
  width: 40%;
}
.faq_content_acc[open] {
  height: fit-content;
}
.faq_content_acc[open] p {
  position: relative;
  width: 50%;
  left: 45%;
  top: -60px;
}

@media screen and (min-width: 1000px) {
  summary:hover .plus-minus-toggle.collapsed:before {
    transform: rotate(150deg);
  }
  summary:hover .plus-minus-toggle.collapsed:after {
    transform: rotate(60deg);
  }
}
.faq_content_acc:last-child {
  border-bottom: 1px solid var(--accent);
}

.privacy_acc_wrapper {
  visibility: hidden;
  grid-column: 1/19;
  grid-row: 3;
}

.privacy_headings {
  grid-column: 3/7;
  position: relative;
  height: 100%;
  padding-top: 40px;
  border-top: 1px solid var(--font);
}
.privacy_headings ul {
  position: sticky;
  top: 140px;
}
.privacy_headings .privacy__heading {
  padding-bottom: 10px;
  transition: margin 0.3s ease;
  cursor: pointer;
}
.privacy_headings .privacy__heading.active, .privacy_headings .privacy__heading:hover {
  font-weight: 700;
  margin: 0 0 0 2rem;
}
.privacy_headings .privacy__heading.active:before, .privacy_headings .privacy__heading:hover:before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.privacy_text_wrapper {
  margin-bottom: 40px;
}

.privacy_text {
  grid-column: 9/16;
  padding-top: 20px;
  border-top: 1px solid var(--font);
}
.privacy_text p {
  margin-bottom: 20px;
  transition: opacity 0.3s ease, visibility 0.3s ease, display 0.3s ease 0.3s;
}
.privacy_text li {
  margin-bottom: 10px;
}
.privacy_text li:before {
  content: "•";
  position: absolute;
  margin-right: 10px;
}
.privacy_text li p {
  margin-bottom: auto;
  padding-left: 40px;
}

.service_hero {
  height: auto;
  padding-top: 15rem;
  background-color: var(--bg);
  color: var(--white);
}
.service_hero .aspectholder {
  grid-column: 1/7;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service_hero .aspectholder * {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.service_hero h2 {
  grid-column: 9/13;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service_content_block {
  color: var(--font);
  margin-top: 100px;
  grid-column: 1/17;
}

.service_content_block:last-child {
  margin-bottom: 120px;
}

.service_content_head {
  grid-column: 5/8;
  padding-top: 2rem;
}

.service_content_body {
  grid-column: 9/16;
  padding-top: 2rem;
  border-top: 1px solid var(--accent);
}

.service_page .pill_btn_container {
  margin: 60px 30px 160px 0 !important;
  grid-column: 9/16;
}
.service_page .pill_btn_container .pill_btn:hover {
  color: var(--font);
}
.service_page .info_block .info_ctas {
  margin-top: 0;
}
.service_page .info_content_text,
.service_page .info_content_text_list {
  padding-bottom: 0;
}
.service_page .info_content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

@media screen and (max-width: 1000px) {
  .service_page .pill_btn_container {
    margin: 60px 20px 160px 0 !important;
  }
}
.fs_sm a:not(.cards_filter),
.fs_s a:not(.cards_filter),
.fs_m a:not(.cards_filter),
.fs_l a:not(.cards_filter),
.fs_xl a:not(.cards_filter) {
  text-decoration: underline;
  transition: background-color 0.3s ease;
}
.fs_sm a:not(.cards_filter):hover,
.fs_s a:not(.cards_filter):hover,
.fs_m a:not(.cards_filter):hover,
.fs_l a:not(.cards_filter):hover,
.fs_xl a:not(.cards_filter):hover {
  color: var(--accent);
}

.mapboxgl-control-container {
  display: none !important;
}

.mapboxgl-marker {
  display: none !important;
}

.mapboxgl-marker.marker {
  display: block !important;
  width: 20px;
  border-radius: 100px;
  height: 20px;
  background-color: var(--font);
  border: 1px solid white;
  z-index: 1000;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 5px 0 rgba(70, 70, 70, 0.5);
}
.mapboxgl-marker.marker:hover {
  background-color: var(--font);
}
