* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "area-variable", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #434343;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "area-variable", sans-serif;
  font-variation-settings: "INKT" 0, "wght" 900, "wdth" 100, "slnt" 0;
  line-height: 1.2;
  margin-bottom: 0.25em;
  color: #434343;
}

h1 {
  color: #FFF;
  font-size: 5rem;
  position: relative;
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.5rem;
  padding: 0;
  position: relative;
  margin-top: 0.25em;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 2rem;
  position: relative;
  margin: 0 0 0.5em;
}
@media (max-width: 600px) {
  h3 {
    font-size: 1.25rem;
    padding: 0 0 0 55px;
  }
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 0.75em;
  font-size: 1rem;
  color: #434343;
  line-height: 1.25em;
  font-weight: 300;
}

p + .btn {
  margin-top: 1.5em;
}

small {
  font-size: 0.875rem;
  color: #AFFA7A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1em;
}

strong {
  font-weight: 700;
}

a {
  color: #AFFA7A;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 1em;
  padding-left: 1.2em;
}

li {
  margin-bottom: 0.5em;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-small {
  font-size: 1.25rem;
}

.text-large {
  font-size: 2rem;
}

blockquote {
  position: relative;
  padding: 0 0 0 25px;
  margin: 0.5em 0 0 0;
}
blockquote:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #f07f00;
  background: linear-gradient(180deg, #f07f00 4%, #e62737 68%, #c50637 100%);
}
blockquote p {
  font-weight: 500;
}
blockquote p:first-of-type {
  font-size: 1.25rem;
  font-weight: 300;
  color: #AFFA7A;
}

body {
  font-family: "area-variable", sans-serif;
  color: #434343;
  background: #FFF;
}
@media (max-width: 1100px) {
  body {
    background: url("../images/holding-bgrnd.png") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
  }
}
body.killscroll {
  overflow: hidden;
}

.site-wrapper {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.menu-underlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
  display: none;
}

.modal-close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 30px;
  height: 30px;
  opacity: 0.3;
  cursor: pointer;
}

.modal-close:hover {
  opacity: 1;
}

.modal-close:before, .modal-close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #333;
}

.modal-close:before {
  transform: rotate(45deg);
}

.modal-close:after {
  transform: rotate(-45deg);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.col {
  padding: 0 10px;
  flex: 1;
}

.module-page-hero {
  position: relative;
  height: 100svh;
  height: 100vh;
}
.module-page-hero:after {
  content: "";
  z-index: 2;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url("../images/rip-white-bottom.png") bottom center no-repeat;
  background-size: contain;
}
.module-page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.module-page-hero__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  top: 300px;
}
@media (max-width: 600px) {
  .module-page-hero__content {
    padding: 0 0 0 55px;
  }
}

.accordion {
  width: 100% !important;
}

.accordion-header {
  font-size: 1.25rem;
  line-height: 28px;
  cursor: pointer;
  color: #AFFA7A;
  font-weight: 400;
  border-top: 1px solid #434343;
  padding: 20px 20px 20px 35px;
  position: relative;
  transition: 0.25s all ease;
}
@media (max-width: 1100px) {
  .accordion-header {
    line-height: 28px;
    padding: 15px 15px 15px 30px;
  }
}
.accordion-header:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  color: #AFFA7A;
  transition: 0.25s all ease;
  font-size: 2.5rem;
  font-weight: 400;
  width: 20px;
  height: 20px;
  background: url("../images/accordion-arrow.svg") center center no-repeat;
  background-size: contain;
  transform-origin: top;
}
.accordion-header.active-header:before {
  rotate: 180deg;
}
.accordion-header:hover {
  color: #434343;
}

.accordion-content {
  display: none;
  padding: 0px 0px 20px 35px;
  width: 100% !important;
}
.accordion-content ul {
  margin: 0 0 20px;
  padding: 0;
}
.accordion-content ul li {
  font-size: 1.125rem;
  color: #434343;
  line-height: 1.25em;
  font-weight: 300;
  padding: 0;
  position: relative;
  margin: 0 0 5px 20px;
}
.accordion-content ul li::marker {
  color: #AFFA7A;
}

