/* lock background scroll when menu is open */
html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

:root {
  /* Primary Colors */
  --blue-dk: #0060af;
  --blue-md: #0089d0;
  --blue-lt: #00aeef;
  --blue-t: #e3f2fa;
  --purple-dk: #5c2e91;
  --purple-t: #f0ecf5;
  --gray: #707070;
  --black: #484848;
  --black-dk: #140000;
  --white: #ffffff;

  --blue-gradient: linear-gradient(214deg, #0060af 0%, #0089d0 100%) 0% 0%;
  /* LIGHT BLUE ON LEFT */
  --blue-gradient-90: linear-gradient(90deg, #0060af 0%, #0089d0 100%) 0% 0%;
  --purple-gradient: linear-gradient(149deg, #92278f 0%, #5c2e91 100%);
}

* {
  box-sizing: border-box;
  scroll-margin-top: 175px;
}

body {
  font-family: "Cachet", sans-serif;
  color: #000;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  color: var(--gray);

  font-weight: 200;
  font-size: 24px;
  line-height: 1.5;
}

body.admin-bar #masthead {
  top: 32px;
  font-family: "Cachet";
}

a {
  color: var(--purple-dk);
  text-decoration: none;
}

ul {
  padding: 0;
  padding-left: 1rem;
  margin: 0;
}

button {
  background: none;
  border: none;
}

.button-item.btn-chevron {
  margin-left: 13px;
}

.button-row {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  border-radius: 1000px;
  padding: 8px 28px;
  letter-spacing: -0.05em;
}


.btn .btn-text {
  margin: 0;
  display: inline-block;
  line-height: 1;
}

.btn.btn-blue-gradient {
  font-size: 18px;
  background: var(--blue-gradient);
  color: var(--white);
  border: none;
  font-weight: 700;
  transition: unset;
  outline: 3px solid transparent;
  outline-offset: -3px;
  transition: outline 0.3s ease-out;
}

.btn.btn-blue-gradient:hover {
  outline: 3px solid var(--purple-dk);
  outline-offset: -3px;
}

/* .btn.btn-blue-gradient .btn-text { */
/*   margin: 12px 23px; */
/* } */


.btn.btn-purple-lt {
  font-weight: 700;
  background: var(--purple-t);
  color: var(--purple-dk);
  font-size: 16px;
}

.btn.btn-purple-lt:hover {
  background: var(--purple-dk);
  color: var(--white);
}

.btn.btn-white-transparent {
  background: rgba(255, 255, 255, 0.20);
  color: var(--white);
  transition: background 0.3s ease-out;
}

.btn.btn-white-transparent:hover {
  background: rgba(255, 255, 255, 0.30);
}

.button-item {
  position: relative;
}

.button-item .chevron {
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translate(0px, calc(-50% + -1.4px));
  font-size: 54px;
  color: var(--blue-lt);
  pointer-events: none;
  transition: all 0.3s ease-out;
}

.button-item:hover .chevron {
  left: 100%;
  transform: translate(-50%, calc(-50% + -1.2px));
}

.button-item .btn.btn-chevron {
  font-size: 28px;
  text-align: left;
  font-weight: 800;
  background: var(--blue-dk);
  color: var(--white);
  padding: 5px 30px;
  padding-right: 60px;
  border-radius: 5px;
}

.button-item:hover .btn.btn-chevron {
  background: var(--blue-lt);
}

.button-item .download {
  font-size: 14px;
  margin-left: 6px;
}

.button-item .download svg {
  transform: translateY(-3px);
}

.custom-pagination .splide__pagination__page {
  border-radius: 0;
  background: var(--gray);
  opacity: 0.4;
  width: 24px;
  height: 6px;
  border-radius: 100px;
}

.custom-pagination .splide__pagination__page.is-active {
  opacity: 1;
  transform: unset;
}

.content-blocks>* {
  margin-bottom: 125px;
}

.home .icon-cta {
  margin-bottom: 30px;
}

.video-modal-trigger {
  border: none;
  display: block;
  background: none;
  position: relative;
}

.video-modal-trigger .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: #ffffffaa;
  /* opacity: 0.5; */
  border-radius: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding-top: 7px;
  box-shadow: 3px 3px 6px #00000064;
  z-index: 10;
}

.video-modal-trigger .play-button .icon {
  font-size: 65px;
  filter: drop-shadow(0px 3px 6px #00000029);
}

.marker-content {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Cachet", sans-serif;
}

#video-modal {
  display: flex;
  max-height: 0px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.3s ease-out;
}

#video-modal.active {
  backdrop-filter: blur(3px);
  max-height: unset;
}

