@charset "UTF-8";
/*$heading-font: "Solway", serif;*/
/* Primary Colors */
/*. Secondary Colors */
[id], .sidebar {
  scroll-margin-top: var(--header-h);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans 3", sans-serif;
  padding-top: var(--header-h);
}

.row {
  --bs-gutter-x:0!important;
}

h1, h2, h3, h4 {
  font-family: "Orelega One", serif;
  font-weight: 400;
}

.pill-button, p.body-button a, .form-btn {
  display: inline-block;
  padding: 0.6em 1.2em;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color, box-shadow 0.2s ease, transform 0.1s ease;
  font-size: 1rem !important;
  text-transform: uppercase;
}

.pill-button:hover, p.body-button a:hover, .form-btn {
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.08), 0 15px 20px -5px rgba(0, 0, 0, 0.14);
}

.navy, p.body-button a, .form-btn {
  background-color: #282f6b !important;
  color: #ffffff !important;
}

.navy:hover {
  background: #2534a3;
}

.orange {
  background: #e85d20;
  color: #ffffff !important;
}

.orange:hover {
  background: #e85d20;
}

.off-white {
  background: #FDF3EA;
  color: #282f6b;
}

.off-white:hover {
  background: #FFFFFF;
}

.pill-button:active {
  transform: scale(0.97);
}

