/* This allows the proper encoding to work for special characters used in our css. DO NOT REMOVE - Dustin */
@charset "UTF-8";

/* Wunderkind Continuity Bar */

.bx-impress.continuityBar.cbv_1 {
  display: none !important;
}

/* Accessibility Support */

/*
Accordion Focus
****************************************
This class will allow ONLY KEYBOARD FOCUSING
to have this border styling. MOUSE CLICK will not create a focus border.

This allows us to make our styling look good for accessibility users while not ruining the
user experience for non-a11y users.
****************************************
*/

.accordion-trigger:focus-visible {
  border: 2px solid var(--brand-color-dark);
  border-radius: 0.5rem;
}

/* End of Accessibility Support */

/* ******************************** */
/*      NASM Light Mode Buttons     */
/* ******************************** */

a.nasm-primary-btn,
button.nasm-primary-btn {
  display: block;
  text-align: center;
  font-family: "Prompt", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.32px;
  line-height: 50px;
  background-color: var(--ui-color-light);
  color: var(--brand-color-black);
  width: 100%;
  transition: all 0.2s ease-out;
}

#pdp-choose a.nasm-primary-btn {
  color: var(--ui-color-light);
  background-color: var(--brand-color-dark);
}

.nasm-primary-btn:focus,
.nasm-primary-btn:hover {
  background-color: var(--brand-color-highlight);
  color: var(--brand-color-black);
}

.nasm-primary-btn:active {
  background-color: var(--ui-color-light);
  color: var(--brand-color-black);
}

/* NASM Buttons */

/* ******************************** */
/*      NASM Dark Mode Buttons      */
/* ******************************** */

a.nasm-primary-btn-dark,
button.nasm-primary-btn-dark {
  display: block;
  text-align: center;
  font-family: "Prompt", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.32px;
  line-height: 50px;
  background: var(--brand-color-dark);
  color: var(--ui-color-light);
  width: 100%;
  transition: all 0.2s ease-out;
}

.nasm-primary-btn-dark:focus,
.nasm-primary-btn-dark:hover {
  background-color: var(--brand-color-highlight);
  color: var(--brand-color-black);
}

.nasm-primary-btn-dark:active {
  background: var(--ui-color-off-dark);
  color: var(--ui-color-light);
}

/* Fill-In Animation Buttons */

/*
  ************************
  Add this supporting class to the nasm-primary-btn class
  in order to get the fill-in animation effect.

  Keep in mind that you will need to wrap any content within the button
  inside of a <span>.

  This prevents the text from being covered by the fill-in effect.
  ************************
  */

a.fill-right-btn,
button.fill-right-btn {
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

a.fill-right-btn::before,
button.fill-right-btn::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);

  /* Use any color you want. We are using the brand highlight color for the background */
  background-color: var(--brand-color-highlight);
  color: var(--brand-color-black);
}

a.fill-right-btn:hover::before,
a.fill-right-btn:active::before,
a.fill-right-btn:focus::before,
button.fill-right-btn:hover::before,
button.fill-right-btn:active::before,
button.fill-right-btn:focus::before {
  width: 100%;
}

a.fill-right-btn:active::before,
button.fill-right-btn:active::before {
  background-color: var(--ui-color-light);
}

a.fill-right-btn:active span,
button.fill-right-btn:active span {
  color: var(--brand-color-black);
}

a.fill-right-btn span,
button.fill-right-btn span {
  position: relative;
}

a.fill-right-btn:hover span,
button.fill-right-btn:hover span {
  background-color: transparent;

  /* Override with any color you want to use. We are using the brand's color here */
  color: var(--brand-color-black);
}

/*
  ************************
  Add this supporting class to the nasm-primary-btn-dark class
  in order to get the fill-in animation effect.

  Keep in mind that you will need to wrap any content within the button
  inside of a <span>.

  This prevents the text from being covered by the fill-in effect.
  ************************
  */

.fill-right-btn-dark {
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.fill-right-btn-dark::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);

  /* Override with any color you want to use. We are using the brand's color here */
  background-color: var(--brand-color-highlight);
  color: var(--brand-color-black);
}