#video-modal .video-modal__close {
  position: absolute;
  top: 5px;
  right: 6px;
  color: var(--white);
  font-size: 30px;
  z-index: 10;
}

#video-modal .modal-content {
  background: var(--purple-gradient);
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  width: 60%;
  overflow: hidden;
}

#video-modal iframe {
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 15px;
}

.slider__arrows--small.splide__arrows {
  display: flex;
}

.slider__arrows--small .splide__arrow {
  background: transparent;
  opacity: 1;
  width: 1.5em;
}

.slider__arrows--small .splide__arrow:disabled {
  opacity: 0.6;
}

.arrows__wrapper {
  padding-left: 5rem;
  padding-right: 5rem;
}

.splide__arrows--thin {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.custom-pagination .splide__pagination {
  gap: 12px;
}

.splide__arrows--thin .splide__arrow {
  position: absolute;
  background: transparent;
  opacity: 1;
  color: var(--blue-md);
  font-size: 55px;
}

.splide__arrows--thin .splide__arrow--next {
  right: -7rem;
}

.splide__arrows--thin .splide__arrow--prev {
  left: -7rem;
}

.pagination {
  justify-content: center;
}

.pagination .nav-links {
  display: flex;
  gap: 10px;
}

.pagination .pagination-arrow.prev {
  display: inline-block;
  transform: rotate(180deg);
}

h2 .h3 {
  display: block;
  color: var(--black-dk);
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
}

.section-title h2 {
  margin-bottom: 7px;
}

/* ****************** TYPOGRAPHY ********************** */
/* ****************** TYPOGRAPHY ********************** */
/* ****************** TYPOGRAPHY ********************** */
h1,
.h1 {
  font-weight: 700;
  font-size: 60px;
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin-bottom: 0;
}

h2,
.h2 {
  font-weight: 700;
  font-size: 50px;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--blue-md);
}

h3,
.h3 {
  font-weight: 200;

  font-size: 36px;
  letter-spacing: -0.025em;
  /* line-height: 1.4; */
  line-height: 1.2;
  color: var(--black-dk);
}

h4,
.h4 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

h5,
.h5 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.body-1 {
  font-weight: 200;
  font-size: 28px;
  line-height: 1.6;
}

.body-2 {
  font-weight: 200;
  font-size: 22px;
  line-height: 1.5;
}

.body-3 {
  font-weight: 200;
  font-size: 20px;
  line-height: 1.5;
  color: var(--black);
}

.body-4 {
  font-weight: 200;
  font-size: 18px;
  letter-spacing: -0.45px;
  line-height: 1.5;
}

.breadcrumbs-container a {
  font-size: 24px;
  font-weight: 200;
  color: white;
}

.last-breadcrumb {
  font-size: 24px;
  font-weight: 700;
}

.breadcrumbs-container .seperator {
  margin: 0 0.5rem;
  font-size: 16px;
}