.alm-btn-wrap:has(.done) {
  display: none;
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate.animate--fade {
  transform: none;
}
.animate.animate--left {
  transform: translateX(-30px);
}
.animate.animate--right {
  transform: translateX(30px);
}
.animate.animate--delay-1 {
  transition-delay: 0.2s;
}
.animate.animate--delay-2 {
  transition-delay: 0.4s;
}
.animate.animate--delay-3 {
  transition-delay: 0.6s;
}
.animate.animate--delay-4 {
  transition-delay: 0.8s;
}
.animate.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .animate {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
.button-dark {
  display: inline-block;
}
.button-dark a {
  min-width: 190px;
  display: block;
  color: #FFF;
  text-decoration: none;
  text-align: left;
  background: #434343 url(../images/button-arrow-white.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  text-decoration: none;
  padding: 10px 50px 10px 20px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.25s ease-out;
}
.button-dark a:hover {
  background: #FFF url(../images/button-arrow.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  color: #AFFA7A;
}

.button-light {
  display: inline-block;
  background: #FFF;
}
.button-light a {
  min-width: 190px;
  display: block;
  color: #434343;
  text-decoration: none;
  text-align: left;
  background: url(../images/button-arrow.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  text-decoration: none;
  padding: 10px 50px 10px 20px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.25s ease-out;
}
.button-light a:hover {
  background: #434343 url(../images/button-arrow-white.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  color: #EBFFF5;
}

.button-red {
  display: inline-block;
}
.button-red a {
  min-width: 190px;
  display: block;
  color: #FFF;
  text-decoration: none;
  text-align: left;
  background: #AFFA7A url(../images/button-arrow-white.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  text-decoration: none;
  padding: 10px 50px 10px 20px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.25s ease-out;
}
.button-red a:hover {
  background: #434343 url(../images/button-arrow-white.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  color: #EBFFF5;
}

.button-grey {
  display: inline-block;
}
.button-grey a {
  display: block;
  color: #434343;
  text-decoration: none;
  text-align: left;
  background: #EBFFF5 url(../images/button-arrow.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  text-decoration: none;
  padding: 10px 50px 10px 20px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.25s ease-out;
  min-width: 190px;
}
.button-grey a:hover {
  background: #434343 url(../images/button-arrow-white.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  color: #EBFFF5;
}

.slick-prev {
  position: absolute;
  bottom: 2.5rem;
  right: 90px;
  width: 40px;
  height: 40px;
  border: 1px solid #EBFFF5;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -9999px;
  background: transparent url("../images/arrow-left.svg") center center no-repeat;
  background-size: 16px;
  z-index: 5;
  cursor: pointer;
  opacity: 0.85;
  transition: all ease 0.25s;
}
.slick-prev:hover {
  opacity: 1;
  right: 95px;
}

.slick-next {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 40px;
  height: 40px;
  border: 1px solid #EBFFF5;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -9999px;
  background: transparent url("../images/arrow-right.svg") center center no-repeat;
  background-size: 16px;
  z-index: 5;
  cursor: pointer;
  opacity: 0.85;
  transition: all ease 0.25s;
}
.slick-next:hover {
  opacity: 1;
  right: 35px;
}

.slick-dots {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 10px;
  transform: translateY(50px);
}
.slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0;
}
.slick-dots li button {
  appearance: none;
  padding: 0;
  margin: 0;
  text-indent: -9999px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #434343;
  border: none;
  display: block;
}
.slick-dots li.slick-active button {
  background: #FFF;
}

.frm_forms .frm_message {
  border: none;
  appearance: none;
  border-radius: 999em;
  background: #AFFA7A;
  color: #2F524E;
  font-family: "area-variable", sans-serif;
  font-variation-settings: "INKT" 0, "wght" 900, "wdth" 100, "slnt" 0;
  font-size: 1.25rem;
  padding: 1rem 2rem;
}
.frm_forms#frm_form_2_container {
  padding: 1rem 0 0 0;
}
.frm_forms#frm_form_2_container form fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
.frm_forms#frm_form_2_container form fieldset input {
  min-width: 400px;
  width: 100%;
  text-align: center;
  padding: 0.25rem;
  border: none;
  color: #fFF;
  border-bottom: 1px solid #FFF;
  font-size: 1.25rem;
  background: none;
  appearance: none;
  font-family: "area-variable", sans-serif;
  font-variation-settings: "INKT" 0, "wght" 600, "wdth" 100, "slnt" 0;
  outline: 0;
}
.frm_forms#frm_form_2_container form fieldset input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  opacity: 1;
  color: white;
}
.frm_forms#frm_form_2_container form fieldset input::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  color: white;
}
.frm_forms#frm_form_2_container form fieldset input:-ms-input-placeholder {
  /* IE 10+ */
  opacity: 1;
  color: white;
}
.frm_forms#frm_form_2_container form fieldset input:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  color: white;
}
@media (max-width: 600px) {
  .frm_forms#frm_form_2_container form fieldset input {
    min-width: 100%;
  }
}
.frm_forms#frm_form_2_container form fieldset .frm_error {
  color: #AFFA7A;
  font-size: 1rem;
  text-align: center;
}
.frm_forms#frm_form_2_container form fieldset .frm_submit {
  margin: 1rem 0 0 0;
  justify-content: center;
}
.frm_forms#frm_form_2_container form fieldset .frm_submit button {
  cursor: pointer;
  border: none;
  appearance: none;
  border-radius: 999em;
  background-color: #AFFA7A;
  border: 2px solid #AFFA7A;
  color: #2F524E;
  font-family: "area-variable", sans-serif;
  font-variation-settings: "INKT" 0, "wght" 900, "wdth" 100, "slnt" 0;
  font-size: 1.25rem;
  padding: 0.25rem 1rem 0.5rem 40px;
  background-image: url("data:image/svg+xml,%3Csvg id='Button_Icon_Button' xmlns='http://www.w3.org/2000/svg' width='10.8mm' height='10.8mm' version='1.1' viewBox='0 0 30.7 30.7'%3E%3Cpath id='Path_50' d='M15.3,2.3c7.2,0,13.1,5.9,13.1,13.1s-5.9,13.1-13.1,13.1S2.2,22.6,2.2,15.3c0-7.2,5.9-13.1,13.1-13.1M15.3,0C6.9,0,0,6.9,0,15.3s6.9,15.3,15.3,15.3,15.3-6.9,15.3-15.3C30.7,6.9,23.8,0,15.3,0c0,0,0,0,0,0Z' fill='%232F524E'/%3E%3Cpolygon points='16.1 8.6 14.6 10.2 18.8 14.2 7.5 14.2 7.5 16.5 18.8 16.5 14.6 20.4 16.1 22.1 23.3 15.3 16.1 8.6' fill='%232F524E'/%3E%3C/svg%3E%0A");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 10px 50%;
}
.frm_forms#frm_form_2_container form fieldset .frm_submit button:hover {
  border: 2px solid #AFFA7A;
  color: #AFFA7A;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg id='Button_Icon_Button' xmlns='http://www.w3.org/2000/svg' width='10.8mm' height='10.8mm' version='1.1' viewBox='0 0 30.7 30.7'%3E%3Cpath id='Path_50' d='M15.3,2.3c7.2,0,13.1,5.9,13.1,13.1s-5.9,13.1-13.1,13.1S2.2,22.6,2.2,15.3c0-7.2,5.9-13.1,13.1-13.1M15.3,0C6.9,0,0,6.9,0,15.3s6.9,15.3,15.3,15.3,15.3-6.9,15.3-15.3C30.7,6.9,23.8,0,15.3,0c0,0,0,0,0,0Z' fill='%23AFFA7A'/%3E%3Cpolygon points='16.1 8.6 14.6 10.2 18.8 14.2 7.5 14.2 7.5 16.5 18.8 16.5 14.6 20.4 16.1 22.1 23.3 15.3 16.1 8.6' fill='%23AFFA7A'/%3E%3C/svg%3E%0A");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 10px 50%;
}