.countdown-banner {
  background: #161b3d;
  color: #FFFFFF;
  text-align: center;
  font-family: "Orelega One", serif;
  font-size: 1.2rem;
  padding: 1rem;
  position: relative;
}
.countdown-banner .banner-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  color: inherit;
  width: 22px;
  height: 22px;
  font-size: 0.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.countdown-banner .banner-close:hover {
  opacity: 1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #FDF3EA;
  background-image: linear-gradient(180deg, #f9f9f9 21.88%, rgba(250, 250, 250, 0.9019607843) 42.71%, rgba(249, 249, 249, 0));
  width: 100%;
  /*background-image: url('../images/tree-offwhite.png');
  background-repeat: no-repeat;
  background-position: center right;*/
}
header .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
header .row {
  align-items: center;
  flex-wrap: wrap;
}
header .logo {
  text-align: center;
  padding: 0.67rem;
}
header .logo img {
  max-width: 320px;
  transition: max-width 0.35s ease;
}
header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
header.is-scrolled .logo img {
  max-width: 200px;
}
header.is-scrolled .main-nav {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
header.is-scrolled .nav-menu > li > .nav-item-row > a {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
header .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header .main-nav {
  padding: 1.3rem;
  margin: 0 auto;
  transition: padding 0.35s ease;
  /*.menu-item-has-children:hover .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }*/
}
header .main-nav .nav-menu {
  display: flex;
  font-family: "Orelega One", serif;
  width: 100%;
  justify-content: space-between;
  /*.menu-item-has-children {
    flex:1;
  }*/
}
header .main-nav .nav-menu > li {
  position: relative;
}
header .main-nav .nav-menu > li > .nav-item-row > a {
  display: block;
  padding: 1.25rem 0.9rem;
  color: #282f6b;
  text-decoration: none;
  white-space: nowrap;
  font-weight: normal;
  font-size: 1.125rem;
}
header .main-nav .nav-menu > li.current_page_item > .nav-item-row > a, header .main-nav .nav-menu > li.current-menu-parent > .nav-item-row > a {
  color: #b07749;
}
header .main-nav .dropdown-indicator {
  transition: transform 0.5s ease-in;
  display: inline-block;
}
header .main-nav .nav-menu > li > .nav-item-row > a:hover {
  color: #2534a3;
}
header .main-nav .nav-menu > li > .nav-item-row > a:hover .dropdown-indicator {
  transform: rotate(45deg);
}
header .main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #161b3d;
  z-index: 1000;
  opacity: 0;
  /*visibility: hidden;*/
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  border-radius: 0 0 20px 20px;
}
header .main-nav .dropdown li a {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.96rem;
  font-family: "Source Sans 3", sans-serif;
}
header .main-nav .dropdown li a:hover {
  background: #282f6b;
}
header .main-nav .dropdown li:last-of-type a:hover {
  border-radius: 0 0 20px 20px;
}
header .menu-item-has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}
header .menu-item-has-children.is-expanded .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
header .caret-btn {
  /*display: none; */
  background: none;
  border: none;
  cursor: pointer;
  color: #282f6b;
  font-size: 1.2rem;
  padding: 0.85rem 0.75rem;
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
header .nav-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .hamburger-container {
  display: none;
}
header .hamburger-col {
  display: none;
}
header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1300;
}
header .hamburger span.line {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #282f6b;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
header .hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header .hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
header .hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
header .drawer-register {
  display: none;
  padding: 1.5rem 1.25rem;
  margin-top: 0.5rem;
}
header .nav-right {
  margin-left: auto;
}
header .nav-right .main-nav {
  padding: 0;
}
header .nav-right .main-nav .nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
header .contact-signin {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.78rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.logo .logo-mark {
  display: none;
}

header.is-scrolled .logo .logo-full {
  display: none;
}
header.is-scrolled .logo .logo-mark {
  display: block;
  max-width: 50px !important;
}

.caret-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #282f6b;
  font-size: 1.2rem;
  padding: 0.85rem 0.75rem;
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger {
  display: none;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 20%;
  max-width: 85vw;
  height: 100vh;
  background-color: #FDF3EA;
  /*background-image:url('../images/tree.png');
  background-repeat:no-repeat;
  background-position:bottom left;
  background-size:30%;*/
  z-index: 1200;
  overflow-y: auto;
  padding: 1.5rem 0 2rem;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer-nav.is-open {
  transform: translateX(0);
}

.drawer-close {
  display: block;
  margin-left: auto;
  margin-right: 1rem;
  margin-bottom: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #282f6b;
  cursor: pointer;
}
.drawer-close:hover {
  color: #1a1f46;
}

.drawer-nav .main-nav {
  padding: 0 1rem;
}
.drawer-nav .main-nav .nav-menu {
  display: flex;
  flex-direction: column;
  font-family: "Orelega One", serif;
  list-style: none;
}
.drawer-nav .main-nav .nav-menu > li {
  position: relative;
  border-bottom: 1px solid rgba(40, 47, 107, 0.1);
}
.drawer-nav .main-nav .nav-menu > li > a,
.drawer-nav .main-nav .nav-menu > li > .nav-item-row > a {
  display: block;
  padding: 0.85rem 0.5rem;
  color: #282f6b;
  text-decoration: none;
  font-weight: normal;
  font-size: 1.77rem;
}
.drawer-nav .main-nav .nav-menu > li > a:hover,
.drawer-nav .main-nav .nav-menu > li > .nav-item-row > a:hover {
  color: #2534a3;
}
.drawer-nav .main-nav .dropdown {
  position: static;
  min-width: unset;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer-nav .main-nav .dropdown li a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: #282f6b;
  font-size: 1rem;
  font-family: "Source Sans 3", sans-serif;
  text-decoration: none;
}
.drawer-nav .main-nav .menu-item-has-children.is-expanded > .dropdown {
  max-height: 600px;
}
.drawer-nav .main-nav .nav-menu > li.menu-item-has-children {
  display: flex;
  flex-direction: column;
}
.drawer-nav .main-nav .nav-menu > li.menu-item-has-children > .nav-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-nav .main-nav .nav-menu > li.menu-item-has-children > .nav-item-row > a {
  flex: 1;
}
.drawer-nav .main-nav .caret-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #282f6b;
  font-size: 1.2rem;
  padding: 0.85rem 0.75rem;
  line-height: 1;
  transition: transform 0.25s ease;
  display: block;
  flex-shrink: 0;
}
.drawer-nav .main-nav .caret-btn:hover {
  color: #2534a3;
}
.drawer-nav .main-nav .menu-item-has-children.is-expanded .caret-btn {
  transform: rotate(45deg);
}

.cta-btn {
  text-decoration: none;
  min-width: 200px;
  padding: 1rem 2rem;
  font-family: "Orelega One", serif;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-size: 0.777rem;
  margin-top: 2rem;
  font-weight: bold;
}

.off-white {
  background: #FDF3EA;
  color: #282f6b;
}

.tree {
  width: 200px;
  position: absolute !important;
  left: 0;
  bottom: -40px;
}

.navy-tree {
  fill: #282f6b;
}

svg.offwhite-tree {
  fill: #FDF3EA;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --header-h: 90px;
}

.header-spacer {
  display: block;
  height: var(--header-h);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero {
  background-color: rgb(40, 47, 107);
  background-repeat: no-repeat;
  background-size: cover;
  height: 90vh;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Source Sans 3", sans-serif;
  background-position: center center;
  position: relative; /* needed to position the arrows */
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
  /*.pill-button {
    font-family: $heading-font;
  }*/
}
.hero .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}
.hero .hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
  background: #161b3d !important;
  color: #FFFFFF !important;
}
.hero .hero-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}
.hero .hero-arrow--left {
  left: 1.5rem;
}
.hero .hero-arrow--right {
  right: 1.5rem;
}
.hero .subhead {
  font-size: 1rem;
  font-family: "Source Sans 3", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
}
.hero .hero-message {
  position: relative;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 3rem;
  color: #FFFFFF;
  /* &::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 70%, transparent 100%);
     border-radius: 8px;
     z-index: -1;
     pointer-events: none;
   }*/
}
.hero .hero-message > * {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22, 0.8, 0.4, 1) forwards;
}
.hero .hero-message h2, .hero .hero-message p, .hero .hero-message .subhead {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.hero .hero-message .subhead {
  animation-delay: 0.15s;
}
.hero .hero-message h2 {
  animation-delay: 0.35s;
}
.hero .hero-message p:last-child {
  animation-delay: 0.55s;
}
.hero .hero-message h2, .hero .hero-message p.countdown {
  font-size: 4rem;
  margin: 0;
  font-family: "Orelega One", serif;
  margin-bottom: 2rem;
}
.hero .hero-message .hero-icon {
  width: 70px;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero > *:not(.hero-slides):not(.hero-scrim):not(.hero-arrow) {
  position: relative;
  z-index: 2;
}

.subhead, h2.subhead {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.callout-navy {
  background: #282f6b;
  padding: 4rem 5rem;
  color: #FDF3EA;
  font-family: "Source Sans 3", sans-serif;
  position: relative;
}
.callout-navy h2 {
  font-size: 3rem;
  font-family: "Orelega One", serif;
  color: #FDF3EA;
}
.callout-navy p {
  margin-bottom: 3rem;
}

.callout-off-white {
  background: #FDF3EA;
  padding: 6rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #282f6b;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.125rem;
  background-image: linear-gradient(180deg, #f9f9f9 21.88%, rgba(250, 250, 250, 0.9019607843) 42.71%, rgba(249, 249, 249, 0));
}
.callout-off-white .callout-content {
  text-align: center;
  width: 500px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.callout-off-white .callout-content img {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}
.callout-off-white .callout-content .est {
  border-top: 1px solid #282f6b;
  border-bottom: 1px solid #282f6b;
  font-size: 1rem;
  display: inline-block;
  font-family: "Orelega One", serif;
  text-transform: uppercase;
  font-weight: 800;
}

.left {
  background-position: left 70px bottom -40px;
}
.left .image {
  right: 0;
  top: -60px;
}

.callout-off-white-two {
  background-color: #FDF3EA;
  background-image: url("../images/tree.svg");
  background-position: left -300px bottom -40px;
  background-repeat: no-repeat;
  background-size: 20% auto;
  color: #282f6b;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.225rem;
  display: flex;
  justify-content: center;
  padding: 4rem;
  transition: background-position 3s ease-out;
}
.callout-off-white-two .content {
  position: relative;
  width: 70%;
  display: flex;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.callout-off-white-two .copy {
  padding: 5rem;
  background: #161b3d;
  position: relative;
  z-index: 2;
  width: 50%;
  color: #FFFFFF;
}
.callout-off-white-two .copy .subhead {
  color: #e85d20;
}
.callout-off-white-two .copy h2 {
  font-family: "Orelega One", serif;
  font-size: 2.3rem;
  margin: 0;
  color: #FFFFFF;
}
.callout-off-white-two .copy p {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.callout-off-white-two .image {
  position: absolute;
  right: -90px;
  top: -60px;
  bottom: -60px;
  width: 50%;
  z-index: 1;
}
.callout-off-white-two .image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.callout-off-white-two.is-visible {
  background-position: left 70px bottom -50px;
}

.callout-blue-two {
  background-color: #161b3d;
  background-image: url("../images/tree-offwhite.png");
  background-position: right -140px bottom -50px;
  background-repeat: no-repeat;
  background-size: 25% auto;
  color: #282f6b;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.225rem;
  display: flex;
  justify-content: center;
  padding: 7rem 4rem;
  transition: background-position 3s ease-out;
}
.callout-blue-two .content {
  position: relative;
  width: 70%;
  display: flex;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.callout-blue-two .copy {
  padding: 3rem 5rem;
  background: #FDF3EA;
  position: relative;
  right: -30rem;
  z-index: 2;
  width: 50%;
  color: #353334;
}
.callout-blue-two .copy h2, .callout-blue-two .copy h1 {
  font-family: "Orelega One", serif;
  font-size: 2.3rem;
  margin: 0;
  color: #161b3d;
}
.callout-blue-two .copy .subhead {
  color: #93643E;
}
.callout-blue-two .image {
  position: absolute;
  left: 0;
  top: -60px;
  bottom: -60px;
  width: 50%;
  z-index: 1;
}
.callout-blue-two .image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.callout-blue-two.is-visible {
  background-position: right -40px bottom -50px;
}

.bottom-callout {
  position: relative;
  /*background-image: url("../images/pano.jpg");*/
  background-size: cover;
  background-position: center;
  /**/
  background-attachment: fixed;
  min-height: 700px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 27, 61, 0.5);
}
.bottom-callout > * {
  position: relative;
  z-index: 1;
}
.bottom-callout .message {
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 70%;
  text-align: center;
}
.bottom-callout .message h3 {
  font-family: "Orelega One", serif;
  font-size: 3rem;
  line-height: 3rem;
  text-align: center;
  color: #FFFFFF;
  background-image: url("../images/tree-offwhite.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 70px auto;
  padding-top: 100px;
}
.bottom-callout .message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.video-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  display: flex;
}
.video-bg h2 {
  font-family: "Orelega One", serif;
  font-size: 3rem;
  text-align: center;
}

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-bg .content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2rem;
}

.slider {
  max-width: 900px;
  margin: 0 auto;
}

.slider-main {
  position: relative;
}

.slider-main img {
  width: 100%;
  height: auto;
  display: block;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.nav:focus {
  outline: 3px solid #fff;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.thumbnails {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.thumbnails button {
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: none;
}

.thumbnails button[aria-selected=true] {
  border-color: #333;
}

.thumbnails img {
  display: block;
  width: 80px;
  height: auto;
}

.explore-section {
  background: #FDF3EA;
  padding: 5rem 40px;
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
}

.explore-subtitle {
  color: #e85d20;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  margin: 0 0 0.5rem;
}

.explore-title {
  font-size: 3rem;
  font-family: "Orelega One", serif;
  margin: 0 0 2rem;
  color: #161b3d;
}

.explore-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 3rem;
}

.explore-tab {
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  color: rgba(0, 0, 0, 0.45);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.explore-tab:hover {
  border-color: #161b3d;
  color: #161b3d;
}
.explore-tab.active {
  background: #e85d20;
  border-color: #e85d20;
  color: #fff;
}

.tab-panel[hidden] {
  display: none;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.activities-grid a {
  color: #161b3d;
  text-decoration: none;
}
.activities-grid a:hover {
  color: #282f6b;
}
.activities-grid .activity-card-link {
  display: contents;
  text-decoration: none;
  color: inherit;
}

.activity-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.activity-card:hover {
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.08), 0 20px 25px -5px rgba(0, 0, 0, 0.14);
  /*margin-top: -0.27rem;*/
}

.activity-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.activity-content {
  padding: 16px 20px 20px;
}
.activity-content h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: "Source Sans 3", sans-serif;
  text-transform: uppercase;
  color: #b07749;
}

.carousel-arrow {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #161b3d;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: #161b3d;
}
.carousel-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.clans-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  align-items: start;
  text-align: left;
}

.clan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.clan-item {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.clan-item h3 {
  margin: 0 0 4px;
  font-weight: 500;
  color: #161b3d;
  font-size: 1.3rem;
}
.clan-item p {
  margin: 0;
  /*font-size: 0.8rem;*/
  color: #282f6b;
}
.clan-item:hover {
  border-color: #161b3d;
  background: #FFFFFF;
}
.clan-item.active {
  border-color: #161b3d;
  background: #FFFFFF;
}
.clan-item.active h3 {
  color: #161b3d;
}

.clan-display {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.clan-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.clan-display img.visible {
  opacity: 1;
}

.clan-display-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}
.clan-display-label h2 {
  margin: 0 0 2px;
  font-size: 2.7rem;
  color: #fff;
  font-weight: 500;
}
.clan-display-label p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.carousel-track.slide-out-left .activity-card {
  animation: slideOutLeft 0.3s ease forwards;
}
.carousel-track.slide-out-right .activity-card {
  animation: slideOutRight 0.3s ease forwards;
}
.carousel-track.slide-in-right .activity-card {
  animation: slideInRight 0.3s ease forwards;
}
.carousel-track.slide-in-left .activity-card {
  animation: slideInLeft 0.3s ease forwards;
}
.carousel-track.fade-out .activity-card {
  animation: fadeOut 0.3s ease forwards;
}
.carousel-track.fade-in .activity-card {
  animation: fadeIn 0.3s ease forwards;
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}
@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(30px);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.full-width-callout {
  min-height: 600px;
  --bs-gutter-x: 0!important;
}
.full-width-callout .image {
  background-image: url("../images/halloween.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.full-width-callout .copy {
  background: #161b3d;
  padding: 5rem 3rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.full-width-callout .copy h2 {
  font-size: 3rem;
  font-family: "Orelega One", serif;
  color: #ffffff;
  margin: 0;
  padding: 0;
}
.full-width-callout .subhead {
  color: #e85d20;
}

.bottom-pano {
  position: relative;
  overflow: hidden;
  background-image: none;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
  min-height: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-pano::after {
  content: "";
  position: absolute;
  inset: -30% 0 0 0;
  background-image: url("../images/pano.jpg");
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  transform: translateY(30%);
  opacity: 0;
  transition: transform 5.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  z-index: 0;
}
.bottom-pano.is-visible::after {
  transform: translateY(0);
  opacity: 1;
}
.bottom-pano .message {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 50%;
  text-align: center;
  color: #FFFFFF;
}
.bottom-pano .message h2 {
  font-family: "Orelega One", serif;
  font-size: 4rem;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
  margin: 0;
  padding: 0;
}
.bottom-pano .message p, .bottom-pano .message h2 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.bottom-pano .message.is-visible {
  opacity: 1;
}
.bottom-pano::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #FDF3EA 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.interior-hero {
  background-color: rgb(40, 47, 107);
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/programs-header.jpg");
  height: 70vh;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: "Source Sans 3", sans-serif;
  background-position: center center;
  position: relative; /* needed to position the arrows */
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}
.interior-hero .interior-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}
.interior-hero .hero-title {
  position: relative;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 3rem;
  color: #FFFFFF;
  z-index: 9999;
  /* &::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 70%, transparent 100%);
     border-radius: 8px;
     z-index: -1;
     pointer-events: none;
   }*/
}
.interior-hero .hero-title > * {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22, 0.8, 0.4, 1) forwards;
}
.interior-hero .hero-title h2, .interior-hero .hero-title p, .interior-hero .hero-title .subhead {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.interior-hero .hero-title .subhead {
  animation-delay: 0.15s;
}
.interior-hero .hero-title h2 {
  animation-delay: 0.35s;
}
.interior-hero .hero-title p:last-child {
  animation-delay: 0.55s;
}
.interior-hero .hero-title h1 {
  font-size: 4rem;
  margin: 0;
  font-family: "Orelega One", serif;
  margin-bottom: 2rem;
  background-image: url("../images/tree-offwhite.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 70px auto;
  padding-top: 100px;
}
.interior-hero .hero-title .hero-icon {
  width: 70px;
}

.page-title {
  background-color: #FDF3EA;
  padding: 2rem 0;
}
.page-title h1 {
  color: #282f6b;
  font-size: 4rem;
  margin: 0;
  text-align: center;
}

.main-content {
  /*background-color:$off-white;
  background-image:url('../images/tree.png');*/
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 20%;
  position: relative;
  padding-bottom: 3rem;
  margin-bottom: 0;
  padding-top: 3rem;
}
.main-content a {
  color: #282f6b;
  text-decoration: none;
  border-bottom: 1px solid #b07749;
}
.main-content p {
  font-size: 1.1rem;
}
.main-content p.subhead, .main-content h2.subhead {
  font-size: 1rem;
}
.main-content h3 {
  color: #282f6b;
  font-size: 3rem;
  line-height: 3rem;
}
.main-content h4 {
  color: #b07749;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2rem;
  font-family: "Source Sans 3", sans-serif;
}
.main-content h5 {
  color: #161b3d;
  font-size: 1.2rem;
}
.main-content .subhead {
  color: #e85d20;
  font-family: "Source Sans 3", sans-serif;
}
.main-content .wp-block-columns {
  align-items: start;
}
.main-content .sidebar.sticky {
  position: sticky;
  top: 32px;
  top: calc(var(--header-h) + 1rem);
}
.main-content .sidebar {
  padding-top: 0;
  /* position:sticky;*/
  top: 1rem;
  align-self: flex-start;
}
.main-content .sidebar .subhead {
  color: #282f6b;
}
.main-content .sidebar h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.main-content .sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-content .sidebar ul li {
  padding-bottom: 0.5rem;
}
.main-content .sidebar ul li a {
  color: #282f6b;
  text-decoration: none;
  border-bottom: 1px solid #b07749;
  font-size: 1.15rem;
}
.main-content .thrill {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  background-color: #FDF3EA;
  padding: 2rem 0 4rem 0;
  background-image: url("../images/tree-white.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  margin-top: 3rem;
  /*.subhead {
     color:$navy;
   }*/
}
.main-content .thrill h3 {
  margin-top: 0;
  padding-top: 0;
}
.main-content .image-column figure {
  margin: 0; /* browsers add default margin to figure */
  height: 100%;
}
.main-content .image-column figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.main-content .activity-card {
  background: #ffffff;
  /*h4 {
    font-size:1.7rem;
    color:$brown;
  }*/
}
.main-content .activity-card .activity-image {
  aspect-ratio: auto;
}
.main-content .activity-card .activity-content {
  padding-top: 0;
}
.main-content .activity-card .activity-content h4 {
  margin-top: 0;
  padding-top: 0;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #b07749;
  margin-bottom: 0;
}
.main-content .activity-card .activity-content h5 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #161b3d;
}
.main-content .activity-card:hover {
  box-shadow: none;
}
.main-content .heading-intro {
  /*background-image:url('../images/tree-white.svg');
  background-repeat:no-repeat;
  background-position:-10% -10%;
  background-size:40%;*/
}
.main-content .heading-intro .page-title {
  padding-top: 3rem;
  text-align: center;
}
.main-content .heading-intro .page-title img {
  width: 70px;
}
.main-content .heading-intro .page-title h2 {
  color: #161b3d;
  font-size: 4rem;
  margin: 0;
  text-align: center;
}
.main-content .heading-intro .intro {
  padding-top: 4rem;
}
.main-content .heading-intro .intro .heading {
  background: #161b3d;
  padding: 3rem;
  color: #FFFFFF;
  margin-bottom: 5rem;
  background-image: url("../images/tree.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 40%;
}
.main-content .heading-intro .intro .heading .subhead {
  color: #e85d20;
}
.main-content .heading-intro .intro .heading h3 {
  color: #FFFFFF;
  font-size: 3.3rem;
  margin-top: 0;
  padding-right: 2rem;
  /* padding-left: 3rem;
      background-image:url('../images/tree.png');
  background-repeat:no-repeat;
  background-position:left;
  background-size:3rem auto;*/
}
.main-content .heading-intro .intro p {
  /* span {
     font-family:$heading-font;
     font-size:2.1rem;
     line-height:2.5rem;
     display:block;
   }*/
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.125rem;
  line-height: 2rem;
  color: #161b3d;
  margin-top: 0;
}
.main-content .heading-intro .intro .intro-copy {
  background-color: #FFFFFF;
  padding: 5rem;
  margin-top: 3rem;
  margin-left: -3rem;
}
.main-content .programs-head {
  text-align: center;
  color: #161b3d;
  font-size: 3rem;
  font-weight: 400;
  margin-top: 7rem;
  margin-bottom: 0;
}
.main-content .programs-grid {
  padding-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex: 1;
}
.main-content .callout-blue-two,
.main-content .callout-off-white-two,
.main-content .explore-section {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}
.main-content .callout-blue-two .wp-block-button__link,
.main-content .callout-off-white-two .wp-block-button__link,
.main-content .explore-section .wp-block-button__link {
  padding: 0 !important;
  border: none !important;
}
.main-content .full-width-callout :where(.wp-block-columns.is-layout-flex) {
  gap: 0;
}
.main-content .interior-callout {
  background-image: url("../images/tree.svg)");
  background-size: 20%;
  background-repeat: no-repeat;
  margin-top: 10rem;
}
.main-content .interior-callout .callout-content {
  padding: 0 2rem;
}
.main-content .interior-callout .callout-content h3 {
  margin-top: 0;
  padding-top: 0;
}
.main-content .img-left {
  background-position: left bottom;
  padding-left: 10rem;
}
.main-content .img-right {
  background-position: right bottom;
  padding-right: 10rem;
}
.main-content .img-right .wp-block-columns:has(.callout-image) {
  align-items: stretch;
}
.main-content .img-right .wp-block-columns:has(.callout-image) .callout-image {
  display: flex;
  flex-direction: column;
}
.main-content .img-right .wp-block-columns:has(.callout-image) .callout-image .wp-block-image {
  flex: 1;
  display: flex;
}
.main-content .img-right .wp-block-columns:has(.callout-image) .callout-image .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.main-content .testimonials {
  margin-top: 2rem;
}
.main-content .testimonials blockquote {
  position: relative;
  margin: 0;
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden; /* keeps the pseudo-element from bleeding out */
  height: 100%;
}
.main-content .testimonials blockquote::before {
  content: "“";
  font-family: "Orelega One", serif;
  font-size: 80px;
  line-height: 1;
  color: #282f6b;
  opacity: 0.2;
  position: absolute;
  top: 0px;
  left: 10px;
  pointer-events: none;
}
.main-content .testimonials blockquote p {
  position: relative; /* sits above the pseudo-element */
  padding-top: 28px;
  margin: 0 0 12px;
  line-height: 1.6;
}

footer {
  background: #161b3d;
  color: #FFFFFF;
  font-family: "Source Sans 3", sans-serif;
  padding: 4rem 0 4rem 0;
}
footer .top-footer {
  /*border-bottom: $navy solid 1px;
   margin-bottom: 2rem;
   padding-bottom: 2rem;*/
}
footer .top-footer .footer-contact img {
  margin-left: -2rem;
  max-width: 300px;
  margin-bottom: 1rem;
}
footer .top-footer .footer-contact p {
  margin: 0;
  padding: 0;
}
footer .top-footer .footer-contact p a {
  color: #FFFFFF;
}
footer .top-footer .footer-nav {
  margin-top: 2rem;
}
footer .top-footer .footer-nav nav {
  display: flex;
  gap: 4rem;
  width: 100%;
}
footer .top-footer .footer-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
footer .top-footer .footer-nav nav ul li {
  margin-bottom: 0.5rem;
  text-align: center;
  flex: 1;
}
footer .top-footer .footer-nav nav ul li a {
  font-family: "Orelega One", serif;
  text-decoration: none;
  color: #FFFFFF;
}
footer .top-footer .footer-nav nav ul li a:hover {
  text-decoration: underline;
}
footer .top-footer .footer-social {
  text-align: center;
  color: #FFFFFF;
}
footer .top-footer .footer-social a {
  color: #FDF3EA;
}
footer .top-footer .footer-social .aca {
  width: 140px;
  height: auto;
  display: inline-block;
}
footer .bottom-footer p {
  font-size: 0.8rem;
}
footer .kbm-logo {
  max-width: 170px;
}

.hoyt {
  background: #FFFFFF;
  text-align: center;
  padding: 2rem 0;
}
.hoyt h3 {
  font-family: "Orelega One", serif;
  color: #161b3d;
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hoyt img {
  width: 170px;
}
.hoyt .subhead {
  margin-bottom: 2rem;
}

@media (min-width: 1280px) {
  header .logo img {
    max-width: 360px;
  }
  header.is-scrolled .logo img {
    max-width: 220px;
  }
  .callout-off-white-two .content,
.callout-blue-two .content {
    width: 80%;
  }
  .hero .hero-message h2 {
    font-size: 4rem;
  }
  footer .top-footer .footer-nav nav {
    gap: 6rem;
  }
}
@media (max-width: 1600px) {
  header .hamburger-col {
    display: flex;
    align-items: center;
  }
  header .nav-wrapper.nav-right {
    margin-left: auto;
  }
  header .hamburger {
    display: flex;
  }
  header .dropdown-indicator {
    display: none !important;
  }
  header .col-md-6.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 360px;
    max-width: 85vw;
    height: 100vh;
    background-color: #FDF3EA;
    z-index: 1200;
    overflow-y: auto;
    padding: 5rem 0 2rem;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  header .col-md-6.nav-wrapper.is-open {
    transform: translateX(0);
  }
  header .nav-wrapper .main-nav {
    padding: 0 1.25rem;
  }
  header .nav-wrapper .main-nav .nav-menu {
    flex-direction: column;
  }
  header .nav-wrapper .main-nav .nav-menu > li {
    border-bottom: 1px solid rgba(40, 47, 107, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
  }
  header .nav-wrapper .main-nav .nav-menu > li > .nav-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .nav-wrapper .main-nav .nav-menu > li > .nav-item-row > a {
    flex: 1;
    display: block;
    padding: 0.9rem 0.5rem;
    font-size: 1.3rem;
    white-space: normal;
  }
  header .nav-wrapper .main-nav .caret-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 0.75rem;
  }
  header .nav-wrapper .main-nav .menu-item-has-children.is-expanded .caret-btn {
    transform: rotate(45deg);
  }
  header .nav-wrapper .main-nav .menu-item-has-children:hover .dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    max-height: 0 !important;
    display: block !important;
  }
  header .nav-wrapper .main-nav .menu-item-has-children.is-expanded .dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-height: 600px !important;
  }
  header .nav-wrapper .main-nav .dropdown {
    position: static !important;
    min-width: unset;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
  }
  header .nav-wrapper .main-nav .dropdown li a {
    color: #282f6b;
    font-size: 1rem;
    padding: 0.55rem 1.25rem;
    background: transparent !important;
  }
  header .nav-wrapper .main-nav .dropdown li a:hover {
    color: #2534a3;
  }
  header .nav-wrapper .main-nav .menu-item-has-children.is-expanded > .dropdown {
    max-height: 600px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  header .logo img {
    max-width: 260px;
  }
  header .contact-signin {
    font-size: 0.72rem;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .hero .hero-message h2 {
    font-size: 3rem;
  }
  .hero .hero-message {
    padding: 2rem 2.5rem;
  }
  .callout-off-white {
    padding: 4rem 2rem;
  }
  .callout-off-white .callout-content {
    width: 90%;
    max-width: 500px;
  }
  .callout-blue-two,
.callout-off-white-two {
    padding: 3rem 2rem;
  }
  .callout-blue-two .content,
.callout-off-white-two .content {
    width: 100%;
    flex-direction: column;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .callout-blue-two .image,
.callout-off-white-two .image {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: 300px;
  }
  .callout-blue-two .copy,
.callout-off-white-two .copy {
    position: relative;
    right: auto;
    width: 100%;
    padding: 2.5rem;
  }
  .callout-blue-two .copy h2,
.callout-off-white-two .copy h2 {
    font-size: 1.8rem;
  }
  .full-width-callout {
    min-height: 300px;
  }
  .full-width-callout .copy h2 {
    font-size: 2rem;
  }
  .carousel-track {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .top-footer .footer-nav nav {
    gap: 2.5rem;
  }
  footer .top-footer .footer-contact img {
    max-width: 220px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  header {
    background-image: none;
  }
  header .row {
    flex-wrap: nowrap;
    padding: 0.5rem 0;
  }
  header .logo {
    flex: 1;
  }
  header .logo img {
    max-width: 260px;
  }
  header .right-nav {
    display: none !important;
  }
  .drawer-register {
    display: flex !important;
  }
  header .col-md-6.nav-wrapper {
    width: 85vw;
  }
  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: 80px;
  }
  .hero .hero-message {
    padding: 1.5rem 1.25rem;
    width: 90%;
  }
  .hero .hero-message h2 {
    font-size: 1.9rem;
    line-height: 1.2;
  }
  .hero .hero-message .subhead {
    font-size: 0.85rem;
  }
  .dropdown-indicator {
    display: none !important;
  }
  .callout-off-white {
    padding: 3rem 1.5rem;
  }
  .callout-off-white .callout-content {
    width: 100%;
  }
  .callout-off-white .callout-content img {
    max-width: 160px;
  }
  .callout-blue-two,
.callout-off-white-two {
    padding: 2rem 1rem;
    background-image: none;
  }
  .callout-blue-two .content,
.callout-off-white-two .content {
    width: 100%;
    flex-direction: column;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .callout-blue-two .image,
.callout-off-white-two .image {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: 240px;
  }
  .callout-blue-two .copy,
.callout-off-white-two .copy {
    position: relative;
    right: auto;
    width: 100%;
    padding: 1.75rem 1.25rem;
  }
  .callout-blue-two .copy h2,
.callout-off-white-two .copy h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .callout-blue-two .copy p,
.callout-off-white-two .copy p {
    font-size: 1rem;
  }
  .full-width-callout {
    flex-direction: column;
    min-height: unset;
  }
  .full-width-callout .col-md-5.image {
    width: 100%;
    min-height: 220px;
  }
  .full-width-callout .col-md-7.copy {
    width: 100%;
    padding: 2rem 1.5rem;
  }
  .full-width-callout .col-md-7.copy h2 {
    font-size: 1.6rem;
  }
  .activities-section {
    padding: 40px 16px;
  }
  .activities-title {
    font-size: 2rem;
  }
  .activities-tabs {
    gap: 6px;
  }
  .activities-tabs button {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
  .carousel-track {
    grid-template-columns: 1fr;
  }
  .callout-navy {
    padding: 2.5rem 1.5rem;
  }
  .callout-navy h2 {
    font-size: 2rem;
  }
  .main-content {
    padding: 1.3rem;
  }
  .main-content .wp-block-columns {
    flex-direction: column;
  }
  .main-content .sidebar {
    order: -1;
    position: relative !important;
    margin-bottom: 2rem;
    top: 0 !important;
  }
  .main-content .programs-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .main-content .heading-intro .intro .heading {
    margin-bottom: 0;
  }
  .main-content .heading-intro .intro .intro-copy {
    margin-top: 0;
    margin-left: 0;
  }
  .main-content .heading-intro .intro {
    padding-top: 0;
  }
  .main-content .img-left {
    padding-left: 0;
  }
  .main-content .img-right {
    padding-right: 0;
  }
  .hero .hero-arrow {
    bottom: 0;
    top: auto;
  }
  .interior-hero .hero-title h1 {
    font-size: 3rem;
  }
  .main-content h3 {
    font-size: 2.3rem;
    line-height: 2.5rem;
  }
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 0!important;
  }
  footer {
    padding: 2.5rem 0;
  }
  footer .top-footer {
    flex-direction: column;
    gap: 2rem;
  }
  footer .top-footer .footer-contact {
    text-align: center;
  }
  footer .top-footer .footer-contact img {
    max-width: 200px;
    margin-left: 0;
  }
  footer .top-footer .footer-contact p {
    font-size: 0.9rem;
  }
  footer .top-footer .footer-nav nav {
    gap: 2rem;
    flex-wrap: wrap;
  }
  footer .bottom-footer p {
    font-size: 0.75rem;
    text-align: center;
  }
  h2 {
    font-size: 1.75rem;
  }
  .subhead {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
  .pill-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
  }
  .bottom-callout .message h3 {
    font-size: 1.7rem;
    line-height: 1.9rem;
  }
  .bottom-callout {
    background-attachment: scroll !important;
  }
  .bottom-callout .message {
    max-width: 100%;
  }
  .thrill {
    padding: 2rem !important;
  }
  .wp-block-image.tree-accent {
    width: 20%;
    display: none;
  }
  .main-content .interior-callout {
    background-image: none;
  }
}
@media (max-width: 900px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .explore-section {
    padding: 3.5rem 20px;
  }
  .explore-title {
    font-size: 2rem;
  }
  .explore-tabs {
    gap: 6px;
    flex-wrap: wrap;
  }
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .clans-body {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .clan-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .clan-list > p {
    grid-column: 1/-1;
    margin: 0;
    text-align: center;
  }
  .clan-item {
    padding: 0.75rem 1rem;
  }
  .clan-item h3 {
    font-size: 0.9rem;
  }
  .clan-item p {
    font-size: 0.75rem;
  }
  .clan-display {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 400px) {
  .clan-list {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1280px) {
  header .logo img {
    max-width: 360px;
  }
  header.is-scrolled .logo img {
    max-width: 220px;
  }
  .callout-off-white-two .content,
.callout-blue-two .content {
    width: 80%;
  }
  .hero .hero-message h2 {
    font-size: 4rem;
  }
  footer .top-footer .footer-nav nav {
    gap: 6rem;
  }
}
@media (max-width: 1600px) {
  header .hamburger-col {
    display: flex;
    align-items: center;
  }
  header .nav-wrapper.nav-right {
    margin-left: auto;
  }
  header .hamburger {
    display: flex;
  }
  header .dropdown-indicator {
    display: none !important;
  }
  header .col-md-6.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 360px;
    max-width: 85vw;
    height: 100vh;
    background-color: #FDF3EA;
    z-index: 1200;
    overflow-y: auto;
    padding: 5rem 0 2rem;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  header .col-md-6.nav-wrapper.is-open {
    transform: translateX(0);
  }
  header .nav-wrapper .main-nav {
    padding: 0 1.25rem;
  }
  header .nav-wrapper .main-nav .nav-menu {
    flex-direction: column;
  }
  header .nav-wrapper .main-nav .nav-menu > li {
    border-bottom: 1px solid rgba(40, 47, 107, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
  }
  header .nav-wrapper .main-nav .nav-menu > li > .nav-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .nav-wrapper .main-nav .nav-menu > li > .nav-item-row > a {
    flex: 1;
    display: block;
    padding: 0.9rem 0.5rem;
    font-size: 1.3rem;
    white-space: normal;
  }
  header .nav-wrapper .main-nav .caret-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 0.75rem;
  }
  header .nav-wrapper .main-nav .menu-item-has-children.is-expanded .caret-btn {
    transform: rotate(45deg);
  }
  header .nav-wrapper .main-nav .menu-item-has-children:hover .dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    max-height: 0 !important;
    display: block !important;
  }
  header .nav-wrapper .main-nav .menu-item-has-children.is-expanded .dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-height: 600px !important;
  }
  header .nav-wrapper .main-nav .dropdown {
    position: static !important;
    min-width: unset;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
  }
  header .nav-wrapper .main-nav .dropdown li a {
    color: #282f6b;
    font-size: 1rem;
    padding: 0.55rem 1.25rem;
    background: transparent !important;
  }
  header .nav-wrapper .main-nav .dropdown li a:hover {
    color: #2534a3;
  }
  header .nav-wrapper .main-nav .menu-item-has-children.is-expanded > .dropdown {
    max-height: 600px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  header .logo img {
    max-width: 260px;
  }
  header .contact-signin {
    font-size: 0.72rem;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .hero .hero-message h2 {
    font-size: 3rem;
  }
  .hero .hero-message {
    padding: 2rem 2.5rem;
  }
  .callout-off-white {
    padding: 4rem 2rem;
  }
  .callout-off-white .callout-content {
    width: 90%;
    max-width: 500px;
  }
  .callout-blue-two,
.callout-off-white-two {
    padding: 3rem 2rem;
  }
  .callout-blue-two .content,
.callout-off-white-two .content {
    width: 100%;
    flex-direction: column;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .callout-blue-two .image,
.callout-off-white-two .image {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: 300px;
  }
  .callout-blue-two .copy,
.callout-off-white-two .copy {
    position: relative;
    right: auto;
    width: 100%;
    padding: 2.5rem;
  }
  .callout-blue-two .copy h2,
.callout-off-white-two .copy h2 {
    font-size: 1.8rem;
  }
  .full-width-callout {
    min-height: 300px;
  }
  .full-width-callout .copy h2 {
    font-size: 2rem;
  }
  .carousel-track {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .top-footer .footer-nav nav {
    gap: 2.5rem;
  }
  footer .top-footer .footer-contact img {
    max-width: 220px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  header {
    background-image: none;
  }
  header .row {
    flex-wrap: nowrap;
    padding: 0.5rem 0;
  }
  header .logo {
    flex: 1;
  }
  header .logo img {
    max-width: 260px;
  }
  header .right-nav {
    display: none !important;
  }
  .drawer-register {
    display: flex !important;
  }
  header .col-md-6.nav-wrapper {
    width: 85vw;
  }
  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: 80px;
  }
  .hero .hero-message {
    padding: 1.5rem 1.25rem;
    width: 90%;
  }
  .hero .hero-message h2 {
    font-size: 1.9rem;
    line-height: 1.2;
  }
  .hero .hero-message .subhead {
    font-size: 0.85rem;
  }
  .dropdown-indicator {
    display: none !important;
  }
  .callout-off-white {
    padding: 3rem 1.5rem;
  }
  .callout-off-white .callout-content {
    width: 100%;
  }
  .callout-off-white .callout-content img {
    max-width: 160px;
  }
  .callout-blue-two,
.callout-off-white-two {
    padding: 2rem 1rem;
    background-image: none;
  }
  .callout-blue-two .content,
.callout-off-white-two .content {
    width: 100%;
    flex-direction: column;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .callout-blue-two .image,
.callout-off-white-two .image {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: 240px;
  }
  .callout-blue-two .copy,
.callout-off-white-two .copy {
    position: relative;
    right: auto;
    width: 100%;
    padding: 1.75rem 1.25rem;
  }
  .callout-blue-two .copy h2,
.callout-off-white-two .copy h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .callout-blue-two .copy p,
.callout-off-white-two .copy p {
    font-size: 1rem;
  }
  .full-width-callout {
    flex-direction: column;
    min-height: unset;
  }
  .full-width-callout .col-md-5.image {
    width: 100%;
    min-height: 220px;
  }
  .full-width-callout .col-md-7.copy {
    width: 100%;
    padding: 2rem 1.5rem;
  }
  .full-width-callout .col-md-7.copy h2 {
    font-size: 1.6rem;
  }
  .activities-section {
    padding: 40px 16px;
  }
  .activities-title {
    font-size: 2rem;
  }
  .activities-tabs {
    gap: 6px;
  }
  .activities-tabs button {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
  .carousel-track {
    grid-template-columns: 1fr;
  }
  .callout-navy {
    padding: 2.5rem 1.5rem;
  }
  .callout-navy h2 {
    font-size: 2rem;
  }
  .main-content {
    padding: 1.3rem;
  }
  .main-content .wp-block-columns {
    flex-direction: column;
  }
  .main-content .sidebar {
    order: -1;
    position: relative !important;
    margin-bottom: 2rem;
    top: 0 !important;
  }
  .main-content .programs-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .main-content .heading-intro .intro .heading {
    margin-bottom: 0;
  }
  .main-content .heading-intro .intro .intro-copy {
    margin-top: 0;
    margin-left: 0;
  }
  .main-content .heading-intro .intro {
    padding-top: 0;
  }
  .main-content .img-left {
    padding-left: 0;
  }
  .main-content .img-right {
    padding-right: 0;
  }
  .hero .hero-arrow {
    bottom: 0;
    top: auto;
  }
  .interior-hero .hero-title h1 {
    font-size: 3rem;
  }
  .main-content h3 {
    font-size: 2.3rem;
    line-height: 2.5rem;
  }
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 0!important;
  }
  footer {
    padding: 2.5rem 0;
  }
  footer .top-footer {
    flex-direction: column;
    gap: 2rem;
  }
  footer .top-footer .footer-contact {
    text-align: center;
  }
  footer .top-footer .footer-contact img {
    max-width: 200px;
    margin-left: 0;
  }
  footer .top-footer .footer-contact p {
    font-size: 0.9rem;
  }
  footer .top-footer .footer-nav nav {
    gap: 2rem;
    flex-wrap: wrap;
  }
  footer .bottom-footer p {
    font-size: 0.75rem;
    text-align: center;
  }
  h2 {
    font-size: 1.75rem;
  }
  .subhead {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
  .pill-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
  }
  .bottom-callout .message h3 {
    font-size: 1.7rem;
    line-height: 1.9rem;
  }
  .bottom-callout {
    background-attachment: scroll !important;
  }
  .bottom-callout .message {
    max-width: 100%;
  }
  .thrill {
    padding: 2rem !important;
  }
  .wp-block-image.tree-accent {
    width: 20%;
    display: none;
  }
  .main-content .interior-callout {
    background-image: none;
  }
}
@media (max-width: 900px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .explore-section {
    padding: 3.5rem 20px;
  }
  .explore-title {
    font-size: 2rem;
  }
  .explore-tabs {
    gap: 6px;
    flex-wrap: wrap;
  }
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .clans-body {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .clan-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .clan-list > p {
    grid-column: 1/-1;
    margin: 0;
    text-align: center;
  }
  .clan-item {
    padding: 0.75rem 1rem;
  }
  .clan-item h3 {
    font-size: 0.9rem;
  }
  .clan-item p {
    font-size: 0.75rem;
  }
  .clan-display {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 400px) {
  .clan-list {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=main.css.map */
