
html {
  scroll-behavior: smooth;
}

body {
  background-color: white;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

:target:before {
  content: "";
  display: block;
  height: 100px;
  margin: -100px 0 0;
}

@media (max-width: 1023px) {
  iframe[src^="https://www.youtube.com/"] {
    --iframe-width: calc(100vw - var(--padding-width)*2);
    --iframe-height: calc(var(--iframe-width) * 9/16);
    width: var(--iframe-width);
    height: var(--iframe-height);
  }
}

/*
:root {
  --primary-text-color: #333;
  --primary-brand-color: #FFB510;
  --secondary-brand-color: #F48120;
  --primary-dark-grey-color: #262629;
  --primary-red-color: #ED1C24;

  --secondary-mid-grey-color: #6F6D6C;
  --secondary-beige-color: #EFEDE8;

  --primary-gradient: linear-gradient(94.44deg, #FFB510 18.14%, #F48120 90.57%);
}
*/

/*
:root {
  --container-max-width: 1280px;
  --padding-width: 160px;
  --section-gap-base: 30px;
  --section-gap-multiplier: 4;
}
*/
:root {
  /*--container-width: clamp(calc(100vw - var(--padding-width) * 2), 100vw, var(--container-max-width));*/
  --container-width: min(calc(100vw - var(--padding-width) * 2), var(--container-max-width));
  --current-padding-width: calc((100vw - var(--container-width)) / 2);
}

/* INDEX CSS VARIABLES */
*:nth-child(1) { --nth-child-idx: 1;  }
*:nth-child(2) { --nth-child-idx: 2;  }
*:nth-child(3) { --nth-child-idx: 3;  }
*:nth-child(4) { --nth-child-idx: 4;  }
*:nth-child(5) { --nth-child-idx: 5;  }
*:nth-child(6) { --nth-child-idx: 6;  }
*:nth-child(7) { --nth-child-idx: 7;  }
*:nth-child(8) { --nth-child-idx: 8;  }
*:nth-child(9) { --nth-child-idx: 9;  }
*:nth-child(10) { --nth-child-idx: 10;  }
*:nth-child(11) { --nth-child-idx: 11;  }
*:nth-child(12) { --nth-child-idx: 12;  }
*:nth-child(13) { --nth-child-idx: 13;  }
*:nth-child(14) { --nth-child-idx: 14;  }
*:nth-child(15) { --nth-child-idx: 15;  }

.container {
  box-sizing: border-box;
  max-width: var(--container-max-width);
  width: calc(100% - var(--padding-width) * 2);
  margin: 0 auto;
}

@media (max-width: 1329px) {
  :root {
    --padding-width: 60px;
  }
}

@media (max-width: 1129px) {
  :root {
    --padding-width: 40px;
  }
}

@media (max-width: 1023px) {
  :root {
    --padding-width: 24px;
    --section-gap-base: 15px;
  }
}

.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

:root {
  /*font-family: "proxima-nova", sans-serif;*/
  font-family: var(--main-font-family);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--headings-font-family);
}

:root {
  color: var(--primary-text-color);

  font-size: 16px;
  line-height: 24px;
}

a {
  color: var(--primary-brand-color);
}

.area--dark a {
  color: var(--alt-brand-color);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
}

.link--fancy::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background-color: currentColor;
  margin-right: 21px;
  vertical-align: middle;
}

.text--fancy {
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
}

.text--fancy::before,                                                                                                                                    
.text--fancy::after {              
  content: '';                                                                                                                                             display: block;                                                                                                                                          width: 20px; height: 1px;                              
  background-color: currentColor;                                                                                                                          vertical-align: middle;
}   

/*
.header--display {
  font-size: 70px;
  line-height: 72px;
}

h1, .heading--h1 {
  font-size: 52px;
  line-height: 62px;
  font-weight: bold;
}

h2, .heading--h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: bold;
}

h3, .heading--h3 {
  font-size: 32px;
  line-height: 44px;
}

h4, .heading--h4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: normal;
}

h5, .heading--h5 {
  font-size: 20px;
  line-height: 28px;
}

.text--intro {
  font-size: 26px;
  line-height: 36px;
}

.text--caps12 {
  font-weight: bold;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  h1, .heading--h1 {
    font-size: 30px;
    line-height: 38px;
  }

  h2, .heading--h2 {
    font-size: 26px;
    line-height: 36px;
  }

  h3, .heading--h3 {
    font-size: 24px;
    line-height: 34px;
  }

  .text--intro {
    font-size: 24px;
    line-height: 34px;
  }
}
*/

.grid {
    display: grid;
    --grid-size: 12;
    --grid-column-gap: 24px;
    grid-template-columns: repeat(var(--grid-size), 1fr);
    grid-column-gap: var(--grid-column-gap);
    grid-row-gap: var(--grid-column-gap);
}

.grid--1col { --grid-size: 1; }
.grid--2col { --grid-size: 2; }
.grid--3col { --grid-size: 3; }
.grid--4col { --grid-size: 4; }
.grid--5col { --grid-size: 5; }
.grid--6col { --grid-size: 6; }
.grid--7col { --grid-size: 7; }
.grid--8col { --grid-size: 8; }
.grid--9col { --grid-size: 9; }
.grid--10col { --grid-size: 10; }
.grid--11col { --grid-size: 11; }

/*
    ==== FOR DEBUG ONLY ====
.grid__col {
    min-height: 50px;
    background-color: rgb(0, 191, 255, 0.5);
}
*/

.grid__col--vcentered {
    align-self: center;
}

.grid__col--span2 { grid-column-end: span 2; }
.grid__col--span3 { grid-column-end: span 3; }
.grid__col--span4 { grid-column-end: span 4; }
.grid__col--span5 { grid-column-end: span 5; }
.grid__col--span6 { grid-column-end: span 6; }
.grid__col--span7 { grid-column-end: span 7; }
.grid__col--span8 { grid-column-end: span 8; }
.grid__col--span9 { grid-column-end: span 9; }
.grid__col--span10 { grid-column-end: span 10; }
.grid__col--span11 { grid-column-end: span 11; }
.grid__col--span12 { grid-column-end: span 12; }

@media (max-width: 767px) {
    .grid--1col,
    .grid--2col,
    .grid--3col,
    .grid--4col,
    .grid--5col,
    .grid--6col,
    .grid--7col,
    .grid--8col,
    .grid--9col,
    .grid--10col,
    .grid--11col,
    .grid--12col {
        --grid-size: 12;
    }
    

    .grid__col,
    .grid__col--span2,
    .grid__col--span3,
    .grid__col--span4,
    .grid__col--span5,
    .grid__col--span6,
    .grid__col--span7,
    .grid__col--span8,
    .grid__col--span9,
    .grid__col--span10,
    .grid__col--span11,
    .grid__col--span12 {
        grid-column-end: span var(--grid-size);
    }
}


.layout-row--break-out {
  width: calc(100vw - var(--scrollbar-width, 0px));
  left: 50%;
  transform: translateX(-50%);
}

.layout-row__content:not(.layout-row__content--preview),
.layout-row__content--preview > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: grid;
  grid-template-columns: var(--col-frs, 1fr);
}

.layout-row:nth-child(2n) .layout-row__content:not(.layout-row__content--preview),
.layout-row:nth-child(2n) .layout-row__content--preview > .block-editor-inner-blocks > .block-editor-block-list__layout {
  grid-template-columns: var(--alt-col-frs, var(--col-frs));
}

.layout-row__content:not(.layout-row__content--preview) > *,
.layout-row__content--preview > .block-editor-inner-blocks > .block-editor-block-list__layout > * {
  min-width: 0;
}

.layout-row__content--preview > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {
  margin-left: initial;
  margin-right: initial;
}

.layout-rows--invert-even .layout-row:nth-child(2n) .layout-row__content > *:nth-child(1) { order: 50; }
.layout-rows--invert-even .layout-row:nth-child(2n) .layout-row__content > *:nth-child(2) { order: 49; }
.layout-rows--invert-even .layout-row:nth-child(2n) .layout-row__content > *:nth-child(3) { order: 48; }
.layout-rows--invert-even .layout-row:nth-child(2n) .layout-row__content > *:nth-child(4) { order: 47; }
.layout-rows--invert-even .layout-row:nth-child(2n) .layout-row__content > *:nth-child(5) { order: 46; }
.layout-rows--invert-even .layout-row:nth-child(2n) .layout-row__content > *:nth-child(6) { order: 45; }
.layout-rows--invert-even .layout-row:nth-child(2n) .layout-row__content > *:nth-child(7) { order: 44; }
.layout-rows--invert-even .layout-row:nth-child(2n) .layout-row__content > *:nth-child(8) { order: 43; }
.layout-rows--invert-even .layout-row:nth-child(2n) .layout-row__content > *:nth-child(9) { order: 42; }

