:root {
  --color-primary: #02A0CF;
  --color-primary-lighter: #075eaa;
  --color-secondary: #B9C821;
  --color-gray-150: #f4f4f4;
  --color-blue-150: #174F8D;
  --color-blue-250: #2C3647;
  --color-blue-350: #33649A;
  --color-gray-50: #F2F4F7;
  --color-gray-250: #dee3eb;
  --color-gray-450: #5c5d5d;
  --color-bluegray-150: #b9c1c8;
  --color-bluegray-450: #879ca5;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --plyr-color-main: var(--color-primary-lighter);
  --plyr-video-controls-background: #000;
}

:root[data-color-scheme="accessible"] {
  --color-bluegray-450: #000;
}
:root[data-color-scheme="accessible"] a,
:root[data-color-scheme="accessible"] h2.subhead,
:root[data-color-scheme="accessible"] .button--secondary{
  color: #000;
}


[x-cloak] {
  display: none;
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body[class] {
  -webkit-font-feature-settings: "liga" 0;
  font-feature-settings: "liga" 0;
  -webkit-font-variant-ligatures: no-common-ligatures;
  font-variant-ligatures: no-common-ligatures;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
  font-weight: 400;
  letter-spacing: -0.03em;
}

.container-sm {
  max-width: 78ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .container-sm {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1800px) {
  .container {
    max-width: 1280px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.icon-tabler {
  width: 100%;
  height: auto;
}

.transition {
  transition: all 400ms var(--ease-out-expo);
}

body.remove-mouse::before {
  content: "";
  z-index: 9999999;
  width: 100vw;
  height: 100vh;
  position: fixed;
}

img {
  width: 100%;
}

/* button */

.button {
  padding: 0.75rem 4rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.button--primary {
  background-color: var(--color-primary);
  color: #fff;
}
.button--secondary {
  background-color: var(--color-secondary);
  color: #fff;
}

@media (max-width: 1024px) {
  .button {
    padding: 0.75rem 3rem;
    border-radius: 0.5rem;
  }
}

/* Embla */
.bg-gray-50 {
  background-color: var(--color-gray-50);
}
.embla {
  --slide-spacing: 1rem;
  --slide-size: 100%;
  --slide-height: 19rem;
}

.embla__container {
  display: flex;
  flex-direction: row;
  height: auto;
}

.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  background-size: contain;
  
}
.embla__slide.showmiddle {
  background-position: -30%;
}

.embla__slide:not(.active) * {
  visibility: hidden;
}

.embla__slide__img {
  display: block;
  height: var(--slide-height);
  width: 100%;
  object-fit: cover;
}

.embla__slide__number {
  width: 4.6rem;
  height: 4.6rem;
  z-index: 1;
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border-radius: 50%;
  background-color: rgba(var(--background-site-rgb-value), 0.85);
  line-height: 4.6rem;
  font-weight: 900;
  text-align: center;
  pointer-events: none;
}

.embla__slide__number > span {
  color: var(--brand-primary);
  background-image: linear-gradient(
    45deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.6rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.embla__tooltip svg {
  pointer-events: none;
}

/* Homepage video */

.homepage__video .plyr__poster {
  background-size: cover;
}

/* Homepage products */

.homepage__products-tab {
  position: relative;
}

.homepage__products-tab[aria-selected="true"]::after {
  content: none;
}

/* Tooltip */

.floating-ui-tooltip {
  width: max-content;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 90%;
  text-align: left;
  animation: floatingUIAnimation 400ms var(--ease-out-expo);
  display: none;
}

.floating-ui-tooltip--product {
  background-color: #fff;
  padding: 0.75rem 1rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
  border-radius: 0.25em;
  z-index: 1000;
  max-width: 20rem;
}

@media (max-width: 480px) {
  .floating-ui-tooltip--product {
    max-width: 15rem;
  }
}

.floating-ui-tooltip--product img {
  border-radius: 0.25em;
  margin-bottom: 0.5rem;
}

.floating-ui-tooltip__arrow {
  position: absolute;
  background: #222;
  width: 0.75rem;
  height: 0.75rem;
  transform: rotate(45deg);
}

@keyframes floatingUIAnimation {
  0% {
    opacity: 0;
    transform: translateY(0.5rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eloqua */

.elq-form .elq-required {
  display: inline;
  float: none;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.elq-form #elq-FormLastRow {
  position: absolute;
  left: -80%;
  top: -80%;
}
.elq-form .elq-label {
  display: inline-block;
  max-width: 100%;
  font-weight: 400;
  box-sizing: border-box;
  margin-bottom: 0;
}
.elq-form .elq-label-top {
  padding-bottom: 3px;
}
.elq-form .elq-item-label {
  max-width: 100%;
  font-weight: 400;
  box-sizing: border-box;
}
.elq-form .list-order {
  margin-left: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.elq-form .one-column {
  width: 100%;
  clear: both;
}
.elq-form .two-column {
  float: left;
  width: 38%;
}
.elq-form .three-column {
  float: left;
  width: 30%;
}
.elq-form .elq-item-textarea {
  resize: vertical;
  min-height: 48px;
  max-height: 360px;
  box-sizing: border-box;
}
.elq-form .elq-item-input,
.elq-form .elq-item-select,
.elq-form .elq-item-textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font: inherit;
  margin: 0;
}
.elq-form .elq-item-select {
  text-transform: none;
}
.elq-form .row.single-checkbox-row {
  margin-left: 0;
}
.elq-form .elq-field-style {
  padding-bottom: 10px;
}
.elq-form .elq-field-style input[type="submit"] {
  -webkit-appearance: square-button;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.elq-form .loader {
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #3498db;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.elq-form input[type="checkbox"],
.elq-form input[type="radio"] {
  margin: 0;
}
.elq-form .list-order input[type="radio"] {
  margin-left: 1px;
}
.elq-form *,
.elq-form :after,
.elq-form :before {
  box-sizing: border-box;
}
.elq-form html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}
.elq-form body {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333;
  background-color: #fff;
}
.elq-form button,
.elq-form input,
.elq-form select,
.elq-form textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.elq-form a {
  color: #337ab7;
  text-decoration: none;
}
.elq-form a:focus,
.elq-form a:hover {
  color: #23527c;
  text-decoration: underline;
}
.elq-form a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.elq-form figure {
  margin: 0;
}
.elq-form img {
  vertical-align: middle;
}
.elq-form .img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.elq-form .img-rounded {
  border-radius: 6px;
}
.elq-form .img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.elq-form .img-circle {
  border-radius: 50%;
}
.elq-form hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.elq-form .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.elq-form .sr-only-focusable:active,
.elq-form .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.elq-form [role="button"] {
  cursor: pointer;
}
.elq-form .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.elq-form .container:after,
.elq-form .container:before {
  display: table;
  content: " ";
}
.elq-form .container:after {
  clear: both;
}
@media (min-width: 768px) {
  .elq-form .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .elq-form .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .elq-form .container {
    width: 1170px;
  }
}
.elq-form .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.elq-form .container-fluid:after,
.elq-form .container-fluid:before {
  display: table;
  content: " ";
}
.elq-form .container-fluid:after {
  clear: both;
}
.elq-form .row {
  margin-right: -15px;
  margin-left: -15px;
}
.elq-form .row:after,
.elq-form .row:before {
  display: table;
  content: " ";
}
.elq-form .row:after {
  clear: both;
}
.elq-form .row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.elq-form .row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.elq-form .col-lg-1,
.elq-form .col-lg-2,
.elq-form .col-lg-3,
.elq-form .col-lg-4,
.elq-form .col-lg-5,
.elq-form .col-lg-6,
.elq-form .col-lg-7,
.elq-form .col-lg-8,
.elq-form .col-lg-9,
.elq-form .col-lg-10,
.elq-form .col-lg-11,
.elq-form .col-lg-12,
.elq-form .col-md-1,
.elq-form .col-md-2,
.elq-form .col-md-3,
.elq-form .col-md-4,
.elq-form .col-md-5,
.elq-form .col-md-6,
.elq-form .col-md-7,
.elq-form .col-md-8,
.elq-form .col-md-9,
.elq-form .col-md-10,
.elq-form .col-md-11,
.elq-form .col-md-12,
.elq-form .col-sm-1,
.elq-form .col-sm-2,
.elq-form .col-sm-3,
.elq-form .col-sm-4,
.elq-form .col-sm-5,
.elq-form .col-sm-6,
.elq-form .col-sm-7,
.elq-form .col-sm-8,
.elq-form .col-sm-9,
.elq-form .col-sm-10,
.elq-form .col-sm-11,
.elq-form .col-sm-12,
.elq-form .col-xs-1,
.elq-form .col-xs-2,
.elq-form .col-xs-3,
.elq-form .col-xs-4,
.elq-form .col-xs-5,
.elq-form .col-xs-6,
.elq-form .col-xs-7,
.elq-form .col-xs-8,
.elq-form .col-xs-9,
.elq-form .col-xs-10,
.elq-form .col-xs-11,
.elq-form .col-xs-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.elq-form .col-xs-1,
.elq-form .col-xs-2,
.elq-form .col-xs-3,
.elq-form .col-xs-4,
.elq-form .col-xs-5,
.elq-form .col-xs-6,
.elq-form .col-xs-7,
.elq-form .col-xs-8,
.elq-form .col-xs-9,
.elq-form .col-xs-10,
.elq-form .col-xs-11,
.elq-form .col-xs-12 {
  float: left;
}
.elq-form .col-xs-1 {
  width: 8.33333%;
}
.elq-form .col-xs-2 {
  width: 16.66667%;
}
.elq-form .col-xs-3 {
  width: 25%;
}
.elq-form .col-xs-4 {
  width: 33.33333%;
}
.elq-form .col-xs-5 {
  width: 41.66667%;
}
.elq-form .col-xs-6 {
  width: 50%;
}
.elq-form .col-xs-7 {
  width: 58.33333%;
}
.elq-form .col-xs-8 {
  width: 66.66667%;
}
.elq-form .col-xs-9 {
  width: 75%;
}
.elq-form .col-xs-10 {
  width: 83.33333%;
}
.elq-form .col-xs-11 {
  width: 91.66667%;
}
.elq-form .col-xs-12 {
  width: 100%;
}
.elq-form .col-xs-pull-0 {
  right: auto;
}
.elq-form .col-xs-pull-1 {
  right: 8.33333%;
}
.elq-form .col-xs-pull-2 {
  right: 16.66667%;
}
.elq-form .col-xs-pull-3 {
  right: 25%;
}
.elq-form .col-xs-pull-4 {
  right: 33.33333%;
}
.elq-form .col-xs-pull-5 {
  right: 41.66667%;
}
.elq-form .col-xs-pull-6 {
  right: 50%;
}
.elq-form .col-xs-pull-7 {
  right: 58.33333%;
}
.elq-form .col-xs-pull-8 {
  right: 66.66667%;
}
.elq-form .col-xs-pull-9 {
  right: 75%;
}
.elq-form .col-xs-pull-10 {
  right: 83.33333%;
}
.elq-form .col-xs-pull-11 {
  right: 91.66667%;
}
.elq-form .col-xs-pull-12 {
  right: 100%;
}
.elq-form .col-xs-push-0 {
  left: auto;
}
.elq-form .col-xs-push-1 {
  left: 8.33333%;
}
.elq-form .col-xs-push-2 {
  left: 16.66667%;
}
.elq-form .col-xs-push-3 {
  left: 25%;
}
.elq-form .col-xs-push-4 {
  left: 33.33333%;
}
.elq-form .col-xs-push-5 {
  left: 41.66667%;
}
.elq-form .col-xs-push-6 {
  left: 50%;
}
.elq-form .col-xs-push-7 {
  left: 58.33333%;
}
.elq-form .col-xs-push-8 {
  left: 66.66667%;
}
.elq-form .col-xs-push-9 {
  left: 75%;
}
.elq-form .col-xs-push-10 {
  left: 83.33333%;
}
.elq-form .col-xs-push-11 {
  left: 91.66667%;
}
.elq-form .col-xs-push-12 {
  left: 100%;
}
.elq-form .col-xs-offset-0 {
  margin-left: 0;
}
.elq-form .col-xs-offset-1 {
  margin-left: 8.33333%;
}
.elq-form .col-xs-offset-2 {
  margin-left: 16.66667%;
}
.elq-form .col-xs-offset-3 {
  margin-left: 25%;
}
.elq-form .col-xs-offset-4 {
  margin-left: 33.33333%;
}
.elq-form .col-xs-offset-5 {
  margin-left: 41.66667%;
}
.elq-form .col-xs-offset-6 {
  margin-left: 50%;
}
.elq-form .col-xs-offset-7 {
  margin-left: 58.33333%;
}
.elq-form .col-xs-offset-8 {
  margin-left: 66.66667%;
}
.elq-form .col-xs-offset-9 {
  margin-left: 75%;
}
.elq-form .col-xs-offset-10 {
  margin-left: 83.33333%;
}
.elq-form .col-xs-offset-11 {
  margin-left: 91.66667%;
}
.elq-form .col-xs-offset-12 {
  margin-left: 100%;
}
@media (min-width: 768px) {
  .elq-form .col-sm-1,
  .elq-form .col-sm-2,
  .elq-form .col-sm-3,
  .elq-form .col-sm-4,
  .elq-form .col-sm-5,
  .elq-form .col-sm-6,
  .elq-form .col-sm-7,
  .elq-form .col-sm-8,
  .elq-form .col-sm-9,
  .elq-form .col-sm-10,
  .elq-form .col-sm-11,
  .elq-form .col-sm-12 {
    float: left;
  }
  .elq-form .col-sm-1 {
    width: 8.33333%;
  }
  .elq-form .col-sm-2 {
    width: 16.66667%;
  }
  .elq-form .col-sm-3 {
    width: 25%;
  }
  .elq-form .col-sm-4 {
    width: 33.33333%;
  }
  .elq-form .col-sm-5 {
    width: 41.66667%;
  }
  .elq-form .col-sm-6 {
    width: 50%;
  }
  .elq-form .col-sm-7 {
    width: 58.33333%;
  }
  .elq-form .col-sm-8 {
    width: 66.66667%;
  }
  .elq-form .col-sm-9 {
    width: 75%;
  }
  .elq-form .col-sm-10 {
    width: 83.33333%;
  }
  .elq-form .col-sm-11 {
    width: 91.66667%;
  }
  .elq-form .col-sm-12 {
    width: 100%;
  }
  .elq-form .col-sm-pull-0 {
    right: auto;
  }
  .elq-form .col-sm-pull-1 {
    right: 8.33333%;
  }
  .elq-form .col-sm-pull-2 {
    right: 16.66667%;
  }
  .elq-form .col-sm-pull-3 {
    right: 25%;
  }
  .elq-form .col-sm-pull-4 {
    right: 33.33333%;
  }
  .elq-form .col-sm-pull-5 {
    right: 41.66667%;
  }
  .elq-form .col-sm-pull-6 {
    right: 50%;
  }
  .elq-form .col-sm-pull-7 {
    right: 58.33333%;
  }
  .elq-form .col-sm-pull-8 {
    right: 66.66667%;
  }
  .elq-form .col-sm-pull-9 {
    right: 75%;
  }
  .elq-form .col-sm-pull-10 {
    right: 83.33333%;
  }
  .elq-form .col-sm-pull-11 {
    right: 91.66667%;
  }
  .elq-form .col-sm-pull-12 {
    right: 100%;
  }
  .elq-form .col-sm-push-0 {
    left: auto;
  }
  .elq-form .col-sm-push-1 {
    left: 8.33333%;
  }
  .elq-form .col-sm-push-2 {
    left: 16.66667%;
  }
  .elq-form .col-sm-push-3 {
    left: 25%;
  }
  .elq-form .col-sm-push-4 {
    left: 33.33333%;
  }
  .elq-form .col-sm-push-5 {
    left: 41.66667%;
  }
  .elq-form .col-sm-push-6 {
    left: 50%;
  }
  .elq-form .col-sm-push-7 {
    left: 58.33333%;
  }
  .elq-form .col-sm-push-8 {
    left: 66.66667%;
  }
  .elq-form .col-sm-push-9 {
    left: 75%;
  }
  .elq-form .col-sm-push-10 {
    left: 83.33333%;
  }
  .elq-form .col-sm-push-11 {
    left: 91.66667%;
  }
  .elq-form .col-sm-push-12 {
    left: 100%;
  }
  .elq-form .col-sm-offset-0 {
    margin-left: 0;
  }
  .elq-form .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .elq-form .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .elq-form .col-sm-offset-3 {
    margin-left: 25%;
  }
  .elq-form .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .elq-form .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .elq-form .col-sm-offset-6 {
    margin-left: 50%;
  }
  .elq-form .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .elq-form .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .elq-form .col-sm-offset-9 {
    margin-left: 75%;
  }
  .elq-form .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .elq-form .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .elq-form .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .elq-form .col-md-1,
  .elq-form .col-md-2,
  .elq-form .col-md-3,
  .elq-form .col-md-4,
  .elq-form .col-md-5,
  .elq-form .col-md-6,
  .elq-form .col-md-7,
  .elq-form .col-md-8,
  .elq-form .col-md-9,
  .elq-form .col-md-10,
  .elq-form .col-md-11,
  .elq-form .col-md-12 {
    float: left;
  }
  .elq-form .col-md-1 {
    width: 8.33333%;
  }
  .elq-form .col-md-2 {
    width: 16.66667%;
  }
  .elq-form .col-md-3 {
    width: 25%;
  }
  .elq-form .col-md-4 {
    width: 33.33333%;
  }
  .elq-form .col-md-5 {
    width: 41.66667%;
  }
  .elq-form .col-md-6 {
    width: 50%;
  }
  .elq-form .col-md-7 {
    width: 58.33333%;
  }
  .elq-form .col-md-8 {
    width: 66.66667%;
  }
  .elq-form .col-md-9 {
    width: 75%;
  }
  .elq-form .col-md-10 {
    width: 83.33333%;
  }
  .elq-form .col-md-11 {
    width: 91.66667%;
  }
  .elq-form .col-md-12 {
    width: 100%;
  }
  .elq-form .col-md-pull-0 {
    right: auto;
  }
  .elq-form .col-md-pull-1 {
    right: 8.33333%;
  }
  .elq-form .col-md-pull-2 {
    right: 16.66667%;
  }
  .elq-form .col-md-pull-3 {
    right: 25%;
  }
  .elq-form .col-md-pull-4 {
    right: 33.33333%;
  }
  .elq-form .col-md-pull-5 {
    right: 41.66667%;
  }
  .elq-form .col-md-pull-6 {
    right: 50%;
  }
  .elq-form .col-md-pull-7 {
    right: 58.33333%;
  }
  .elq-form .col-md-pull-8 {
    right: 66.66667%;
  }
  .elq-form .col-md-pull-9 {
    right: 75%;
  }
  .elq-form .col-md-pull-10 {
    right: 83.33333%;
  }
  .elq-form .col-md-pull-11 {
    right: 91.66667%;
  }
  .elq-form .col-md-pull-12 {
    right: 100%;
  }
  .elq-form .col-md-push-0 {
    left: auto;
  }
  .elq-form .col-md-push-1 {
    left: 8.33333%;
  }
  .elq-form .col-md-push-2 {
    left: 16.66667%;
  }
  .elq-form .col-md-push-3 {
    left: 25%;
  }
  .elq-form .col-md-push-4 {
    left: 33.33333%;
  }
  .elq-form .col-md-push-5 {
    left: 41.66667%;
  }
  .elq-form .col-md-push-6 {
    left: 50%;
  }
  .elq-form .col-md-push-7 {
    left: 58.33333%;
  }
  .elq-form .col-md-push-8 {
    left: 66.66667%;
  }
  .elq-form .col-md-push-9 {
    left: 75%;
  }
  .elq-form .col-md-push-10 {
    left: 83.33333%;
  }
  .elq-form .col-md-push-11 {
    left: 91.66667%;
  }
  .elq-form .col-md-push-12 {
    left: 100%;
  }
  .elq-form .col-md-offset-0 {
    margin-left: 0;
  }
  .elq-form .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .elq-form .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .elq-form .col-md-offset-3 {
    margin-left: 25%;
  }
  .elq-form .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .elq-form .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .elq-form .col-md-offset-6 {
    margin-left: 50%;
  }
  .elq-form .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .elq-form .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .elq-form .col-md-offset-9 {
    margin-left: 75%;
  }
  .elq-form .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .elq-form .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .elq-form .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .elq-form .col-lg-1,
  .elq-form .col-lg-2,
  .elq-form .col-lg-3,
  .elq-form .col-lg-4,
  .elq-form .col-lg-5,
  .elq-form .col-lg-6,
  .elq-form .col-lg-7,
  .elq-form .col-lg-8,
  .elq-form .col-lg-9,
  .elq-form .col-lg-10,
  .elq-form .col-lg-11,
  .elq-form .col-lg-12 {
    float: left;
  }
  .elq-form .col-lg-1 {
    width: 8.33333%;
  }
  .elq-form .col-lg-2 {
    width: 16.66667%;
  }
  .elq-form .col-lg-3 {
    width: 25%;
  }
  .elq-form .col-lg-4 {
    width: 33.33333%;
  }
  .elq-form .col-lg-5 {
    width: 41.66667%;
  }
  .elq-form .col-lg-6 {
    width: 50%;
  }
  .elq-form .col-lg-7 {
    width: 58.33333%;
  }
  .elq-form .col-lg-8 {
    width: 66.66667%;
  }
  .elq-form .col-lg-9 {
    width: 75%;
  }
  .elq-form .col-lg-10 {
    width: 83.33333%;
  }
  .elq-form .col-lg-11 {
    width: 91.66667%;
  }
  .elq-form .col-lg-12 {
    width: 100%;
  }
  .elq-form .col-lg-pull-0 {
    right: auto;
  }
  .elq-form .col-lg-pull-1 {
    right: 8.33333%;
  }
  .elq-form .col-lg-pull-2 {
    right: 16.66667%;
  }
  .elq-form .col-lg-pull-3 {
    right: 25%;
  }
  .elq-form .col-lg-pull-4 {
    right: 33.33333%;
  }
  .elq-form .col-lg-pull-5 {
    right: 41.66667%;
  }
  .elq-form .col-lg-pull-6 {
    right: 50%;
  }
  .elq-form .col-lg-pull-7 {
    right: 58.33333%;
  }
  .elq-form .col-lg-pull-8 {
    right: 66.66667%;
  }
  .elq-form .col-lg-pull-9 {
    right: 75%;
  }
  .elq-form .col-lg-pull-10 {
    right: 83.33333%;
  }
  .elq-form .col-lg-pull-11 {
    right: 91.66667%;
  }
  .elq-form .col-lg-pull-12 {
    right: 100%;
  }
  .elq-form .col-lg-push-0 {
    left: auto;
  }
  .elq-form .col-lg-push-1 {
    left: 8.33333%;
  }
  .elq-form .col-lg-push-2 {
    left: 16.66667%;
  }
  .elq-form .col-lg-push-3 {
    left: 25%;
  }
  .elq-form .col-lg-push-4 {
    left: 33.33333%;
  }
  .elq-form .col-lg-push-5 {
    left: 41.66667%;
  }
  .elq-form .col-lg-push-6 {
    left: 50%;
  }
  .elq-form .col-lg-push-7 {
    left: 58.33333%;
  }
  .elq-form .col-lg-push-8 {
    left: 66.66667%;
  }
  .elq-form .col-lg-push-9 {
    left: 75%;
  }
  .elq-form .col-lg-push-10 {
    left: 83.33333%;
  }
  .elq-form .col-lg-push-11 {
    left: 91.66667%;
  }
  .elq-form .col-lg-push-12 {
    left: 100%;
  }
  .elq-form .col-lg-offset-0 {
    margin-left: 0;
  }
  .elq-form .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .elq-form .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .elq-form .col-lg-offset-3 {
    margin-left: 25%;
  }
  .elq-form .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .elq-form .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .elq-form .col-lg-offset-6 {
    margin-left: 50%;
  }
  .elq-form .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .elq-form .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .elq-form .col-lg-offset-9 {
    margin-left: 75%;
  }
  .elq-form .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .elq-form .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .elq-form .col-lg-offset-12 {
    margin-left: 100%;
  }
}
.elq-form .row {
  display: inherit;
}
.LV_invalid_field,
input.LV_invalid_field:active,
input.LV_invalid_field:hover,
textarea.LV_invalid_field:active,
textarea.LV_invalid_field:hover {
  outline: 1px solid #bd0000;
}
.LV_validation_message {
  font-weight: 700;
  margin: 0 0 0 5px;
}
.LV_valid {
  display: none;
}
.LV_invalid {
  color: #bd0000;
  font-size: 10px;
}

.submit-button-style {
  padding: 7px 20px;
  border: 1px solid #979797;
  border-radius: 3px;
  background-color: #fff;
  color: #4a4a4a;
  cursor: pointer;
}
.checkbox-aligned {
  margin-left: 5px;
  display: inline;
}
.form-element-layout {
  padding: 5px 10px;
}
.form-element-instruction {
  font-size: 10px;
}
.form-element-form-text {
  margin: 0;
}
.form-field-visible-xs-block {
  display: none;
}
.elq-form-design-field .list-order input[type="radio"] {
  margin-left: 1px;
}
@media (max-width: 767px) {
  .form-field-visible-xs-block {
    display: block;
  }
}
.form-field-hidden-xs {
  display: block;
}
@media (max-width: 767px) {
  .form-field-hidden-xs {
    display: none;
  }
}
.custom-overlay {
  margin-left: 2px;
  background: #fff;
  box-shadow: 0 0 4px 0 #777;
  border-radius: 2px;
  max-width: 256px;
}

.homepage__contact .elq-label {
  font-weight: 700;
  margin-bottom: 0.25em;
  font-size: 14px;
  color: #424242;
}

.homepage__contact input[type="text"],
.homepage__contact input[type="email"],
.homepage__contact input[type="tel"],
.homepage__contact select {
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 0.25rem;
}

.homepage__contact .single-checkbox-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.homepage__contact input[type="checkbox"] {
  /*
  width: 2rem;
  height: 2rem;
  */
  border-radius: 100%;
  margin-right: 0.5rem;
  scale: 1.3 !important;
}

.homepage__contact input[type="checkbox"] + label {
  font-weight: 600;
}

.homepage__contact select {
  /* hide the default arrow icon */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* add your custom icon */
  background-image: url("/assets/images/chevron-right.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1.875rem 1.25rem;
  padding-right: 1rem; /* to leave space for the icon */
}

/* Typography */

.prose h1 {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}

.prose h2 {
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.prose h3 {
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.prose h4 {
  font-size: 1.1em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.prose h5 {
  font-size: 1em;
  margin-top: 1.25em;
  margin-bottom: 0.4em;
  line-height: 1.4;
}

.prose h6 {
  font-size: 0.9em;
  margin-top: 1.1em;
  margin-bottom: 0.25em;
  line-height: 1.3;
}

.prose p {
  font-size: 1.125rem;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose video {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose figure {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose figcaption {
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}

.prose a {
  color: var(--color-primary);
  text-decoration: underline;
  word-break: break-all;
}

.prose strong {
  font-weight: 700;
}

.prose ol {
  list-style-type: decimal;
  padding-left: 1.625em;
}

.prose ol ol {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose hr {
  border-top: 0.1em solid rgba(0, 0, 0, 0.05);
  margin-top: 3em;
  margin-bottom: 3em;
}

.prose blockquote {
  font-weight: 500;
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
  quotes: '"' '"' "'" "'";
  border-left-color: rgba(0, 0, 0, 0.1);
  border-left-width: 0.25rem;
  border-left-style: solid;
  padding: 1rem 0 1rem 1.5rem;
  margin: 0;
  position: relative;
}

.prose blockquote cite {
  margin-top: 0.5rem;
}

.prose blockquote cite a {
  color: var(--color-primary);
}

.prose pre {
  color: #fff;
  background-color: #000;
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}

.prose code {
  overflow-x: auto;
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
}

.prose code {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
  font-size: 0.875em;
}

.prose code::before {
  content: none;
}

.prose code::after {
  content: none;
}

.prose code::before {
  content: "`";
}

.prose code::after {
  content: "`";
}

a .prose code {
  color: var(--color-primary);
}

.prose ol {
  list-style-type: decimal;
  padding-left: 1.625em;
}

.prose ol[type="A"] {
  list-style-type: upper-alpha;
}

.prose ol[type="a"] {
  list-style-type: lower-alpha;
}

.prose ol[type="a"] {
  list-style-type: lower-alpha;
}

.prose ol[type="I"] {
  list-style-type: upper-roman;
}

.prose ol[type="i"] {
  list-style-type: lower-roman;
}

.prose ol[type="1"] {
  list-style-type: decimal;
}

.prose ol ol {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose li {
  margin: 0.5em 0;
  padding-left: 0.375em;
}

.prose li p {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose li p {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose li *:first-child {
  margin-top: 1.25em;
}

.prose li *:last-child {
  margin-bottom: 1.25em;
}

.prose ol > li::marker {
  font-weight: 400;
  color: #b0b0b0;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.625em;
}

.prose ul ul {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose ul li {
  margin: 0.5em 0;
  padding-left: 0.375em;
}

.prose ul li p {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose li *:first-child {
  margin-top: 1.25em;
}

.prose li *:last-child {
  margin-bottom: 1.25em;
}

.prose ul > li::marker {
  font-weight: 400;
  color: #757575;
  font-size: 1.25em;
}

.prose hr {
  border-top: 0.1em solid rgba(0, 0, 0, 0.05);
  margin-top: 3em;
  margin-bottom: 3em;
}

.prose pre {
  color: #fff;
  background-color: #000;
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}

.prose pre code {
  overflow-x: auto;
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
}

.prose pre code::before {
  content: none;
}

.prose pre code::after {
  content: none;
}

.prose table {
  border-collapse: collapse;
  width: 100%;
  table-layout: auto;
  text-align: left;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.prose table thead {
  border-bottom: 0.05em solid rgba(0, 0, 0, 0.1);
  text-indent: 0;
}

.prose table thead th {
  color: #000;
  vertical-align: bottom;
  font-weight: 600;
  padding-right: 0.6em;
  padding-bottom: 0.8em;
  padding-left: 0;
}

.prose table thead tr {
  border-bottom: 0.05em solid rgba(0, 0, 0, 0.1);
}

.prose table thead tr:last-child {
  border-bottom: 0;
}

.prose table tbody td {
  vertical-align: baseline;
  padding: 0.8em 0.6em;
  padding-left: 0;
}

.prose table tbody tr {
  border-bottom: 0.05em solid rgba(0, 0, 0, 0.1);
}

.prose table tbody tr:last-child {
  border-bottom: 0;
}

.prose dl {
  display: flex;
  flex-flow: row wrap;
  border: 0.1em solid rgba(0, 0, 0, 0.1);
  padding: 1rem 0 0 0;
}

.prose dt {
  flex-basis: 20%;
  padding: 0 1rem 1rem 1rem;
  color: #000;
  font-weight: 600;
}

.prose dd {
  flex-basis: 70%;
  flex-grow: 1;
  margin: 0;
  padding: 0 1rem 1rem 1rem;
}

section.homepage__products img {
  object-fit: contain;
}
.logo-c {
  width: auto;
}
.colorblue {
  color: #234576;
}
h2.subhead {
  color: #234576;
}
.mt-6rem {
  margin-top: 6rem;
}
.mt-6rem {
  margin-top: 7rem;
}
.mt-5rem {
  margin-top: 5rem;
}
.mt-3rem {
  margin-top: 3rem;
}
.mt-4rem {
  margin-top: 4rem;
}
.mt-2rem {
  margin-top: 2rem;
}
.bg-blue {
  background-color: var(--color-blue-150);
}

header .headerbg {
  background-image: url('/assets/images/header2025.jpg');
}
@media screen and (max-width: 767px) {
  header .headerbg {
    background-image: url('/assets/images/header2025-mobile.jpg');
    background-size: cover;
    background-position: bottom;
  }
}
.bg-bluedark {
  background-color: var(--color-blue-250);
}
.bg-bluelight {
  background-color: var(--color-blue-350);
}
a {
  color: var(--color-primary);
  text-decoration: underline;
}
a.button {
  text-decoration: none;
}
.dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: var(--color-gray-250); /* You can set the color you prefer */
  border-radius: 50%;
  margin-right: 4px; /* Adjust the spacing between dots if needed */
}
button[tabindex="0"] .dot{
  /* Your styles for the active button here */
  background-color: var(--color-blue-150); /* Example color, replace with your desired styles */
}
.gray-border {
  border: 1px solid #ccc; /* You can adjust the color code as needed */
}
.underline-no {
  text-decoration: underline;
}
.w-150px {
  width: 150px;
}
/* Optional: For smoother transitions */
details {
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
  padding-bottom: 20px;
}

details[open] {
  
}

summary {
  cursor: pointer;
  user-select: none;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}
.acc-class {

}
.hr-hidden {
  display: none;
}
details:not([open]) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5); /* 50% opacity white */
}

footer ul a {
  color: #000;
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thirdimg {

}
.embla__slide.widthslide {
  background-size: 50%;
}
.embla__slide.widthslide1 {
  background-size: 64%;
}

@media (max-width: 1024px) { /* Adjust breakpoint if needed */
  .embla__slide {
    background-size: contain;
  }
  .embla__slide.widthslide {
    background-size: contain;
  }

}
@media (max-width: 767px) { /* Adjust breakpoint if needed */
  header {
    text-align: center;
  }
  .mobilelogo {
    max-width: 300px;
  }
  .embla__slide {
    background-size: contain;
    background-image: none!important;
  }
  .pb-600 {
    padding-bottom: 600px;
  }
  .pb-400 {
    padding-bottom: 380px;
  }
  iframe {
    height: auto
  }
  .custom-mobile-show {
    display: block;
    padding: 0;
  }
  section.homepage__products img {
    height: auto;
  }
  .heightauto {
    height: auto;
  }
  .padding0 {
    padding: 0;
  }
  .custom-mobile-hide {
    display: none!important;
  }
  .max-width100 {
    max-width: 100%;
  }
  .margintop0 {
    margin-top: 0;
  }
  .registerhead {
    margin-top: 30px;
  }
  .mobilemargin {
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
  }
  .mobilemargintop {

    
  }
}
@media (min-width: 768px) {
  .custom-mobile-show {
    visibility: hidden;
  }
}
input::placeholder {
  color: #000!important; /* Replace with your desired color code */
}
.font-btn {
  font-size: 24px!important;
  font-family: "Montserrat"!important;
}
 /* Add this style to hide the carousel initially */
 .embla-carousel-hidden {
  opacity: 0;
  visibility: hidden;
}
.hidemarker li::marker {
  display: none!important;
}

ul.hidemarker, ol.hidemarker {
  list-style: none;
}
.fundraising-link {
  text-decoration: none; /* Remove underline */
  color: #ffffff; /* Set text color to white */
}