.breadcrumbs>.seperator:nth-last-child(2) {
  stroke-width: 30px;
  stroke: currentColor;
  stroke-linejoin: round;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.alerts {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
}

.nav-menu-items {
  font-size: 24px;
  font-weight: 700;
}

.cards {
  font-size: 50px;
  font-weight: 700;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  body {
    font-size: 18px;
  }

  h1,
  .h1 {
    font-size: 32px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h3,
  .h3 {
    font-size: 22px;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  h5,
  .h5 {
    font-size: 16px;
  }

  .body-1 {
    font-size: 18px;
    line-height: 1.3;
  }

  .body-2 {
    font-size: 16px;
    line-height: 1.3;
  }

  .page-title {
    font-size: 32px;
  }

  .breadcrumbs-standard {
    font-size: 16px;
  }

  .breadcrumbs-highlighted {
    font-size: 16px;
  }

  .alerts {
    font-size: 20px;
    line-height: 1.2;
  }

  .nav-menu-items {
    font-size: 16px;
  }

  .cards {
    font-size: 32px;
  }

  .button-row {
    gap: 11px;
  }

  .button-item .btn.btn-chevron {
    font-size: 20px;
  }

  .button-item .chevron {
    left: -20px;
    font-size: 42px;
    transform: translate(0px, calc(-50% + 0px));
  }

  .video-modal-trigger .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ffffffaa;
    /* opacity: 0.5; */
    border-radius: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding-top: 7px;
    box-shadow: 3px 3px 6px #00000064;
    z-index: 10;
  }

  .video-modal-trigger .play-button .icon {
    font-size: 40px;
    filter: drop-shadow(0px 3px 6px #00000029);
  }
}

/* ****************** CONTAINERS ********************** */
:root {
  --container-default: 1520px;
  --container-lg: 1600px;
  --container-xl: 1800px;
  --container-padding: 1.5rem;
  --container-lg-padding: 1rem;
  --container-xl-padding: 0.5rem;
}

/* Base container (max 1520px) */
.container {
  max-width: var(--container-default);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Large container (max 1600px) */
.container-lg {
  max-width: var(--container-lg);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-lg-padding);
  padding-right: var(--container-lg-padding);
}

/* Extra Large container (max 1800px) */
.container-xl {
  max-width: var(--container-xl);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-xl-padding);
  padding-right: var(--container-xl-padding);
}

/* Responsive Shrinking */
@media (max-width: 1600px) {
  .container-xl {
    max-width: var(--container-lg);
    /* Shrinks to 1600px */
  }
}

@media (max-width: 1520px) {

  .container-xl,
  .container-lg {
    max-width: var(--container-default);
    /* Shrinks to 1520px */
  }
}

@media (max-width: 1360px) {

  .container,
  .container-lg,
  .container-xl {
    max-width: 1360px;
  }
}

@media (max-width: 1170px) {

  .container,
  .container-lg,
  .container-xl {
    max-width: 1170px;
  }
}

@media (max-width: 960px) {

  .container,
  .container-lg,
  .container-xl {
    max-width: 960px;
  }
}

@media (max-width: 720px) {

  .container,
  .container-lg,
  .container-xl {
    max-width: 720px;
  }
}

@media (max-width: 650px) {

  .container,
  .container-lg,
  .container-xl {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container-xl {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ****************** RANDOM GLOBALS ********************** */
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gradient-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.bg-img.z-1 {
  z-index: -1;
}

.content-blocks {
  overflow: hidden;
}

@media (max-width: 996px) {
  .breadcrumbs-container a {
    font-size: 16px;
  }

  .last-breadcrumb {
    font-size: 16px;
  }

  .section-title {
    margin-bottom: 10px;
  }

  #video-modal .modal-content {
    width: 100%;
    padding: .5rem;
  }
}

@media (max-width: 768px) {
  .content-blocks>* {
    margin-bottom: 60px;
  }

  .video-modal-trigger .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ffffffaa;
    /* opacity: 0.5; */
    border-radius: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 3px 3px 6px #00000064;
    z-index: 10;
  }

  .video-modal-trigger .play-button .icon {
    font-size: 30px;
    filter: drop-shadow(0px 3px 6px #00000029);
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    margin-bottom: 5px;
  }
}

/* ************ templated pages ************** */

/*404 page*/
.four-oh-four-page {
  margin: 0 0 120px;
}

.four-oh-four-page input[type="text"] {
  margin-top: 30px;
  width: 500px;
  max-width: 90%;
  font-size: 20px;
}

.four-oh-four-page [type="submit"] {
  margin: 10px;
}

.four-oh-four-page .callout-steps {
  padding: 60px 0;
}

/*search page*/
.blog-archive #search-results.blog-archive__posts {
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.blog-archive #search-results.blog-archive__posts .blog-archive__post--wrapper {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 300px;
}

.blog-archive #search-results.blog-archive__posts .blog-archive__post--wrapper .blog-archive__post {
  height: 100%;
}

.blog-archive #search-results.blog-archive__posts .blog-archive__post--wrapper .blog-archive__img {
  display: none;
}

.blog-archive #search-results.blog-archive__posts nav.navigation.pagination {
  flex: 0 0 100%;
}

