/*!*****************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/swiper/swiper-bundle.css ***!
  \*****************************************************************************************/
/**
 * Swiper 12.1.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 24, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}
.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}



:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}


/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}




.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}


.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

/*!*************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/glightbox/dist/css/glightbox.css ***!
  \*************************************************************************************************/
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
        .glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
        .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
    .gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
        .desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
        .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
        /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-top .gslide-media,
    .desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.gslide-description.description-left,
    .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
    .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}


/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
    .glightbox-closing .gprev,
    .glightbox-closing .gclose {
  opacity: 0 !important;
}


/*Skin */

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}


/*CSS Animations*/

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
                .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
    .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
.glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}

@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}

@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}

/*!******************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/resolve-url-loader/index.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[4]!./src/sass/main.scss ***!
  \******************************************************************************************************************************************************************************************************************************/
/* Sass modules (@use must come before all other rules) */
/* Third-party CSS (plain CSS @import, inlined by css-loader) */
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Globals */
/* MIXINS */
/* Basic modules */
:root {
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold: 600;
  --fw-extrabold: 700;
  --paragraphs-line-lineheight: 1.3;
  --color-background: white;
  --color-default-text: #242424;
  --color-default-light-text: #515151;
  --color-primary: #023a67;
  --color-primary-text: white;
  --color-primary-light: #0078c3;
  --color-primary-text: white;
  --color-secondary: #383838;
  --color-secondary-text: white;
  --color-tertiary: whitesmoke;
  --color-tertiary-text: #242424;
  --color-marine-blue: #2c2c5d;
  --color-button: var(--color-primary);
  --color-button-border: var(--color-primary);
  --color-button-text: var(--color-primary-text);
  --color-button-hover: white;
  --color-button-hover-border: var(--color-primary);
  --color-button-hover-text: var(--color-primary);
  --color-input: #f0f0f0;
  --color-input-border: #d3d3d3;
  --color-mobile-menu: black;
  --color-mobile-menu-text: white;
  --color-box: #fefefe;
  --color-box-border: #dbdbdb;
  --border-radius-big: 30px;
}

/* Globals */
* {
  box-sizing: border-box;
}