@media (max-width: 1023px) {
  .layout-row__content:not(.layout-row__content--preview),
  .layout-row__content--preview > .block-editor-inner-blocks > .block-editor-block-list__layout,
  .layout-row:nth-child(2n) .layout-row__content:not(.layout-row__content--preview),
  .layout-row:nth-child(2n) .layout-row__content--preview > .block-editor-inner-blocks > .block-editor-block-list__layout {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .layout-row--break-out {
    left: calc(var(--padding-width) * -1);
    transform: none;
  }
}

.area--dark {
  background-color: #111;
  color: white;
  padding: 130px 0;
}

:root {
  --section-top-gap-multiplier: var(--section-gap-multiplier);
  --section-bottom-gap-multiplier: var(--section-gap-multiplier);
  --section-top-padd-multiplier: 0;
  --section-bottom-padd-multiplier: 0;
}
.section {
  --section-top-gap-size: calc(var(--section-gap-base) * var(--section-top-gap-multiplier)); /* x4 - 120px */
  --section-bottom-gap-size: calc(var(--section-gap-base) * var(--section-bottom-gap-multiplier)); /* x4 - 120px */
  position: relative;
  margin-top: var(--section-top-gap-size);
  margin-bottom: var(--section-bottom-gap-size);
  padding-top: calc(var(--section-gap-base) * var(--section-top-padd-multiplier));
  padding-bottom: calc(var(--section-gap-base) * var(--section-bottom-padd-multiplier));
  background-position: center;
  background-size: cover;
}

.section--dark {
  background-color: #111;
}

.section--space-x1 { --section-gap-multiplier: 1; }
.section--space-x2 { --section-gap-multiplier: 2; }
.section--space-x3 { --section-gap-multiplier: 3; }
.section--space-x4 { --section-gap-multiplier: 4; }
.section--space-x5 { --section-gap-multiplier: 5; }
.section--space-x6 { --section-gap-multiplier: 6; }
.section--space-x7 { --section-gap-multiplier: 7; }
.section--space-x8 { --section-gap-multiplier: 8; }
.section--space-x9 { --section-gap-multiplier: 9; }
.section--space-x10 { --section-gap-multiplier: 10; }

.section--no-space {
  margin-top: 0;
  margin-bottom: 0;
}

.section--no-top-space {
  margin-top: 0;
}

.section--no-bottom-space {
  margin-bottom: 0;
}

.section:first-child {
  margin-top: 0;
}

.section + .section {
  margin-top: 0;
}

.section__image-bg-box {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}

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

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

.section__content {
  position: relative;
}

.section__title-box {
  margin-bottom: 50px;
}

.section__title--center,
.section__description--center {
  text-align: center;
}

.section__title--right,
.section__description--right {
  text-align: right;
}

.slider {
  position: relative;
  --animation-enabled: 1;
}

.slider--no-animation {
  --animation-enabled: 0;
}

.slider__animation--cover-zoom .slider__items {
  overflow: hidden;
}

.slider__items,
.slider__item {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 100%;
}

/* Default Animation */
.slider__animation--default .slider__item {
  opacity: 0;
  pointer-events: none;
  transition: opacity calc(var(--animation-enabled) * 300ms) ease;
  transition-delay: calc(var(--animation-enabled) * 300ms);
  /*background-color: #f5f5f5;*/
}

.slider__animation--default .slider__item--active {
  transition-delay: 0ms;
  opacity: 1;
  pointer-events: initial;
  z-index: 1;
}

/*.slider__animation--default.slider[data-slide="1"] .slider__item:nth-child(1),
.slider__animation--default.slider[data-slide="2"] .slider__item:nth-child(2),
.slider__animation--default.slider[data-slide="3"] .slider__item:nth-child(3),
.slider__animation--default.slider[data-slide="4"] .slider__item:nth-child(4),
.slider__animation--default.slider[data-slide="5"] .slider__item:nth-child(5),
.slider__animation--default.slider[data-slide="6"] .slider__item:nth-child(6),
.slider__animation--default.slider[data-slide="7"] .slider__item:nth-child(7),
.slider__animation--default.slider[data-slide="8"] .slider__item:nth-child(8),
.slider__animation--default.slider[data-slide="9"] .slider__item:nth-child(9),
.slider__animation--default.slider[data-slide="10"] .slider__item:nth-child(10) {
  opacity: 1;
  pointer-events: initial;
}*/

/* Cover Zoom Animation */
.slider__animation--cover-zoom .slider__item {
  left: 0;
  transform-origin: right center;
  transform: translateX(-100%) scale(1.5);
  transition: transform 0ms ease-in-out;
}

.slider__animation--cover-zoom .slider__item--active ~ .slider__item {
  transform-origin: left center;
  transform: translateX(100%) scale(1.5);
}

.slider__animation--cover-zoom .slider__item--active {
  transform: translateX(0) scale(1);
  z-index: 1;
}

.slider__animation--cover-zoom .slider__item--new-active {
  transform: translateX(0) scale(1) !important;
  z-index: 2;
  transition-duration: calc(var(--animation-enabled) * 1000ms);
}

.slider__animation--cover-zoom .slider__item--old-active {
  transform: translateX(-50%);
  transition-duration: calc(var(--animation-enabled) * 1000ms);
}

.slider__animation--cover-zoom .slider__item--new-active ~ .slider__item--old-active {
  transform: translateX(50%);
}

/*.slider--relative .slider__items {
  display: flex;
  position: relative;
  height: auto;
}*/
/*.slider--relative .slider__item {
  flex-shrink: 0;
  margin-right: -100%;
  position: relative;
  height: auto;
}*/

.slider__nav {
  display: flex;
  align-items: center;
}

.slider__nav-item {
  --active-width: 32px;
  --active-heigth: 32px;
  --active-background-color: transparent;
  width: 20px; height: 18px;
  background-color: transparent;
  border: 0;
  padding: 0;
  color: white;
  cursor: pointer;
}

.slider__nav--dark .slider__nav-item {
  color: var(--secondary-mid-grey-color);
}

.slider__nav-item svg {
  width: 100%; height: 100%;
}

.slider__nav-item:not(:last-child) {
  margin-right: 15px;
}

.slider__arrows {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  pointer-events: none;
}

.slider__arrow {
  pointer-events: initial;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .slider__items {
    width: 100% !important;
  }

  .slider__arrow {
    display: flex;
    background: rgba(255, 255, 255, 0.5);
    scale: 0.8;
    border-radius: 50%;
  }
}
/*
.slider[data-slide="1"] .slider__nav-item:nth-child(1),
.slider[data-slide="2"] .slider__nav-item:nth-child(2),
.slider[data-slide="3"] .slider__nav-item:nth-child(3),
.slider[data-slide="4"] .slider__nav-item:nth-child(4),
.slider[data-slide="5"] .slider__nav-item:nth-child(5),
.slider[data-slide="6"] .slider__nav-item:nth-child(6),
.slider[data-slide="7"] .slider__nav-item:nth-child(7),
.slider[data-slide="8"] .slider__nav-item:nth-child(8),
.slider[data-slide="9"] .slider__nav-item:nth-child(9),
.slider[data-slide="10"] .slider__nav-item:nth-child(10) {
  width: var(--active-width); height: var(--active-height);
  background-color: var(--active-background-color);
  color: var(--primary-brand-color);
}
*/

.draggable-content {
}

.draggable-content__container {
  display: flex;
  position: relative;
  overflow-x: scroll;
  --item-gap: 20px;
}

.draggable-content__items {
  display: flex;
  height: 100%;
  padding: 0 50vw;
  flex-shrink: 0;
}

.draggable-content__item {
  width: 25.81vw;
  max-width: 413px;
  min-width: 280px;
  flex-shrink: 0;
}

.draggable-content__item:not(:last-child) {
  margin-right: var(--item-gap);
}

@media (max-width: 1023px) {
  .draggable-content__items {
    padding: 0 0 0 var(--padding-width);
  }

  .draggable-content__items::after {
    content: '';
    display: block;
    flex-shrink: 0;
    width: var(--padding-width);
  }
}

.gform_footer__comment {
  margin-left: 24px;
  display: inline-block;
  color: var(--primary-red-color);
  font-size: 14px;
  line-height: 21px;
}

.gform--no-footer .gform_footer {
  display: none;
}

.gform_wrapper.gravity-theme .gchoice {
  margin-bottom: 10px;
}

.gform_footer {
  position: relative;
  z-index: 1;
}

.password-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.password-form__inputs {
  display: flex;
}

.password-form__input {
  margin-right: 20px;
}

.newsletter-form {
  box-sizing: border-box;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  padding: 40px 0;
}

.newsletter-form__title {
  display: flex;
  align-items: center;
  color: var(--primary-dark-grey-color);
}

.newsletter-form__field,
.newsletter-form__btn {
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 1023px) {
  .newsletter-form {
    padding-bottom: 60px;  
  }

  .newsletter-form__title {
    margin-bottom: 40px
  }

  .newsletter-form__field {
    margin-bottom: 20px;
  }

}

.jetcharge-wp-section {
  font-family: "proxima-nova", sans-serif;
}

.jetcharge-wp-section[data-section-name="header"] {
  position: sticky;
  top: 52px;
  z-index: 20;
}

.Heading {
  line-height: inherit;
}

.Header__CartCountContainer {
  display: none;
}

.jetcharge-wp-section .Header__CartCountContainer {
  display: inline;
}

.three-canvas__container {
  position: fixed;
  top: 0; left: 0;
  z-index: 100000;
  pointer-events: none;
}

.anim--fade-up,
.anim--fade-right,
.anim--fade-left {
  opacity: 0;
  transition: opacity .65s linear, transform .65s ease;
  --anim-delay: .15s;
  transition-delay: var(--anim-delay);
}

.anim--fade-up {
  transform: translateY(15px);
}

body.wp-admin .anim--fade-up, 
.visible-tag--visible .anim--fade-up, 
.visible-tag--visible.anim--fade-up {
  opacity: 1;
  transform: translateY(0);
}

.anim--fade-right {
  transform: translateX(-30px);
}

body.wp-admin .anim--fade-right,
.visible-tag--visible .anim--fade-right,
.visible-tag--visible.anim--fade-right {
  opacity: 1;
  transform: translateX(0);
}

.anim--fade-left {
  transform: translateX(30px);
}

body.wp-admin .anim--fade-left,
.visible-tag--visible .anim--fade-left,
.visible-tag--visible.anim--fade-left {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 1025px) {
    .perspective-tf {
        transform: translateY(calc((var(--est-distance-mult) - 0.5) * -150px));
    }

    .perspective-tf--layer2 {
        transform: translateY(calc((var(--est-distance-mult) - 0.5) * -300px));
    }
}
.scaling-image:not(.scaling-image--bare) {
  overflow: hidden;
  /*line-height: 0;*/
}

.scaling-image img {
  transform: scale(calc(1 + 0.2 * var(--est-distance-mult, 0)));
}

@media (min-width: 1024px) {
    .lines-shift-container {
        --shift-base-delay: 140ms; /* 200ms default */
        --anim-duration: calc(var(--shift-base-delay) * 10);
        --shift-delay: 0ms;
        visibility: hidden;
    }

    .lines-shift-container--200ms-delay { --shift-delay: var(--shift-base-delay); }
    .lines-shift-container--400ms-delay { --shift-delay: calc(var(--shift-base-delay) * 2); }
    .lines-shift-container--600ms-delay { --shift-delay: calc(var(--shift-base-delay) * 3); }

    .shift-line {
        --line-number: var(--nth-child-idx);
        overflow: hidden;
        display: inline-flex;
        position: relative;
        width: 100%;
        /*line-height: 1em;*/
        /*background-color: rgba(255, 0, 0, 0.2);*/
    }

    /*.shift-line sup {
        font-size: 0.5em;
        top: -.7em;
    }*/

    .shift-line > span {
        display: inline-block;
        will-change: opacity, transform;
        /*transition: transform 200ms cubic-bezier(.46,.45,.39,1.14);*/
        transition: opacity calc(var(--anim-duration) / 3) linear, transform var(--anim-duration) cubic-bezier(0.19, 1, 0.22, 1);
        /*transform: translateY(0%);*/
        transform: translateY(103%);
        /*opacity: 0;*/
        transition-delay: calc(var(--shift-base-delay) + var(--shift-delay) + (var(--anim-duration) / 10) * (var(--line-number) - 1));
    }

    body.page--loaded:not(.pace-running) .lines-shift-container,
    body.wp-admin .lines-shift-container {
        visibility: initial;
    }

    body.page--loaded:not(.pace-running) .lines-shift-container:not(.lines-shift-container--vt) .shift-line > span {
        transform: translateY(0%);
        /*opacity: 1;*/
    }

    body.page--loaded:not(.pace-running) .visible-tag--visible.lines-shift-container.lines-shift-container--vt .shift-line > span,
    body.page--loaded:not(.pace-running) .visible-tag--visible .lines-shift-container.lines-shift-container--vt .shift-line > span {
        transform: translateY(0%);
    }

    body.wp-admin .shift-line > span {
        transform: translateY(0%);
    }
}


.btn,
.gform_button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  height: 49px;
  padding: 0 10px;
  min-width: 149px;

  background-color: var(--primary-brand-color);
  border: none;
  border-radius: 4px;

  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: var(--primary-brand-bg-text-color);

  cursor: pointer;
  transition: color ease-out 0.4s;
}

.btn::before,
.gform_button::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  display: block;
  width: 200%; height: 100%;
  /*background: linear-gradient(to left, var(--primary-brand-color) 0%, var(--primary-yellow-color) 50%, var(--primary-dark-grey-color) 50.01%, var(--primary-dark-grey-color) 100%);*/
  background: linear-gradient(to right, var(--primary-brand-color) 0%, var(--primary-yellow-color) 50%, #FFB510 50.01%, #FFB510 59.71%, #F48120 95.27%);
  z-index: -1;
  transform: translateX(0%);
  transition: transform ease-out 0.4s;
}

.btn:hover,
.gform_button:hover {
  /*background-color: var(--primary-dark-grey-color);*/
  color: white;
}

.btn:hover::before,
.gform_button:hover::before {
  transform: translateX(-50%);
}


/*.btn--gradient::before {
  background: linear-gradient(to left, var(--primary-brand-color) 0%, var(--primary-yellow-color) 50%, #FFB510 50.01%, #FFB510 59.71%, #F48120 95.27%);
}*/

.btn--bordered:not(.btn--current-item) {
  color: var(--primary-brand-color);
  background-color: transparent;
  border: 1px solid currentColor;
}

.btn--bordered:not(.btn--current-item):hover {
  color: white;
  background-color: var(--primary-brand-color);
  border-color: var(--primary-brand-color);
}

.btn--small {
  height: 40px;
  font-size: 14px;
  line-height: 21px;
}

.btn--tiny {
  height: 30px;
  font-size: 14px;
  line-height: 21px;
}

.btn--large {
  height: 61px;
  font-size: 18px;
  line-height: 27px;
  padding: 0 20px;

}

.btn-group {
  --button-spacing: 10px;

  display: flex;
}

.btn-group--h-align-center {
  justify-content: center;
}

.btn-group--h-align-right {
  justify-content: flex-end;
}

.btn-group > .btn {
  width: 100%;
}

.btn-group > .btn:not(:last-child) {
  margin-right: var(--button-spacing);
}

.btn__icon {
  width: 20px; height: 20px;
}

.btn__icon--right {
  margin-left: 7px;
}


.input,
.gform_wrapper.gravity-theme .gfield input {
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input--file,
.gform_wrapper.gravity-theme .gfield input[type="file"] {
  border: 0;
  padding: 0;
}

.textarea,
.gform_wrapper.gravity-theme .gfield textarea {
  height: 50px;
  padding: 15px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input--file,
.gform_wrapper.gravity-theme .gfield input[type='file'] {
  box-sizing: border-box;
  border: 1px solid var(--primary-brand-color);
  border-radius: 4px;
  height: auto;
  line-height: initial;
}

.input--file::file-selector-button,
.input--file::-webkit-file-upload-button,
.gfield input[type='file']::file-selector-button,
.gfield input[type='file']::-webkit-file-upload-button {
  height: 50px;
  padding: 0 20px;

  background-color: var(--primary-brand-color);
  border: none;

  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: var(--primary-brand-bg-text-color);

  cursor: pointer;

  margin-right: 10px;
}

/*.input--file::before,
.gfield input[type='file']::before {
  content: 'Choose a file';
  display: inline-block;
  padding: 0 10px;
  cursor: pointer;
  border: 1px solid var(--primary-brand-color);
  border-radius: 0 4px 4px 0;
}*/

.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 120px;
}

.pagination .nav-links {
  display: flex;
}

.pagination .page-numbers {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  margin: 0 3px;
  border: 2px solid transparent;
  border-radius: 5px;

  color: #222;
  text-decoration: none;
  font-size: 18px;
  line-height: 18px;
}

.pagination .page-numbers.current {
  border-color: var(--secondary-brand-color);
}

.input--select {
  padding: 0 15px;
}

.input--select--hidden {
  display: none !important;
}

.el-select {
  --select-height: 3.125em;
  --side-padding: 15px;
  --background-color: white;

  position: relative;
  width: 350px;
  max-width: 100%;
  display: block;
  padding: 0;
  background: none;
  border: none;
  font-size: 16px;
}

.gfield__select--full .el-select {
  width: 100%;
}

.el-select button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  height: var(--select-height); 
  width: 100%;
}