.fill-right-btn-dark:hover::before,
.fill-right-btn-dark:active::before,
.fill-right-btn-dark:focus::before {
  width: 100%;
}

.fill-right-btn-dark:active::before {
  background: var(--ui-color-off-dark);
}

a.fill-right-btn-dark:active span,
button.fill-right-btn-dark:active span {
  color: var(--ui-color-light);
}

.fill-right-btn-dark span {
  position: relative;
}

.fill-right-btn-dark:hover span {
  background-color: transparent;

  /* Override with any color you want to use. We are using the brand's color here */
  color: var(--brand-color-black);
}

/* End of Fill-In Animation Buttons */

/* End of NASM Buttons */

/* Fade-in Classes */

.fade-in-place {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.fade-in-up {
  opacity: 1 !important;
  transform: translateY(-1.5rem) !important;
}

.fade-in-right {
  opacity: 1 !important;
  transform: translateX(1.5rem) !important;
}

.fade-in-down {
  opacity: 1 !important;
  transform: translateY(1.5rem) !important;
}

.fade-in-left {
  opacity: 1 !important;
  transform: translateX(-1.5rem) !important;
}

.fade-expand-top-bottom {
  height: 100% !important;
  opacity: 1 !important;
}

.fade-expand-bottom {
  height: 100% !important;
  opacity: 1 !important;
  transform: translateY(1.5rem) !important;
}

/* Hubspot Form Styling */

/* End of Hubspot Form Styling */

/* NASM Marquee Widget */

#nasm-marquee {
  --marquee-gap: 0.2rem;
  display: flex;
  overflow: hidden;
  gap: var(--marquee-gap);
  position: relative;
  user-select: none;
  width: 100%;
  height: 2.5rem;
  background-color: var(--brand-color-highlight);
  color: var(--brand-color-dark);
}
.marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--marquee-gap);
  animation: marquee-animation 30s linear reverse infinite;
}
.marquee-content li {
  display: inline-block;
  /* Remove default margins */
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Prompt", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}
.marquee-content img {
  width: 0.75rem;
  /* Vertical aligns arrow to text */
  margin-top: -0.15rem;
}

/* End of NASM Marquee Widget */



/* NASM Reviews Widget Styling */

/* Testimonials Section */
#homepage-testimonials {
  margin: 80px 0 0;
  display: flex;
  flex-flow: column;
  scroll-snap-align: start;
}

.homepage-testimonials-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  /* Animate opacity fade-in */
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.5s ease-in 1s, transform 0.5s ease-in 1s;
}

.homepage-testimonials-title h3 {
  width: 16rem;
  font-family: "Prompt", sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  font-style: italic;
  color: var(--brand-color-dark);
  text-align: center;
  text-transform: uppercase;
  line-height: 2.25rem;
  letter-spacing: 0.1rem;
}

/* Testimonials Carousel */
.homepage-testimonials-container {
  max-width: 500%;
  padding-top: 2rem;
}

.testimonials-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  -ms-overflow-style: none;
  /* Hide scrollbar IE and Edge */
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

/* Individual Testimonials */
.testimonial {
  flex: 1 0 82.5%;
  scroll-snap-align: start;
  object-fit: cover;
  display: flex !important;
  align-items: center;
  flex-flow: column;
}

.testimonial img {
  width: 100%;
  border-radius: 0.5rem;
  /* Animate opacity fade-in */
  opacity: 0;
  transition: height 0.5s ease-in 0.5s, opacity 0.25s ease-in 0.5s,
    transform 0.25s ease-in 0.5s;
}

.testimonial-content {
  margin-top: 3.25rem;
  font-family: "Prompt", sans-serif;
  color: var(--brand-color-dark);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5rem;
  /* Animate opacity fade-in */
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.5s ease-in 1s, transform 0.5s ease-in 1s;
}

.testimonial-quotation {
  font-size: 1.9rem;
  letter-spacing: 0.08rem;
  line-height: 0.5;
}

.testimonial-text p {
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0.04rem;
}

.testimonial-quotation,
.testimonial-text p {
  width: 95%;
  margin: auto;
  font-weight: 900;
}