body {
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
  -webkit-text-size-adjust: 100%;
  font-weight: var(--fw-light);
  --ff: "Outfit", sans-serif;
  font-family: var(--ff);
  font-size: 16px;
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

.container {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 auto;
  position: relative;
  width: 90%;
}
@media (min-width: 1260px) {
  .container {
    max-width: 1240px;
  }
}
@media (max-width: 767px) {
  .container {
    width: auto;
    max-width: 600px;
  }
}

p,
h1,
h2,
h3,
h4,
h5,
ul,
li {
  line-height: var(--paragraphs-line-lineheight);
}

strong,
b {
  font-weight: var(--fw-bold);
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.7em;
  font-weight: var(--fw-bold);
}

sup {
  vertical-align: top;
  font-size: smaller;
}

.mb-0 {
  margin-bottom: 0em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mb-0\@desktop {
    margin-bottom: 0em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mb-0\@tablet {
    margin-bottom: 0em !important;
  }
}
@media (max-width: 767px) {
  .mb-0\@mobile {
    margin-bottom: 0em !important;
  }
}

.mt-0 {
  margin-top: 0em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mt-0\@desktop {
    margin-top: 0em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mt-0\@tablet {
    margin-top: 0em !important;
  }
}
@media (max-width: 767px) {
  .mt-0\@mobile {
    margin-top: 0em !important;
  }
}

.ml-0 {
  margin-left: 0em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .ml-0\@desktop {
    margin-left: 0em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ml-0\@tablet {
    margin-left: 0em !important;
  }
}
@media (max-width: 767px) {
  .ml-0\@mobile {
    margin-left: 0em !important;
  }
}

.mr-0 {
  margin-right: 0em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mr-0\@desktop {
    margin-right: 0em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mr-0\@tablet {
    margin-right: 0em !important;
  }
}
@media (max-width: 767px) {
  .mr-0\@mobile {
    margin-right: 0em !important;
  }
}

.pb-0 {
  padding-bottom: 0em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pb-0\@desktop {
    padding-bottom: 0em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-0\@tablet {
    padding-bottom: 0em !important;
  }
}
@media (max-width: 767px) {
  .pb-0\@mobile {
    padding-bottom: 0em !important;
  }
}

.pt-0 {
  padding-top: 0em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pt-0\@desktop {
    padding-top: 0em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pt-0\@tablet {
    padding-top: 0em !important;
  }
}
@media (max-width: 767px) {
  .pt-0\@mobile {
    padding-top: 0em !important;
  }
}

.pl-0 {
  padding-left: 0em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pl-0\@desktop {
    padding-left: 0em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pl-0\@tablet {
    padding-left: 0em !important;
  }
}
@media (max-width: 767px) {
  .pl-0\@mobile {
    padding-left: 0em !important;
  }
}

.pr-0 {
  padding-right: 0em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pr-0\@desktop {
    padding-right: 0em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pr-0\@tablet {
    padding-right: 0em !important;
  }
}
@media (max-width: 767px) {
  .pr-0\@mobile {
    padding-right: 0em !important;
  }
}

.mb-1 {
  margin-bottom: 1em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mb-1\@desktop {
    margin-bottom: 1em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mb-1\@tablet {
    margin-bottom: 1em !important;
  }
}
@media (max-width: 767px) {
  .mb-1\@mobile {
    margin-bottom: 1em !important;
  }
}

.mt-1 {
  margin-top: 1em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mt-1\@desktop {
    margin-top: 1em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mt-1\@tablet {
    margin-top: 1em !important;
  }
}
@media (max-width: 767px) {
  .mt-1\@mobile {
    margin-top: 1em !important;
  }
}

.ml-1 {
  margin-left: 1em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .ml-1\@desktop {
    margin-left: 1em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ml-1\@tablet {
    margin-left: 1em !important;
  }
}
@media (max-width: 767px) {
  .ml-1\@mobile {
    margin-left: 1em !important;
  }
}

.mr-1 {
  margin-right: 1em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mr-1\@desktop {
    margin-right: 1em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mr-1\@tablet {
    margin-right: 1em !important;
  }
}
@media (max-width: 767px) {
  .mr-1\@mobile {
    margin-right: 1em !important;
  }
}

.pb-1 {
  padding-bottom: 1em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pb-1\@desktop {
    padding-bottom: 1em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-1\@tablet {
    padding-bottom: 1em !important;
  }
}
@media (max-width: 767px) {
  .pb-1\@mobile {
    padding-bottom: 1em !important;
  }
}

.pt-1 {
  padding-top: 1em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pt-1\@desktop {
    padding-top: 1em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pt-1\@tablet {
    padding-top: 1em !important;
  }
}
@media (max-width: 767px) {
  .pt-1\@mobile {
    padding-top: 1em !important;
  }
}

.pl-1 {
  padding-left: 1em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pl-1\@desktop {
    padding-left: 1em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pl-1\@tablet {
    padding-left: 1em !important;
  }
}
@media (max-width: 767px) {
  .pl-1\@mobile {
    padding-left: 1em !important;
  }
}

.pr-1 {
  padding-right: 1em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pr-1\@desktop {
    padding-right: 1em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pr-1\@tablet {
    padding-right: 1em !important;
  }
}
@media (max-width: 767px) {
  .pr-1\@mobile {
    padding-right: 1em !important;
  }
}

.mb-2 {
  margin-bottom: 2em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mb-2\@desktop {
    margin-bottom: 2em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mb-2\@tablet {
    margin-bottom: 2em !important;
  }
}
@media (max-width: 767px) {
  .mb-2\@mobile {
    margin-bottom: 2em !important;
  }
}

.mt-2 {
  margin-top: 2em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mt-2\@desktop {
    margin-top: 2em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mt-2\@tablet {
    margin-top: 2em !important;
  }
}
@media (max-width: 767px) {
  .mt-2\@mobile {
    margin-top: 2em !important;
  }
}

.ml-2 {
  margin-left: 2em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .ml-2\@desktop {
    margin-left: 2em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ml-2\@tablet {
    margin-left: 2em !important;
  }
}
@media (max-width: 767px) {
  .ml-2\@mobile {
    margin-left: 2em !important;
  }
}

.mr-2 {
  margin-right: 2em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mr-2\@desktop {
    margin-right: 2em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mr-2\@tablet {
    margin-right: 2em !important;
  }
}
@media (max-width: 767px) {
  .mr-2\@mobile {
    margin-right: 2em !important;
  }
}

.pb-2 {
  padding-bottom: 2em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pb-2\@desktop {
    padding-bottom: 2em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-2\@tablet {
    padding-bottom: 2em !important;
  }
}
@media (max-width: 767px) {
  .pb-2\@mobile {
    padding-bottom: 2em !important;
  }
}

.pt-2 {
  padding-top: 2em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pt-2\@desktop {
    padding-top: 2em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pt-2\@tablet {
    padding-top: 2em !important;
  }
}
@media (max-width: 767px) {
  .pt-2\@mobile {
    padding-top: 2em !important;
  }
}

.pl-2 {
  padding-left: 2em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pl-2\@desktop {
    padding-left: 2em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pl-2\@tablet {
    padding-left: 2em !important;
  }
}
@media (max-width: 767px) {
  .pl-2\@mobile {
    padding-left: 2em !important;
  }
}

.pr-2 {
  padding-right: 2em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pr-2\@desktop {
    padding-right: 2em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pr-2\@tablet {
    padding-right: 2em !important;
  }
}
@media (max-width: 767px) {
  .pr-2\@mobile {
    padding-right: 2em !important;
  }
}

.mb-3 {
  margin-bottom: 3em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mb-3\@desktop {
    margin-bottom: 3em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mb-3\@tablet {
    margin-bottom: 3em !important;
  }
}
@media (max-width: 767px) {
  .mb-3\@mobile {
    margin-bottom: 3em !important;
  }
}

.mt-3 {
  margin-top: 3em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mt-3\@desktop {
    margin-top: 3em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mt-3\@tablet {
    margin-top: 3em !important;
  }
}
@media (max-width: 767px) {
  .mt-3\@mobile {
    margin-top: 3em !important;
  }
}

.ml-3 {
  margin-left: 3em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .ml-3\@desktop {
    margin-left: 3em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ml-3\@tablet {
    margin-left: 3em !important;
  }
}
@media (max-width: 767px) {
  .ml-3\@mobile {
    margin-left: 3em !important;
  }
}

.mr-3 {
  margin-right: 3em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mr-3\@desktop {
    margin-right: 3em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mr-3\@tablet {
    margin-right: 3em !important;
  }
}
@media (max-width: 767px) {
  .mr-3\@mobile {
    margin-right: 3em !important;
  }
}

.pb-3 {
  padding-bottom: 3em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pb-3\@desktop {
    padding-bottom: 3em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-3\@tablet {
    padding-bottom: 3em !important;
  }
}
@media (max-width: 767px) {
  .pb-3\@mobile {
    padding-bottom: 3em !important;
  }
}

.pt-3 {
  padding-top: 3em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pt-3\@desktop {
    padding-top: 3em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pt-3\@tablet {
    padding-top: 3em !important;
  }
}
@media (max-width: 767px) {
  .pt-3\@mobile {
    padding-top: 3em !important;
  }
}

.pl-3 {
  padding-left: 3em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pl-3\@desktop {
    padding-left: 3em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pl-3\@tablet {
    padding-left: 3em !important;
  }
}
@media (max-width: 767px) {
  .pl-3\@mobile {
    padding-left: 3em !important;
  }
}

.pr-3 {
  padding-right: 3em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pr-3\@desktop {
    padding-right: 3em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pr-3\@tablet {
    padding-right: 3em !important;
  }
}
@media (max-width: 767px) {
  .pr-3\@mobile {
    padding-right: 3em !important;
  }
}

.mb-4 {
  margin-bottom: 4em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mb-4\@desktop {
    margin-bottom: 4em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mb-4\@tablet {
    margin-bottom: 4em !important;
  }
}
@media (max-width: 767px) {
  .mb-4\@mobile {
    margin-bottom: 4em !important;
  }
}

.mt-4 {
  margin-top: 4em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mt-4\@desktop {
    margin-top: 4em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mt-4\@tablet {
    margin-top: 4em !important;
  }
}
@media (max-width: 767px) {
  .mt-4\@mobile {
    margin-top: 4em !important;
  }
}

.ml-4 {
  margin-left: 4em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .ml-4\@desktop {
    margin-left: 4em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ml-4\@tablet {
    margin-left: 4em !important;
  }
}
@media (max-width: 767px) {
  .ml-4\@mobile {
    margin-left: 4em !important;
  }
}

.mr-4 {
  margin-right: 4em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mr-4\@desktop {
    margin-right: 4em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mr-4\@tablet {
    margin-right: 4em !important;
  }
}
@media (max-width: 767px) {
  .mr-4\@mobile {
    margin-right: 4em !important;
  }
}

.pb-4 {
  padding-bottom: 4em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pb-4\@desktop {
    padding-bottom: 4em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-4\@tablet {
    padding-bottom: 4em !important;
  }
}
@media (max-width: 767px) {
  .pb-4\@mobile {
    padding-bottom: 4em !important;
  }
}

.pt-4 {
  padding-top: 4em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pt-4\@desktop {
    padding-top: 4em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pt-4\@tablet {
    padding-top: 4em !important;
  }
}
@media (max-width: 767px) {
  .pt-4\@mobile {
    padding-top: 4em !important;
  }
}

.pl-4 {
  padding-left: 4em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pl-4\@desktop {
    padding-left: 4em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pl-4\@tablet {
    padding-left: 4em !important;
  }
}
@media (max-width: 767px) {
  .pl-4\@mobile {
    padding-left: 4em !important;
  }
}

.pr-4 {
  padding-right: 4em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pr-4\@desktop {
    padding-right: 4em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pr-4\@tablet {
    padding-right: 4em !important;
  }
}
@media (max-width: 767px) {
  .pr-4\@mobile {
    padding-right: 4em !important;
  }
}

.mb-5 {
  margin-bottom: 5em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mb-5\@desktop {
    margin-bottom: 5em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mb-5\@tablet {
    margin-bottom: 5em !important;
  }
}
@media (max-width: 767px) {
  .mb-5\@mobile {
    margin-bottom: 5em !important;
  }
}

.mt-5 {
  margin-top: 5em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mt-5\@desktop {
    margin-top: 5em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mt-5\@tablet {
    margin-top: 5em !important;
  }
}
@media (max-width: 767px) {
  .mt-5\@mobile {
    margin-top: 5em !important;
  }
}

.ml-5 {
  margin-left: 5em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .ml-5\@desktop {
    margin-left: 5em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ml-5\@tablet {
    margin-left: 5em !important;
  }
}
@media (max-width: 767px) {
  .ml-5\@mobile {
    margin-left: 5em !important;
  }
}

.mr-5 {
  margin-right: 5em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mr-5\@desktop {
    margin-right: 5em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mr-5\@tablet {
    margin-right: 5em !important;
  }
}
@media (max-width: 767px) {
  .mr-5\@mobile {
    margin-right: 5em !important;
  }
}

.pb-5 {
  padding-bottom: 5em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pb-5\@desktop {
    padding-bottom: 5em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-5\@tablet {
    padding-bottom: 5em !important;
  }
}
@media (max-width: 767px) {
  .pb-5\@mobile {
    padding-bottom: 5em !important;
  }
}

.pt-5 {
  padding-top: 5em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pt-5\@desktop {
    padding-top: 5em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pt-5\@tablet {
    padding-top: 5em !important;
  }
}
@media (max-width: 767px) {
  .pt-5\@mobile {
    padding-top: 5em !important;
  }
}

.pl-5 {
  padding-left: 5em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pl-5\@desktop {
    padding-left: 5em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pl-5\@tablet {
    padding-left: 5em !important;
  }
}
@media (max-width: 767px) {
  .pl-5\@mobile {
    padding-left: 5em !important;
  }
}

.pr-5 {
  padding-right: 5em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pr-5\@desktop {
    padding-right: 5em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pr-5\@tablet {
    padding-right: 5em !important;
  }
}
@media (max-width: 767px) {
  .pr-5\@mobile {
    padding-right: 5em !important;
  }
}

.mb-6 {
  margin-bottom: 6em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mb-6\@desktop {
    margin-bottom: 6em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mb-6\@tablet {
    margin-bottom: 6em !important;
  }
}
@media (max-width: 767px) {
  .mb-6\@mobile {
    margin-bottom: 6em !important;
  }
}

.mt-6 {
  margin-top: 6em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mt-6\@desktop {
    margin-top: 6em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mt-6\@tablet {
    margin-top: 6em !important;
  }
}
@media (max-width: 767px) {
  .mt-6\@mobile {
    margin-top: 6em !important;
  }
}

.ml-6 {
  margin-left: 6em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .ml-6\@desktop {
    margin-left: 6em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ml-6\@tablet {
    margin-left: 6em !important;
  }
}
@media (max-width: 767px) {
  .ml-6\@mobile {
    margin-left: 6em !important;
  }
}

.mr-6 {
  margin-right: 6em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mr-6\@desktop {
    margin-right: 6em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mr-6\@tablet {
    margin-right: 6em !important;
  }
}
@media (max-width: 767px) {
  .mr-6\@mobile {
    margin-right: 6em !important;
  }
}

.pb-6 {
  padding-bottom: 6em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pb-6\@desktop {
    padding-bottom: 6em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-6\@tablet {
    padding-bottom: 6em !important;
  }
}
@media (max-width: 767px) {
  .pb-6\@mobile {
    padding-bottom: 6em !important;
  }
}

.pt-6 {
  padding-top: 6em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pt-6\@desktop {
    padding-top: 6em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pt-6\@tablet {
    padding-top: 6em !important;
  }
}
@media (max-width: 767px) {
  .pt-6\@mobile {
    padding-top: 6em !important;
  }
}

.pl-6 {
  padding-left: 6em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pl-6\@desktop {
    padding-left: 6em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pl-6\@tablet {
    padding-left: 6em !important;
  }
}
@media (max-width: 767px) {
  .pl-6\@mobile {
    padding-left: 6em !important;
  }
}

.pr-6 {
  padding-right: 6em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pr-6\@desktop {
    padding-right: 6em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pr-6\@tablet {
    padding-right: 6em !important;
  }
}
@media (max-width: 767px) {
  .pr-6\@mobile {
    padding-right: 6em !important;
  }
}

.mb-7 {
  margin-bottom: 7em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mb-7\@desktop {
    margin-bottom: 7em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mb-7\@tablet {
    margin-bottom: 7em !important;
  }
}
@media (max-width: 767px) {
  .mb-7\@mobile {
    margin-bottom: 7em !important;
  }
}

.mt-7 {
  margin-top: 7em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mt-7\@desktop {
    margin-top: 7em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mt-7\@tablet {
    margin-top: 7em !important;
  }
}
@media (max-width: 767px) {
  .mt-7\@mobile {
    margin-top: 7em !important;
  }
}

.ml-7 {
  margin-left: 7em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .ml-7\@desktop {
    margin-left: 7em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ml-7\@tablet {
    margin-left: 7em !important;
  }
}
@media (max-width: 767px) {
  .ml-7\@mobile {
    margin-left: 7em !important;
  }
}

.mr-7 {
  margin-right: 7em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mr-7\@desktop {
    margin-right: 7em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mr-7\@tablet {
    margin-right: 7em !important;
  }
}
@media (max-width: 767px) {
  .mr-7\@mobile {
    margin-right: 7em !important;
  }
}

.pb-7 {
  padding-bottom: 7em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pb-7\@desktop {
    padding-bottom: 7em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-7\@tablet {
    padding-bottom: 7em !important;
  }
}
@media (max-width: 767px) {
  .pb-7\@mobile {
    padding-bottom: 7em !important;
  }
}

.pt-7 {
  padding-top: 7em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pt-7\@desktop {
    padding-top: 7em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pt-7\@tablet {
    padding-top: 7em !important;
  }
}
@media (max-width: 767px) {
  .pt-7\@mobile {
    padding-top: 7em !important;
  }
}

.pl-7 {
  padding-left: 7em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pl-7\@desktop {
    padding-left: 7em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pl-7\@tablet {
    padding-left: 7em !important;
  }
}
@media (max-width: 767px) {
  .pl-7\@mobile {
    padding-left: 7em !important;
  }
}

.pr-7 {
  padding-right: 7em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pr-7\@desktop {
    padding-right: 7em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pr-7\@tablet {
    padding-right: 7em !important;
  }
}
@media (max-width: 767px) {
  .pr-7\@mobile {
    padding-right: 7em !important;
  }
}

.mb-8 {
  margin-bottom: 8em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mb-8\@desktop {
    margin-bottom: 8em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mb-8\@tablet {
    margin-bottom: 8em !important;
  }
}
@media (max-width: 767px) {
  .mb-8\@mobile {
    margin-bottom: 8em !important;
  }
}

.mt-8 {
  margin-top: 8em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mt-8\@desktop {
    margin-top: 8em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mt-8\@tablet {
    margin-top: 8em !important;
  }
}
@media (max-width: 767px) {
  .mt-8\@mobile {
    margin-top: 8em !important;
  }
}

.ml-8 {
  margin-left: 8em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .ml-8\@desktop {
    margin-left: 8em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ml-8\@tablet {
    margin-left: 8em !important;
  }
}
@media (max-width: 767px) {
  .ml-8\@mobile {
    margin-left: 8em !important;
  }
}

.mr-8 {
  margin-right: 8em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mr-8\@desktop {
    margin-right: 8em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mr-8\@tablet {
    margin-right: 8em !important;
  }
}
@media (max-width: 767px) {
  .mr-8\@mobile {
    margin-right: 8em !important;
  }
}

.pb-8 {
  padding-bottom: 8em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pb-8\@desktop {
    padding-bottom: 8em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-8\@tablet {
    padding-bottom: 8em !important;
  }
}
@media (max-width: 767px) {
  .pb-8\@mobile {
    padding-bottom: 8em !important;
  }
}

.pt-8 {
  padding-top: 8em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pt-8\@desktop {
    padding-top: 8em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pt-8\@tablet {
    padding-top: 8em !important;
  }
}
@media (max-width: 767px) {
  .pt-8\@mobile {
    padding-top: 8em !important;
  }
}

.pl-8 {
  padding-left: 8em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pl-8\@desktop {
    padding-left: 8em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pl-8\@tablet {
    padding-left: 8em !important;
  }
}
@media (max-width: 767px) {
  .pl-8\@mobile {
    padding-left: 8em !important;
  }
}

.pr-8 {
  padding-right: 8em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pr-8\@desktop {
    padding-right: 8em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pr-8\@tablet {
    padding-right: 8em !important;
  }
}
@media (max-width: 767px) {
  .pr-8\@mobile {
    padding-right: 8em !important;
  }
}

.mb-9 {
  margin-bottom: 9em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mb-9\@desktop {
    margin-bottom: 9em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mb-9\@tablet {
    margin-bottom: 9em !important;
  }
}
@media (max-width: 767px) {
  .mb-9\@mobile {
    margin-bottom: 9em !important;
  }
}

.mt-9 {
  margin-top: 9em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mt-9\@desktop {
    margin-top: 9em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mt-9\@tablet {
    margin-top: 9em !important;
  }
}
@media (max-width: 767px) {
  .mt-9\@mobile {
    margin-top: 9em !important;
  }
}

.ml-9 {
  margin-left: 9em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .ml-9\@desktop {
    margin-left: 9em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ml-9\@tablet {
    margin-left: 9em !important;
  }
}
@media (max-width: 767px) {
  .ml-9\@mobile {
    margin-left: 9em !important;
  }
}

.mr-9 {
  margin-right: 9em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mr-9\@desktop {
    margin-right: 9em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mr-9\@tablet {
    margin-right: 9em !important;
  }
}
@media (max-width: 767px) {
  .mr-9\@mobile {
    margin-right: 9em !important;
  }
}

.pb-9 {
  padding-bottom: 9em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pb-9\@desktop {
    padding-bottom: 9em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-9\@tablet {
    padding-bottom: 9em !important;
  }
}
@media (max-width: 767px) {
  .pb-9\@mobile {
    padding-bottom: 9em !important;
  }
}

.pt-9 {
  padding-top: 9em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pt-9\@desktop {
    padding-top: 9em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pt-9\@tablet {
    padding-top: 9em !important;
  }
}
@media (max-width: 767px) {
  .pt-9\@mobile {
    padding-top: 9em !important;
  }
}

.pl-9 {
  padding-left: 9em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pl-9\@desktop {
    padding-left: 9em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pl-9\@tablet {
    padding-left: 9em !important;
  }
}
@media (max-width: 767px) {
  .pl-9\@mobile {
    padding-left: 9em !important;
  }
}

.pr-9 {
  padding-right: 9em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pr-9\@desktop {
    padding-right: 9em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pr-9\@tablet {
    padding-right: 9em !important;
  }
}
@media (max-width: 767px) {
  .pr-9\@mobile {
    padding-right: 9em !important;
  }
}

.mb-10 {
  margin-bottom: 10em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mb-10\@desktop {
    margin-bottom: 10em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mb-10\@tablet {
    margin-bottom: 10em !important;
  }
}
@media (max-width: 767px) {
  .mb-10\@mobile {
    margin-bottom: 10em !important;
  }
}

.mt-10 {
  margin-top: 10em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mt-10\@desktop {
    margin-top: 10em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mt-10\@tablet {
    margin-top: 10em !important;
  }
}
@media (max-width: 767px) {
  .mt-10\@mobile {
    margin-top: 10em !important;
  }
}

.ml-10 {
  margin-left: 10em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .ml-10\@desktop {
    margin-left: 10em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ml-10\@tablet {
    margin-left: 10em !important;
  }
}
@media (max-width: 767px) {
  .ml-10\@mobile {
    margin-left: 10em !important;
  }
}

.mr-10 {
  margin-right: 10em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .mr-10\@desktop {
    margin-right: 10em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mr-10\@tablet {
    margin-right: 10em !important;
  }
}
@media (max-width: 767px) {
  .mr-10\@mobile {
    margin-right: 10em !important;
  }
}

.pb-10 {
  padding-bottom: 10em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pb-10\@desktop {
    padding-bottom: 10em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-10\@tablet {
    padding-bottom: 10em !important;
  }
}
@media (max-width: 767px) {
  .pb-10\@mobile {
    padding-bottom: 10em !important;
  }
}

.pt-10 {
  padding-top: 10em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pt-10\@desktop {
    padding-top: 10em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pt-10\@tablet {
    padding-top: 10em !important;
  }
}
@media (max-width: 767px) {
  .pt-10\@mobile {
    padding-top: 10em !important;
  }
}

.pl-10 {
  padding-left: 10em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pl-10\@desktop {
    padding-left: 10em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pl-10\@tablet {
    padding-left: 10em !important;
  }
}
@media (max-width: 767px) {
  .pl-10\@mobile {
    padding-left: 10em !important;
  }
}

.pr-10 {
  padding-right: 10em;
}
@media (min-width: 1081px) and (max-width: 1259px) {
  .pr-10\@desktop {
    padding-right: 10em !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pr-10\@tablet {
    padding-right: 10em !important;
  }
}
@media (max-width: 767px) {
  .pr-10\@mobile {
    padding-right: 10em !important;
  }
}

/* End of spacing classes */
.text-left {
  text-align: left;
}

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

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

.text-left,
.text-center,
.text-right {
  /* Tablet */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .text-left\@tablet-right,
  .text-center\@tablet-right,
  .text-right\@tablet-right {
    text-align: right;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .text-left\@tablet-left,
  .text-center\@tablet-left,
  .text-right\@tablet-left {
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .text-left\@tablet-center,
  .text-center\@tablet-center,
  .text-right\@tablet-center {
    text-align: center;
  }
}
.text-left,
.text-center,
.text-right {
  /* Mobile */
}
@media (max-width: 767px) {
  .text-left\@mobile-center,
  .text-center\@mobile-center,
  .text-right\@mobile-center {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .text-left\@mobile-left,
  .text-center\@mobile-left,
  .text-right\@mobile-left {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .text-left\@mobile-right,
  .text-center\@mobile-right,
  .text-right\@mobile-right {
    text-align: right;
  }
}
.text-left,
.text-center,
.text-right {
  /* MobileSmall */
}
@media (max-width: 400px) {
  .text-left\@mobileSmall-right,
  .text-center\@mobileSmall-right,
  .text-right\@mobileSmall-right {
    text-align: right;
  }
}
@media (max-width: 400px) {
  .text-left\@mobileSmall-center,
  .text-center\@mobileSmall-center,
  .text-right\@mobileSmall-center {
    text-align: center;
  }
}
@media (max-width: 400px) {
  .text-left\@mobileSmall-left,
  .text-center\@mobileSmall-left,
  .text-right\@mobileSmall-left {
    text-align: left;
  }
}

/* Layout Components */
#loader-full-page {
  background-color: #d9d9d9;
  position: fixed;
  top: 0;
  right: 0;
  min-height: 100%;
  width: 100%;
  z-index: 1000;
  display: none;
}
#loader-full-page img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  transform: translate(-50%, -50%);
}

@keyframes showHiddenElementAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.65;
  }
}
.counterHiddenElement,
.counterTempHiddenElement {
  opacity: 0;
}

.showHiddenElement {
  opacity: 0.65;
  animation-name: showHiddenElementAnimation;
  animation-duration: 3s;
}

/* Basic modules */
header {
  padding: 1.5em 0;
  top: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid #ececec;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) {
  header {
    padding: 1em 0.5em;
  }
}
header.scroll-style {
  transition: margin 0.2s, width 0.2s, border-bottom-left-radius 0.5s, border-bottom-right-radius 0.5s;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) {
  header.scroll-style {
    margin: 0;
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
header.no-transition {
  transition: none !important;
}
header .inner-content-wrapper {
  overflow: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header .inner-content-wrapper .logo {
  font-size: 0;
  float: left;
  display: inline-block;
}
header .inner-content-wrapper .logo img {
  max-height: 60px;
}
header .inner-content-wrapper .logo img.logo-light {
  display: none;
}
@media (max-width: 767px) {
  header .inner-content-wrapper .logo img {
    max-height: calc(60px * 0.8);
  }
}
header .inner-content-wrapper nav {
  height: 100%;
  float: right;
  margin-left: 3em;
  opacity: 1;
}
header .inner-content-wrapper nav > ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  height: 100%;
}
header .inner-content-wrapper nav > ul > li {
  float: left;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}
header .inner-content-wrapper nav > ul > li > a {
  position: relative;
  font-weight: var(--fw-normal);
  text-decoration: none;
  color: var(--color-default-text);
  padding: 0 1.25em;
  padding: 1em;
  display: inline-block;
  border-bottom: 2px solid transparent;
}
header .inner-content-wrapper nav > ul > li > a::after {
  content: attr(data-text);
  visibility: hidden;
  font-weight: var(--fw-bold);
  height: 0;
  overflow: hidden;
  display: block;
}
header .inner-content-wrapper nav > ul > li > a {
  transition: font-weight 0.4s ease-in-out, border-bottom-color 0.4s ease-in-out;
}
@media (max-width: 767px) {
  header .inner-content-wrapper nav > ul > li > a {
    padding: 0.65em;
  }
}
header .inner-content-wrapper nav > ul > li.active a {
  font-weight: var(--fw-bold);
  border-bottom-color: var(--color-primary);
}
header .inner-content-wrapper nav > ul > li:hover a {
  font-weight: var(--fw-bold);
  border-bottom-color: var(--color-primary);
}
header .inner-content-wrapper #menu-icon {
  width: 60px;
  height: 45px;
  float: right;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
header .inner-content-wrapper #menu-icon span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #d3531a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header .inner-content-wrapper #menu-icon span:nth-child(1) {
  top: 0px;
}
header .inner-content-wrapper #menu-icon span:nth-child(2) {
  top: 18px;
}
header .inner-content-wrapper #menu-icon span:nth-child(3) {
  top: 36px;
}
header .inner-content-wrapper #menu-icon.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
header .inner-content-wrapper #menu-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
header .inner-content-wrapper #menu-icon.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media (min-width: 768px) and (max-width: 1023px) {
  header nav {
    display: none;
  }
  header #openMobileMenuButton {
    display: block;
  }
}
@media (max-width: 767px) {
  header #openMobileMenuButton {
    display: block;
  }
  header nav {
    display: none;
  }
}

#menuIcon {
  position: relative;
  height: 100%;
  width: 45px;
  float: right;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #menuIcon {
    margin-right: 50px;
  }
}
#menuIcon img {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  height: 40px;
}
#menuIcon img.menuCloseIcon {
  opacity: 0;
}
#menuIcon img.menuOpenIcon {
  opacity: 1;
}
#menuIcon img.menuCloseIcon, #menuIcon img.menuCloseIcon {
  transition: opacity 0.3s;
}
#menuIcon[data-active=true] img.menuOpenIcon {
  opacity: 0;
}
#menuIcon[data-active=true] img.menuCloseIcon {
  opacity: 1;
}
#menuIcon[data-active=true] img.menuCloseIcon, #menuIcon[data-active=true] img.menuCloseIcon {
  transition: opacity 1s;
}

footer {
  text-align: right;
  padding: 1em 0;
  background-color: var(--color-primary);
  color: var(--color-primary-text);
}
footer.fixed {
  bottom: 0;
  position: fixed;
  width: 100%;
}

/* Basic modules */
section.space-top-default {
  padding-top: 6em;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) {
  section.space-top-default {
    padding-top: 3em;
  }
}
section.space-bottom-default {
  padding-bottom: 6em;
}
@media (max-width: 767px), (min-width: 768px) and (max-width: 1023px) {
  section.space-bottom-default {
    padding-bottom: 3em;
  }
}
section.bg-white {
  background-color: white;
}
section.bg-primary {
  background-color: var(--color-primary);
  color: var(--color-primary-text);
}
section .default-main-page-title {
  text-align: center;
  color: #5b5b5b;
  font-weight: 600;
  margin-bottom: 2em;
}

#mobileMenu {
  background-color: var(--color-mobile-menu);
  position: fixed;
  top: 0;
  left: -100%;
  padding-top: 55px;
  width: 70%;
  height: 100%;
  z-index: 200;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  transition: left 1s, border-radius 1s;
}
#mobileMenu.active {
  left: 0;
}
#mobileMenu > ul {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
  width: 100%;
  padding-bottom: 200px;
}
#mobileMenu > ul > li {
  text-align: center;
  position: relative;
}
#mobileMenu > ul > li.active a {
  font-weight: var(--fw-extrabold);
}
#mobileMenu > ul > li img {
  width: 40px;
}
#mobileMenu > ul > li > a {
  color: var(--color-mobile-menu-text);
  text-decoration: none;
  display: block;
  padding: 1em 0.5em;
  font-weight: 500;
}
#mobileMenu > ul > li .openDropDown {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  text-align: center;
  height: 100%;
}
#mobileMenu > ul > li .openDropDown img {
  width: 12px;
  margin-top: 7px;
  transform: rotate(90deg);
  transition: trasform 1s;
}
#mobileMenu > ul > li .openDropDown.active img {
  transform: rotate(270deg);
  transition: trasform 1s;
}
#mobileMenu > ul > li.dropdown-menu {
  display: none;
}
#mobileMenu > ul > li.dropdown-menu .dropdown-section {
  color: white;
  text-decoration: none;
  display: block;
  padding: 9px;
  padding-left: 25px;
}
#mobileMenu > ul > li.dropdown-menu .dropdown-content {
  margin-top: -0.7em;
}
#mobileMenu > ul > li.dropdown-menu ul li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px 5px;
  font-size: 0.8em;
  font-weight: 100;
  overflow: auto;
}
#mobileMenu > ul > li.dropdown-menu ul li a img {
  height: 25px;
  margin-top: -8px;
  float: left;
  margin-right: 10px;
  opacity: 0;
}
#mobileMenu > ul > li.dropdown-menu ul li a .balance {
  margin-left: 20px;
}
#mobileMenu > ul > li.dropdown-menu ul li.owing img {
  opacity: 1;
}

/* Page templates */
/* Basic modules */
body[data-template=home] section.services {
  color: var(--color-primary-text);
  background: var(--color-primary);
  background: linear-gradient(180deg, var(--color-primary) 60%, white 40%);
}
body[data-template=home] section.services h1 {
  margin-top: 1.5em;
  margin-bottom: 5em;
}
body[data-template=home] section.services .services-wrapper {
  overflow: hidden;
}
body[data-template=home] section.services .services-wrapper .services-swiper {
  overflow: visible;
  /**
  * For this breakpoint, remove `overflow: visible` to ensure
  * only the configured number of slides are visible to the user.
  */
}
@media screen and (min-width: 1780px) {
  body[data-template=home] section.services .services-wrapper .services-swiper {
    overflow: auto;
  }
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-head {
  overflow: auto;
  margin-bottom: 1em;
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-head h2 {
  float: left;
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-head .swiper-navigation {
  float: right;
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-head .swiper-navigation > div {
  float: left;
  cursor: pointer;
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-head .swiper-navigation .swiper-button-disabled {
  opacity: 0.5;
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-wrapper .swiper-slide .service-wrapper {
  height: 100%;
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-wrapper .swiper-slide .service-wrapper .service-inner-wrapper {
  height: 100%;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.05);
  background-color: var(--color-box);
  border: 1px solid var(--color-box-border);
  color: var(--color-default-text);
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-wrapper .swiper-slide .service-wrapper .service-inner-wrapper .text-content {
  padding: 1em;
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-wrapper .swiper-slide .service-wrapper .service-inner-wrapper .text-content h3 {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 0.5em;
  margin-top: 0em;
  min-height: 2lh;
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-wrapper .swiper-slide .service-wrapper .service-inner-wrapper img {
  max-width: 100%;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-pagination {
  position: unset;
  text-align: center;
  margin-top: 1em;
}
body[data-template=home] section.services .services-wrapper .services-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
body[data-template=home] section.counter .important-milestone > div {
  text-align: center;
}
body[data-template=home] section.counter .important-milestone > div .number {
  font-size: 3em;
  font-weight: var(--fw-extrabold);
  margin-bottom: 0.5em;
}
body[data-template=home] section.counter .important-milestone > div .number + span {
  font-size: 3em;
  margin-bottom: 0.2em;
}
body[data-template=home] section.counter .important-milestone > div .label {
  font-size: 1.5em;
  margin-top: 0.8em;
  line-height: var(--paragraphs-line-lineheight);
}
body[data-template=home] section.about {
  background-color: var(--color-tertiary);
  color: var(--color-tertiary-text);
}
body[data-template=home] section.about h2 {
  margin-bottom: 1.5em;
}
body[data-template=home] section.about p {
  margin-bottom: 1em;
  text-align: justify;
}
body[data-template=home] section.references {
  --color-reference-wrapper: #454545;
  --color-special-border-line: #626262;
  --color-pagination-active: white;
  --color-pagination-default: gray;
  background-color: var(--color-secondary);
  color: var(--color-secondary-text);
}
body[data-template=home] section.references .swiper-navigation .swiper-button-next,
body[data-template=home] section.references .swiper-navigation .swiper-button-prev {
  color: var(--color-secondary-text);
}
body[data-template=home] section.references .swiper-navigation .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -30px);
}
body[data-template=home] section.references .swiper-navigation .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -30px);
}
@media screen and (max-width: 767px) {
  body[data-template=home] section.references .swiper-navigation {
    display: none;
  }
}
body[data-template=home] section.references h2 {
  margin-bottom: 0.5em;
  text-align: center;
}
body[data-template=home] section.references .subheadline {
  margin-bottom: 2.5em;
  text-align: center;
  font-size: 1.3em;
}
body[data-template=home] section.references .references-swiper .swiper-wrapper > div.swiper-slide-active + div .active-border-identifier-wrapper .active-border-identifier {
  width: 80%;
}
@media screen and (max-width: 767px) {
  body[data-template=home] section.references .references-swiper .swiper-wrapper > div .active-border-identifier-wrapper {
    display: none;
  }
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .active-border-identifier-wrapper {
  background-color: var(--color-special-border-line);
  height: 5px;
  position: relative;
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .active-border-identifier-wrapper .active-border-identifier {
  transition: width 0.8s ease-in-out;
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 0%;
  transform: translateX(-50%);
  background-color: var(--color-primary-light);
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .reference-wrapper {
  height: 100%;
  background-color: var(--color-reference-wrapper);
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .reference-wrapper .reference-inner-wrapper {
  height: 100%;
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .reference-wrapper .reference-inner-wrapper .preview-image {
  position: relative;
  padding-bottom: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .reference-wrapper .reference-inner-wrapper .preview-image:hover {
  cursor: pointer;
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .reference-wrapper .reference-inner-wrapper .properties-wrapper {
  padding: 1em;
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .reference-wrapper .reference-inner-wrapper .properties-wrapper .title {
  font-weight: var(--fw-medium);
  margin-bottom: 1.5em;
  min-height: 2lh;
}
@media screen and (max-width: 767px) {
  body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .reference-wrapper .reference-inner-wrapper .properties-wrapper .title {
    font-size: 1.1em;
  }
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .reference-wrapper .reference-inner-wrapper .properties-wrapper .properties {
  line-height: var(--paragraphs-line-lineheight);
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .reference-wrapper .reference-inner-wrapper .properties-wrapper .properties > div {
  margin-bottom: 0.5em;
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .reference-wrapper .reference-inner-wrapper .properties-wrapper .properties > div:last-of-type {
  margin-bottom: 0;
}
body[data-template=home] section.references .references-swiper .swiper-wrapper .swiper-slide .reference-wrapper .reference-inner-wrapper .properties-wrapper .properties .label {
  font-weight: var(--fw-bold);
}
body[data-template=home] section.references .references-swiper .swiper-pagination {
  display: none;
  position: unset;
  text-align: center;
  margin-top: 1em;
}
body[data-template=home] section.references .references-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-pagination-active);
}
body[data-template=home] section.references .references-swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-pagination-default);
}
@media screen and (max-width: 767px) {
  body[data-template=home] section.references .references-swiper .swiper-pagination {
    display: inline-block;
  }
}
body[data-template=home] section.references .button {
  display: inline-block;
  padding: 1em;
  margin-top: 2em;
  color: var(--color-secondary-text);
  border: 2px solid var(--color-secondary-text);
  text-decoration: none;
  font-weight: var(--fw-bold);
  transition: background-color 0.8s ease-in-out, color 0.8s ease-in-out;
}
body[data-template=home] section.references .button:hover {
  background-color: var(--color-secondary-text);
  color: var(--color-secondary);
}

body[data-template=contacts] section.contacts .contact-item {
  text-align: center;
}
body[data-template=contacts] section.contacts .contact-item .preview-image {
  max-width: 150px;
  margin-bottom: 1em;
}
body[data-template=contacts] section.contacts .contact-item .name {
  font-weight: var(--fw-bold);
  margin-bottom: 0.5em;
  margin-top: 0.2em;
}
body[data-template=contacts] section.contacts .contact-item .phone {
  line-height: var(--paragraphs-line-lineheight);
}
body[data-template=contacts] section.contacts .contact-item .phone a {
  color: var(--color-primary);
}
body[data-template=contacts] section.contacts .contact-item .email {
  line-height: var(--paragraphs-line-lineheight);
}
body[data-template=contacts] section.contacts .contact-item .email a {
  color: var(--color-primary);
}
body[data-template=contacts] section.contacts .company-information {
  line-height: var(--paragraphs-line-lineheight);
  background-color: whitesmoke;
  border-radius: var(--border-radius-big);
}
body[data-template=contacts] section.contacts .company-information .minor-block-headline {
  margin-bottom: 0.5em;
  font-size: 1.3em;
  font-weight: var(--fw-bold);
}
body[data-template=contacts] section.contacts .company-information .label {
  font-weight: var(--fw-bold);
}
@media (max-width: 767px) {
  body[data-template=contacts] section.contacts .company-information {
    text-align: center;
    border-radius: 0;
  }
}

/* Basic modules */
body[data-template=references] section.references .tags-wrapper {
  text-align: center;
}
body[data-template=references] section.references .tags-wrapper .tag {
  padding: 1em;
  margin-right: 1em;
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  margin-bottom: 0.5em;
  font-weight: var(--fw-normal);
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}
body[data-template=references] section.references .tags-wrapper .tag .favorite-icon {
  position: relative;
  top: 1px;
  margin-right: 0.3em;
}
body[data-template=references] section.references .tags-wrapper .tag img[data-color=primary-color] {
  display: inline-block;
}
body[data-template=references] section.references .tags-wrapper .tag img[data-color=white-color] {
  display: none;
}
body[data-template=references] section.references .tags-wrapper .tag:hover, body[data-template=references] section.references .tags-wrapper .tag.active {
  background-color: var(--color-primary);
  color: white;
}
body[data-template=references] section.references .tags-wrapper .tag:hover img[data-color=primary-color], body[data-template=references] section.references .tags-wrapper .tag.active img[data-color=primary-color] {
  display: none;
}
body[data-template=references] section.references .tags-wrapper .tag:hover img[data-color=white-color], body[data-template=references] section.references .tags-wrapper .tag.active img[data-color=white-color] {
  display: inline-block;
}
@media (max-width: 767px) {
  body[data-template=references] section.references .tags-wrapper .tag {
    padding: 0.7em;
  }
}
body[data-template=references] section.references .reference-wrapper .reference-inner-wrapper {
  background-color: var(--color-box);
  border: 1px solid var(--color-box-border);
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}
body[data-template=references] section.references .reference-wrapper .reference-inner-wrapper .preview-image {
  position: relative;
  padding-bottom: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
}
body[data-template=references] section.references .reference-wrapper .reference-inner-wrapper .preview-image:hover {
  cursor: pointer;
}
body[data-template=references] section.references .reference-wrapper .reference-inner-wrapper .properties-wrapper {
  padding: 1em;
}
body[data-template=references] section.references .reference-wrapper .reference-inner-wrapper .properties-wrapper .title {
  font-weight: var(--fw-medium);
  margin-bottom: 1em;
  min-height: 2lh;
}
body[data-template=references] section.references .reference-wrapper .reference-inner-wrapper .properties-wrapper .properties {
  line-height: var(--paragraphs-line-lineheight);
  color: var(--color-default-light-text);
  font-size: 0.9em;
}
body[data-template=references] section.references .reference-wrapper .reference-inner-wrapper .properties-wrapper .properties > div {
  margin-bottom: 0.5em;
}
body[data-template=references] section.references .reference-wrapper .reference-inner-wrapper .properties-wrapper .properties .label {
  font-weight: var(--fw-bold);
}