.el-select::before {
  content: attr(selected-text);
  display: block;
  box-sizing: border-box;

  height: var(--select-height);
  line-height: var(--select-height);
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: var(--background-color);
  padding: 0 var(--side-padding);

  color: #111; 
}

.el-select::before,
.el-select button {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.el-select--disabled::before {
  background-color: #f5f5f5;
  border-color: #ccc;
}

.el-select::after {
  content: '';
  width: 0; height: 0; 
  position: absolute;
  top: 50%; right: 20px;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
  pointer-events: none;
}

.el-select.el-select--active::after {
  border-top: none;
  border-bottom: 5px solid black;
}

.el-select[value=""]::before {
  color: #999;
}

.el-select__trigger {
  position: absolute;
  top: 0; left: 0;
}

.el-select__search {
  box-sizing: border-box;
  width: 100%; height: 100%;
  border: 0;
  background-color: transparent;
  padding: 0 var(--side-padding);
}

.el-select__search:focus {
  background-color: var(--background-color);
}

.el-select__options {
  position: absolute;
  display: none;
  top: calc(var(--select-height) + 8px); left: 0;
  width: 100%;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 5px 16px rgba(0,0,0, 0.1);

  max-height: 200px;
  overflow-y: scroll;
}

.el-select.el-select--active .el-select__options {
  display: block;
  z-index: 1;
}

.el-select__option {
  display: block;
  box-sizing: border-box;
  line-height: var(--select-height);
  padding: 0 20px;
  text-align: left;
}

.el-select__option--hidden {
  display: none;
}

.el-select__option:hover {
  background-color: #f2f2f2;
}

.el-select__option:empty {
  height: 1.25em;
  line-height: 1.25em;
  pointer-events: none;
}

.el-select__option:empty::before {
  content: '---';
}

.input--radio,
.gform_wrapper.gravity-theme .gfield-choice-input.gfield-choice-input {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--secondary-brand-color);
  margin-right: 15px;
}

.input--radio:checked,
.gform_wrapper.gravity-theme .gfield-choice-input.gfield-choice-input:checked {
  background-color: var(--secondary-brand-color);
  box-shadow: inset 0 0 0 3px white;
}

.search-form {
  position: relative;
  width: 490px;
  max-width: 100%;
}

.search-form__input {
  box-sizing: border-box;
  height: 50px; width: 100%;
  line-height: 50px;
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 0 20px 0 45px;
}

.search-form__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0; left: 0;
  width: 45px; height: 100%;
  background: transparent;
  border: 0;
  color: #999;
  cursor: pointer;
}

.search-form__btn svg {
  width: 21px; height: 21px;
}

.accordion {
    padding-left: 0;
  --accordion-tsn-speed: 1s;
  --accordion-title-height: 54px;
    /*border-top: 1px solid var(--gsDD-color);*/
}

.accordion .accordion {
  --accordion-tsn-speed: 0.5s;
}

.accordion .accordion .accordion {
  --accordion-tsn-speed: 0.5s;
}

.accordion__item {
  padding-left: 0;
  margin-bottom: 0;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  transition: height var(--accordion-tsn-speed);
}

.accordion--filled > .accordion__item {
  border-bottom: 0;
  margin-bottom: 10px;
}

.accordion__title {
  display: block;
  position: relative;
  box-sizing: border-box;
  height: var(--accordion-title-height);
  padding: 15px 0;
  cursor: pointer;
  margin: 0;
  color: #111;
  font-size: 16px;
  font-weight: 700;
}

.accordion--filled > .accordion__item > .accordion__title {
  background-color: #003D58;
  border-radius: 6px;
  line-height: var(--accordion-title-height);
  color: white;
  padding: 0 15px;
  font-weight: 400;
}

.accordion--padded > .accordion__item > .accordion__title {
  padding-left: 15px;
  padding-right: 15px;
}

.accordion__title svg {
  color: #00AEEF;
  vertical-align: text-bottom;
  margin-right: 12px;
}

.accordion--padded > .accordion__item > .accordion__title::after,
.accordion--filled > .accordion__item > .accordion__title::after {
  right: 10px;
} 

.accordion__title::after {
    content: '';
    position: absolute;
    top: 50%; right: 0;
    width: 23px; height: 23px;
    transform: translateY(-50%);
    background-image: url(elements/../../images/accordion-icon-plus.svg);
    background-size: contain;
}

.accordion--filled > .accordion__item > .accordion__title::after {
  background-image: url(elements/../../images/accordion-icon-plus--white.svg);
}

.accordion__item.evlt-accordion__item--active > .accordion__title::after {
  background-image: url(elements/../../images/accordion-icon-minus.svg);
}

.accordion--filled > .accordion__item.evlt-accordion__item--active > .accordion__title::after {
  background-image: url(elements/../../images/accordion-icon-minus--white.svg);
}

.accordion__title--no-expand::after {
  display: none;
}

.accordion__content {
  padding-bottom: 40px;
  color: #666;
  font-size: 16px;
  margin: 0;
}

.accordion .accordion .accordion__content {
  padding-bottom: 20px;
}

.accordion .accordion .accordion .accordion__content {
  padding-bottom: 10px;
}

.accordion--padded > .accordion__item > .accordion__content {
  padding-left: 15px;
  padding-right: 15px;
}

.accordion:not(.accordion--preview) .accordion__item:not(.evlt-accordion__item--active) {
    height: var(--accordion-title-height) !important;
}

.header__iconsbar {
  --icon-color: var(--alt-brand-color);
  --icon-number-bg-color: #111;
  --icon-number-txt-color: white;

  display: flex;
  color: var(--icon-color);
}

.header--overlay .header__iconsbar {
  --icon-color: white;
  --icon-number-bg-color: var(--alt-brand-color);
  --icon-number-txt-color: black;
}

.header__iconsbar-icon {
  position: relative;
  display: flex;
  color: inherit;
}

.header__iconsbar-icon:not(:last-child) {
  margin-right: 20px;
}

.header__iconsbar-icon[data-number]::before {
  content: attr(data-number);
  position: absolute;
  top: 0; right: 0;
  transform: translateX(50%) translateY(-50%);

  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  min-width: 15px; height: 15px;
  padding-bottom: 1px;
  border-radius: 50%;

  background-color: var(--icon-number-bg-color);

  color: var(--icon-number-txt-color);
  font-size: 8px;
  font-weight: 800;
  line-height: 1em;
}

.evlt-paragraph {
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
}

.wrapper--dark .evlt-paragraph {
  color: white;
}

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

.evlt-paragraph--right {
  text-align: center;
}

.evlt-paragraph--v-center {
  justify-content: center;
}

.evlt-paragraph--v-bottom {
  justify-content: flex-end;
}

.evlt-paragraph__extra-info {
  color: var(--primary-brand-color);
  margin-bottom: 10px;
}

.wrapper--dark .evlt-paragraph__extra-info,
.area--dark .evlt-paragraph__extra-info {
  color: var(--alt-brand-color);
}

.evlt-paragraph__main-title {
  margin-bottom: 20px;
}

.evlt-paragraph__sub-title {
  margin-bottom: 14px;
  font-family: var(--main-font-family);
}

.evlt-paragraph__intro-text {
  margin-bottom: 20px;
}

.evlt-paragraph__text {
  margin-bottom: 20px;
}

.evlt-paragraph__text p:first-child {
  margin-top: 0;
}

.evlt-paragraph__text p:last-child {
  margin-bottom: 0;
}

.wrapper--dark .evlt-paragraph__text,
.area--dark .evlt-paragraph__text {
  color: #AAA;
}

.evlt-paragraph__cta {
  text-decoration: none;
  /*align-self: center;*/
}

.wrapper--dark .evlt-paragraph__cta {
  color: var(--alt-brand-color);
}

.evlt-tabs:not(.evlt-tabs--preview) .evlt-tabs__item:not(.evlt-tabs__item--active) {
  display: none;
}

.evlt-tabs:not(.evlt-tabs--preview) .evlt-tabs__item {
  opacity: 0;
  transition: opacity 600ms ease;
}

.evlt-tabs:not(.evlt-tabs--preview) .evlt-tabs__item--animate {
  opacity: 1;
}

.evlt-image__box {
  display: flex;
}

.evlt-image {
  display: block;
  line-height: 0;
}

.evlt-image--center {
  text-align: center;
  margin: 0 auto;
}

.evlt-image--right {
  text-align: right;
  margin-left: auto;
}

.evlt-video {
  position: relative;
  padding-top: 56.25%;
} 

.evlt-video__video,
.evlt-video__iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.icons-list {
  --icon-bg-color: var(--primary-brand-color);
}

.icons-list--column-separators .icons-list__item {
  position: relative;
}

.icons-list--column-separators .icons-list__item:not(:last-child)::after {
  position: absolute;
  top: 0; right: calc(var(--grid-column-gap) / -2);
  content: '';
  width: 1px; height: 100%;
  background-color: #ddd;
}

.icons-list__item-img-box {
  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px; height: 88px;
  border-radius: 50%;
  background-color: var(--icon-bg-color);

  color: white;
  font-size: 52px;
  font-family: var(--headings-font-family);
}

.icons-list__item-title {
  margin-bottom: 10px;
}

.icons-list__item-title--separator::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background-color: #aaa;
  margin: 20px auto;
}

.icons-list__item-title--fancy {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}

.icons-list__item-title--fancy::before,
.icons-list__item-title--fancy::after {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background-color: currentColor;
  vertical-align: middle;
}

.icons-list--items-vertical {
  text-align: center;
}

.icons-list--items-vertical .icons-list__item-img-box {
  margin: 0 auto 20px;
}

.icons-list--items-vertical .icons-list__item-text {
  margin: 0 auto;
}

.icons-list--items-horizontal .icons-list__item {
  display: flex;
}

.icons-list--items-horizontal .icons-list__item-img-box {
  margin-right: 25px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 100%;
  background-color: #414141;
}

.timeline__item {
  position: relative;
  width: calc(50% - 60px);  
}

.timeline__item::before {
  content: '';

  position: absolute;
  top: 13px; left: -60px;
  transform: translateX(-50%);

  display: block;
  box-sizing: border-box;
  width: 37px; height: 37px;
  border-radius: 50%;
  background-color: #111;
  border: 12px solid var(--alt2-brand-color);
}

.timeline__item--image::before {
  top: 56px;
  border-color: white;
}

.timeline__item:nth-child(2n - 1) {
  margin-left: auto;
}

.timeline__item:nth-child(2n) {
  text-align: right;
}

.timeline__item:nth-child(2n)::before {
  left: auto; right: -60px;
  transform: translateX(50%);
}

.timeline__item:not(.timeline__item--image) .timeline__item-title {
  color: var(--alt2-brand-color);
}

.timeline__item:not(.timeline__item--image) .timeline__item-text {
  color: #AAA;
}

.timeline__item--image .timeline__item-content {
  background-color: #333;
  padding: 45px 40px;
}

.timeline__item--image .timeline__item-content::after {
  position: absolute;
  top: 67px; left: -16px;

  content: '';
  border-top: 8px solid transparent;
  border-right: 16px solid #333;
  border-bottom: 8px solid transparent;
}

@media (min-width: 1024px) {
  .timeline__item--image:nth-child(2n) .timeline__item-content::after {
    left: auto; right: -16px;
    border-right: 0;
    border-left: 16px solid #333;
  }
}

.timeline__item-img {
  width: 100%; height: 240px;
  object-fit: cover;
}

@media (max-width: 1023px) {
  .timeline::before {
    left: 0;
    transform: translateX(0);
    width: 7px;
  }

  .timeline__item {
    width: calc(100% - 55px);
    margin-left: 55px !important;
  }

  .timeline__item::before {
    width: 25px; height: 25px;
    border-width: 8px;
    left: -52px;
  }

  .timeline__item--image::before {
    top: 62px;
  }
}

.google-maps {
  display: flex;
  position: relative;
  height: 500px;
}

.google-maps__map {
  height: 100%;
}

.slider-floating-controller__parent:hover,
.slider-floating-controller__parent:hover .slider-floating-controller {
  cursor: none;
}

.slider-floating-controller__parent:hover .slider-floating-controller {
  opacity: 1;
}

.slider-floating-controller {
  pointer-events: none;

  position: absolute;
  top: 0; left: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px; height: 88px;
  border: 0;
  border-radius: 50%;
  background-color: var(--alt2-brand-color);

  opacity: 0;
  transition: transform 100ms ease, opacity 300ms ease;
}

.evlt-modal {
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  width: 100%; height: 100vh;
  top: 0; left: 0;
  background-color: rgba(0,0,0, 0.6);
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 0;

  opacity: 0;
  pointer-events: none;
}

.evlt-modal--visible,
.evlt-modal--preview {
  opacity: 1;
  pointer-events: initial;
}

.evlt-modal--preview {
  position: relative;
  height: 800px;
}

.evlt-modal__popup {
  position: relative;
  background-color: var(--secondary-beige-color);
  padding: 100px 100px 120px;
}

.evlt-modal__popup-close-btn {
  position: absolute;
  top: 35px; right: 35px;
  display: flex;
  background-color: transparent;
  border: 0;
  padding: 5px;
  cursor: pointer;
  z-index: 1;
}

/* for editor */
.evlt-text p {
  all: inherit;
}