.testimonial-source {
  display: flex;
  justify-content: center;
}

.testimonial-source p {
  width: 18rem;
  font-size: 0.8rem;
  font-family: "Prompt", sans-serif;
  margin-top: 1.5rem;
  letter-spacing: 0.08rem;
  line-height: 0.9rem;
}

/* Testimonial Progress Bar */
.testimonials-slider .slick-dots li {
  width: 7rem;
}

.testimonials-slider .slick-list {
  height: 100%;
}

.homepage-progress-bar {
  display: none;
}

.testimonials-slider .slick-dots {
  display: none !important;
  /* Animations */
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.5s ease-in 1s, transform 0.5s ease-in 1s;
}

/* Tablet Portrait */
@media only screen and (min-width: 768px) {
  /* Testimonials Carousel */
  .testimonials-slider {
    /* padding: 0 15rem; */
    gap: 7rem;
  }

  /* Individual Testimonials */
  .testimonial {
    flex: 1 0 70%;
  }

  .testimonials-slider .slick-slide {
    margin: 0 11px;
  }
}

/* Tablet Landscape */
@media only screen and (min-width: 1024px) {
  /* Testimonials Section */
  .homepage-testimonials-title {
    justify-content: flex-start;
  }

  .homepage-testimonials-title h3 {
    width: 31.25%;
    font-size: 3.75rem;
    line-height: 4rem;
    margin-left: 6.5rem;
  }

  .homepage-testimonials-container {
    max-width: 500%;
    padding-top: 3.45rem;
  }

  .testimonials-slider {
    width: 100%;
    aspect-ratio: 16 / 8.25;
    gap: 12rem !important;
    margin-top: 20px;
  }

  /* Individual Testimonials */
  .testimonial {
    flex: 1 0 100% !important;
    flex-flow: row !important;
  }

  .testimonial img {
    width: 40% !important;
  }

  .testimonial-content {
    width: 20rem;
    margin-top: 6rem;
    margin-left: 5.5rem;
    text-align: left;
    line-height: 1.5rem;
  }

  .testimonial-quotation {
    font-size: 1.5rem;
  }

  .testimonial-text p {
    width: 16rem;
    font-size: 1.2rem;
    line-height: 1.15rem;
  }

  .testimonial-quotation,
  .testimonial-text p {
    margin: 0;
  }

  .testimonial-source {
    justify-content: flex-start;
  }

  .testimonial-source p {
    width: 18rem;
    font-size: 10px;
    font-family: "Prompt", sans-serif;
    margin-top: 1.5rem;
    letter-spacing: 0.08rem;
    line-height: 0.7rem;
  }

  /* Testimonial Progress Bar */
  .testimonials-slider .slick-dots {
    display: block !important;
  }
}

/* Desktop */
@media only screen and (min-width: 1440px) {
  /* Testimonials Section */
  .homepage-testimonials-container {
    padding-top: 75px;
  }

  .homepage-testimonials-title h3 {
    font-size: 80px;
    line-height: 80px;
    margin-left: 155px;
  }

  .testimonials-slider {
    aspect-ratio: 16 / 7.55;
    margin-top: 25px;
  }

  /* Individual Testimonials */
  .testimonial img {
    width: 39% !important;
    max-width: 608px !important;
  }

  .testimonial-content {
    margin-top: 108px;
    margin-left: 112px;
    width: 420px;
  }

  .testimonial-quotation {
    font-size: 36px;
    line-height: 16px;
  }

  .testimonial-text p {
    /*
    width: 600px;
    font-size: 32px;
    line-height: 36px;
    */
    width: 420px;
    font-size: 24px;
    line-height: 28px;
  }

  .testimonial-source p {
    font-size: 16px;
    margin-top: 36px;
    line-height: 24px;
    letter-spacing: 2px;
    width: 320px;
  }

  /* Testimonial Progress Bar */
  .testimonials-slider .slick-dots li {
    width: 144px;
  }
}

/* End of NASM Reviews Widget Styling */

/* Start of NASM Flexible Payment Options Bar */

