@import 'variables.css';
#is-mobile {
  display: none;
}
html {
  scroll-behavior: smooth;
}
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;
}
.mobile-only {
  display: none;
}
.not-mobile {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 0.8;
  margin: 0 0 0.125em;
  text-wrap: pretty;
}
h1.bottom-border,
h2.bottom-border,
h3.bottom-border,
h4.bottom-border,
h5.bottom-border,
h6.bottom-border {
  border-bottom: 1px solid #34425622;
  padding-bottom: 0.375em;
}
h1 {
  font-size: 3.5em;
}
h2 {
  font-size: 3em;
}
h3 {
  font-size: 2.5em;
  position: relative;
}
h4 {
  font-size: 2em;
}
h5 {
  font-family: var(--font-family);
  font-size: 1.5em;
  letter-spacing: 0;
}
h6 {
  font-family: var(--font-family);
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: 0;
}
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
  margin-top: 40px;
}
p,
ul,
ol {
  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 + p,
ul + p,
ol + p,
p + ul,
p + ol,
ul + ul,
ul + ol,
ol + ul,
ol + ol {
  margin-top: 1em;
}
ul,
ol {
  padding-left: 20px;
}
li {
  padding: 5px 0;
}
.tahoe-button {
  background-color: var(--bright-blue);
  border-radius: 10px;
  border: none;
  color: var(--white);
  display: inline-block;
  font-family: var(--font-family);
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.1;
  padding: 15px 30px;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  width: fit-content;
}
.tahoe-button:hover {
  background-color: var(--bright-blue);
}
.tahoe-button--white {
  background-color: var(--white);
  color: var(--blue);
}
.tahoe-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--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;
}
#container {
  background-color: var(--grey-light);
}
.top-bar {
  background-color: var(--brown);
  color: var(--white);
  font-size: 0.875em;
  padding: 5px 0;
  height: 40px;
  text-align: center;
}
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) - 40px);
  --transition-delay: 0s;
  --logo-width: 240px;
  background-color: var(--white);
  color: #000;
  position: relative;
  transition: var(--scroll-transition);
  transition-delay: 0s;
  width: 100%;
  z-index: 20;
}
header#header .inset {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 40px;
  height: calc(var(--header-height));
  justify-content: space-between;
  padding: 0 20px;
}
header#header .inset .branding {
  display: block;
  z-index: 20;
}
header#header .inset .branding a {
  display: block;
}
header#header .inset .branding a img {
  aspect-ratio: 341/85;
  display: block;
  height: auto;
  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;
  z-index: 10;
}
header#header .inset nav:before {
  content: '';
  display: block;
  height: 1px;
  position: absolute;
  top: 50%;
  width: 100%;
}
header#header .inset nav ul {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-family: var(--font-family);
  font-size: 1.25em;
  font-weight: 600;
  justify-content: flex-end;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