.editor-styles-wrapper .evlt-text p {
  line-height: inherit;
}

.modular-slider {
  height: 93vh;
}

.acf-block-preview .modular-slider,
.wp-block-acf-modular-slider {
  height: auto !important;
}

.modular-slider .section {
  margin-top: 0;
  margin-bottom: 0;
}

.acf-block-preview .slider__item,
.acf-block-preview .slider__items {
  opacity: 1;
  pointer-events: initial;
  position: relative;
  transform: 0;
  border: 1px dashed black;
}

.modular-slider-nav-buttons {
  position: absolute;
  bottom: 60px;
}

.acf-block-preview .modular-slider-nav-buttons {
  position: relative;
  bottom: 0;
}

.modular-slider-nav-video-bg,
.modular-slider-nav-video-bg__video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.modular-slider-nav-video-bg__video {
  object-fit: cover;
}

.modular-slider-nav-video-bg__video:not(.modular-slider-nav-video-bg__video--active) {
  opacity: 0;
}

.text-with-image__title {
  margin-bottom: 80px;
  color: var(--primary-dark-grey-color);
}

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

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

.text-with-image__sub-title {
  margin-bottom: 20px;
}

.text-with-image__text {
  letter-spacing: -0.002em;
  color: #666;
  column-gap: 56px;
}

.text-with-image__text p:first-child {
  margin-top: 0;
}

.text-with-image__text p:last-child {
  margin-bottom: 0;
}

.text-with-image__btn {
  margin-top: 30px;
}

.text-with-image__image-container {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.text-with-image__image {
  width: 100%;
  /*transition: transform 700ms ease-in-out;
  transform: scale(1.1);
  transform-origin: bottom center;*/
}

.text-with-image__image-col--cover {
  position: relative;
}

.text-with-image__image-col--cover .text-with-image__image-container {
  position: absolute;
  width: 100%; height: 100%;
}

/*.text-with-image__image-container::after {
  content: '';
  display: block;
  width: 100%; height: 100%;
  position: absolute;
  top: 0; right: 0;
  background-color: white;
  transform: scaleX(1);
  transform-origin: center right;
  transition: transform 700ms ease-in-out;
}*/

.text-with-image--reverse .text-with-image__image-container::after {
  right: auto;
  left: 0;
  transform-origin: center left;
}

/*.visible-tag--visible .text-with-image__image-container::after {
  transform: scaleX(0);
}*/

.text-with-image__image-col--cover .text-with-image__image {
  width: 100%; height: 100%;
  object-fit: cover;
}

/*.visible-tag--visible .text-with-image__image {
  transform: scale(1);
}*/

@media (max-width: 1023px) {
  /*.text-with-image__gap-col:not(:last-child) {
    height: 30px;
  }*/
  .text-with-image__title {
    margin-bottom: 30px;
  }

  .text-with-image__image-col {
    order: -1;
    margin-bottom: 30px;
  }

  /*.text-with-image__image-col ~ */
  .text-with-image__gap-col {
    display: none;
  }

  .text-with-image__image-col--cover {
    height: 190px;
  }
}

.hero-banner-with-list {
  position: relative;
  display: flex;

  height: calc(100vh);
  min-height: 560px;
  background-size: cover;
  background-position: center;
}

.hero-banner-with-list--shadow-overlay {
  background-color: var(--primary-dark-grey-color);
}

.hero-banner-with-list__grid {
  position: relative;
  height: 100%;
}

.hero-banner-with-list__container {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;

  color: white;
}

.hero-banner-with-list__video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-banner-with-list--shadow-overlay .hero-banner-with-list__video {
  opacity: 0.5;
}

.hero-banner-with-list__title {
  margin-bottom: 20px;
}

.hero-banner-with-list__text {
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 30px;
}

.hero-banner-with-list__list {
  display: flex;
  flex-direction: column;
}

.hero-banner-with-list__list-item {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding-right: 50px;
  min-height: 47px;
  font-size: 18px;
  line-height: 27px;
  font-weight: bold;

  color: white;
  text-decoration: none;
}

.hero-banner-with-list__list-item:hover {
  color: var(--primary-brand-color);
}

.hero-banner-with-list__list-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-banner-with-list__list-icon {
  position: absolute;
  top: 50%; right: 20px;
  transform: translateY(-50%);
}

.hero-banner-with-list__corner {
  position: absolute;
  left: 0; bottom: 67px;
  transform: translateY(50%);
  z-index: 1;
  max-width: var(--padding-width);
}

.hero-banner-with-list__btn {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);

  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px; height: 56px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  color: white;
}

@media (max-width: 1023px) {
  .hero-banner-with-list__corner {
    display: none;
  }
}

.hero-banner {
  box-sizing: border-box;
  position: relative;
  height: 522px;

  background-size: cover;
  background-position: center;
  color: white;
}

.hero-banner:last-child {
  margin-bottom: 0;
}

.hero-banner::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0, 0.4);
}

.hero-banner__container {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;

  text-align: center;
}

.hero-banner__title {
  margin-bottom: 12px;
}

.hero-banner__text {
  margin-bottom: 32px;
}

.image-showcase {
  --visible-items: 5;
  --items-gap: 20px;
  --current-item: 1;
  
  text-align: center;
}

.image-showcase__container {
  position: relative;
}

.image-showcase__title {
  color: #111;
  margin-bottom: 10px;
}

/* only work when container goes right after title and there is no text */
.image-showcase__title + .image-showcase__container {
  margin-top: 50px;
}

.image-showcase__text {
  margin-bottom: 40px;
}

.image-showcase__images {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.image-showcase__image-container {
  text-decoration: none;
  color: inherit;
}

.image-showcase__image:not(:hover) {
  filter: grayscale(1);
}

.image-showcase__image-description {
  margin-top: 15px;
  box-sizing: border-box;
  position: absolute;
  width: 240px;
  padding: 10px;
  background-color: white;
  box-shadow: 0px 15px 50px rgb(0 0 0 / 15%);
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;

  opacity: 0;
  transition: opacity 300ms ease-out;
}

.image-showcase__image-container:hover .image-showcase__image-description {
  opacity: 1;
}


.image-showcase__image-container:last-child .image-showcase__image-description {
  right: 0;
}

.image-showcase__navs {
  display: none; /* flex */

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  justify-content: space-between;
  width: 100%;

  pointer-events: none;
}

.image-showcase__nav {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--primary-dark-grey-color);
  cursor: pointer;

  pointer-events: initial;
}

.image-showcase__nav svg {
  width: 48px; height: 48px;
}

@media (min-width: 1024px) {
  .image-showcase__image-container:not(:first-child):not(:last-child) {
    position: relative;
  }

  .image-showcase__image-container:not(:first-child):not(:last-child) .image-showcase__image-description {
    left: 50%;
    transform: translateX(-50%);
  }

  .image-showcase--scrollable .image-showcase__images {
    width: calc(100% - 100px * 2);
    margin: 0 auto;
  }
  
  .image-showcase--scrollable .image-showcase__image-container {
    width: calc((100% - var(--items-gap) * (var(--visible-items) - 1)) / var(--visible-items));
    flex-shrink: 0;
    margin-right: var(--items-gap);
    transition: transform 300ms ease;
    transform: translateX(calc(-1 * (100% + var(--items-gap)) * (var(--current-item) - 1)));
  }
  
  .image-showcase--scrollable .image-showcase__navs {
    display: flex;
  }
}

@media (max-width: 1023px) {
  .image-showcase {
    --visible-items: 4 !important;
    --items-gap: 10px !important;
  }

  /*.image-showcase--scrollable .image-showcase__images {
    width: calc(100% - 20px * 2);
  }*/

  .image-showcase__nav svg {
    width: 24px;
  }

  .image-showcase .image-showcase__images {
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .image-showcase .image-showcase__image-container {
    height: 60px;
    flex-shrink: 0;
  }

  .image-showcase .image-showcase__image-container {
    margin: 0 10px;
  }

  .image-showcase .image-showcase__image {
    /*width: calc(50% - var(--item-gap) / 2);*/
    height: 100%;
    object-fit: contain;
  }

  .image-showcase__image-description {
    left: 50%;
    transform: translateX(-50%);
  }
}

.image-slider {
  display: flex;
  align-items: flex-end;
  height: 93vh;
  --slider-padding: 110px;
}

.image-slider__item {
  background-size: cover;
  background-position: center;
}

.image-slider__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.image-slider__item-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.image-slider__item-container {
  position: relative;
  z-index: 2;

  box-sizing: border-box;
  display: flex;
  height: 100%;
  padding: var(--slider-padding) 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;

  color: white;
}

.image-slider__item-title {
  color: #111;
  /*text-shadow: 0px 2px 2px rgb(0 0 0 / 60%);*/
}

.image-slider__item-title--h-centre {
  margin-left: auto;
  margin-right: auto;
}

.image-slider__item-title--h-right {
  margin-left: auto;
}

.image-slider__item-title--v-centre {
  margin-top: auto;
  margin-bottom: auto;
}

.image-slider__item-title--v-bottom {
  margin-top: auto;
}

.image-slider__item-title--white {
  color: white;
  /*text-shadow: 0px 2px 2px rgb(255 255 255 / 60%);*/
}

.image-slider__item-sub-title {
  margin-bottom: 10px;
}

.image-slider__item-sub-title--black {
  color: #111;
}

.image-slider__item-text {
  font-size: 18px;
  line-height: 28px;
  max-width: 748px;
  margin-bottom: 20px;
}

.image-slider__item-text--black {
  color: #111;
}

.image-slider__item-btn {
  margin-top: 10px;
}

.image-slider__item-link {
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;

}

.image-slider__nav {
  position: relative;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 1;
}

.image-slider__nav-pos--center {
  justify-content: center;
}

.image-slider__nav-pos--right {
  justify-content: right;
}

.image-slider__nav-item {
  pointer-events: initial;
}

.image-slider__nav-number {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  opacity: 0.5;
}

.image-slider__nav-number:not(:last-child) {
  margin-right: 90px;
}

.image-slider__nav-number:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%; right: -25px;
  transform: translateX(100%);
  width: 40px; height: 1px;
  background-color: white;
}

.image-slider__nav-number.slider__nav-item--active {
  color: white;
  opacity: 1;
}

.image-slider__nav-number.slider__nav-item--active::after {
  opacity: 0.5;
}

@media (max-width: 1023px) {
  .image-slider {
    --slider-padding: 80px;
    max-height: 100vh;
  }

  .image-slider__item-container {
    padding-bottom: calc(var(--slider-padding) + 20px);
  }

  .image-slider__nav {
    /*justify-content: flex-start;*/
    justify-content: center;
    transform: translateY(100%);
  }

  .image-slider__nav-number:not(:last-child) {
    margin-right: 30px;
  }

  .image-slider__nav-number:not(:last-child)::after {
    right: -10px;
    width: 10px;
  }
}

.image-slider__item-box {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background-color: var(--primary-brand-color);
  color: white;
  padding: 50px;
}