.grecaptcha-badge {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.hamburger {
  padding: 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger-box {
  width: 30px;
  height: 19px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #000000;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

body.home .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  background-color: #000000;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 16px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg);
  background-color: #FFFFFF;
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-90deg);
  background-color: #FFFFFF;
}

.hero-video {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
@media (max-width: 600px) {
  .hero-video {
    min-height: unset;
    overflow: visible;
  }
}
.hero-video__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
@media (max-width: 1100px) {
  .hero-video__bg {
    display: none;
  }
}
.hero-video__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5625rem;
}
@media (max-width: 1100px) {
  .hero-video__content {
    padding: 0 1.5625rem 5rem 1.5625rem;
  }
}
@media (max-width: 600px) {
  .hero-video__content {
    padding: 2.5rem 1.5625rem;
    display: block;
    min-height: 0;
  }
}
.hero-video__content h1 {
  font-size: 12.5rem;
  line-height: 1em;
  color: #FFF;
  text-align: center;
  color: #AFFA7A;
  margin: 0 0 3.125rem;
}
@media (max-width: 1100px) {
  .hero-video__content h1 {
    font-size: 5rem;
  }
}
@media (max-width: 600px) {
  .hero-video__content h1 {
    margin: 0 0 1.5rem;
  }
}
@media (max-height: 800px) and (min-width: 768px) {
  .hero-video__content h1 {
    font-size: 7.5rem;
  }
}
@media (max-height: 800px) {
  .hero-video__content h1 br {
    display: none;
  }
}
.hero-video__content h2 {
  font-size: 2.5rem;
  color: #FFF;
  line-height: normal;
  margin: 0 0 1.25rem;
}
@media (max-width: 1100px) {
  .hero-video__content h2 {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .hero-video__content h2 {
    font-size: 1.5rem;
  }
}
.hero-video__content p {
  color: #FFF;
  font-size: 1.5rem;
  font-family: "area-variable", sans-serif;
  font-variation-settings: "INKT" 0, "wght" 600, "wdth" 100, "slnt" 0;
}
@media (max-width: 1100px) {
  .hero-video__content p {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .hero-video__content p {
    font-size: 0.875rem;
  }
}
.hero-video__footer {
  position: absolute;
  bottom: 3.125rem;
  width: 100%;
  padding: 0 3.125rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .hero-video__footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .hero-video__footer {
    position: relative;
    padding: 2.5rem 1.5625rem 1rem 1.5625rem;
  }
}
.hero-video__footer p {
  margin: 0;
  color: #FFF;
  font-size: 1rem;
  line-height: normal;
  font-family: "area-variable", sans-serif;
  font-variation-settings: "INKT" 0, "wght" 700, "wdth" 100, "slnt" 0;
}
@media (max-width: 1100px) {
  .hero-video__footer p {
    font-size: 0.75rem;
  }
}
.hero-video__footer p a {
  color: #FFF;
}
.hero-video__footer p a:hover {
  color: #AFFA7A;
}

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