header#header .inset nav ul li {
  padding: 0;
  position: relative;
}
header#header .inset nav ul li a {
  color: var(--brown);
  display: block;
  font-size: 1em;
  padding: 10px 20px;
  text-decoration: none;
  transition: all var(--scroll-transition);
}
header#header .inset nav ul li a:hover {
  color: var(--blue);
}
header#header .inset nav ul li a:last-child {
  background-color: var(--brown-light);
  color: var(--white);
  transition: all var(--transition-duration) ease-in-out;
}
header#header .inset nav ul li a:last-child:hover {
  background-color: var(--brown);
}
header#header .inset nav ul li ul {
  background: var(--white);
  border-radius: 10px;
  display: none;
  list-style: none;
  margin: 0;
  min-width: 240px;
  opacity: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  animation: dropdown-fade-in 0.2s forwards;
  filter: var(--drop-shadow-filter);
}
header#header .inset nav ul li ul li {
  line-height: 1.3;
}
header#header .inset nav ul li:hover ul {
  display: block;
}
@keyframes dropdown-fade-in {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    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 .inset .account {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}
header#header .inset .account a {
  align-items: flex-start;
  color: var(--black);
  display: flex;
  flex-direction: row;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
}
header#header .inset .account a:hover {
  color: var(--blue);
}
header#header .inset .account a:before {
  font-family: var(--font-awesome);
  display: block;
  font-weight: 700;
  height: 20px;
  margin-right: 5px;
  position: relative;
  width: 20px;
}
header#header .inset .account a.cart:before {
  content: '\f07a';
}
header#header .inset .account a.portal:before {
  content: '\f2bd';
}
header#header .inset .account a.phone:before {
  content: '\f095';
}
header#header .inset .account.mobile-only {
  display: none;
}
body.scrolling header#header * {
  --header-height: 60px;
}
section.search {
  background-color: var(--dark-blue);
  padding: 20px 0;
}
section.search .inset {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0;
}
section.search .inset form {
  width: 100%;
  max-width: 600px;
  position: relative;
}
section.search .inset form input[type="search"] {
  background-color: var(--white);
  border: none;
  border-radius: 30px;
  box-sizing: border-box;
  color: var(--black);
  font-size: 1em;
  padding: 15px 60px 15px 20px;
  width: 100%;
}
section.search .inset form input[type="search"]::placeholder {
  color: var(--grey);
}
section.search .inset form input[type="search"]:focus {
  outline: none;
  box-shadow: 0 0 5px var(--blue);
}
section.search .inset form input[type="submit"] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  height: 100%;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
}
section.search .inset form input[type="submit"] svg {
  fill: var(--grey);
  height: 20px;
  width: 20px;
  transition: all 0.1s ease-in-out;
}
section.search .inset form input[type="submit"]:hover svg {
  fill: var(--blue);
}
section.hero {
  color: var(--grey);
  position: relative;
}
section.hero .inset {
  min-height: 600px;
  padding: 0;
}
section.hero .slide {
  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;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
section.hero .slide .inset {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 0;
  width: 100%;
}
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 .copy {
  animation: slide-activate_copy 1s forwards;
}
section.hero .slide--deactivate {
  --copy-translate: 0;
}
@keyframes slide-activate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-activate_copy {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
section.hero .copy {
  align-items: center;
  color: #FFF;
  display: flex;
  filter: drop-shadow(0 2px 4px #00000080) drop-shadow(0 4px 8px #00000080) drop-shadow(0 10px 20px #00000080);
  flex-direction: column;
  gap: 0;
  height: 100%;
  justify-content: center;
  left: 0;
  padding: 40px 30px 50px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 50%;
  z-index: 3;
}
section.hero .copy h2 {
  color: var(--white);
  font-size: 2.5em;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.25em;
  text-wrap: balance;
}
section.hero .copy p {
  font-size: 1.5em;
  line-height: 1.4;
  margin-bottom: 20px;
  text-wrap: balance;
}
section.hero .copy p strong {
  font-size: 1.4em;
}
section.hero .copy .tahoe-button {
  background-color: var(--white);
  color: var(--blue);
}
section.hero .copy .tahoe-button:hover {
  background-color: var(--white);
  color: var(--bright-blue);
}
section.hero:after {
  background: linear-gradient(to top, #000000CC 0%, transparent 100%);
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  height: 50%;
  width: 100%;
  z-index: 2;
}
section.hero .controls {
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 10000;
}
section.page-content {
  background-color: var(--white);
  padding: 0;
}
section.second {
  background-color: var(--grey);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}
section.second img.tree {
  aspect-ratio: 65/100;
  display: block;
  height: calc(160%);
  opacity: 0.31;
  pointer-events: none;
  position: absolute;
  right: 20px;
  bottom: 0;
  width: auto;
}
section .inset {
  padding: 60px 20px;
}
section .inset.watched {
  opacity: 0;
}
section .inset.watched.seen {
  animation: seen-fade-in 500ms forwards ease-in-out;
}
section.default-bkgd {
  background-color: transparent;
}
section.white-bkgd {
  background-color: transparent;
}
section.white-bkgd .inset .heading-group:after {
  background-color: var(--white);
}
section.white-bkgd .inset .heading-group:after h2,
section.white-bkgd .inset .heading-group:after h3,
section.white-bkgd .inset .heading-group:after h4,
section.white-bkgd .inset .heading-group:after p {
  color: var(--dark-blue);
}
section.white-bkgd div.boxes .box {
  background-color: var(--palest-blue);
}
section.white-bkgd div.boxes .box__image--default i.icon,
section.white-bkgd div.boxes .box__image--icon i.icon,
section.white-bkgd div.boxes .box__image--icon-left i.icon {
  background-color: var(--white);
}
section.white-bkgd div.tabs {
  filter: drop-shadow(0 10px 20px #00000022);
}
section.light-bkgd {
  background-color: rgba(195, 206, 215, 0.5);
}
section.light-bkgd .inset .heading-group:after {
  background-color: transparent;
}
section.light-bkgd .inset .heading-group:after h2,
section.light-bkgd .inset .heading-group:after h3,
section.light-bkgd .inset .heading-group:after h4,
section.light-bkgd .inset .heading-group:after p {
  color: var(--dark-blue);
}
section.light-bkgd div.cards .card {
  background-color: var(--white);
}
section.tan-bkgd {
  background-color: var(--tan-translucent);
}
section.tan-bkgd .inset .heading-group h2,
section.tan-bkgd .inset .heading-group h3,
section.tan-bkgd .inset .heading-group h4 {
  color: var(--black);
}
section.tan-bkgd .inset .heading-group p {
  color: var(--black);
}
section.tan-bkgd .inset .heading-group:after {
  background-color: transparent;
  border-bottom: none;
}
section.tan-bkgd .inset h2,
section.tan-bkgd .inset h3,
section.tan-bkgd .inset h4 {
  color: var(--black);
}
section.tan-bkgd .inset p {
  color: var(--dark-blue);
}
section.tan-bkgd div.cards .card {
  background-color: var(--white);
  color: var(--black);
}
section.tan-bkgd div.cards .card h2,
section.tan-bkgd div.cards .card h3,
section.tan-bkgd div.cards .card h4 {
  color: var(--dark-blue);
}
section.tan-bkgd div.cards .card p {
  color: var(--black);
}
section.tan-bkgd div.tabs .tab {
  background-color: var(--white);
  color: var(--black);
}
section.tan-bkgd div.tabs .tab h3 {
  color: var(--dark-blue);
}
section.tan-bkgd div.tabs .tab p {
  color: var(--black);
}
section.dark-bkgd {
  background-color: var(--dark-blue);
}
section.dark-bkgd .inset .heading-group h2,
section.dark-bkgd .inset .heading-group h3,
section.dark-bkgd .inset .heading-group h4 {
  color: var(--white);
}
section.dark-bkgd .inset .heading-group p {
  color: var(--pale-blue);
}
section.dark-bkgd .inset .heading-group:after {
  background-color: var(--dark-blue);
  border-bottom: 40px solid var(--tan);
}
section.dark-bkgd .inset h2,
section.dark-bkgd .inset h3,
section.dark-bkgd .inset h4 {
  color: var(--white);
}
section.dark-bkgd .inset p {
  color: var(--pale-blue);
}
section.dark-bkgd div.cards .card {
  background-color: var(--white);
  color: var(--black);
}
section.dark-bkgd div.cards .card h2,
section.dark-bkgd div.cards .card h3,
section.dark-bkgd div.cards .card h4 {
  color: var(--dark-blue);
}
section.dark-bkgd div.cards .card p {
  color: var(--black);
}
section.dark-bkgd div.boxes .box {
  background-color: var(--white);
  color: var(--black);
}
section.dark-bkgd div.boxes .box h2,
section.dark-bkgd div.boxes .box h3,
section.dark-bkgd div.boxes .box h4 {
  color: var(--dark-blue);
}
section.dark-bkgd div.boxes .box p {
  color: var(--black);
}
section.dark-bkgd div.tabs .tab {
  background-color: var(--white);
  color: var(--black);
}
section.dark-bkgd div.tabs .tab h3 {
  color: var(--dark-blue);
}
section.dark-bkgd div.tabs .tab p {
  color: var(--black);
}
footer#footer {
  background-color: var(--green);
  color: var(--white);
  position: relative;
  text-align: left;
  z-index: 10;
}
footer#footer .inset {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
  justify-content: space-between;
}
footer#footer .inset nav ul {
  display: flex;
  flex-direction: row;
  font-family: var(--font-family);
  font-size: 1.125em;
  font-weight: 600;
  gap: 40px;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer#footer .inset nav ul li {
  margin-bottom: 0;
}
footer#footer .inset nav ul li a {
  color: var(--white);
  display: block;
  font-size: 1em;
  padding: 5px 0;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
footer#footer .inset nav ul li a:hover {
  color: var(--bright-blue);
}
@media (max-width: 800px) {
  footer#footer .inset nav {
    flex-direction: column;
    gap: 40px;
  }
}
footer#footer .inset .social-links {
  margin-left: 50px;
}
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(--white);
  height: 100%;
  width: 100%;
  transition: all 0.1s ease-in-out;
}
footer#footer .inset .social-links ul a:hover svg {
  fill: var(--bright-blue);
}
footer#footer .inset a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
footer#footer .inset a:hover {
  color: var(--bright-blue);
}
footer#footer .inset a img.home-logo {
  aspect-ratio: 330/100;
  height: 70px;
  position: relative;
  width: auto;
  display: block;
}
footer#footer .inset .columns {
  align-items: center;
  gap: 80px;
  justify-content: space-between;
}
footer#footer .inset .columns__column {
  gap: 0;
  width: auto;
}
footer#footer .inset .columns__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#footer .inset .columns__column ul li {
  margin: 0;
  padding: 0;
}
footer#footer .inset .columns__column:first-child,
footer#footer .inset .columns__column:last-child {
  width: 300px;
}
footer#footer .inset .logos {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: flex-end;
}
footer#footer .inset .logos img {
  height: 50px;
  width: auto;
  display: block;
}
footer#footer .inset ul.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#footer .inset ul.contact-info li {
  margin: 0 0 5px;
  padding: 0;
}
footer#footer .inset ul.contact-info li a {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
footer#footer .inset ul.contact-info li a:before {
  font-family: var(--font-awesome);
  display: block;
  font-weight: 700;
  height: 20px;
  margin-right: 20px;
  position: relative;
  width: 20px;
}
footer#footer .inset ul.contact-info li a.phone:before {
  content: '\f095';
}
footer#footer .inset ul.contact-info li a.email:before {
  content: '\f0e0';
}
footer#footer .inset ul.contact-info li a.address:before {
  content: '\f3c5';
}
footer#footer .inset .copyright {
  border-top: 1px solid #FFFFFF22;
  color: var(--grey);
  font-size: 0.9em;
  margin-top: 40px;
  padding-top: 40px;
  text-align: center;
  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));
}
footer#footer .copyright {
  background-color: var(--brown);
  color: var(--white);
  font-size: 0.875em;
  padding: 20px;
  text-align: center;
}
footer#footer .notice {
  background-color: var(--white);
  color: var(--black);
  font-size: 0.75em;
  padding: 0;
  text-align: center;
  text-wrap: balance;
}
footer#footer .notice .inset {
  display: block;
  max-width: calc(var(--max-width) - 100px);
  padding: 20px;
}
footer#footer .notice .inset strong {
  display: inline;
}
.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);
}
.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%;
}
@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;
  }
  .columns {
    flex-direction: column;
    gap: 10px;
  }
  .columns__column {
    order: 2;
    width: 100%;
  }
  .columns__column:nth-child(1),
  .columns__column:nth-child(2) {
    flex-basis: 100%;
  }
  .columns__column:has(img) {
    order: 1;
  }
  .columns__column .copy {
    margin-top: 0;
    padding-top: 0;
  }
  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;
    flex-direction: column;
    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 .inset .account {
    display: none;
  }
  header#header .inset .account.mobile-only {
    display: flex;
    font-size: 1.5em;
    justify-content: center;
  }
  header#header .inset .account.mobile-only a {
    pointer-events: all;
  }
  header#header .inset .account.mobile-only a:before {
    margin-right: 15px;
  }
  header#header .mobile-menu-button {
    --line-inset: 12px;
    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(--blue);
    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 {
    z-index: 1000;
  }
  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.search {
    padding: 20px;
  }
  .page-header .inset {
    padding: 20px;
  }
  section.hero-tabs .inset {
    padding: 40px 20px;
  }
  section.hero-tabs .inset .tabs {
    flex-direction: column;
    gap: 5px;
  }
  section.hero-tabs .inset .tabs__buttons {
    flex-direction: column;
    gap: 5px;
  }
  section.hero-tabs .inset .tabs__buttons .button,
  section.hero-tabs .inset .tabs__buttons .button:first-child,
  section.hero-tabs .inset .tabs__buttons .button:last-child {
    border-radius: 0;
    font-size: 1.5em;
    text-align: center;
  }
  section.hero-tabs .inset .tabs__buttons .button:nth-child(1) {
    width: calc(100% - 40px);
  }
  section.hero-tabs .inset .tabs__buttons .button:nth-child(2) {
    border-top-right-radius: 10px;
    width: calc(100% - 20px);
  }
  section.hero-tabs .inset .tabs__buttons .button:nth-child(3) {
    border-top-right-radius: 10px;
  }
  section.hero-tabs .inset .tabs__buttons .button:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  section.hero-tabs .inset .tabs__buttons .button.active:after {
    display: none;
  }
  section.hero-tabs .inset .tabs__content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  section.basic .inset img.overhang {
    margin-top: -80px;
    margin-bottom: 0;
  }
  section.cards .inset div.cards .grid-slider {
    padding: 0;
  }
  section.cards .inset div.cards .grid-slider .holder .strip {
    grid-template-columns: 1fr;
    width: 100%;
  }
  section.half-image .inset .columns {
    row-gap: 30px;
  }
  section.half-image--right .inset .columns {
    flex-direction: column;
  }
  section.half-image--right .inset .columns .columns__column,
  section.half-image--right .inset .columns .columns__column:first-child,
  section.half-image--right .inset .columns .columns__column:nth-child(1),
  section.half-image--right .inset .columns .columns__column:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
  }
  section.testimonials .inset div.testimonials .item {
    padding: 0;
  }
  section.testimonials .grid-slider {
    padding: 0;
  }
  section.testimonials .grid-slider .arrow {
    bottom: -40px;
    top: auto;
  }
  section .inset {
    padding: 40px 20px;
  }
  div.boxes .box--icon-left {
    flex-direction: column;
    text-align: center;
  }
  div.boxes .box--icon-left img,
  div.boxes .box--icon-left i.icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  div.boxes .box--icon-left .box__content h3 {
    text-align: center;
  }
  div.boxes .box--icon-left .box__content p {
    text-align: center;
  }
  div.boxes--grid .grid-slider,
  div.boxes--default .grid-slider {
    padding: 0;
  }
  div.boxes--grid .grid-slider .holder .strip,
  div.boxes--default .grid-slider .holder .strip {
    grid-template-columns: 1fr;
    width: 100%;
  }
  div.boxes--search-results .item .box {
    text-align: center;
  }
  div.boxes--search-results .item .box__image--icon-left {
    width: 100%;
  }
  div.boxes--search-results .item .box__image--icon-left img {
    margin: 0 auto 20px;
  }
  div.boxes--search-results .item .box__content {
    text-align: center;
    width: 100%;
  }
  div.bios {
    flex-direction: column;
  }
  div.bios .bio {
    align-items: center;
    width: 100%;
  }
  div.bios .bio .photo {
    max-width: 280px;
  }
  div.bios .bio .info {
    text-align: center;
    text-wrap: balance;
  }
  .grid-slider .holder .strip {
    width: calc(var(--num) * 100%);
  }
  footer#footer .inset .columns {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  footer#footer .inset .columns__column:nth-child(1),
  footer#footer .inset .columns__column:nth-child(2) {
    flex-basis: 100%;
  }
  footer#footer .inset .about-text {
    margin-left: 0;
  }
  footer#footer .inset .social-links {
    margin-left: 0;
  }
  footer#footer .inset .social-links ul {
    justify-content: center;
  }
  footer#footer .inset ul.contact-info {
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
}
/*# sourceMappingURL=style.less.css.map */