.image-slider__item-box--h-centre {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.image-slider__item-box--h-right {
  margin-left: auto;
}

.image-slider__item-box--v-centre {
  margin-top: auto;
  margin-bottom: auto;
}

.image-slider__item-box--v-bottom {
  margin-top: auto;
}

.image-slider__item-box-title {
  margin-bottom: 20px;
}

.image-slider__item-box-text {
  font-size: 14px;
  margin-bottom: 15px;
}


.image-columns__title {
  margin-bottom: 40px;
}

.image-columns__container {
  row-gap: 40px;
}

.image-columns__item-image-container {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.image-columns__item-image {
  max-height: 100px;
}

.image-columns__item-title {
  margin-bottom: 10px;
}

@media (max-width: 1023px) {
  .image-columns__item-image {
    max-height: 70px;
  }
}

.review-slider {
  background-color: #f5f5f5;
}

.review-slider__container {
  height: 656px;
  overflow: hidden;
}

.review-slider__grid {
  width: 100%;
}

.review-slider__item-container {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.review-slider__item-title {
  color: #111;
  margin-bottom: 20px;
}

.review-slider__item-text {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

.review-slider__item-name {
  font-size: 18px;
  line-height: 27px;
  font-weight: bold;
  margin-bottom: 30px;
}

.review-slider__img-container {
  --page-side-space: calc((100vw - 100%) / 2);
  position: absolute;
  top: 0; right: calc(var(--page-side-space) * -1);
  height: 100%; width: calc(var(--page-side-space) + 32.18%);
  /*background-size: cover;
  background-position: center;*/
}

.review-slider__img {
  position: absolute;
  top: 0; left: 1px;
  width: 100%; height: 100%;
  object-fit: cover;
}

.review-slider__img-container::before {
  content: '';
  display: block;
  z-index: 1;
  position: absolute;
  bottom: 0; right: 0;

  width: calc(100% - 185px); height: 90px;
  background-color: var(--primary-brand-color);
  opacity: 80%;
  clip-path: polygon(0 100%, 51px 0, 100% 0, 100% 100%);
  -webkit-clip-path: polygon(0 100%, 51px 0, 100% 0, 100% 100%);
  transform: translateY(1px);
  /*
  height: 90px; width: 100%;
  background-image: url(blocks/../../images/hex-overlay-corner.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  */
}

.review-slider__img-container::after {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url(blocks/../../images/hex-overlay.svg);
  background-size: auto 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  z-index: 1;
}

.review-slider__nav--shared {
  display: none;
}

@media (min-width: 1024px) {
  .review-slider__title {
    display: none;
  }
}

@media (max-width: 1023px) {
  .review-slider {
    padding-top: 20px;
  }

  .review-slider__title {
    text-align: center;
    margin-bottom: 10px;
  }

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

  .review-slider__item-container {
    padding-bottom: 60px;
  }

  .review-slider__item-title {
    font-size: 20px;
    line-height: 30px;
  }

  .review-slider__img-container {
    display: none;
  }

  .review-slider__nav {
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 80px;
  }

  .review-slider__nav {
    display: none;
  }

  .review-slider__nav--shared {
    display: flex;
  }
}

.post-cards {
  --loading-shift: 100px;
  margin-bottom: calc(var(--section-gap-size) - var(--loading-shift));
  position: relative;
}

.post-cards__container {
  height: 545px;
  padding-bottom: var(--loading-shift);
}

.post-cards__title {
  text-align: center;
  margin-bottom: 50px;
  color: #111;
}

.post-cards__item {
  display: flex;
  flex-direction: column;
  background-color: var(--secondary-beige-color);
  user-select: none;

  opacity: 0;
  transform: translateY(100px);
  transition: opacity 650ms ease-in-out, transform 650ms ease-in-out;
  transition-delay: calc(300ms * (var(--nth-child-idx) - 1));
}

.visible-tag--visible .post-cards__item {
  opacity: 1;
  transform: translateY(0);
}

.post-cards__item-image-box {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 282px;
  flex-shrink: 0;

  background-size: cover;
  background-position: center;

  font-size: 0;
  text-decoration: none;
  padding: 30px;

  user-drag: none;
  -webkit-user-drag: none;
}

.post-cards__item-image,
.post-cards__item-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.post-cards__item-image-txt {
  font-family: var(--headings-font-family);
  color: white;
  text-align: center;
  max-width: 185px;
  z-index: 1;
}

.post-cards__item-image-txt::before,
.post-cards__item-image-txt::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  margin: 0 auto;
  background-color: var(--alt-brand-color);
}

.post-cards__item-image-txt::before {
  margin-bottom: 15px;
}

.post-cards__item-image-txt::after {
  margin-top: 15px;
}

.post-cards__item-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
}

.post-cards__item-title {
  margin-bottom: 10px;
  color: var(--primary-dark-grey-color);
}

.post-cards__item-text {
  font-size: 14px;
  line-height: 21px;
  color: #666;
  margin-bottom: auto;
  z-index: 1;
}

.post-cards__item--full-image .post-cards__item-text {
  margin-top: 20px;
  color: white;
  margin-bottom: 0;
}

.post-cards__item-link {
  margin-top: 10px;
  display: flex;
  text-decoration: none;
  color: #111;
}

.post-cards__item-link svg {
  width: 48px; height: 48px;
}

@media (max-width: 1023px) {
  .post-cards__container {
    height: 510px;
  }

  .post-cards__item:not(.post-cards__item--full-image) .post-cards__item-image-box {
    height: 226px;
  }
}

.post-cards__static-layout {
  display: grid;
  grid-template-columns: repeat(var(--columns-count, 3), 1fr);
  column-gap: var(--grid-column-gap, 20px);
  row-gap: 20px;
}

@media (max-width: 1023px) {
  .post-cards__static-layout {
    overflow-x: auto;
    overflow-y: hidden;
    /*grid-template-columns: 1fr;*/
  }
}


.post-cards__carousel-layout {
  display: flex;
  column-gap: var(--column-gap);
  overflow-x: auto;

  scroll-behavior: smooth;

  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.post-cards__carousel-layout--dragging {
  scroll-snap-type: none;
  scroll-behavior: unset;
  cursor: grabbing;
  user-select: none;
}

.post-cards__carousel-layout::-webkit-scrollbar {
  display: none;
}

.post-card__carousel-item {
  flex-shrink: 0;
  width: var(--column-width, 100%);
  scroll-snap-align: var(--scroll-snap-align, start);
}

@media (max-width: 1023px) {
  .post-cards__carousel-layout {
    /*column-gap: 0;*/
  }

  .post-card__carousel-item {
    width: 100%;
  }
}

.post-cards__infinite-layout {
  display: grid;
  grid-template-columns: repeat(calc(var(--items-count) * 3), var(--item-width, 400px));
  column-gap: var(--grid-column-gap, 20px);
  row-gap: 20px;
  width: calc(var(--items-count) * 3 * var(--item-width, 400px) + (var(--items-count) * 3 - 1) * var(--grid-column-gap, 20px));
  position: relative;
  
  left: 50%;
  transform: translateX(calc(var(--shift, 0) * (100% / (var(--items-count) * 3)) * -1 - 50%));
  transition: transform 0.5s;
}

.post-cards__infinite-layout--no-anim {
  transition: none;
}

@media (max-width: 1023px) {
  /*.post-cards__infinite-layout {
    overflow-x: auto;
    overflow-y: hidden;
  }*/
  .post-cards__infinite-layout {
    --item-width: 100vw;
    --grid-column-gap: 0px;
    transform: translateX(calc(
      var(--shift, 0) * /* current shift based on arrows pressed */
      (100% / (var(--items-count) * 3)) /* multiplied by number of items visible */
      * -1 /* reversing shift direction */
      - 50% /* centering */
      + (var(--item-width, 400px) / 2) /* centering on mobile when only one item is visible */
      *(1 - clamp(0,rem(var(--items-count),2),1)) /* but only for for odd number of items */
    ));
  }
}


.link-cards-slider {
  --loading-shift: 100px;
  /*overflow: hidden;*/
  margin-bottom: calc(var(--section-gap-size) - var(--loading-shift));
}

.link-cards-slider__title {
  color: #111;
  margin-bottom: 50px;
}

.link-cards-slider__title--center {
  text-align: center;
}

.link-cards-slider__title--right {
  text-align: right;
}

.link-cards-slider__container {
  height: 480px;
  padding-bottom: var(--loading-shift);

  /*--item-gap: 20px;
  --item-width: calc((100% - var(--item-gap) * 2) / 3);
  --container-width: calc(var(--item-width) * var(--items-count) + var(--item-gap) * (var(--items-count) - 1));*/
}

/*
.link-cards-slider__items {
  position: absolute;
  top: 0; left: 50%;

  display: flex;
  justify-content: space-between;
  width: var(--container-width);
  height: 100%;
  transform: translateX(-50%);
}*/

.link-cards-slider__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  /*width: calc((100% - var(--item-gap) * (var(--items-count) - 1)) / var(--items-count));*/
  padding: 40px;

  background-color: var(--secondary-beige-color);
  color: var(--primary-dark-grey-color);
  user-select: none;
  text-decoration: none;
  -webkit-user-drag: none;

  opacity: 0;
  transform: translateY(var(--loading-shift));
  transition: opacity 650ms ease-in-out, transform 650ms ease-in-out;
  transition-delay: calc(300ms * (var(--nth-child-idx) - 1));
}

.visible-tag--visible .link-cards-slider__item {
  opacity: 1;
  transform: translateY(0);
}

.link-cards-slider__item.draggable-content__item--dragged,
.link-cards-slider__item:hover {
  background-color: var(--primary-brand-color);
  color: white;
}

.link-cards-slider__item-icon {
  position: absolute;
  top: 40px; left: 40px;
  width: 32px; height: 32px;
}

.link-cards-slider__item-title {
  margin-bottom: 20px;
}

.link-cards-slider__item-text {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 20px;
}

.link-cards-slider__item-link {
  display: flex;
  color: inherit;
}

.link-cards-slider__item-link svg {
  width: 48px; height: 48px;
}

@media (max-width: 1023px) {
  .link-cards-slider__container {
    height: 412px;
  }
}

.separator-line {
  height: 5px;
  background-color: var(--primary-dark-grey-color);
}

.map-locations__title {
  color: var(--primary-dark-grey-color);
  margin-bottom: 30px;
}

.map-locations__item-map {
  height: 429px;
  background-color: #f5f5f5;
  margin-bottom: 30px;
}

.map-locations__item:nth-child(n + 3) {
  margin-top: 20px;
}

.map-locations__item-name {
  color: var(--secondary-brand-color);
  margin-bottom: 10px;
}

.map-locations__item-address {
  color: #666;
  letter-spacing: -0.002em;
  max-width: 227px;
}

@media (max-width: 1023px) {
  .map-locations__item {
    margin-bottom: 60px;
  }
}

.contact-form__details-title {
  color: var(--primary-dark-grey-color);
  margin-bottom: 30px;
}

.contact-form__contact {
  margin-bottom: 20px;
}

.contact-form__contact-name,
.contact-form__hours-label {
  color: var(--secondary-brand-color);
  margin-bottom: 10px;
}

.contact-form__contact-value {
  color: var(--primary-dark-grey-color);
  text-decoration: none;
}

.contact-form__hours-value {
  color: #666;
  letter-spacing: -0.002em;    
}

@media (max-width: 1023px) {
  .contact-form__details {
    margin-bottom: 55px;
  }
}

.reusable-modules {
  margin-bottom: 45px;
}

.reusable-modules--no-top-space {
  margin-top: -25px;
}

.reusable-modules__title {
  margin-bottom: 30px;
}

.reusable-modules__image-column {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 44px;
  color: white;
  text-decoration: none;
  background-size: cover;
  background-position: center;
}

.reusable-modules__image-column > * {
  position: relative;
}

.reusable-modules__image-column::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--primary-dark-grey-color);
  opacity: 0.8;
}

.reusable-modules__image-subtitle:not(:last-child),
.reusable-modules__image-title:not(:last-child),
.reusable-modules__image-text:not(:last-child) {
  margin-bottom: 10px;
}

.reusable-modules__modules {
  row-gap: 20px;
}

.reusable-modules__module {
  box-sizing: border-box;
  display: block;
  background-color: #f5f5f5;
  padding: 30px;
  min-height: 255px;
  color: var(--primary-dark-grey-color);
  text-decoration: none;
}

.reusable-modules__module-subtitle {
  margin-bottom: 20px;
}

.reusable-modules__module-title {
  display: block;
  margin-bottom: 10px;
}

.reusable-modules__module-text {
  color: #666;
}

.shopify-collection__title {
  color: var(--primary-dark-grey-color);
  margin-bottom: 50px;
  text-align: center;
}

.image-with-text-slider {
  --arrow-space: 80px;
}

.image-with-text-slider__container {
  position: relative;
}

.image-with-text-slider__items {
  width: calc(100% - var(--arrow-space) * 2);
  margin: 0 auto;
}

.image-with-text-slider__item-title {
  color: var(--primary-dark-grey-color);
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 20px;
  line-height: 24px;
}

.image-with-text-slider__item-sub-title {
  display: block;
  color: var(--primary-dark-grey-color);
  margin-bottom: 10px;
  padding: 0 20px;
}

.image-with-text-slider__item-text {
  color: #666;
  padding: 0 20px;
}

.image-with-text-slider__arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%; left: 0;
  width: 100%;
}

.image-with-text-slider__arrow {
  background: transparent;
  padding: 0;
  border: 0;
  color: var(--primary-dark-grey-color);
  cursor: pointer;
}

.image-with-text-slider__arrow svg {
  width: 48px; height: 48px;
}

.image-with-text-slider__nav {
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .image-with-text-slider {
    --arrow-space: 16px;
  }

  .image-with-text-slider__arrows {
    left: calc(var(--padding-width) * -1);
    width: 100vw;
  }

  .image-with-text-slider__arrow svg {
    width: 32px; height: 32px;
  }
}

.model-search__title {
  color: var(--primary-dark-grey-color);
  text-align: center;
  margin-bottom: 30px;
}

.model-search__select {
  width: 100%;
  margin-bottom: 40px;
  --background-color: var(--secondary-beige-color);
}

.model-search__select::before {
  border: 0;
}

.model-search__select::after {
  display: block;
  background-image: url(blocks/../../images/dropdown-arrow.svg);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  border: 0;
  width: 23px; height: 23px;
  line-height: 0;
  right: 10px;
  transform: translateX(-50%) translateY(-50%);
}

.model-search__select.el-select--active::after {
  background-image: url(blocks/../../images/dropdown-cross.svg);
  border-bottom: 0;
}

@media (max-width: 1023px) {
  .model-search__select {
    margin-bottom: 20px;
  }

  .model-search__btn {
    width: 100%;
  }
}

.jetcharge-graph {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
}

.jetcharge-graph__title-col {
}

.jetcharge-graph__title {
  text-align: center;
  margin-bottom: 40px;
}

/* Menu */
.jetcharge-graph__menu-col {
  display: flex;
  align-items: flex-start;
  min-width: 160px;
}

.jetcharge-graph__menu {
  /*counter-reset: graph;*/
}

.jetcharge-graph__menu-item {
  display: block;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--primary-dark-grey-color);
  font-size: 20px;
  line-height: 50px;
  cursor: pointer;
}

