@charset "UTF-8";
/* CSS Document */


/* ========================================
   SCROLL FIX (html/body)
   ======================================== */

html {
  height: auto !important;
  overflow-y: auto !important;
}

body {
  height: auto !important;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto !important;
}


/* ========================================
   CUSTOM SITE OVERRIDES
   ======================================== */

.container,
.container-fluid {
  padding-left: 4px;
  padding-right: 4px;
}


/* ========================================
   TYPOGRAPHY
   ======================================== */

body {
  font-family: Geneva, Verdana, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.4;
  color: #333333;
}

p {
  margin-top: 0;
  margin-bottom: 12px;
}


/* ========================================
   SLICK CAROUSEL
   ======================================== */

.slick-carousel {
  position: relative;
  display: block;
  width: 987px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}

.slick-carousel .slick-list {
  margin: 0;
  padding: 0 !important;
  overflow: hidden;
}

.slick-carousel .slick-slide {
  margin: 0;
  padding: 0;
}

.slick-carousel .slick-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}


/* ========================================
   ARROWS
   ======================================== */

.slick-carousel .slick-prev,
.slick-carousel .slick-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.slick-carousel .slick-prev {
  left: 8px;
}

.slick-carousel .slick-next {
  right: 8px;
}

.slick-carousel .slick-prev:before,
.slick-carousel .slick-next:before {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 32px;
  color: #666666;
  opacity: 1;
}

.slick-carousel .slick-prev:before {
  content: "‹";
}

.slick-carousel .slick-next:before {
  content: "›";
}

.slick-carousel .slick-prev:hover:before,
.slick-carousel .slick-next:hover:before {
  color: #333333;
}


/* ========================================
   BAR SLIDE INDICATORS
   ======================================== */

.slick-carousel .slick-dots {
  position: relative;
  bottom: auto;
  width: 100%;
  margin: 10px 0 0 0;
  padding: 0;
  text-align: center;
}

.slick-carousel .slick-dots li {
  width: 28px;
  height: 6px;
  margin: 0 3px;
}

.slick-carousel .slick-dots li button {
  width: 28px;
  height: 6px;
  padding: 0;
}

.slick-carousel .slick-dots li button:before {
  width: 28px;
  height: 4px;
  top: 1px;
  left: 0;
  content: "";
  background: #666666;
  opacity: 0.35;
}

.slick-carousel .slick-dots li.slick-active button:before {
  opacity: 1;
}


/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 987px) {

  .slick-carousel {
    width: 100%;
    max-width: 100%;
  }

  .slick-carousel .slick-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

}


@media (max-width: 767px) {

  body {
    font-size: clamp(17px, 4.5vw, 22px);
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  p {
    margin-bottom: 16px;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* Show carousel above text on mobile. Requires about.html's
     text content to be grouped in a single .text-content wrapper,
     so .page has exactly two children to flip.
     !important is needed here because the later, unconditional
     ".page { display: block; }" rule near the bottom of this file
     has equal specificity and would otherwise win on every
     screen size, mobile included, since it comes after this
     media query in source order. */
  .page {
    display: flex !important;
    flex-direction: column-reverse !important;
  }


  /* Mobile arrows — bigger tap targets */

  .slick-carousel .slick-prev,
  .slick-carousel .slick-next {
    width: 56px;
    height: 56px;
  }

  .slick-carousel .slick-prev {
    left: 6px;
  }

  .slick-carousel .slick-next {
    right: 6px;
  }

  .slick-carousel .slick-prev:before,
  .slick-carousel .slick-next:before {
    font-size: 56px;
    line-height: 50px;
    color: #666666;
    opacity: 1;
  }


  /* Mobile bars */

  .slick-carousel .slick-dots {
    margin-top: 10px;
  }

  .slick-carousel .slick-dots li {
    width: 30px;
    height: 6px;
    margin: 0 3px;
  }

  .slick-carousel .slick-dots li button {
    width: 30px;
    height: 6px;
  }

  .slick-carousel .slick-dots li button:before {
    width: 30px;
    height: 4px;
    top: 1px;
    font-size: 0;
  }

}
/* ========================================
   FIX SLICK IMAGE HEIGHT
   ======================================== */

.slick-carousel .slick-list {
  height: auto !important;
}

.slick-carousel .slick-track {
  height: auto !important;
}

.slick-carousel .slick-slide {
  height: auto !important;
}

.slick-carousel .slick-slide > div {
  height: auto !important;
}

.page {
  display: block;
  width: 100%;
}