/*$heading-font: "Solway", serif;*/
/* Primary Colors */
/*. Secondary Colors */
body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans 3", sans-serif;
}

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

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

.navy {
  background: #282f6b;
  color: #ffffff !important;
}

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

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

.orange:hover {
  background: #4338ca;
}

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

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

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

header {
  z-index: 3;
  position: fixed;
  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 .row {
  align-items: center;
  flex-wrap: wrap;
}
header .logo {
  text-align: center;
}
header .logo img {
  max-width: 320px;
}
header .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header .main-nav {
  padding: 1.3rem;
}
header .main-nav .nav-menu {
  display: flex;
  font-family: "Orelega One", serif;
}
header .main-nav .nav-menu > li {
  position: relative;
}
header .main-nav .nav-menu > li > a {
  display: block;
  padding: 1rem;
  color: #282f6b;
  text-decoration: none;
  white-space: nowrap;
  font-weight: normal;
  font-size: 1rem;
}
header .main-nav .nav-menu > li > a:hover {
  color: #2534a3;
}
header .main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #282f6b;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
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: #817ca1;
}
header .main-nav .has-dropdown:hover .dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
header .hamburger span.line {
  display: block;
  width: 26px;
  height: 5px;
  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(7px) rotate(45deg);
}
header .hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
header .hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
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: "Orelega One", serif;
  font-size: 0.78rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1050;
  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 .has-dropdown.is-expanded > .dropdown {
  max-height: 600px;
}
.drawer-nav .main-nav .nav-menu > li.has-dropdown {
  display: flex;
  flex-direction: column;
}
.drawer-nav .main-nav .nav-menu > li.has-dropdown > .nav-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-nav .main-nav .nav-menu > li.has-dropdown > .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 .has-dropdown.is-expanded .caret-btn {
  transform: rotate(180deg);
}

.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);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero {
  background-color: rgb(40, 47, 107);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  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;
}
.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%);
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: white;
  font-size: 1.3rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
  line-height: 1;
  border-radius: 4px;
}
.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 {
  font-size: 4rem;
  margin: 0;
  font-family: "Orelega One", serif;
  margin-bottom: 2rem;
}
.hero .hero-message .hero-icon {
  width: 70px;
}
.hero .pill-button {
  font-family: "Orelega One", serif;
}

.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 {
  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: 25% 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: 60%;
  color: #FFFFFF;
}
.callout-off-white-two .copy .subhead {
  color: #b07749;
}
.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;
}
.callout-off-white-two .image {
  position: absolute;
  right: 0;
  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: 5rem;
  background: #FFFFFF;
  position: relative;
  right: -30rem;
  z-index: 2;
  width: 60%;
  color: #353334;
}
.callout-blue-two .copy h2 {
  font-family: "Orelega One", serif;
  font-size: 2.3rem;
  margin: 0;
  color: #48445d;
}
.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;
}

.water-callout {
  position: relative;
  background-image: url("images/water.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 700px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.water-callout .message {
  color: #FFFFFF;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 60%;
  text-align: center;
}
.water-callout .message h2 {
  font-family: "Orelega One", serif;
  font-size: 4rem;
  text-align: center;
}
.water-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;
}

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

.activities-title {
  font-size: 3rem;
  font-family: "Orelega One", serif;
  margin: 0;
  color: #282f6b;
}

.activities-subtitle {
  color: #e8a020;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
}

.activities-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.activities-tabs button {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  color: #333;
  font-family: "Source Sans 3", sans-serif;
}

.activities-tabs button.active {
  background: #e85d20;
  color: #fff;
}

.activities-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow.next {
  background: #e85d20;
  color: #fff;
  border: none;
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex: 1;
}

.activity-card {
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.activity-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ede9e3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.activity-image {
  height: auto;
  border-radius: 50%;
  background: #ede9e3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.activity-image img {
  width: 100%;
  height: auto;
}

.activity-content {
  padding: 24px 32px;
}

.activity-card h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
}

.activity-card p {
  margin: 0;
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
}

.activity-link {
  color: #4caf50;
  font-size: 1.2rem;
  margin-top: 8px;
  text-decoration: none;
}

.full-width-callout {
  min-height: 600px;
}
.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: #FDF3EA;
  margin: 0;
  padding: 0;
}
.full-width-callout .subhead {
  color: #b07749;
}

.bottom-pano {
  position: relative;
  background-image: url("images/pano.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  min-height: 600px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-pano .message {
  margin: 0 auto;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 60%;
  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::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #FDF3EA 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

footer {
  background: #FFFFFF;
  min-height: 300px;
  color: #282f6b;
  font-family: "Source Sans 3", sans-serif;
  padding: 4rem 0;
}
footer .top-footer {
  border-bottom: #FDF3EA 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-nav nav {
  display: flex;
  gap: 4rem;
}
footer .top-footer .footer-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .top-footer .footer-nav nav ul li {
  margin-bottom: 0.5rem;
  text-align: center;
}
footer .top-footer .footer-nav nav ul li a {
  font-family: "Orelega One", serif;
  text-decoration: none;
  color: #282f6b;
}
footer .top-footer .footer-nav nav ul li a:hover {
  text-decoration: underline;
}
footer .bottom-footer p {
  font-size: 0.8rem;
}

@media (min-width: 1280px) {
  header .logo img {
    max-width: 360px;
  }
  .callout-off-white-two .content,
.callout-blue-two .content {
    width: 80%;
  }
  .hero .hero-message h2 {
    font-size: 4rem;
  }
  .carousel-track {
    gap: 28px;
  }
  footer .top-footer .footer-nav nav {
    gap: 6rem;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  header .logo img {
    max-width: 220px;
  }
  header .contact-signin {
    font-size: 0.72rem;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .drawer-nav {
    width: 55%;
  }
  .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 .row .col-md-4 {
    flex-shrink: 1;
  }
  header .logo {
    text-align: center;
  }
  header .logo img {
    max-width: 160px;
  }
  header .nav-wrapper.nav-right {
    display: none !important;
  }
  header .hamburger {
    display: flex;
  }
  .drawer-nav {
    width: 85%;
  }
  .drawer-nav .nav-menu > li > a {
    font-size: 1.4rem;
    padding: 0.75rem 0.5rem;
  }
  .drawer-nav .caret-btn {
    display: block;
  }
  .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;
  }
  .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;
  }
  footer {
    padding: 2.5rem 0;
  }
  footer .top-footer {
    flex-direction: column;
    gap: 2rem;
  }
  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;
  }
}
@media (max-width: 767px) {
  header .logo {
    flex: 1;
    text-align: center;
  }
  header .logo img {
    max-width: 160px;
  }
}

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