.jetcharge-graph__menu-item::before {
  display: inline-block;
  width: 32px;
  margin-right: 11px;
  counter-increment: graph;
  content: "0" attr(data-target);/*counter(graph);*/
  font-weight: 700;
}

.jetcharge-graph[data-active-item="1"] .jetcharge-graph__menu-item:nth-child(1),
.jetcharge-graph[data-active-item="2"] .jetcharge-graph__menu-item:nth-child(2),
.jetcharge-graph[data-active-item="3"] .jetcharge-graph__menu-item:nth-child(3),
.jetcharge-graph[data-active-item="4"] .jetcharge-graph__menu-item:nth-child(4),
.jetcharge-graph[data-active-item="5"] .jetcharge-graph__menu-item:nth-child(5),
.jetcharge-graph[data-active-item="6"] .jetcharge-graph__menu-item:nth-child(6),
.jetcharge-graph[data-active-item="7"] .jetcharge-graph__menu-item:nth-child(7),
.jetcharge-graph[data-active-item="8"] .jetcharge-graph__menu-item:nth-child(8),
.jetcharge-graph[data-active-item="9"] .jetcharge-graph__menu-item:nth-child(9),
.jetcharge-graph__menu-item:hover {
  display: block;
  color: var(--primary-brand-color);
}

.jetcharge-graph__navs {
  display: none;
}

/* Description */
.jetcharge-graph__desc-col {
  display: flex;
  overflow: hidden;
  min-width: 235px;
}

.jetcharge-graph__desc-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  width: 100%;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.jetcharge-graph__desc-item:not(:nth-child(1)) {
  margin-left: -100%;
}

.jetcharge-graph__desc-item-title {
  margin-bottom: 20px;
}

.jetcharge-graph__desc-item-text {
  max-width: 234px;
  font-weight: bold;
}

.jetcharge-graph__desc-item-btn {
  margin-top: 40px;
}

.jetcharge-graph[data-active-item="1"] .jetcharge-graph__desc-item:nth-child(1),
.jetcharge-graph[data-active-item="2"] .jetcharge-graph__desc-item:nth-child(2),
.jetcharge-graph[data-active-item="3"] .jetcharge-graph__desc-item:nth-child(3),
.jetcharge-graph[data-active-item="4"] .jetcharge-graph__desc-item:nth-child(4),
.jetcharge-graph[data-active-item="5"] .jetcharge-graph__desc-item:nth-child(5),
.jetcharge-graph[data-active-item="6"] .jetcharge-graph__desc-item:nth-child(6),
.jetcharge-graph[data-active-item="7"] .jetcharge-graph__desc-item:nth-child(7),
.jetcharge-graph[data-active-item="8"] .jetcharge-graph__desc-item:nth-child(8),
.jetcharge-graph[data-active-item="9"] .jetcharge-graph__desc-item:nth-child(9) {
  opacity: 1;
  pointer-events: initial;
}

/* Graph */
.jetcharge-graph__graph-col {
  display: flex;
  align-items: flex-start;
}

.jetcharge-graph__graph {
  position: relative;
  width: 100%;
}

.jetcharge-graph__graph::before {
  display: block;
  content: '';
  padding-top: 63.7%;
}

.jetcharge-graph__graph-item {
  position: absolute;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform 300ms ease;
  line-height: 0;
  --item-active: 0;
  opacity: calc(0.3 * (1 - var(--item-active)) + var(--item-active));
}

.jetcharge-graph__img {
  width: 100%;
  opacity: calc(1 - var(--item-active));
  /*transition: opacity 300ms ease;*/
}

.jetcharge-graph__img--active {
  position: absolute;
  top: 0; left: 0;
  opacity: calc(var(--item-active));
}

.jetcharge-graph[data-active-item="1"] .jetcharge-graph__graph-item:nth-child(1),
.jetcharge-graph[data-active-item="2"] .jetcharge-graph__graph-item:nth-child(2),
.jetcharge-graph[data-active-item="3"] .jetcharge-graph__graph-item:nth-child(3),
.jetcharge-graph[data-active-item="4"] .jetcharge-graph__graph-item:nth-child(4),
.jetcharge-graph[data-active-item="5"] .jetcharge-graph__graph-item:nth-child(5),
.jetcharge-graph[data-active-item="6"] .jetcharge-graph__graph-item:nth-child(6),
.jetcharge-graph[data-active-item="7"] .jetcharge-graph__graph-item:nth-child(7),
.jetcharge-graph[data-active-item="8"] .jetcharge-graph__graph-item:nth-child(8),
.jetcharge-graph[data-active-item="9"] .jetcharge-graph__graph-item:nth-child(9),
.jetcharge-graph__graph-item:hover {
  --item-active: 1;
}

.jetcharge-graph[data-active-item="1"] .jetcharge-graph__graph-item:nth-child(1),
.jetcharge-graph[data-active-item="2"] .jetcharge-graph__graph-item:nth-child(2),
.jetcharge-graph[data-active-item="3"] .jetcharge-graph__graph-item:nth-child(3),
.jetcharge-graph[data-active-item="4"] .jetcharge-graph__graph-item:nth-child(4),
.jetcharge-graph[data-active-item="5"] .jetcharge-graph__graph-item:nth-child(5),
.jetcharge-graph[data-active-item="6"] .jetcharge-graph__graph-item:nth-child(6),
.jetcharge-graph[data-active-item="7"] .jetcharge-graph__graph-item:nth-child(7),
.jetcharge-graph[data-active-item="8"] .jetcharge-graph__graph-item:nth-child(8),
.jetcharge-graph[data-active-item="9"] .jetcharge-graph__graph-item:nth-child(9) {
  transform: scale(1.1);
}

@media (max-width: 1023px) {
  .jetcharge-graph {
    height: auto;
    padding: 60px 0;
  }
  
  .jetcharge-graph__title {
    margin-bottom: 20px;
  }

  .jetcharge-graph__title-col {
    margin-bottom: 5px;
  }

  .jetcharge-graph__menu-col {
    position: relative;
    margin-bottom: 30px;
    padding-top: 0;
  }

  .jetcharge-graph__menu {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .jetcharge-graph__menu-item {
    display: none;
  }

  .jetcharge-graph__navs {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    display: flex;
    width: 100%; 
    justify-content: space-between;
    touch-action: manipulation;
  }

  .jetcharge-graph__nav {
    padding: 0;
    border: 0;
    background-color: transparent;
    line-height: 0;
  }

  .jetcharge-graph__nav svg {
    width: 48px; height: 48px;
  }

  .jetcharge-graph__graph-col {
    margin-bottom: 20px;
  }

  .jetcharge-graph__desc-item {
    align-items: flex-start;
    text-align: left;
  }

  .jetcharge-graph__desc-item-text {
    max-width: none;
  }

  .jetcharge-graph__desc-item-btn {
    margin-top: 20px;
    width: 100%;
  }
}

.posts-preview {
  padding: 7vw 0px;
  background-color: var(--secondary-light-purple-color); 
}

.posts-preview.section {
  /* background: linear-gradient(94.44deg, rgba(213, 194, 215,1) 0%, rgba(233, 204, 211,1) 56%, rgba(244, 221, 194,1) 100%); */
}

.posts-preview__views {
  display: flex;
}

.posts-preview__view {
  width: 100%;
  flex-shrink: 0;
  margin-right: -100%;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-out;
}

.posts-preview__view--active {
  opacity: 1;
  pointer-events: initial;
  transition: opacity 0.5s ease-out;
}

.posts-preview__meta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.posts-preview__meta-type {
    color: var(--primary-purple-color-transparent);
    margin-bottom: 50px;
    font-size: 14px;
    line-height: 18px;
}

.posts-preview__meta-title {
    margin-bottom: 40px;
    color: var(--primary-dark-grey-color);
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
}

.posts-preview__meta-description {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 12px;
}

.posts-preview__meta-link.btn {
background: var(--primary-purple-color);
transition: background ease-out .3s;
}

.posts-preview__meta-link.btn:hover {
  background: var(--primary-gradient);
  transition: background ease-in .2s;
}

.posts-preview__image-container {
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

.posts-preview__list {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  overflow-x: visible;
}

.posts-preview__list-item {
  border-top: 1px solid var(--primary-brand-color);
  padding-top: 12px;
  width: calc((100% - 30px * 3) / 6);
  margin-right: 15px;
  flex-shrink: 0;
  cursor: pointer;
}

.posts-preview__list-item-type {
  color: #ccc;
  margin-bottom: 3px;
}

.posts-preview__list-item-title {
  color: rgba(0,0,0,0.3);
  font-size: 18px;
  line-height: 22px;
}

.posts-preview__list-item-title:hover {
  color: var(--primary-purple-color);
}

.posts-preview__list-item--active .posts-preview__list-item-title {
  color: var(--primary-purple-color);
}

.posts-preview__meta-description {
  margin-bottom: 40px;
}

.posts-preview__nav-item {
    border-style: none;
    background-color: rgba(0,0,0,0);
    margin-right: -10px;
    margin-left: -5px;
    margin-top: 40px;
    cursor: pointer;
    display: inline-block;
}

.posts-preview__video {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 6px;
}

.posts-preview__nav {
  position: relative;
}

.posts-preview__nav .prev-next-button.previous{
    left: 30px;
}

.posts-preview__nav .prev-next-button.next{
    left: 84px;
}

.posts-preview__nav .prev-next-button {
    position: absolute;
    background: #ddd9de;
    border: none;
    color: #333;
}

.posts-preview__nav-item:hover {
    background: var(--primary-purple-color);
    cursor: pointer;
    color: white;
}

.prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
}

.prev-next-button {
    bottom: -85px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: translateY(-50%) translateX(-50%);
}

@media (max-width: 1024px) {
  .posts-preview__meta-title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .posts-preview__meta-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 95px;
  }

  .posts-preview__nav {
      position: relative;
      top: -46px;
      left: 15px;
  }

  .posts-preview__meta-type {
    margin-bottom: 30px;
  }

  .posts-preview__meta {
    justify-content: unset;
  }

  .posts-preview__list {
    flex-direction: column;
    margin-top: 0px;
    display: none;
  }

  .posts-preview__list-item {
    width: 100%;
    margin-bottom: 10px;
  }

  .posts-preview__list-item-type {
    display: none;
  }

  .posts-preview__video {
    height: 200px;
  }

  .posts-preview__nav-item {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .posts-preview__image-container {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .posts-preview__meta-link.btn {
      background: var(--primary-purple-color);
      transition: background ease-out .3s;
      margin-bottom: 15px;
  }
}
.wrapper {
  will-change: background-color;
  transition: background-color .5s ease;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
}

header.header--sticky ~ #sub_wrapper {
  padding-bottom: var(--header-height);
}

.wrapper--dark {
  background-color: #111;
}

:root {
  --topbar-height: 30px;
}

.topbar {
  height: var(--topbar-height);
  background: var(--primary-gradient);

  z-index: 10;
}

.topbar--fixed {
  position: fixed;
  width: 100%;
  top: var(--header-top-offset);
}

.topbar--sticky {
  position: sticky;
  top: var(--header-top-offset);
}

/*.jetcharge-wp-section .topbar {
  margin-top: 52px;
}*/

.topbar--overlay {
  position: absolute;
  width: 100%;
  background: rgba(38, 38, 41, 0.3);
  top: var(--header-top-offset);
}

.topbar__menu {
  display: flex;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
}

.topbar__menu-item {
  color: white;
  text-decoration: none;
  font-size: 14px;
  line-height: 21px;
}

.topbar__menu-item:not(:last-child) {
  margin-right: 35px;
}

@media (max-width: 1023px) {
  :root {
    --topbar-height: 0;
  }

  .topbar {
    display: none;
  }
}

:root {
  /*--header-height: 66px;*/
  --mobile-header-space: 80px;
  --header-top-offset: 0px;
  --header-topbar-offset: 0px;
}

.topbar + .header {
  --header-topbar-offset: var(--topbar-height);
}

body.admin-bar {
  --header-top-offset: 32px;
}

body.admin-bar .wrapper {
  top: var(--header-top-offset, 32px);
}

.header {
  height: var(--header-height);
  background-color: white;
  box-shadow: 0 1px 2px rgba(0,0,0, 0.07);

  z-index: 10;
}

.header--sticky {
  position: sticky;
  top: calc(var(--header-top-offset) + var(--header-topbar-offset));
}

.header--fixed {
  position: fixed;
  width: 100%; 
  top: calc(var(--header-top-offset) + var(--header-topbar-offset));
}

.header--overlay:not(.header--open) {
  position: absolute;
  top: calc(var(--header-top-offset) + var(--header-topbar-height));
  width: 100%;
  z-index: 10;
  background-color: transparent;
  box-shadow: none;
}

.header--open {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 11;
}

.header--open::before {
  content: '';
  display: block;
  width: 100%; height: var(--mobile-header-space);
  position: absolute;
  top: 0; left: 0;
  background-color: white;
}

/*.header--open::after {
  content: '';
  display: block;
  width: 100%; height: 5px;
  position: absolute;
  top: 0; left: 0;
  background: var(--primary-gradient);
}*/

.header__container {
  position: relative;
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  flex-shrink: 0;
  line-height: 0;
  margin-right: 50px;
  margin-top: var(--header-logo-top-offset, 0);
}

.header__logo-img--white {
  display: none;
}

.header--overlay:not(.header--open) .header__logo-img--white {
  display: initial;
}

.header--overlay:not(.header--open) .header__logo-img--dark {
  display: none;
}

.header__menu {
  display: flex;
  margin-right: auto;
}

.header__menu--align-right {
  margin-right: 0;
}

.header__menu-item--lvl0 {
  position: relative;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 40px;
  text-decoration: none;
  color: var(--menu-item-color);

  /*font-size: 16px;
  line-height: 24px;
  font-weight: bold;*/
}

.header__menu-link {
  color: inherit;
  text-decoration: inherit;
}

/*.header__menu-item:hover,
.header__menu-item--active {
  border-bottom: 2px solid var(--primary-brand-color);
}*/

.header__menu-item--lvl0::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background-color: var(--primary-brand-color);
  transition: transform .4s ease-in-out;
}