/* *************************************ANIMATIONS************************************* */
.floating-1 {
  animation-name: floating-1;
  /* animation-duration: calc(2.5s + (0.5s * var(--random-factor, 1)));
	animation-delay: calc(0.5s * var(--random-factor, 1)); */
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  position: absolute;
}

@keyframes floating-1 {
  from {
    transform: translate(0, 0px);
  }

  55% {
    transform: translate(0, 15px);
  }

  to {
    transform: translate(0, -0px);
  }
}

.floating-2 {
  animation-name: floating-2;
  /* animation-duration: calc(2.5s + (0.5s * var(--random-factor, 1)));
	animation-delay: calc(0.5s * var(--random-factor, 1)); */
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  position: absolute;
}

@keyframes floating-2 {
  from {
    transform: translate(0, 0px);
  }

  55% {
    transform: translate(0, -15px);
  }

  to {
    transform: translate(0, -0px);
  }
}

.floating-3 {
  animation-name: floating-3;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating-3 {
  from {
    transform: translate(0, 0px);
  }

  55% {
    transform: translate(0, 10px);
  }

  to {
    transform: translate(0, -0px);
  }
}

.tossing-1 {
  animation-name: tossing-1;
  -webkit-animation-name: tossing-1;
  /* animation-duration: calc(2.5s + (0.5s * var(--random-factor, 1)));
	animation-delay: calc(0.5s * var(--random-factor, 1)); */
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate-reverse;
  -webkit-animation-direction: alternate-reverse;
}

@keyframes tossing-1 {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

.tossing-2 {
  animation-name: tossing-2;
  -webkit-animation-name: tossing-2;
  /* animation-duration: calc(2.5s + (0.5s * var(--random-factor, 1)));
	animation-delay: calc(0.5s * var(--random-factor, 1)); */
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate-reverse;
  -webkit-animation-direction: alternate-reverse;
}

@keyframes tossing-2 {
  0% {
    transform: rotate(-3deg);
  }

  100% {
    transform: rotate(3deg);
  }
}

.animated-swipe-icon {
  animation-name: animated-swipe-icon;
  -webkit-animation-name: animated-swipe-icon;
  /* animation-duration: 1s; */
  animation-duration: 2s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate-reverse;
  -webkit-animation-direction: alternate-reverse;
}

@keyframes animated-swipe-icon {
  0% {
    transform: rotate(-6deg);
  }

  100% {
    transform: rotate(6deg);
  }
}

iframe#gnewtonIframe {
  width: 1000px !important;
  margin: auto;
  display: block;
}

/* MEC EVENTS SHORTCODE */
.content-blocks#shortcode .mec-event-tile-view article.mec-tile-item .mec-event-month span.mec-start-date-label {
  font-size: 28px;
}


/* DAXKO FORMS */
.content-blocks #daxko_form_div {
  width: unset;
  margin: unset;
}

.content-blocks #daxko_form_div .daxko-form-container #daxko_prospect_prospect_form {
  width: 100%;
}

.content-blocks #daxko_form_div .daxko-form-container {
  padding: 4px;
}

.content-blocks #daxko_form_div .daxko-form-container .daxko-form-control-group .daxko-form-controls {
  width: 100%;
}