#pdp-choose {
  padding: 16px;
  text-align: center;
  background: var(--ui-color-off-light);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

#pdp-choose p {
  color: var(--brand-color-dark);
  font-size: 0.69rem;
  font-style: normal;
  line-height: normal;
  margin: 0 0 19px;
}

#pdp-choose a {
  max-width: 395;
  text-transform: capitalize;
}

#pdp-flexible-payments-ready {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--ui-color-light);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  margin: 3rem 0 0;
  padding: 27.67px 0;
}

.pdp-flexible-payments {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--brand-color-dark);
  margin: 0 0 15px;
}

.pdp-fp-call p {
  font-family: "Prompt", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  letter-spacing: 0.54px;
}

.pdp-fp-number a {
  color: var(--brand-color-dark);
  font-family: "Prompt", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-decoration: none;
}

.pdp-ready-choose {
  display: flex;
  gap: 15px;
  padding: 0;
  align-items: center;
}

.pdp-ready-cta p {
  font-family: "Prompt", sans-serif;
  font-size: 1rem;
}

.pdp-choose-button a {
  font-size: 0.75rem;
  text-transform: capitalize;
}

.pdp-choose-button a:nth-of-type(2) {
  display: none;
}

/* Styling for cookie notification banner */
.cookie-banner {
  display: flex;
  align-items: center;
  padding: 15px 45px 15px 20px;
  color: var(--ui-color-light);
  background-color: var(--brand-color-dark) !important;
  position: relative;

  /* z-index quick fix for nav blur */
  z-index: 1000;
}

.cookie-banner a {
  color: var(--brand-color-highlight);
}

.cookie-banner .btn {
  background: var(--brand-color-highlight);
  color: var(--brand-color-black);
  padding: 1px 7px;
  border-radius: 12px;
}

.cookie-banner.banner-hidden {
  display: none;
}

/**********************
  Mid Phone - 400px
**********************/
@media (min-width: 400px) {
  #pdp-choose p {
    font-size: 0.75rem;
  }
}

/**********************
  Tablet Portrait - 768px
**********************/
@media (min-width: 768px) {
  #pdp-flexible-payments-ready {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 4.375rem 0 0;
    padding: 15px 0;
  }

  .pdp-flexible-payments {
    flex-direction: row;
    gap: 59px;
    padding: 0;
  }

  .pdp-ready-cta {
    display: flex;
    align-items: center;
  }

  .pdp-ready-cta p {
    color: var(--brand-color-dark);
    font-size: 1rem;
    font-weight: 900;
    line-height: 100%;
    letter-spacing: 0.4px;
    margin: 0;
    text-transform: uppercase;
  }

  .pdp-choose-button a {
    color: var(--ui-color-light);
    font-size: 1rem;
    line-height: 16px;
    letter-spacing: 0.32px;
    background: var(--brand-color-dark);
    width: 306px;
    height: 50px;
    text-decoration: none;
    text-transform: capitalize;
  }

  .pdp-choose-button a:nth-of-type(1) {
    display: none;
  }

  .pdp-choose-button a:nth-of-type(2) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/**********************
  Tablet Landscape - 1024px
**********************/
@media (min-width: 1024px) {
  #pdp-flexible-payments-ready {
    background: var(--ui-color-light);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    margin: 3rem 0 0;
    flex-direction: row;
    padding: 15px 0;
    height: auto;
  }

  .pdp-flexible-payments {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: var(--brand-color-dark);
    margin: 0;
  }
}

/**********************
     Laptop - 1440px
**********************/
@media (min-width: 1440px) {
  #pdp-flexible-payments-ready {
    flex-direction: row;
    justify-content: space-between;
    background: var(--ui-color-light);
    padding: 15px 0;
  }

  .pdp-flexible-payments {
    flex-direction: row;
    gap: 59px;
    padding: 0 0 0 26px;
    margin: 0;
  }

  .pdp-ready-choose {
    display: flex;
    gap: 63px;
    padding: 0 23px 0 0;
  }
}

/**********************
     Desktop - 1920px
**********************/
@media (min-width: 1920px) {
}

/* End of NASM Flexible Payment Options Bar */