.header__menu-item--lvl0:hover::after,
.header__menu-item--lvl0.header__menu-item--active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header--overlay .header__menu-item--lvl0 {
  color: white;
}

.header__menu-item--lvl0:not(:last-child) {
  margin-right: 40px;
}

.header__menu-subitems {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(15px);

  display: flex;
  box-sizing: border-box;
  min-width: 216px;
  padding: 7px 0 14px;
  flex-direction: column;

  background-color: white;
  text-align: center;

  opacity: 0;
  pointer-events: none;
}

.header__menu-item--lvl0:hover > .header__menu-subitems,
.header__menu-subitems:hover {
  opacity: 1;
  pointer-events: initial;
}

.header__menu-subitems::before {
  content: '';
  display: block;

  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-100%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid white;
}

.header__menu-subitems::after {
  content: '';
  display: block;

  position: absolute;
  top: -30px; left: 0;
  width: 100%; height: 30px;

  background-color: transparent;
}

.header__menu-subitems .header__menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 36px;
  color: #111;
}

.header__menu-subitems .header__menu-item:hover {
  background-color: #f5f5f5;
}

.header__model-search {
  display: flex;
}

.header__model-search-input {
  --background-color: var(--secondary-beige-color);
  --select-height: 40px;
  --side-padding: 12px;
  max-width: 250px;
  margin-right: 5px;
}

.header--open .header__model-search-input {
  --select-height: 46px;
  max-width: 100%;
  width: 100%;
}

.header--overlay:not(.header--open) .header__model-search-input {
  --background-color: rgba(239, 237, 232, 0.2);
}

.header__model-search-input::before {
  border: 0;
}

.header--overlay:not(.header--open) .header__model-search-input::before {
  color: white;
}

.header--overlay:not(.header--open) .header__model-search-input::after {
  border-top-color: white;
}

.header--overlay:not(.header--open) .header__model-search-input.el-select--active::after {
  border-bottom-color: white;
}

.header--overlay:not(.header--open) .header__model-search-input[value=""]::before {
  color: white;
  opacity: 0.7;
}

.header--overlay:not(.header--open) .header__model-search-input.el-select--active::before {
  opacity: 0;
}

.header--overlay:not(.header--open) .header__model-search .el-select__search {
  border: 0;
  outline: 0;
  color: white;
  border-radius: 4px;
}

.header--open .header__model-search {
  flex-direction: column;
  row-gap: 10px;
  position: absolute;
  width: 100%;
  bottom: 0;
  transform: translateY(100%);
}

.header__model-search-btn {
  width: 40px; height: 40px;
  min-width: auto;
  padding: 0;
  color: white;
  background: var(--primary-gradient);
}

.header:not(.header--open) .header__model-search-btn::before {
  display: none;
}

.header--open .header__model-search-btn {
  width: 100%;
  background: transparent;
  height: 46px;
  color: black;
}

.header--open .header__model-search-btn:hover {
  color: white;
}

.header--open .header__model-search-btn::after {
  content: 'Search';
}

.header--open .header__model-search-btn svg {
  display: none;
}

.header__trigger-btn {
  display: none;
  width: 40px; height: 40px;
  color: #111;
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 0;
}

.header__trigger-icon--open {
  display: none;
}

.header--open .header__trigger-icon--closed {
  display: none;
}

.header--open .header__trigger-icon--open {
  display: initial;
}

.header--overlay:not(.header--open) .header__trigger-btn {
  color: white;
}

@media (max-width: 1129px) {
  .header__logo {
    margin-right: 20px;
  }

  .header__model-search-input {
    max-width: 190px;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: var(--header-height-mobile, 55px);
  }

  .header__menu {
    display: none;
  }

  .header:not(.header--open) .header__model-search {
    display: none; 
  }

  .header__trigger-btn {
    display: block;
  }
}

.mega-menu {
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header--sticky + .mega-menu,
.header--fixed + .mega-menu {
  position: fixed;
}

@media (min-width: 1024px) {
  .mega-menu--shifted {
    margin-top: calc(var(--topbar-height) + var(--header-height));
  }
  
  .mega-menu__content {
    position: relative;
    max-width: 700px;
  }
  
  .mega-menu__item {
    position: absolute;
    width: 100%; min-height: 348px;
    background-color: white;
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
  
    transition: opacity 300ms ease;
  }

  .mega-menu__item--no-children {
    display: none;
  }
  
  .mega-menu__item:not(.mega-menu__item--active) {
    opacity: 0;
    pointer-events: none;
  }
  
  .mega-menu__item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    display: block;
    width: 150%; height: 15px;
    background-color: transparent;
    transform: translateY(-100%);
  }
  
  .mega-menu__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    padding: 0 40px;
    border-radius: 4px 4px 0 0;
  }
  
  .mega-menu__item-title {
    font-weight: bold;
  }
  
  .mega-menu__item-link {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 21px;
    color: white;
    text-decoration: underline;
  }
  
  .mega-menu__item-link svg {
    margin-left: 10px;
    width: 16px; height: 16px;
  }
  
  .mega-menu__item-content {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px 40px;
  }
  
  .mega-menu__item-column {
    width: 100%;
  }
  
  .mega-menu__item-column:nth-child(n + 2) {
    margin-left: 35px;
  }
  
  .mega-menu__item-link-2-container:not(:last-child) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .mega-menu__topbar-menu {
    display: none;
  }

  .mega-menu__social {
    display: none;
  }

  .mega-menu__close-btn {
    position: absolute;
    top: 30px; right: 0;

    display: flex;
    width: 50px; height: 50px;
    justify-content: center;
    align-items: center;

    color: white;
    background-color: #222429;
    border: 0;
    padding: 0;
	    
	  cursor: pointer;
  }
}

.mega-menu__item-link-2 {
  display: block;
  font-weight: bold;
  color: var(--primary-dark-grey-color);
  text-decoration: none;
}

.mega-menu__item-link-2:not(:last-child) {
  margin-bottom: 10px;
}

.mega-menu__item-link-3 {
  position: relative;
  display: block;
  color: #666;
  text-decoration: none;
  padding-left: 16px;
}

.mega-menu__item-link-3::before {
  content: '';

  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);

  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background-color: var(--primary-dark-grey-color);
}

@media (max-width: 1023px) {
  .header:not(.header--open) + .mega-menu {
    opacity: 0;
    pointer-events: none;
  }

  .mega-menu {
    --top-offset: var(--mobile-header-space);

    overflow-x: hidden;
    overflow-y: auto;

    position: fixed;

    top: var(--top-offset);
    height: calc(100% - var(--top-offset));
    background-color: white;
  }

  .mega-menu__item {
    overflow: hidden;
    transition: height 1s;
  }

  .mega-menu__item-link {
    display: none;
  }

  .mega-menu__item-title {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    height: 60px;
  }

  .mega-menu__item-title::after {
    content: '';
    display: block;
    width: 37px; height: 37px;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    background-image: url(sections/../../images/accordion-plus.svg);
  }

  .evlt-accordion__item--active .mega-menu__item-title::after {
    background-image: url(sections/../../images/accordion-minus.svg);
  }

  .mega-menu__item--no-children .mega-menu__item-title::after {
    display: none;
  }

  .mega-menu__item {
    border-bottom: 1px solid #ddd;
  }

  .mega-menu__item-content {
    padding-bottom: 40px;
  }

  .mega-menu__item-image-link {
    display: block;
    margin-top: -20px;
    line-height: 0;
  }

  .mega-menu__item-image {
    margin-top: 10px;
    display: none;
  }

  .mega-menu__item-link-2-container:not(:last-child),
  .mega-menu__item-column:not(:last-child){
    margin-bottom: 20px;
  }

  .mega-menu__item:not(.evlt-accordion__item--active) {
    height: 60px !important;
  }
  
  .mega-menu__topbar-menu {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
  }

  .mega-menu__topbar-menu-item {
    color: var(--primary-dark-grey-color);
    text-decoration: none;
    font-size: 18px;
    line-height: 36px;
  }

  .mega-menu__topbar-menu-item {
    margin-right: 17px;
  }

  .mega-menu__social {
    display: flex;
    margin-bottom: 80px;
  }

  .mega-menu__social-link {
    text-decoration: none;
  }

  .mega-menu__social-link:not(:last-child) {
    margin-right: 30px;
  }
}

.persona-header {
  display: flex;
  align-items: center;
  min-height: 558px;

  background-color: var(--secondary-beige-color);
  background-image: url(sections/../../images/persona-header-bg.svg);
  background-size: auto 100%;
  background-position: 100% center;
  background-repeat: no-repeat;
  color: #111;
}

.persona-header__sub-title {
  color: var(--secondary-brand-color);
  margin-bottom: 30px;
}

.persona-header__title {
  margin-bottom: 10px;
}

@media (max-width: 1023px) {
  .persona-header {
    min-height: 472px;
    background-image: url(sections/../../images/persona-header-bg--mobile.svg);
    background-position: bottom right;
    background-size: auto 70%;
  }

  .persona-header__title {
    max-width: 80%;
  }

  .persona-header__text {
    font-size: 18px;
    line-height: 27px;
    max-width: 80%;
  }
}

.archive-header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--secondary-beige-color); 
  background-image: url(sections/../../images/archive-header-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  min-height: 730px;
  padding: 50px 0;

  margin-bottom: calc(var(--section-gap-base) * 4); /* x4 - 120px */
}

.archive-header--resource {
  min-height: 330px;
}

.archive-header__title {
  color: var(--primary-dark-grey-color);
  margin-bottom: 60px;
}

.archive-header--resource .blog-post-item {
  display: none;
}

@media (max-width: 1023px) {
  .archive-header {
    min-height: auto;
    background-image: url(sections/../../images/persona-header-bg--mobile.svg);
    background-position: bottom right;
    background-size: auto 323px;
  }

  .archive-header__title {
    margin-bottom: 30px;
  }

}

.video-header {
  position: relative;
  background-size: cover;
  background-position: center;
}

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

.video-header__video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.video-header__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 558px;
  color: white;
  background-color: rgba(38, 38, 41, 0.8);
}

.video-header__text {
  text-align: center;
  max-width: 616px;
}

@media (max-width: 1023px) {
  .video-header__content {
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 50px;
  }

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

.post-header {
  margin-bottom: 60px;
}

.post-header__description {
  box-sizing: border-box;
  background-color: var(--secondary-beige-color);
  height: 558px;
  padding: 90px 0;
}

.post-header__title {
  color: var(--primary-dark-grey-color);
}

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

.post-header__posted-label {
  color: #111;
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.post-header__posted-date {
  color: var(--secondary-brand-color);
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.01em;
}

.post-header__image {
  margin-top: -264px;
  height: 667px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1023px) {
  .post-header {
    margin-bottom: 40px;
  }

  .post-header__description {
    padding-top: 50px;
    box-sizing: border-box;
    height: auto;
    min-height: 375px;
    padding-bottom: 92px
  }

  .post-header__posted {
    text-align: left;
    order: -1;
    margin-bottom: 30px;
  }

  .post-header__posted-label {
    margin-bottom: 10px;
  }

  .post-header__image {
    margin-top: -92px;
    height: 184px;
  }
}

.blog-post-item__container:not(:last-child) {
  padding-bottom: 80px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 80px;
}

.blog-post-item__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-post-item__date {
  color: var(--secondary-brand-color);
  margin-bottom: 62px;
  font-weight: bold;
}

.blog-post-item__title {
  color: var(--primary-dark-grey-color);
  margin-bottom: 10px;
}

.blog-post-item__text {
  color: #666;
  letter-spacing: -0.002em;
  margin-bottom: 74px;
}

.blog-post-item__link {
  color: var(--secondary-brand-color);
}

@media (max-width: 1023px) {
  .blog-post-item__container:not(:last-child) {
    border: 0;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  
  .blog-post-item__image {
    margin-bottom: 30px;
  }

  .blog-post-item__date {
    margin-bottom: 20px;
  }

  .blog-post-item__text {
    margin-bottom: 20px;
  }
}

:root {
  /*--footer-bright-color: none;
  --footer-dark-color: #111;*/
}

.footer {
  clear: both;
  /*padding-bottom: 80px;*/
  background-color: var(--footer-bright-color);
}

.footer--dark {
  background-color: var(--footer-dark-color);
}

.footer--top-bar::before {
  content: '';
  display: block;
  height: 6px;
  background: var(--primary-gradient);
}

.footer__container {
  padding-top: 74px;
}

.footer__logo-row {
  margin-bottom: 30px;
}

.footer__navs {
  margin-bottom: 30px;
}

.footer__primary-nav {
  display: flex;
  flex-direction: column;
}

.footer__primary-nav-item {
  font-size: 22px;
  line-height: 36px;
  color: var(--primary-dark-grey-color);
  text-decoration: none;
}

.footer__primary-nav-item:hover,
.footer__primary-nav-item--active {
  color: var(--primary-brand-color);
}

.footer__secondary-nav {
  display: flex;
  flex-direction: column;
}

.footer__secondary-nav-item {
  color: #111;
  text-decoration: none;
}

.footer__secondary-nav-item--lvl0 {
  font-weight: bold;
  margin-bottom: 20px;
}

.footer--dark .footer__secondary-nav-item {
  color: white;
}

.footer--dark .footer__secondary-nav-item--lvl1 {
  color: #AAA;
}

.footer__text {
  color: #aaa;
  font-size: 14px;
  line-height: 21px;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 300px;
  column-gap: 60px;
}

.footer__menu > .footer__menu-link,
.footer__menu-item--lvl0 > .footer__menu-link {
  display: block;
  color: white;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  text-decoration: none;
}

.footer__menu-subitems .footer__menu-link {
  display: block;
  text-decoration: none;
  color: #AAA;
  font-size: 14px;
  line-height: 21px;
}

.footer__menu-subitems {
  margin-bottom: 30px;
}

/*
.footer__social {
  display: flex;
  justify-content: flex-end;
}
*/

.footer__social-link {
  text-decoration: none;
}

.footer__social-link:not(:last-child) {
  margin-right: 28px;
}

@media (max-width: 1023px) {
  .footer {
    text-align: center;
  }

  .footer__primary-nav {
    margin-bottom: 30px;
  }

  .footer__text {
    font-size: 16px;
    line-height: 24px;
  }

  .footer__copy {
    margin-bottom: 40px;
  }

  .footer__menu {
    display: flex;
    margin-top: 14px;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .footer__menu-item {
    margin-bottom: 14px;
  }

  .footer__menu-item:not(:last-child) {
    margin-right: 0;
  }

  .footer__social {
    justify-content: center;
  }
}

.woocommerce-cart .quantity .input-text.qty,
.woocommerce .product .input-text.qty {
  box-sizing: border-box;
  width: 200px; height: 49px;
  border: 1px solid #ccc;
  font-weight: bold;
}


.woocommerce div.product {
  padding-top: 120px;
}

.woocommerce div.product .woocommerce-tabs.woocommerce-tabs {
  float: right;
  clear: none;
  width: 48%;
}

.woocommerce-page .related.products {
  clear: both;
}

/*
.woocommerce-product-gallery__image:first-child {
  position: relative;
  height: 615px;
  margin-bottom: 10px;
}

.woocommerce-product-gallery__image:first-child .wp-post-image.wp-post-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
*/

.woocommerce div.product p.price.price {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  font-family: var(--headings-font-family);
  color: var(--primary-brand-color);
}

.woocommerce .product .woocommerce-breadcrumb {
  float: right;
  width: 48%;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--alt2-brand-color);
}

.woocommerce .product .woocommerce-breadcrumb a {
  text-decoration: none;
  color: inherit;
}

.woocommerce .product .input-text.qty {
  box-sizing: border-box;
  width: 200px; height: 49px;
  border: 1px solid #ccc;
  font-weight: bold;
}

.woocommerce .product .single_add_to_cart_button {
  text-transform: uppercase;
  font-size: 12px;
}

.shop__cart-title svg {
  width: 50px; height: 50px;
  vertical-align: middle;
}

.shop__cart-title .evlt-paragraph__main-title {
  color: #ddd;
}

.shop__cart-title .evlt-paragraph__main-title b {
  color: #111;
}

.woocommerce-cart h2 {
  text-transform: uppercase;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 20px;
  border-bottom: 3px solid #111;
  margin-bottom: 20px;
}

.woocommerce-cart h2 span {
  color: var(--alt2-brand-color);
}

/*.woocommerce-cart .shop_table .product-remove {
  display: none;
}*/

.woocommerce-cart .shop_table th {
  text-transform: uppercase;
  color: #666;
}

.woocommerce table.shop_table {
  border: 0;
}

.woocommerce-cart .woocommerce {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
}

.woocommerce-cart table.cart .product-thumbnail {
  padding-left: 0;
  width: 150px;
  padding-right: 8px;
}

.woocommerce-cart table.cart img {
  width: 150px; height: 150px;
}

.woocommerce-cart .shop_table .product-name a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

.woocommerce-cart .shop_table .product-price:not(th) {
  font-weight: bold;
  color: #666;
  font-size: 14px;
}

.woocommerce-cart .shop_table .product-subtotal:not(th) {
  font-weight: bold;
  font-size: 14px;
  text-align: right;
}

.woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
  width: 100%;
}

.woocommerce-cart .woocommerce-cart-form {
  flex-grow: 1;
}

.woocommerce-cart .cart-collaterals {
  width: 440px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
}

.cart_totals .cart-subtotal td,
.cart_totals .order-total td {
  font-size: 14px;
  text-align: right;
}

.cart_totals .order-total th {
  color: #111;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: inline-flex;
  width: 100%;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 300px; height: 35px;
  background-color: #ddd;
  border: 0;
  border-radius: 3px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #666;
  padding: 12px 20px;
  margin-right: 20px;
}

.woocommerce-cart .coupon .button {
  background-color: #111;
  color: white;
}

.woocommerce-cart .shop_table .actions {
  padding: 40px 0 0;
}

.woocommerce .col2-set::after,
.woocommerce-page .col2-set::after {
  clear: none;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  float: right;
  width: 48%;
}

.woocommerce-checkout .woocommerce::after {
  display: block;
  clear: both;
  content: '';
  margin-bottom: 120px;
}

.archive-posts-list {
  margin-bottom: 120px;
}

.archive-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 62px;
}

.archive-filter-bar__title {
  color: var(--primary-dark-grey-color);
  margin-right: 60px;
}

.archive-filter-bar__topics {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-right: auto;
  box-sizing: border-box;
}

.archive-filter-bar__topic {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 30px;
  color: var(--primary-dark-grey-color);
  border: 1px solid #ddd;
  border-radius: 3px;
  text-decoration: none;

  font-size: 14px;
  font-weight: bold;
}

.archive-filter-bar__topic:not(:last-child) {
  margin-right: 10px;
}

.archive-filter-bar__topic--active {
  background-color: var(--primary-brand-color);
  border-color: var(--primary-brand-color);
}

.archive-filter-bar__order-select {
  font-size: 14px;
  line-height: 21px;
  --select-height: 40px;
  width: 230px;
}

@media (max-width: 1023px) {
  .archive-filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .archive-filter-bar__title {
    margin-bottom: 20px;
  }

  .archive-filter-bar__topics {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 20px;
    width: calc(100% + var(--padding-width));
    padding-right: var(--padding-width);
  }

  .archive-filter-bar__topic {
    flex-shrink: 0;
  }

  .archive-filter-bar__order,
  .archive-filter-bar__order-select {
    width: 100%;
  }

  .archive-posts-list {
    margin-bottom: 60px;
  }
}

.post__content {
  color: #333;
}

.post__content p:first-child {
  color: var(--primary-dark-grey-color);
  font-size: 26px;
  line-height: 36px;
}


.shop__sidebar {
  padding-top: 120px;
  clear: both;
}

.page-404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.page-404__logo {
  display: flex;
}

.page-404__logo-image {
  width: 378px;
  margin-bottom: 20px;
}

.page-404__title {
  color: var(--primary-dark-grey-color);
  font-size: 120px;
  line-height: 1em;
  margin-bottom: 10px;
}

.page-404__text {
  color: #333;
  margin-bottom: 30px;
}

.page-404__button {
  margin-top: 40px;
}

.ev-vehicle__stats {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.ev-vehicle__prime-stats {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.ev-vehicle-prime-stat {
  text-align: center;
  padding: 0 80px;
}

.ev-vehicle-prime-stat:not(:last-child) {
  border-right: 1px solid #ccc;
}

.ev-vehicle__table-stats {
  background-color: white;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

.ev-vehicle__table-stats td {
  width: 50%;
  height: 40px;
  border: 1px solid #ddd;
}

.ev-vehicle__level {
  box-sizing: border-box;
  min-height: 410px;
  height: 100%;
  padding: 60px 40px;
  background-color: #f5f5f5;
  color: var(--primary-dark-grey-color);
}

.ev-vehicle__level:not(.slider__item) {
  position: relative;
}

.ev-vehicle__level-label {
  position: absolute;
  top: 0; left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 73px; height: 31px;
  
  background-color: var(--primary-brand-color);
  font-size: 14px;
  line-height: 21px;
  font-weight: bold;
}

.ev-vehicle__level-title {
  margin-bottom: 10px;
}

.ev-vehicle__level--preferable .ev-vehicle__level-title {
  /*color: var(--primary-brand-color);*/
}

.ev-vehicle__level-text {
  min-height: 48px;
  margin-bottom: 20px;
}

.ev-vehicle__level-stat:not(:last-child) {
  margin-bottom: 20px;
}

.ev-vehicle__levels-notice {
  margin-top: 40px;
  color: #999;
}

.ev-vehicle__level-nav {
  position: absolute;
  bottom: 47px; left: 50%;
  transform: translateX(-50%);

  display: flex;
}

.ev-vehicle__level-nav-item {
  position: relative;
  width: 30px; height: 3px;
  border: 0;
  background-color: #ccc;
  font-size: 0;

  --active-width: 30px;
  --active-height: 3px;
  --active-background-color: var(--primary-brand-color);
}

.ev-vehicle__level-nav-item::before {
  content: '';
  display: block;
  width: 100%; height: 20px;
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  background-color: transparent;
}

.ev-vehicle__level-nav-item:hover {
  background-color: var(--primary-brand-color);
}

.ev-vehicle__level-nav-item:not(:last-child) {
  margin-right: 3px;
}

.ev-vehicle__home-charging-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 70px;

  text-align: center;
  letter-spacing: -0.002em;
  color: white;
  background-color: var(--primary-brand-color);

  /*margin-bottom: 22px;*/
}

.ev-vehicle__home-charging-title {
  margin-bottom: 20px;
}

.ev-vehicle__home-charging-img {
  height: 100%;
  min-height: 490px;
  object-fit: cover;
}

.ev-vehicle__home-charging-gap {
  height: 20px;
}

.ev-vehicle__next-steps {
  padding: 120px 0;
  color: var(--primary-dark-grey-color);
  letter-spacing: -0.002em;
  background-color: #f5f5f5;
}

.ev-vehicle__next-steps-list {
  margin-top: 40px;
  list-style: none;
  padding-left: 0;
  counter-reset: next-steps;
}

.ev-vehicle__next-steps-list-item {
  position: relative;
  counter-increment: next-steps;
  padding-left: 66px;
  margin-bottom: 30px;
}

.ev-vehicle__next-steps-list-item::before {
  content: counter(next-steps);
  position: absolute;
  top: 0; left: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;

  background-color: var(--primary-brand-color);
  color: var(--primary-dark-grey-color);
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
}

@media (max-width: 1023px) {
  .ev-vehicle__stats {
    padding-top: 10px;
  }

  .ev-vehicle__prime-stats {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .ev-vehicle-prime-stat {
    padding: 20px 0;
  }

  .ev-vehicle-prime-stat:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #ccc;
  }

  .ev-vehicle__table-stats {
    border: 0;
  }

  .ev-vehicle__table-stats tr {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
  }
  
  .ev-vehicle__table-stats tr:not(:last-child) {
    border-bottom: 0;
  }

  .ev-vehicle__table-stats td {
    width: 100%;
    padding: 0;
    border: 0;
    height: 33px;
  }
  
  .ev-vehicle__table-stats td:first-child {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .ev-vehicle__level-container {
    margin-bottom: 20px;
  }

  .ev-vehicle__home-charging-text {
    padding: 60px 33px;
    margin-bottom: 20px;
  }

  .ev-vehicle__home-charging-img {
    width: 100%;
    min-height: auto;
    height: 218px;
    margin-bottom: 10px;
  }

  .ev-vehicle__home-charging-gap {
    display: none;
  }
}

.ev-vehicles__list {
  margin-top: 60px;
  color: var(--primary-dark-grey-color);
}

.ev-vehicles__list-title {
  margin-bottom: 40px;
}

.ev-vehicles__list-item {
  margin-bottom: 40px;
}

.ev-vehicles__list-link {
  display: block;
  position: relative;
  font-size: 0;
  margin-bottom: 20px;
}

.ev-vehicles__list-link::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.ev-vehicles__list-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.ev-vehicles__list-item-title {
  margin-bottom: 10px;
}

.ev-vehicles__list-item-stats {
  list-style: none;
  padding-left: 0;
  color: #666;
}

@media (max-width: 1023px) {
  .ev-vehicles__list-title {
    margin-bottom: 30px;
  }
}
