/*! nouislider - 14.6.4 - 3/18/2021 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  -webkit-transform-style: flat;
          transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  -webkit-box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
          box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  -webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
          box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  -webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
          box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
      transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
      transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
      transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
      transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  -ms-transform: translate(0, -18px);
      transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.glide {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  .glide * {
    -webkit-box-sizing: inherit;
            box-sizing: inherit; }
  .glide__track {
    overflow: hidden; }
  .glide__slides {
    position: relative;
    width: 100%;
    list-style: none;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    -ms-touch-action: pan-Y;
        touch-action: pan-Y;
    overflow: hidden;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    will-change: transform; }
    .glide__slides--dragging {
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
  .glide__slide {
    width: 100%;
    height: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: normal;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent; }
    .glide__slide a {
      -webkit-user-select: none;
              user-select: none;
      -webkit-user-drag: none;
      -moz-user-select: none;
      -ms-user-select: none; }
  .glide__arrows {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .glide__bullets {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .glide--rtl {
    direction: rtl; }

@charset "UTF-8";
/* Variables */
/* Media queries */
/* Box shadow */
/* Icons */
/* Base colors */
/* App colors */
/* Font family */
/* Font size */
/* Line height */
/* Unit */
/* Offset */
/* Radius */
/* Ease */
/* Global */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  width: 100%;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
}
@media (min-width: 960px) {
  body {
    font-size: 1.6rem;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
.--title {
  color: #000;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  text-align: left;
}

h1,
.--title-h1 {
  font-size: 3.8rem;
  font-weight: 700;
}
@media (min-width: 1260px) {
  h1,
  .--title-h1 {
    font-size: 4.8rem;
  }
}

h2,
.--title-h2 {
  font-size: 2.6rem;
}
@media (min-width: 1260px) {
  h2,
  .--title-h2 {
    font-size: 3.2rem;
  }
}

h3,
.--title-h3 {
  font-size: 1.8rem;
}
@media (min-width: 1260px) {
  h3,
  .--title-h3 {
    font-size: 2.4rem;
  }
}

h4,
.--title-h4 {
  font-size: 1.6rem;
}
@media (min-width: 1260px) {
  h4,
  .--title-h4 {
    font-size: 1.8rem;
  }
}

h5,
.--title-h5 {
  font-size: 1.6rem;
}
@media (min-width: 1260px) {
  h5,
  .--title-h5 {
    font-size: 1.6rem;
  }
}

p {
  margin: 0;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover, a:focus {
  color: #a9f362;
  outline: 0;
}

i {
  font-style: normal;
}

strong {
  font-weight: 700;
}

small {
  font-size: 1.2rem;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

::-moz-selection {
  background: #c1ed95;
  color: #000;
}

::selection {
  background: #c1ed95;
  color: #000;
}

/* List */
li,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th,
td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

/* Media */
figure,
picture {
  display: block;
  margin: 0;
}

img {
  border: 0;
  max-width: 100%;
  vertical-align: middle;
}

video {
  display: block;
  margin: 0;
  max-width: 100%;
  outline: 0;
  padding: 0;
}

iframe {
  display: block;
  margin: 0;
  max-width: 100%;
  outline: 0;
  padding: 0;
}

/* Form */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

form,
button,
[role=button] {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  display: block;
  font-family: inherit;
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 0;
  outline: 0;
}

button,
[role=button],
label[for],
select {
  cursor: pointer;
  outline: 0;
}

button::-moz-focus-inner,
input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
  padding: 0;
}

label {
  cursor: pointer;
}

input:focus {
  outline: 0;
}

input::-ms-check {
  display: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  overflow: auto;
  max-width: 100%;
  resize: vertical;
}

/* Background */
.--bg-light {
  background: #F0F7FF;
}

.--bg-white {
  background: #fff;
}

.--bg-info {
  background: #2a7298;
}

/* Block */
.--block {
  display: block;
}

/* Column grid system */
.--content {
  display: block;
  margin: 0 auto;
  min-width: 320px;
  padding: 0 1.6rem;
  position: relative;
  width: 100%;
  max-width: 972px;
}
@media (min-width: 1260px) {
  .--content {
    max-width: 1232px;
  }
}
@media (min-width: 1580px) {
  .--content {
    max-width: 1572px;
  }
}

.--row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 1.6rem); /* 8px column offset */
  margin: 0 -0.8rem; /* 8px column offset */
}

.--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0.8rem; /* 8px column offset */
}

/* Position */
.--absolute {
  position: absolute;
}

.--relative {
  position: relative;
}

.--fixed {
  position: fixed;
}

.--cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.--absolute-cover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

/* Flex */
.--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.--flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.--flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.--flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.--flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.--flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.--flex-centre,
.--flex-centre-x {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.--flex-centre,
.--flex-centre-y {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.--flex-end-x {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.--flex-space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.--flex-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.--flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.--flex-start-x {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* Hide */
.--hide {
  display: none;
}

.--hide-text {
  font-size: 0;
  line-height: 0;
}

.--sr-only {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  padding: 0;
  margin: -0.1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Link */
.--link,
.--link-rev {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.--link::after,
.--link-rev::after {
  background: #000;
  bottom: 0;
  content: "";
  height: 0.1rem;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.--link, .--link::after,
.--link-rev,
.--link-rev::after {
  -webkit-transition: 0.3s cubic-bezier(0.25, 0.45, 0.65, 1.75);
  transition: 0.3s cubic-bezier(0.25, 0.45, 0.65, 1.75);
}

.--link::after {
  width: 100%;
}
.--link:hover::after, .--link:focus::after {
  width: 0;
}

.--link-rev::after {
  width: 0;
}

.--link-rev:hover::after, .--link-rev:focus::after {
  width: 100%;
}

.--link-underline {
  text-decoration: underline;
}

/* Shadow */
.--shadow {
  -webkit-box-shadow: 0 0.6rem 2.5rem rgba(0, 0, 0, 0.09);
          box-shadow: 0 0.6rem 2.5rem rgba(0, 0, 0, 0.09);
}

/* Sticker */
.--sticker,
.--sticker-small,
.--sticker-round {
  color: #fff;
  display: inline-block;
  line-height: 1.3;
  padding: 0.4rem 1.2rem;
  position: relative;
  z-index: 1;
}
.--sticker::after,
.--sticker-small::after,
.--sticker-round::after {
  background: #8EDF3D;
  border-radius: 0.8rem;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.--sticker {
  font-size: 1.8rem;
  padding: 0.4rem 1.2rem;
}

.--sticker-small {
  font-size: 1.4rem;
  height: 2.4rem;
  padding: 0.5rem 1.2rem;
}

.--sticker-round {
  font-size: 1.4rem;
  height: 2.6rem;
  padding: 0.6rem 1.4rem;
}
.--sticker-round::after {
  border-radius: 1.3rem;
}

/* Text alignment */
.--text-center {
  text-align: center;
}

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

/* Text */
.--text-line-through {
  text-decoration: line-through;
}

.--text-brand {
  color: #8EDF3D;
}

.--text-dark {
  color: #000;
}

.--text-underline {
  text-decoration: underline;
}

.--bold {
  font-weight: bold;
}

/* Columns */
.--w-hide {
  display: none;
}
.--w-1 {
  width: 8.333333%;
}
.--w-2 {
  width: 16.666667%;
}
.--w-3 {
  width: 25%;
}
.--w-4 {
  width: 33.333333%;
}
.--w-5 {
  width: 41.666667%;
}
.--w-6 {
  width: 50%;
}
.--w-7 {
  width: 58.333333%;
}
.--w-8 {
  width: 66.666667%;
}
.--w-9 {
  width: 75%;
}
.--w-10 {
  width: 83.333333%;
}
.--w-11 {
  width: 91.666667%;
}
.--w-12 {
  width: 100%;
}
@media (min-width: 480px) {
  .--w-t-3 {
    width: 25%;
  }
  .--w-t-6 {
    width: 50%;
  }
  .--w-t-9 {
    width: 75%;
  }
}
@media (min-width: 640px) {
  .--w-s-auto {
    width: auto;
  }
  .--w-s-hide {
    display: none;
  }
  .--w-s-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .--w-s-1 {
    width: 8.333333%;
  }
  .--w-s-3 {
    width: 25%;
  }
  .--w-s-4 {
    width: 33.333333%;
  }
  .--w-s-5 {
    width: 41.666667%;
  }
  .--w-s-6 {
    width: 50%;
  }
  .--w-s-7 {
    width: 58.333333%;
  }
  .--w-s-8 {
    width: 66.666667%;
  }
  .--w-s-9 {
    width: 75%;
  }
  .--w-s-10 {
    width: 83.333333%;
  }
  .--w-s-12 {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .--w-m-show {
    display: block;
  }
  .--w-m-1 {
    width: 8.333333%;
  }
  .--w-m-3 {
    width: 25%;
  }
  .--w-m-4 {
    width: 33.333333%;
  }
  .--w-m-5 {
    width: 41.666667%;
  }
  .--w-m-6 {
    width: 50%;
  }
  .--w-m-7 {
    width: 58.333333%;
  }
  .--w-m-8 {
    width: 66.666667%;
  }
  .--w-m-9 {
    width: 75%;
  }
  .--w-m-12 {
    width: 100%;
  }
}
@media (min-width: 1260px) {
  .--w-l-2 {
    width: 16.666667%;
  }
  .--w-l-3 {
    width: 25%;
  }
  .--w-l-4 {
    width: 33.333333%;
  }
  .--w-l-5 {
    width: 41.666667%;
  }
  .--w-l-6 {
    width: 50%;
  }
  .--w-l-7 {
    width: 58.333333%;
  }
  .--w-l-8 {
    width: 66.666667%;
  }
  .--w-l-9 {
    width: 75%;
  }
  .--w-l-12 {
    width: 100%;
  }
}
@media (min-width: 1580px) {
  .--w-x-3 {
    width: 25%;
  }
  .--w-x-4 {
    width: 33.333333%;
  }
  .--w-x-8 {
    width: 66.666667%;
  }
  .--w-x-9 {
    width: 75%;
  }
}

/* Column offset */
.--offset-2 {
  margin-left: 16.666667%;
}
.--offset-3 {
  margin-left: 25%;
}
@media (min-width: 960px) {
  .--offset-m-1 {
    margin-left: 8.333333%;
  }
  .--offset-m-6 {
    margin-left: 50%;
  }
}
@media (min-width: 1260px) {
  .--offset-l-3 {
    margin-left: 25%;
  }
}
/* Flex direction */
@media (min-width: 640px) {
  .--flex-s-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .--flex-s-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 960px) {
  .--flex-m-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
[class*=__button-wrap] {
  margin: -0.4rem;
}
@media (min-width: 640px) {
  [class*=__button-wrap] {
    margin: -0.4rem;
  }
}

.button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.8rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.5rem;
  font-weight: 700;
  min-height: 5.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3;
  overflow: hidden;
  padding: 0.8rem 3.2rem;
  position: relative;
  text-align: center;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: 1;
  cursor: pointer;
}
@media (min-width: 480px) {
  .button {
    font-size: 1.7rem;
  }
}
.button, .button::before, .button::after,
.button .button__counter {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.button [class*=__button-wrap] {
  margin: 0.4rem;
}

.button--brand {
  background: #8EDF3D;
  color: #000;
}
.button--brand:hover, .button--brand:focus {
  background: #000;
  color: #fff;
}

.button--green {
  background: #8EDF3D;
  font-size: 1.7rem;
  font-weight: 500;
  padding: 1.7rem 2rem;
  color: #000;
}
@media (min-width: 1580px) {
  .button--green {
    padding: 1.7rem 3.4rem;
  }
}
.button--green:hover, .button--green:focus {
  background: #0d8301;
  color: #000;
}

.button--dark {
  background: #303030;
  color: #fff;
  border-radius: 0.4rem;
}
.button--dark:hover, .button--dark:focus {
  background: #000;
  color: #fff;
}

/* Aspect ratio -- 21 by 9 */
.--aspect-ratio-21by9 {
  aspect-ratio: 21/9;
}

/* Aspect ratio -- 16 by 9 */
.--aspect-ratio-16by9 {
  aspect-ratio: 16/9;
}

/* Aspect ratio -- 4 by 3 */
.--aspect-ratio-4by3 {
  aspect-ratio: 4/3;
}

/* Aspect ratio -- 1 by 1 */
.--aspect-ratio-1by1 {
  aspect-ratio: 1/1;
}

/* Aspect ratio -- 9 by 16 */
.--aspect-ratio-9by16 {
  aspect-ratio: 9/16;
}

/* Components */
.header {
  background: #fff;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10000;
  overflow: visible;
  -webkit-box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
}

.header--fixed {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
}

.header--hide {
  top: -100%;
}

.header__right-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__top {
  font-size: 1.7rem;
  display: none;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1260px) {
  .header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__bottom {
  padding: 2.5rem 0;
}

.header__button {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 4px 11px;
}
@media (min-width: 375px) {
  .header__button {
    padding: 8px 17px;
  }
}
@media (min-width: 1260px) {
  .header__button {
    padding: 8px 32px;
  }
}

.header__button-bar-wrap {
  margin-right: 10px;
  pointer-events: none;
}

.header__button-bar {
  display: block;
  background: #000;
  width: 18px;
  height: 2px;
}
.header__button-bar:not(:last-of-type) {
  margin-bottom: 3px;
}

.header__bottom {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__menu {
  position: relative;
}
.header__top .header__menu {
  display: none;
}
@media (min-width: 1260px) {
  .header__top .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__bottom .header__menu {
  max-height: 0;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  position: absolute;
  z-index: 4;
  top: 106px;
  background: white;
  max-width: 330px;
  right: 0;
  -webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.35);
}
@media (min-width: 1260px) {
  .header__bottom .header__menu {
    left: 0;
    right: auto;
    width: 100%;
    display: none;
    top: 114px;
  }
}

.header__mobile-part {
  display: initial;
}
@media (min-width: 1260px) {
  .header__mobile-part {
    display: none;
  }
}

.header__desktop-part {
  display: none;
}
@media (min-width: 1260px) {
  .header__desktop-part {
    display: initial;
  }
}

.header__logo {
  width: 11rem;
}
@media (min-width: 960px) {
  .header__logo {
    width: 15rem;
  }
}
@media (min-width: 1260px) {
  .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 10rem;
    width: 20rem;
  }
}
@media (min-width: 1580px) {
  .header__logo {
    width: 25rem;
  }
}

.header__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.header__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__lang-figure {
  width: 20px;
}
@media (min-width: 960px) {
  .header__lang-figure {
    width: 26px;
  }
}

.header__lang-img {
  aspect-ratio: 1/1;
  width: 100%;
}

.header__lang-arrow {
  width: 1rem;
  height: 0.5rem;
  fill: #8EDF3D;
}

.header__lang-language {
  font-size: 1.6rem;
  line-height: 0.7;
  color: #8EDF3D;
}

.header__other-langs {
  display: none;
  gap: 0.7rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 5rem 0.2rem 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  -webkit-box-shadow: 0 0.3rem 1rem 0 rgba(48, 57, 75, 0.1);
          box-shadow: 0 0.3rem 1rem 0 rgba(48, 57, 75, 0.1);
  z-index: -1;
  width: 3.3rem;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
}
@media (min-width: 960px) {
  .header__other-langs {
    padding: 5rem 1rem 1rem;
    width: 9rem;
  }
}

.header__active-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 0.5rem;
}
@media (min-width: 960px) {
  .header__active-lang {
    gap: 0.8rem;
  }
}

.header__langs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0.5rem;
  z-index: 2;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (min-width: 960px) {
  .header__langs-wrapper {
    padding: 0.5rem 1rem;
  }
}
.header__langs-wrapper:hover .header__other-langs, .header__langs-wrapper:focus .header__other-langs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__langs-wrapper:hover .header__lang-language, .header__langs-wrapper:focus .header__lang-language {
  color: #a9f362;
}
.header__langs-wrapper:hover .header__lang-arrow:before, .header__langs-wrapper:focus .header__lang-arrow:before {
  border-color: #a9f362;
}

.header__lang-ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.7rem;
}

.header__logo-lang-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
}

.header__lang-ico--drop {
  opacity: 0.75;
  color: #8EDF3D;
  font-size: 1.3rem;
}
.header__lang-ico--drop:hover {
  opacity: 1;
  color: #a9f362;
}

.header__lang-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}

.header__mobile-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media (min-width: 1260px) {
  .header__mobile-part {
    display: none;
  }
}

.header__lang-wrap--mobile {
  padding-bottom: 4rem;
  margin-top: 1rem;
}
@media (min-width: 1260px) {
  .header__lang-wrap--mobile {
    display: none;
  }
}

@media (min-width: 1260px) {
  .header__bottom {
    display: none;
  }
}

.header__lang-wrap--desktop {
  margin-left: 3rem;
  display: none;
}
@media (min-width: 1260px) {
  .header__lang-wrap--desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.menu__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  left: 0;
  top: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (min-width: 1260px) {
  .menu__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
}

.menu__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  padding: 2rem;
}
@media (min-width: 1260px) {
  .menu__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    padding: 0;
  }
}
.menu__item {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu__item:first-of-type {
  padding: 12px 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1260px) {
  .menu__item:first-of-type {
    padding: 56.8px 26px;
  }
}
.menu__item:first-of-type a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: absolute;
  margin: auto 0;
  text-indent: -200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 19px;
  height: 17px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  color: transparent;
}
.menu__item:first-of-type a:before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-size: 100%;
  width: 19px;
  height: 17px;
  display: block;
  background: url("/www/img/home.svg") no-repeat;
  background-size: contain;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.menu__item:first-of-type a:active:before, .menu__item:first-of-type a:hover:before, .menu__item:first-of-type a:focus:before {
  background: url("/www/img/home-h.svg") no-repeat;
  background-size: contain;
}
@media (min-width: 1260px) {
  .menu__item:first-of-type a {
    padding: 56.8px 26px;
  }
}
.menu__item.menu__item--dropdown {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1580px) {
  .menu__item.menu__item--dropdown:after {
    right: 2.2rem;
  }
}
@media (min-width: 1260px) {
  .menu__item {
    width: unset;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

.menu__link {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.header__mobile-part .menu__link {
  width: 100%;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu__item--dropdown {
  position: relative;
}
@media (min-width: 1260px) {
  .menu__item--dropdown:hover, .menu__item--dropdown:focus {
    background: #8EDF3D;
    color: #fff;
  }
  .menu__item--dropdown:hover .menu__dropdown, .menu__item--dropdown:focus .menu__dropdown {
    display: block;
  }
  .menu__item--dropdown:hover .menu__link, .menu__item--dropdown:focus .menu__link {
    color: #fff;
  }
}

.menu__dropdown {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.menu__item-button {
  padding-left: 16px;
}
@media (min-width: 1580px) {
  .menu__item-button {
    padding-left: 33px;
  }
}
.header__menu .menu__item-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (min-width: 1260px) {
  .header__menu .menu__item-button {
    display: none;
  }
}

.menu__item-button--desktop {
  display: none;
}
@media (min-width: 1260px) {
  .menu__item-button--desktop {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.menu__link {
  display: inline-block;
  font-size: 1.7rem;
  position: relative;
  font-weight: 400;
  padding: 6px;
}
@media (min-width: 960px) {
  .menu__link {
    padding: 8px 20px;
  }
}
@media (min-width: 1260px) {
  .menu__link {
    padding-top: 44px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 44px;
  }
}
@media (min-width: 1580px) {
  .menu__link {
    padding: 44px 23px 44px 23px;
  }
}
.menu__link:hover, .menu__link:focus, .menu__link:active {
  text-decoration: underline;
  color: #8EDF3D;
}

.menu__inquiry-button {
  margin-left: 1rem;
}
@media (min-width: 1580px) {
  .menu__inquiry-button {
    margin-left: 3rem;
  }
}

.menu__item--selected a {
  text-decoration: underline;
}

.menu__link--active {
  text-decoration: underline;
}

.menu__link--dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (min-width: 1260px) {
  .menu__link--dropdown:after {
    content: "";
    display: block;
    position: absolute;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background-size: 100%;
    width: 12px;
    height: 7px;
    display: block;
    background: url("/www/img/arrow-down.svg") no-repeat;
    background-size: contain;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    right: -0.1rem;
  }
}
@media (min-width: 1260px) {
  .menu__link--dropdown {
    padding-right: 4rem;
  }
  .menu__link--dropdown:after {
    right: 1.9rem;
  }
}
@media (min-width: 1580px) {
  .menu__link--dropdown {
    padding-right: 5rem;
  }
  .menu__link--dropdown:after {
    right: 2.9rem;
  }
}
.menu__link--dropdown:hover, .menu__link--dropdown:focus, .menu__link--dropdown:active {
  background: #8EDF3D;
  color: #fff;
}
.menu__link--dropdown:hover:after, .menu__link--dropdown:focus:after, .menu__link--dropdown:active:after {
  background: url("/www/img/arrow-down-w.svg") no-repeat;
}
.header__mobile-part .menu__link--dropdown {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__mobile-part .menu__link--dropdown:hover, .header__mobile-part .menu__link--dropdown:focus, .header__mobile-part .menu__link--dropdown:active {
  background: none;
  color: #8EDF3D;
  text-decoration: underline;
}

/* Footer */
.footer {
  padding-top: 2.5rem;
}
@media (min-width: 960px) {
  .footer {
    padding-top: 5rem;
  }
}

.footer__wrap {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #303030;
  color: #fff;
}
@media (960px) {
  .footer__wrap {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.footer__top {
  margin-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .footer__top {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1260px) {
  .footer__top {
    margin-bottom: 7.5rem;
  }
}
@media (min-width: 1580px) {
  .footer__top {
    margin-bottom: 10rem;
  }
}
@media (min-width: 1920px) {
  .footer__top {
    margin-bottom: 13.3rem;
  }
}

.footer__row {
  row-gap: 2rem;
}

.footer__logo-figure {
  max-width: 25.1rem;
  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;
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .footer__logo-figure {
    margin-bottom: 3.8rem;
  }
}

.footer__logo-img {
  max-height: 100%;
  width: 100%;
}

.footer__item-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1.6rem;
}
@media (min-width: 1260px) {
  .footer__item-title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
}

.footer__list-link {
  color: #fff;
  font-size: 1.6rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  display: block;
}
@media (min-width: 1260px) {
  .footer__list-link {
    font-size: 2rem;
  }
}
.footer__list-link:hover, .footer__list-link:active, .footer__list-link:focus {
  color: #fff;
  text-decoration: underline;
}

.footer__list-item:first-of-type .footer__list-link {
  padding-top: 0;
}

.footer__column--left {
  margin-right: auto;
}

.footer__bottom-row {
  row-gap: 2rem;
}

.footer__bottom-left-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 640px) {
  .footer__bottom-left-column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__bottom-right-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 640px) {
  .footer__bottom-right-column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.footer__vub-logo-link {
  margin-right: 2.2rem;
}

.footer__vub-figure {
  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;
  width: 12rem;
  height: 9.7rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__vub-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.footer__vub-logo-link:hover .footer__vub-img,
.footer__vub-logo-link:focus .footer__vub-img,
.footer__vub-logo-link:active .footer__vub-img {
  scale: 1.1;
}

.footer__copyright a {
  color: #fff;
  text-decoration: underline;
}
.footer__copyright a:hover, .footer__copyright a:focus, .footer__copyright a:active {
  text-decoration: none;
}

.footer__madeby a {
  color: #fff;
  text-decoration: underline;
}
.footer__madeby a:hover, .footer__madeby a:focus, .footer__madeby a:active {
  text-decoration: none;
}

.js--active {
  max-height: none;
}

.js--fixed {
  position: fixed;
  left: 0;
  right: 0;
}

.content {
  font-size: 1.6rem;
}

.content__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -0.8rem;
}

.content__column {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

.content__flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.content--section {
  color: #000;
  margin: 0 auto 1.6rem;
  max-width: 76.8rem;
  width: 100%;
}
.content--section:last-child {
  margin-bottom: 0;
}
@media (min-width: 1260px) {
  .content--section {
    margin: 0 0 4rem;
  }
  .content--section:last-child {
    margin-bottom: 0;
  }
}

.content > h3, .content__column h3 {
  margin: 0 0 2.4rem;
  font-weight: 700;
}

.content > h2, .content__column h2 {
  margin: 0 0 3.8rem;
  font-weight: 500;
  color: #303030;
}

.content > ul, .content > p ul, .content__column ul,
.--list {
  margin: 0 0 2rem;
}
@media (min-width: 1260px) {
  .content > ul, .content > p ul, .content__column ul,
  .--list {
    margin-bottom: 4rem;
  }
}

.content > ul li, .content > p ul li, .content__column ul li,
.--list-item {
  font-size: 1.5rem;
  margin: 0.4rem 0 0.4rem 1.8rem;
  position: relative;
}
.content > ul li::before, .content > p ul li::before, .content__column ul li::before,
.--list-item::before {
  background: #000;
  border-radius: 0.2rem;
  content: "";
  height: 0.6rem;
  left: -1.6rem;
  position: absolute;
  top: 0.8rem;
  width: 0.6rem;
}

.content > ol, .content > p ol, .content__column ol,
.--list-num {
  counter-reset: counter-list;
  margin: 0 0 2rem;
}
@media (min-width: 1260px) {
  .content > ol, .content > p ol, .content__column ol,
  .--list-num {
    margin-bottom: 4rem;
  }
}

.content > ol li, .content > p ol li, .content__column ol li,
.--list-num-item {
  counter-increment: counter-list;
  font-size: 1.6rem;
  padding: 0.4rem 0 0.4rem 1.8rem;
  position: relative;
}
.content > ol li::before, .content > p ol li::before, .content__column ol li::before,
.--list-num-item::before {
  content: counter(counter-list) ".";
  left: 0;
  position: absolute;
  top: 0.4rem;
}

.content > p, .content__column p {
  margin: 0 0 2rem;
}
@media (min-width: 1260px) {
  .content > p, .content__column p {
    margin: 0 0 4rem;
  }
}

.content > a,
.content > p a,
.content table a,
.content__column a,
.content ul a,
.content ol a {
  text-decoration: underline;
}

/* Content video */
.content video {
  height: auto;
  aspect-ratio: 16/9;
}

/* Content iframe */
.content iframe {
  height: auto;
  aspect-ratio: 16/9;
}

.content table {
  border-collapse: separate !important;
  border: 1px solid #eeeeee;
  border-radius: 0.8rem;
}

.content .table-wrapper {
  border-radius: 0;
  border-collapse: separate;
}

.content table td, .content table th {
  padding: 0.8rem 0.4rem;
  border: none;
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}
@media (min-width: 640px) {
  .content table td, .content table th {
    padding: 1.3rem 0.4rem;
    padding-left: 2.5rem;
  }
}

.content table tr {
  padding: 1rem;
  border: 0.1rem solid #eeeeee;
}
.content table tr:not(:last-of-type) td {
  border-bottom: 0.1rem solid #eeeeee;
}

.content table td {
  font-weight: 500;
}
.content table td:first-of-type {
  font-size: 1.6rem;
  color: #303030;
  font-weight: 700;
  border-left: 0;
}
.content table td:last-of-type {
  border-right: 0;
}

.content table th {
  color: #000;
  border-bottom: 0.1rem solid #eeeeee;
  font-size: 1.6rem;
}

.content > img, .content > p img, .content__column img, .content > figure img {
  margin: 0 0 0.8rem;
  height: auto;
}

.content > figure, .content .content__column figure {
  margin: 0 0 1.6rem 0;
}

.content > figure > figcaption, .content .content__column figure > figcaption {
  font-style: italic;
  opacity: 50%;
}

.content > blockquote, .content > p blockquote, .content__column blockquote {
  font-style: italic;
  margin-bottom: 3rem;
  margin-left: 2rem;
  position: relative;
}
.content > blockquote::before, .content > p blockquote::before, .content__column blockquote::before {
  display: block;
  background: url("/img/quote.svg");
  content: "";
  left: -3rem;
  position: absolute;
  top: 0.8rem;
  width: 2rem;
  height: 2rem;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (min-width: 640px) {
  .content > blockquote, .content > p blockquote, .content__column blockquote {
    margin-left: 4rem;
  }
}
@media (min-width: 960px) {
  .content > blockquote, .content > p blockquote, .content__column blockquote {
    margin-bottom: 4rem;
    margin-left: 6rem;
  }
  .content > blockquote::before, .content > p blockquote::before, .content__column blockquote::before {
    left: -6rem;
  }
}
@media (min-width: 1260px) {
  .content > blockquote, .content > p blockquote, .content__column blockquote {
    margin-bottom: 6rem;
    margin-left: 8rem;
  }
}
@media (min-width: 1580px) {
  .content > blockquote, .content > p blockquote, .content__column blockquote {
    margin-bottom: 10rem;
    margin-left: 10rem;
  }
  .content > blockquote::before, .content > p blockquote::before, .content__column blockquote::before {
    left: -8rem;
  }
}

/* Breadcrumb */
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 1.5rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 480px) {
  .breadcrumb {
    text-align: left;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.breadcrumb__item {
  position: relative;
  font-size: 1.4rem;
  height: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb__item:not(:first-of-type) {
  padding-left: 3.3rem;
}
.breadcrumb__item:not(:first-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-size: 100%;
  width: 5px;
  height: 16px;
  display: block;
  background: url("/www/img/slash.svg") no-repeat;
  background-size: contain;
  left: 12px;
  top: 9px;
}
.breadcrumb__item:first-of-type {
  width: 29px;
  height: 29px;
  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;
}
.breadcrumb__item:first-of-type:before {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-size: 100%;
  width: 19px;
  height: 17px;
  display: block;
  background: url("/www/img/home-h.svg") no-repeat;
  background-size: contain;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.breadcrumb__item:first-of-type:active:before, .breadcrumb__item:first-of-type:hover:before, .breadcrumb__item:first-of-type:focus:before {
  z-index: -1;
  background: url("/www/img/home-h.svg") no-repeat;
  background-size: contain;
}

.breadcrumb__item--active {
  color: #8EDF3D;
}

.breadcrumb__home {
  width: 29px;
  height: 29px;
  display: block;
}
.breadcrumb__home::before {
  color: #8EDF3D;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.breadcrumb__home:hover::before, .breadcrumb__home:focus::before {
  color: #a9f362;
}

.breadcrumb__link {
  color: #8EDF3D;
}
.breadcrumb__link:hover, .breadcrumb__link:focus {
  color: #a9f362;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  padding: 2rem;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal.open {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  overflow: auto;
}
.modal iframe {
  height: 50vw;
  min-height: 25rem;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 960px) {
  .modal iframe {
    height: 65rem;
    max-height: 80vh;
  }
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 21;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  outline: none;
  background: none;
  font-size: 2.4rem;
  color: #747474;
  font-weight: bold;
  height: 1.6rem;
  width: 1.6rem;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal__close::before, .modal__close::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #000;
}
.modal__close::before {
  width: 0.2rem;
  height: 100%;
  left: calc(50% - 0.1rem);
  top: 0;
}
.modal__close::after {
  height: 0.2rem;
  width: 100%;
  top: calc(50% - 0.1rem);
  left: 0;
}
.modal__close:hover {
  color: #000;
}

.modal__top {
  margin: 0 0 1.5rem 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 960px) {
  .modal__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 0 3rem 0;
  }
}

.modal__link {
  font-size: 1.4rem;
  color: #000;
}

.modal__wrap {
  max-width: 46rem;
  width: 100%;
}

.modal__title {
  text-align: center;
  font-weight: 700;
}
@media (min-width: 1260px) {
  .modal__title {
    font-size: 3rem;
  }
}

.modal__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #8EDF3D;
  margin: 1rem 0;
  position: relative;
}
@media (min-width: 960px) {
  .modal__icon {
    width: 3.4rem;
    height: 3.4rem;
    margin-right: 1rem;
  }
}
.modal__icon::after {
  content: "";
  display: block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.8rem;
  height: 1.6rem;
  top: -0.2rem;
  border-right: 0.2rem solid white;
  border-bottom: 0.2rem solid white;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal__container {
  position: relative;
  z-index: 22;
  max-width: 120rem;
  margin: 0 auto;
  background-color: #fff;
  text-align: left;
  width: 100%;
}
.modal--product .modal__container {
  max-width: 94rem;
}
.modal--product .modal__container, .modal--gdpr .modal__container {
  padding: 1.5rem;
}
@media (min-width: 960px) {
  .modal--product .modal__container, .modal--gdpr .modal__container {
    padding: 3rem;
  }
}
.modal--centered .modal__container {
  margin: auto;
}
.modal__container .button {
  margin-left: 0;
  margin-top: 2rem;
}

.modal__container--light {
  background: #848484;
}

.modal__products {
  background: #848484;
}

.modal__product-add {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 960px) {
  .modal__product-add {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.modal__product {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  padding: 1rem 0;
  margin: 0 0 2rem 0;
}
@media (min-width: 960px) {
  .modal__product {
    padding: 2.5rem 0;
  }
}

.modal__product-info {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 480px) {
  .modal__product-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 960px) {
  .modal__product-info {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

.modal__product-title {
  font-size: 1.4rem;
  max-width: 20rem;
}
@media (min-width: 960px) {
  .modal__product-title {
    font-size: 1.6rem;
  }
}

.modal__product-figure {
  height: 5rem;
  width: 5rem;
  margin: 0.8rem 0;
}
@media (min-width: 480px) {
  .modal__product-figure {
    margin-right: 1.2rem;
  }
}
@media (min-width: 960px) {
  .modal__product-figure {
    width: 7.5rem;
    margin-right: 2rem;
  }
}

.modal__product-img {
  max-height: 100%;
  max-width: 100%;
}

.modal__product-vat {
  font-weight: 700;
  font-size: 2rem;
}

.modal__buttons {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal__buttons .modal__button:first-of-type {
  margin-right: 2rem;
}

.table-wrapper {
  background-color: #fff;
  margin-bottom: 3.2rem;
  overflow-x: auto;
  border-radius: 0.8rem;
  font-size: 1.5rem;
}

.dropdown {
  position: absolute;
  left: 0;
  min-width: 60.6rem;
  top: 100%;
  display: none;
}

.dropdown__box {
  padding: 40px 15px 40px 20px;
  background: #8EDF3D;
  top: 100%;
  position: relative;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  left: 0;
}

.dropdown__item {
  padding: 15px 0;
  width: 45%;
}

.dropdown__link {
  font-size: 2rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.dropdown__link:hover, .dropdown__link:focus, .dropdown__link:active {
  text-decoration: underline;
  color: #fff;
}

.dropdown__link:hover .dropdown__link-icon,
.dropdown__link:focus .dropdown__link-icon,
.dropdown__link:active .dropdown__link-icon {
  fill: #fff;
}

.dropdown__link-icon {
  fill: #fff;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.dropdown__link-icon-box {
  width: 3.4rem;
  height: 3.4rem;
  margin-right: 0.9rem;
}

/* Modules */
.form__error-text {
  font-size: 1.3rem;
  color: #c33c26;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0.6rem 0;
}
.form__error-text::before {
  content: "";
  display: block;
  position: static;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.4rem;
  height: 1.2rem;
  margin: 0 0.5rem 0 0;
  background: url("/img/alert.svg") 0/cover;
}

/* Form - Placeholder styles */
.form__star {
  color: #c33c26;
}

.form__input::-webkit-input-placeholder, .form__textarea::-webkit-input-placeholder {
  opacity: 0;
}

.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  opacity: 0;
}

.form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
  opacity: 0;
}

.form__input::-ms-input-placeholder, .form__textarea::-ms-input-placeholder {
  opacity: 0;
}

.form__input::placeholder, .form__textarea::placeholder {
  opacity: 0;
}

.form__floating-wrap {
  position: relative;
}

.form__input:not(:-moz-placeholder-shown) + .form__floating-text {
  transform: translateY(0.7rem) translateX(1.2rem);
  opacity: 0.6;
}

.form__input:not(:-ms-input-placeholder) + .form__floating-text {
  -ms-transform: translateY(0.7rem) translateX(1.2rem);
      transform: translateY(0.7rem) translateX(1.2rem);
  opacity: 0.6;
}

.form__floating-wrap:focus-within .form__floating-text,
.form__input:not(:placeholder-shown) + .form__floating-text {
  -webkit-transform: translateY(0.7rem) translateX(1.2rem);
      -ms-transform: translateY(0.7rem) translateX(1.2rem);
          transform: translateY(0.7rem) translateX(1.2rem);
  opacity: 0.6;
}

.form__textarea:not(:-moz-placeholder-shown) + .form__floating-text {
  opacity: 0;
  transform: translateY(1rem) translateX(1.2rem);
}

.form__textarea:not(:-ms-input-placeholder) + .form__floating-text {
  opacity: 0;
  -ms-transform: translateY(1rem) translateX(1.2rem);
      transform: translateY(1rem) translateX(1.2rem);
}

.form__floating-wrap:focus-within .form__floating-text--textarea,
.form__textarea:not(:placeholder-shown) + .form__floating-text {
  opacity: 0;
  -webkit-transform: translateY(1rem) translateX(1.2rem);
      -ms-transform: translateY(1rem) translateX(1.2rem);
          transform: translateY(1rem) translateX(1.2rem);
}

.form__floating-text {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(2.5rem) translateX(1.2rem);
      -ms-transform: translateY(2.5rem) translateX(1.2rem);
          transform: translateY(2.5rem) translateX(1.2rem);
  font-size: 1.4rem;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  pointer-events: none;
}

.form__floating-text--textarea {
  -webkit-transform: translateY(1rem) translateX(1.2rem);
      -ms-transform: translateY(1rem) translateX(1.2rem);
          transform: translateY(1rem) translateX(1.2rem);
}

.contact-form .form__item {
  margin-bottom: 2.4rem;
  width: 100%;
}
.contact-form .form__item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 960px) {
  .contact-form .form__item {
    width: 97%;
  }
}

.form__textarea {
  font-size: 1.6rem;
  border: 2px solid #cfeda6;
  border-radius: 0.4rem;
  width: 100%;
  background: #fff;
  height: 24rem;
}

.form__input {
  height: 4.8rem;
  font-size: 1.6rem;
  border: 2px solid #cfeda6;
  border-radius: 0.4rem;
  width: 100%;
  background: #fff;
  padding-left: 0.5rem;
}

.form__item--terms {
  margin-top: 2.4rem;
}

.form__item--button {
  margin-top: 2.2rem;
}

.form__terms a {
  color: #000;
  text-decoration: underline;
}

/* Main header */
.main-header {
  padding-top: 6rem;
  padding-bottom: 3rem;
  margin-top: 10.6rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1260px) {
  .main-header {
    margin-top: 11.3rem;
  }
}

.main-header--hp {
  min-height: 23rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding-top: 0;
  position: relative;
  margin-top: 10.6rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .main-header--hp {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 960px) {
  .main-header--hp {
    min-height: 50rem;
    padding-bottom: 0;
  }
}
@media (min-width: 1260px) {
  .main-header--hp {
    min-height: 70rem;
    margin-top: 11.3rem;
  }
}
@media (min-width: 1580px) {
  .main-header--hp {
    min-height: 78.1rem;
  }
}

.main-header--slider {
  min-height: 23rem;
}
@media (min-width: 640px) {
  .main-header--slider {
    min-height: 35rem;
  }
}
@media (min-width: 960px) {
  .main-header--slider {
    min-height: 50rem;
  }
}
@media (min-width: 1260px) {
  .main-header--slider {
    min-height: 70rem;
    margin-top: 11.3rem;
  }
}
@media (min-width: 1580px) {
  .main-header--slider {
    min-height: 78.1rem;
  }
}

.main-header--about {
  padding-top: 1.7rem;
  min-height: 23rem;
}
@media (min-width: 640px) {
  .main-header--about {
    min-height: 35rem;
  }
}
@media (min-width: 960px) {
  .main-header--about {
    min-height: 50rem;
    background: #303030;
  }
}

.main-header--product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  padding-bottom: 5.3rem;
  padding-top: 1.7rem;
}
.main-header--product:after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(26%, rgba(80, 80, 80, 0.9)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(80, 80, 80, 0.9) 26%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 960px) {
  .main-header--product {
    padding-bottom: 0;
  }
  .main-header--product:after {
    content: "";
    display: block;
    position: absolute;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(26%, rgba(80, 80, 80, 0.9)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(80, 80, 80, 0.9) 26%, rgba(255, 255, 255, 0) 100%);
  }
}

.main-header__figure {
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  z-index: -1;
  overflow: hidden;
}
@media (min-width: 960px) {
  .main-header__figure {
    position: absolute;
    margin-bottom: 0;
  }
  .main-header__figure::after {
    content: "";
    display: block;
    position: absolute;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, right top, color-stop(26%, rgba(80, 80, 80, 0.9)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(80, 80, 80, 0.9) 26%, rgba(255, 255, 255, 0) 100%);
  }
}
.main-header--product .main-header__figure {
  position: absolute;
  width: 100%;
  height: 100%;
  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;
  margin-bottom: 2rem;
}
.main-header--product .main-header__figure:after {
  display: none;
}
@media (min-width: 960px) {
  .main-header--product .main-header__figure {
    position: relative;
    margin-bottom: 0;
  }
}
.main-header--about .main-header__figure {
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .main-header--about .main-header__figure {
    position: relative;
    margin-bottom: 0;
  }
  .main-header--about .main-header__figure:after {
    background: -webkit-gradient(linear, left top, right top, color-stop(18%, rgb(48, 48, 48)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgb(48, 48, 48) 18%, rgba(255, 255, 255, 0) 100%);
  }
}
@media (min-width: 1580px) {
  .main-header--about .main-header__figure {
    height: 115%;
    overflow: visible;
  }
}

.main-header__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-header--product .main-header__img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-header--color {
  padding-top: 1.7rem;
  margin-bottom: 2rem;
  padding-bottom: 0;
  background: #303030;
}
.main-header--color .breadcrumb-wrapper {
  margin-bottom: 3rem;
}
@media (min-width: 960px) {
  .main-header--color {
    margin-bottom: 4rem;
  }
  .main-header--color .breadcrumb-wrapper {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1260px) {
  .main-header--color .breadcrumb-wrapper {
    margin-bottom: 7rem;
  }
}

.main-header__video-figure {
  z-index: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
@media (min-width: 960px) {
  .main-header__video-figure {
    position: absolute;
  }
  .main-header__video-figure::after {
    content: "";
    display: block;
    position: absolute;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, right top, color-stop(60%, rgba(255, 255, 255, 0.6068802521)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6068802521) 60%, rgba(255, 255, 255, 0) 100%);
  }
}

.main-header__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-header:has(> .main-header__video-figure) .main-header__wrapper-mobile, .main-header:has(> .main-header__video-figure) .main-header__wrapper-desktop {
  display: none;
}

.main-header--hp .main-header__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin-top: 2.4rem;
}
@media (min-width: 960px) {
  .main-header--hp .main-header__texts {
    max-width: 52%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 0;
  }
}
@media (min-width: 1260px) {
  .main-header--hp .main-header__texts {
    max-width: 55.2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.main-header__texts .main-header--about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 960px) {
  .main-header__texts .main-header--about {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.main-header__title {
  color: #8EDF3D;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.4rem;
  font-size: 3.2rem;
}
@media (min-width: 960px) {
  .main-header__title {
    text-align: left;
    font-size: 3.8rem;
  }
}
@media (min-width: 1260px) {
  .main-header__title {
    font-size: 4.8rem;
  }
}
@media (min-width: 960px) {
  .main-header--color .main-header__title {
    margin-bottom: 4rem;
  }
}
.main-header__texts--bg .main-header__title {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.main-header__perex {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2.4rem;
}
@media (min-width: 960px) {
  .main-header__perex {
    text-align: left;
    color: #fff;
    text-shadow: 0 0 15px rgba(80, 80, 80, 0.9);
  }
}
@media (min-width: 1260px) {
  .main-header__perex {
    font-size: 1.8rem;
    max-width: 53.5rem;
  }
}
.main-header__texts--bg .main-header__perex {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}
.main-header--about .main-header__perex {
  max-width: 73.1rem;
}

.main-header__icon-wrap {
  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;
  background: #FFFF00;
  padding: 0.6rem;
  max-width: 5.5rem;
  position: absolute;
  bottom: 0;
  right: 10%;
  z-index: 5;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 640px) {
  .main-header__icon-wrap {
    max-width: 7.5rem;
  }
}
@media (min-width: 960px) {
  .main-header__icon-wrap {
    max-width: 10.5rem;
  }
}

.main-header__icon {
  width: 5.3rem;
  height: 3.6rem;
  fill: #000;
}
@media (min-width: 640px) {
  .main-header__icon {
    width: 7.3rem;
    height: 5.6rem;
  }
}
@media (min-width: 960px) {
  .main-header__icon {
    width: 9.3rem;
    height: 7.6rem;
  }
}

.main-header__person-wrap {
  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;
  max-height: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 15%;
  z-index: 5;
}

.main-header__person-figure {
  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;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 5;
  padding-top: 1rem;
}
@media (min-width: 960px) {
  .main-header__person-figure {
    left: unset;
    right: 15%;
    padding-top: 2rem;
  }
}
@media (min-width: 1260px) {
  .main-header__person-figure {
    padding-top: 0;
  }
}

.main-header__person {
  height: 100%;
}

.main-header__wrapper-desktop {
  display: none;
}
@media (min-width: 960px) {
  .main-header__wrapper-desktop {
    display: block;
  }
}

.main-header__wrapper-mobile {
  position: relative;
}
@media (min-width: 960px) {
  .main-header__wrapper-mobile {
    display: none;
  }
}

.main-header__slider {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.main-header__content {
  z-index: 2;
}

.main-header__texts--bg {
  background: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 0 50px 50px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 50px 50px rgba(255, 255, 255, 0.3);
  border-radius: 180px;
}
.main-header__slider-content-wrap .main-header__texts--bg {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-header__content--desktop {
  display: none;
}
@media (min-width: 960px) {
  .main-header__content--desktop {
    display: block;
  }
}

.main-header__content--mobile {
  margin-top: 2rem;
}
@media (min-width: 960px) {
  .main-header__content--mobile {
    display: none;
  }
}

.main-header__row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 960px) {
  .main-header__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1580px) {
  .main-header--about .main-header__row {
    position: relative;
    height: 55.3rem;
  }
}

@media (min-width: 1580px) {
  .main-header--about .main-header__right-column {
    max-height: 56.3rem;
    aspect-ratio: auto;
    height: 100%;
    margin-bottom: 0;
    position: absolute;
    right: -178px;
    top: -5.6rem;
    width: 68%;
  }
}

.main-header--product .main-header__figure-wrapper {
  position: relative;
  height: 30rem;
  width: 100%;
}
@media (min-width: 1260px) {
  .main-header--product .main-header__figure-wrapper {
    height: 59.5rem;
    max-width: unset;
  }
}

/* Tabs */
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media (min-width: 1260px) {
  .tabs {
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
  }
}

.tabs__link {
  font-size: 1.8rem;
  padding: 1.5rem 0;
  display: block;
  color: #000;
  cursor: pointer;
}
.tabs--big .tabs__link {
  font-weight: 700;
}
@media (min-width: 1260px) {
  .tabs__link {
    padding: 3.5rem 0;
  }
}

.tabs__link--active {
  font-weight: 400;
  border-bottom: 0.2rem solid #8EDF3D;
}

/* Tabs nav */
.tabs-nav {
  top: 0;
  z-index: 900;
  margin-bottom: 3rem;
}
.tabs-nav.js--fixed {
  -webkit-box-shadow: 0 0.6rem 2.5rem rgba(0, 0, 0, 0.09);
          box-shadow: 0 0.6rem 2.5rem rgba(0, 0, 0, 0.09);
}
@media (min-width: 960px) {
  .tabs-nav {
    margin-bottom: 6.4rem;
  }
}

/* Tabs content */
.tabs-content__block {
  display: none;
}

.tabs-content__block--active {
  display: block;
}

.tabs-content__title {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.section {
  padding: 3rem 0;
}

.section--account {
  padding: 4rem 0;
}

.section__table tr td, .section__table tr th {
  padding: 0.8rem;
}
.section__table tr:not(:last-of-type) td, .section__table tr th {
  border-bottom: 0.1rem solid #e9e9e9;
}

.radio__input {
  display: none;
}
.radio__input:checked + .radio__mark::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  left: 0.4rem;
  top: 0.4rem;
  background: #8EDF3D;
  border-radius: 50%;
}

.radio__link {
  color: #8EDF3D;
}
.radio__link:hover, .radio__link:focus {
  color: #a9f362;
}

.radio {
  margin: 0.6rem 0 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
}

.radio__mark {
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #e9e9e9;
  display: block;
  position: relative;
  border-radius: 50%;
  margin: 0 0.8rem 0 0;
}

.checkbox__input {
  display: none;
}
.checkbox__input:checked + .checkbox__mark::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.5rem;
  height: 1.2rem;
  left: 0.6rem;
  top: 0.1rem;
  border-right: 0.2rem solid #8EDF3D;
  border-bottom: 0.2rem solid #8EDF3D;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.checkbox__link {
  color: #8EDF3D;
}
.checkbox__link:hover, .checkbox__link:focus {
  color: #a9f362;
}

.checkbox__mark {
  width: 2rem;
  height: 2rem;
  border: 0.2rem solid #e9e9e9;
  background: white;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  margin: 0 0.8rem 0 0;
}

.checkbox {
  margin: 0.6rem 0 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
}

.skeleton-loader--loading .skeleton-loader__item {
  display: inline-block;
  background-color: #e1e1e1;
  background-image: -webkit-gradient(linear, left top, right top, from(#e1e1e1), color-stop(#f1f1f1), to(#e1e1e1));
  background-image: linear-gradient(90deg, #e1e1e1, #f1f1f1, #e1e1e1);
  background-repeat: no-repeat;
  background-size: 20rem 100%;
  color: transparent;
  cursor: progress;
  -webkit-animation: 1.6s ease-in-out 0s infinite normal none running loading-animation;
          animation: 1.6s ease-in-out 0s infinite normal none running loading-animation;
}

.skeleton-loader__text {
  margin: 0 0 0.5rem 0;
}

.skeleton-loader__card {
  border-radius: 0.5rem;
  border: 0.2rem solid #e1e1e1;
}

.skeleton-loader--loading .skeleton-loader__item * {
  visibility: hidden;
}

.skeleton-loader--loading .skeleton-loader__item:empty::after,
.skeleton-loader--loading .skeleton-loader__item *:empty::after {
  content: " ";
}

@-webkit-keyframes loading-animation {
  0% {
    background-position: -20rem 0;
  }
  100% {
    background-position: calc(100% + 20rem) 0;
  }
}

@keyframes loading-animation {
  0% {
    background-position: -20rem 0;
  }
  100% {
    background-position: calc(100% + 20rem) 0;
  }
}
.faq-listing__wrap {
  row-gap: 2rem;
}
@media (min-width: 960px) {
  .faq-listing__wrap {
    row-gap: 4rem;
  }
}
@media (min-width: 1260px) {
  .faq-listing__wrap {
    padding-right: 4rem;
  }
}

.faq-listing__item {
  row-gap: 2.9rem;
  padding: 1.5rem;
  border: 2px solid #c1cfe1;
  border-radius: 0.8rem;
}
@media (min-width: 960px) {
  .faq-listing__item {
    padding: 2.6rem 4rem 3rem 2.5rem;
  }
}
@media (min-width: 1260px) {
  .faq-listing__item {
    padding-right: 8rem;
    padding-bottom: 4.6rem;
  }
}

.faq-listing__question {
  font-size: 2.6rem;
  color: #8EDF3D;
  font-weight: 500;
}
@media (min-width: 1260px) {
  .faq-listing__question {
    font-size: 3.2rem;
  }
}

.faq-listing__answer p {
  font-size: 1.6rem;
  color: #000;
}
@media (min-width: 1260px) {
  .faq-listing__answer p {
    font-size: 2rem;
  }
}

.faq__wrap {
  padding-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .faq__wrap {
    padding-bottom: 5rem;
  }
}
@media (min-width: 1260px) {
  .faq__wrap {
    padding-bottom: 7.5rem;
  }
}
@media (min-width: 1580px) {
  .faq__wrap {
    padding-bottom: 10rem;
  }
}

.faq__row {
  row-gap: 2rem;
}

.contact-form {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: #eeeeee;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .contact-form {
    padding-top: 4rem;
    padding-bottom: 7.4rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
@media (min-width: 1260px) {
  .contact-form {
    margin-top: 7.5rem;
    margin-bottom: 9rem;
  }
}
@media (min-width: 1580px) {
  .contact-form {
    margin-top: 10rem;
    margin-bottom: 12.3rem;
  }
}

.contact-form__row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-form__title {
  font-weight: 700;
  color: #303030;
  line-height: 1;
  margin-bottom: 3.7rem;
}
.contact-form__title span {
  font-weight: 400;
  color: #000;
}

@media (min-width: 960px) {
  .tabs-nav--download .tabs {
    gap: 1.6rem;
  }
}

.tabs-nav--download .tabs-nav__nav {
  background: none;
  border: none;
  border-bottom: 0.2rem solid #c1cfe1;
  border-radius: 0;
}

.tabs__link {
  padding: 1.1rem 2.4rem;
}
.tabs-nav--download .tabs__link {
  background: #eeeeee;
  border-radius: 0.4rem;
}

.tabs-nav--download .tabs__link--active {
  background: #fff;
  border-radius: 0.4rem;
  border: 0.2rem solid #c1cfe1;
  border-bottom: 0;
}

.tabs-downloads__lists-wrapper {
  padding: 2rem;
  border-radius: 0.8rem;
  border: 0.2rem solid #c1cfe1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}

.download-list__title {
  margin-bottom: 1.8rem;
  font-weight: 500;
  color: #303030;
  max-width: 61rem;
}

.download-list__perex {
  margin-bottom: 2.4rem;
  max-width: 61rem;
}

.tabs-downloads__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.5rem;
}
@media (min-width: 960px) {
  .tabs-downloads__lists {
    row-gap: 3rem;
  }
}

.download-list__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 3.5rem;
}
.download-list__list-item:before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.5rem;
  height: 2.6rem;
  background-color: #8EDF3D;
  -webkit-mask-image: url("/www/img/file.svg");
          mask-image: url("/www/img/file.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  left: 0;
  background-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.download-list__list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.tabs-downloads__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 0.4rem;
  border: 0.2rem solid #c1cfe1;
  margin-bottom: 2rem;
}

.tabs-downloads__item {
  border-radius: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tabs-downloads__item--active {
  background: #fff;
  border-left: 0.2rem solid #c1cfe1;
  border-right: 0.2rem solid #c1cfe1;
  border-radius: 0.4rem;
}

.tabs-downloads__link {
  padding: 1rem 2rem;
  border-radius: 0.4rem;
  -webkit-transition: none;
  transition: none;
  color: #000;
  border-left: 0.1rem solid transparent;
  border-right: 0.1rem solid transparent;
}
.tabs-downloads__link:hover, .tabs-downloads__link:focus, .tabs-downloads__link:active {
  background: #fff;
  border-left: 0.2rem solid #c1cfe1;
  border-right: 0.2rem solid #c1cfe1;
  border-radius: 0.4rem;
}

.tabs-downloads__link--active {
  background: #fff;
  border-left: 0.2rem solid #c1cfe1;
  border-right: 0.2rem solid #c1cfe1;
  border-radius: 0.4rem;
}

.tabs__item--downloads {
  margin-bottom: -0.22rem;
}
.tabs__item--downloads .tabs__link--active {
  border-radius: 0;
  border-bottom-color: #fff;
}
.tabs__item--downloads .tabs__link {
  border-radius: 0;
  border-top-left-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
}

.tabs-nav__tabs--downloads {
  overflow: visible;
}

@media (min-width: 1260px) {
  .tabs-content__column-wrap--right {
    padding-right: 4.5rem;
  }
}

.tabs-content__wrapper {
  row-gap: 2rem;
}

.downloads {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .downloads {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1260px) {
  .downloads {
    padding-top: 6rem;
  }
}
@media (min-width: 1580px) {
  .downloads {
    padding-top: 9rem;
  }
}

.follow-us {
  background: #cfeda6;
}

.follow-us__row {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
}
@media (min-width: 960px) {
  .follow-us__row {
    padding-top: 4.4rem;
    padding-bottom: 4.4rem;
  }
}
@media (min-width: 1260px) {
  .follow-us__row {
    padding-bottom: 6.1rem;
  }
}

.follow-us__left-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.follow-us__texts-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 960px) {
  .follow-us__texts-wrap {
    padding-left: 20rem;
  }
}
@media (min-width: 1260px) {
  .follow-us__texts-wrap {
    padding-left: 30rem;
  }
}
@media (min-width: 1580px) {
  .follow-us__texts-wrap {
    padding-left: 40rem;
  }
}
.follow-us__texts-wrap .message {
  background: #003A89;
  border-radius: 5px;
  color: white;
  padding: 10px 14px;
}

.follow-us__title {
  font-weight: 500;
  color: #303030;
  margin-bottom: 1.6rem;
}

.follow-us__text {
  margin-bottom: 1.6rem;
  max-width: 58.2rem;
}

.follow-us__form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 640px) {
  .follow-us__form-group {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.follow-us__input {
  font-size: 1.6rem;
  background: #fff;
  height: 5.6rem;
  padding-left: 1.6rem;
  max-width: 41.1rem;
  width: 100%;
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 58, 137, 0.2);
          box-shadow: 0px 0px 14px 0px rgba(0, 58, 137, 0.2);
}
.follow-us__input::-webkit-input-placeholder {
  color: #000;
}
.follow-us__input::-moz-placeholder {
  color: #000;
}
.follow-us__input:-ms-input-placeholder {
  color: #000;
}
.follow-us__input::-ms-input-placeholder {
  color: #000;
}
.follow-us__input::placeholder {
  color: #000;
}

.follow-us__sign-on {
  margin-bottom: 2.4rem;
  width: 100%;
}

.follow-us__label {
  display: none;
}

.follow-us__checkbox {
  max-width: 45rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.follow-us__figure {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
  max-width: 30rem;
}
@media (min-width: 640px) {
  .follow-us__figure {
    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;
  }
}
@media (min-width: 960px) {
  .follow-us__figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: -10.5rem;
  }
}
@media (min-width: 1260px) {
  .follow-us__figure {
    max-width: 40.4rem;
    left: -12rem;
  }
}
@media (min-width: 1580px) {
  .follow-us__figure {
    max-width: 40.4rem;
    left: -4rem;
  }
}

.follow-us__img {
  width: 100%;
}

.follow-us__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.follow-us__checkbox a:hover, .follow-us__checkbox a:focus, .follow-us__checkbox a:active {
  color: #a1b981;
}

.social-box--white {
  background: #fff;
  padding: 2.5rem;
  border-radius: 0.8rem;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1260px) {
  .social-box--white {
    padding-right: 3.9rem;
  }
}

.social-box__social-text {
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 1260px) {
  .social-box__social-text {
    font-size: 2.4rem;
  }
}

.social-box__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
  color: #000;
  margin-bottom: 2.4rem;
}
.social-box__social-link:last-of-type {
  margin-bottom: 0;
}
.follow-us .social-box__social-link:focus, .follow-us .social-box__social-link:hover, .follow-us .social-box__social-link:active {
  color: #a1b981;
}

.social-box__social-figure {
  width: 4rem;
  height: 4rem;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.social-box__social-img {
  width: 100%;
}

.contact-box--white {
  background: #fff;
  padding: 2.5rem;
  border-radius: 0.8rem;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1260px) {
  .contact-box--white {
    padding-right: 3.9rem;
    padding-bottom: 3.8rem;
  }
}

.contact-box--listing {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 1260px) {
  .contact-box--listing {
    padding-bottom: 3.3rem;
  }
}

.contact-box__bottom--small {
  height: 100%;
}

.contact-box__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4rem 0;
  font-size: 1.6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #000;
  line-height: 1;
}
@media (min-width: 960px) {
  .contact-box__phone {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.contact-box__phone-texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-box__hours {
  line-height: 1;
  font-size: 1.3rem;
  color: #808080;
}

.contact-box__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4rem 0;
  font-size: 1.6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #000;
}
@media (min-width: 960px) {
  .contact-box__mail {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.contact-box__icon-wrap {
  width: 2.8rem;
  height: 2.8rem;
  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;
  border-radius: 0.8rem;
  margin-right: 0.8rem;
}

.contact-box__phone-icon {
  fill: #303030;
  width: 2.1rem;
  height: 2.1rem;
}

.contact-box__mail-icon {
  fill: #303030;
  width: 2.3rem;
  height: 1.8rem;
}

.contact-box__name {
  font-weight: 700;
  text-align: center;
  line-height: 1;
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .contact-box__name {
    text-align: left;
    font-size: 2.4rem;
  }
}

.contact-box__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}
@media (min-width: 640px) {
  .contact-box__contacts {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.1rem;
  }
}

.contact-box__wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}
@media (min-width: 1260px) {
  .contact-box__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.contact-box__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}
@media (min-width: 640px) {
  .contact-box__bottom {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 960px) {
  .contact-box__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.contact-box__bottom--small {
  height: 100%;
}
@media (min-width: 960px) {
  .contact-box__bottom--small {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.contact-box__figure {
  width: 12.8rem;
  height: 12.8rem;
  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;
  margin-bottom: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
}
@media (min-width: 640px) {
  .contact-box__figure {
    width: 12.8rem;
    height: 12.8rem;
  }
}
@media (min-width: 960px) {
  .contact-box__figure {
    margin-right: 4rem;
    width: 12.8rem;
    height: 12.8rem;
    margin-bottom: 0;
  }
}

.contact-box__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-box__figure--small {
  width: 8rem;
  height: 8rem;
}
@media (min-width: 640px) {
  .contact-box__figure--small {
    margin-right: 1.6rem;
  }
}
@media (min-width: 960px) {
  .contact-box__figure--small {
    margin-right: 1.6rem;
  }
}

.contact-box__title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}
@media (min-width: 640px) {
  .contact-box__title {
    text-align: left;
    font-size: 2.4rem;
    margin-bottom: 3.3rem;
  }
}

.contact-box__position {
  margin-bottom: 1.6rem;
  color: #000;
  text-align: center;
}
@media (min-width: 960px) {
  .contact-box__position {
    text-align: left;
  }
}

.contact-box__name--positions {
  margin-bottom: 0.6rem;
}

.contact-box__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  width: 100%;
}

.contact-box__texts-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-listing__title {
  font-weight: 500;
  margin-bottom: 2rem;
  color: #303030;
}
@media (min-width: 960px) {
  .contact-listing__title {
    margin-bottom: 4rem;
  }
}

.contact-listing__row {
  row-gap: 1.6rem;
}

.contact-listing {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .contact-listing {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.contact-listing:first-of-type {
  padding-top: 0rem;
}
@media (min-width: 960px) {
  .contact-listing:first-of-type {
    padding-top: 0rem;
  }
}

.contact-banner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .contact-banner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.contact-banner__row {
  row-gap: 2rem;
}

.contact-banner__wrap {
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
  background: #eeeeee;
}
@media (min-width: 960px) {
  .contact-banner__wrap {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
  }
}

.zig-zag__box {
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 960px) {
  .zig-zag__box {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1260px) {
  .zig-zag__box {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1580px) {
  .zig-zag__box {
    padding-bottom: 90px;
  }
}

.zig-zag__text-wrapper {
  padding: 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 960px) {
  .zig-zag__text-wrapper {
    padding: 20px 30px 0 65px;
    max-width: unset;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1580px) {
  .zig-zag__text-wrapper {
    padding: 45px 40px 60px 80px;
  }
}

.zig-zag__text-wrapper--reverse {
  padding: 15px 10px 15px 10px;
}
@media (min-width: 960px) {
  .zig-zag__text-wrapper--reverse {
    padding: 20px 30px 0 40px;
  }
}
@media (min-width: 1580px) {
  .zig-zag__text-wrapper--reverse {
    padding: 45px 100px 70px 0;
  }
}

.zig-zag__title {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
  color: #303030;
}
@media (min-width: 960px) {
  .zig-zag__title {
    text-align: left;
  }
}

.zig-zag__text {
  text-align: center;
  margin-bottom: 20px;
}
.zig-zag__text p, .zig-zag__text ul {
  margin: 0 0 1rem;
}
@media (min-width: 1260px) {
  .zig-zag__text p, .zig-zag__text ul {
    margin-bottom: 2rem;
  }
}
@media (min-width: 960px) {
  .zig-zag__text {
    text-align: left;
  }
}

.zig-zag__row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 960px) {
  .zig-zag__row {
    margin-bottom: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1580px) {
  .zig-zag__row {
    margin-bottom: 80px;
  }
}
.zig-zag__row:last-child {
  margin-bottom: 0;
}

@media (min-width: 960px) {
  .zig-zag__row--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.zig-zag__figure {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 275px;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .zig-zag__figure {
    height: 400px;
  }
}
@media (min-width: 1260px) {
  .zig-zag__figure {
    height: 587px;
  }
}

.zig-zag__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 960px) {
  .zig-zag__img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.zig-zag__text > ul li, .zig-zag__text > p ul li {
  font-size: 1.5rem;
  margin: 0.4rem 0 0.4rem 1.8rem;
  position: relative;
}
.zig-zag__text > ul li::before, .zig-zag__text > p ul li::before {
  background: #000;
  border-radius: 0.2rem;
  content: "";
  height: 0.6rem;
  left: -1.6rem;
  position: absolute;
  top: 0.8rem;
  width: 0.6rem;
}

.zig-zag__text > p a {
  text-decoration: underline;
}

.partners {
  width: 100%;
  background-color: #eeeeee;
  margin-bottom: 3rem;
}

.partners__title {
  font-size: 3.2rem;
  color: #303030;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}

.partners__wrapper {
  padding: 60px 0;
}

.partners__gallery {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .partners__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .partners__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1260px) {
  .partners__gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}

.partners__gallery-item-wrapper {
  height: 158px;
  background-color: white;
  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;
}

.partners__figure {
  max-height: 119px;
  height: 100%;
  width: 75%;
  margin: 20px;
}

.partners__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.quote {
  margin: 0 auto;
  background: #303030;
}

.quote__wrapper {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.quote__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  color: #fff;
}
@media (min-width: 960px) {
  .quote__column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.quote__right-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.quote__icon {
  fill: #8EDF3D;
  width: 5.7rem;
  height: 4.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 2.8rem;
}

.quote__figure {
  border-radius: 0.8rem;
  overflow: hidden;
  max-height: 30rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .quote__figure {
    margin-right: 5.4rem;
    max-height: 44.2rem;
    width: 32.3rem;
    margin-bottom: 0;
  }
}

.quote__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.quote__text {
  margin-bottom: 2.4rem;
}
@media (min-width: 960px) {
  .quote__text {
    margin-bottom: 4.8rem;
  }
}

.quote__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
}

.quote__position {
  font-weight: 300;
}

.video-slider {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video-slider__frame {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 43px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #303030;
  aspect-ratio: 16/9;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 106.4rem;
}
@media (min-width: 960px) {
  .video-slider__frame {
    margin-bottom: 6.5rem;
  }
}
@media (min-width: 1580px) {
  .video-slider__frame {
    margin-bottom: 9rem;
  }
}

.video-slider__menu {
  width: 315px;
  margin: 50px 0 0 0;
}
@media (min-width: 1260px) {
  .video-slider__menu {
    width: 485px;
  }
}

.video-slider__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
  margin-right: -15px;
  padding: 23px 50px 23px 26px;
  color: #000;
  cursor: pointer;
  min-height: 100px;
  background-color: transparent;
  border-radius: 5px;
  opacity: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.video-slider__item--active {
  opacity: 1;
  background-color: #303030;
  color: #8EDF3D;
}
.video-slider__item--active .video-slider__icon {
  fill: #8EDF3D;
}
.video-slider__item:hover {
  background-color: #303030;
  color: #8EDF3D;
}
.video-slider__item:hover .video-slider__icon {
  fill: #8EDF3D;
}
.video-slider__item::before {
  content: none;
}

.video-slider__video {
  display: none;
  border: none;
  width: 100%;
  height: 100%;
}
.video-slider__video iframe {
  width: 100% !important;
  height: 100% !important;
}

.video-slider__video--active {
  display: block;
}

.video-slider__icon {
  left: 30px;
  position: absolute;
  pointer-events: none;
  width: 4.2rem;
  height: 4.2rem;
  fill: #303030;
}

.video-slider__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.video-slider__video-title {
  margin-left: 55px;
  pointer-events: none;
}

@media all and (max-width: 960px) {
  .video-slider__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .video-slider__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 20px;
    width: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .video-slider__item {
    padding: 10px 10px 12px 10px;
    height: auto;
    width: 33%;
    margin-right: 0px;
    margin-bottom: 0px;
    border-radius: 5px 5px 0px 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .video-slider__frame {
    margin-top: -5px;
    padding: 10px 10px;
    width: 100%;
    max-width: 106.4rem;
  }
  .video-slider__icon {
    position: relative;
    margin-left: 0;
    left: 0px;
  }
  .video-slider__video {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .video-slider__video-title {
    margin-left: 0px;
  }
}
@media all and (max-width: 1260px) {
  .video-slider {
    height: 100%;
  }
}
@media all and (max-width: 400px) {
  .video-slider__video-title {
    font-size: 12px;
  }
  .video-slider__icon {
    font-size: 20px;
  }
}
.reviews {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  background: #eeeeee;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .reviews {
    padding-top: 5.4rem;
    padding-bottom: 5.4rem;
  }
}
@media (min-width: 1260px) {
  .reviews {
    padding-top: 5.4rem;
    padding-bottom: 5.4rem;
  }
}
@media (min-width: 1920px) {
  .reviews {
    padding-top: 5.4rem;
    padding-bottom: 5.4rem;
  }
}

.reviews__slider {
  position: relative;
  width: 100%;
}

.reviews__texts {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2rem;
}
@media (min-width: 1580px) {
  .reviews__texts {
    max-width: 33rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 0;
  }
}

.reviews__title {
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 500;
  color: #303030;
}
@media (min-width: 1260px) {
  .reviews__title {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1580px) {
  .reviews__title {
    text-align: left;
  }
}

.reviews__perex {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 1580px) {
  .reviews__perex {
    max-width: 26.5rem;
    text-align: left;
    margin-bottom: 0;
  }
}

.glide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1580px) {
  .glide__arrows {
    margin: 0;
  }
}

.glide__arrow {
  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;
  width: 4.8rem;
  height: 4.8rem;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
@media (min-width: 1700px) {
  .glide__arrow {
    position: absolute;
    z-index: 1;
    top: 0;
    margin: auto 0;
    bottom: 0;
  }
}
.glide__arrow:hover, .glide__arrow:focus, .glide__arrow:active {
  background: #eeeeee;
}

.glide__arrow--right {
  right: -6.6rem;
}
.glide__arrow--right .glide__arrow-icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.glide__arrow--left {
  left: -6.6rem;
}

.glide__arrow-icon {
  height: 2.4rem;
  width: 2.4rem;
  fill: #8EDF3D;
}

.reviews__slider-slides {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-bottom: 1rem;
}

.reviews-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 0.8rem;
  padding: 2.2rem 3.5rem 1.6rem 1.6rem;
}

.reviews-item__text {
  color: #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-height: 14rem;
  margin-bottom: 0.8rem;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.reviews-item__text--expanded {
  max-height: 1000px;
}

.reviews-item__more {
  padding: 0;
  margin-bottom: 2.4rem;
  color: #8EDF3D;
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
}
.reviews-item--expanded .reviews-item__more {
  display: none;
}

.reviews-item__less {
  padding: 0;
  margin-bottom: 2.4rem;
  color: #8EDF3D;
  text-decoration: underline;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
}
.reviews-item--expanded .reviews-item__less {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reviews-item__icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: #8EDF3D;
  margin-left: 1.1rem;
}

.reviews-item__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
}

.reviews-item__type {
  font-weight: 400;
  font-size: 1.6rem;
  color: #8EDF3D;
}

.reviews-item__icon--up {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.reviews-item__position {
  font-weight: 300;
}

.time-line {
  padding-top: 20px;
  padding-bottom: 25px;
}
@media (min-width: 960px) {
  .time-line {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1260px) {
  .time-line {
    padding-top: 40px;
    padding-bottom: 8rem;
  }
}

.time-line__columns-wrapper {
  display: none;
}
@media (min-width: 975px) {
  .time-line__columns-wrapper {
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 35px;
  }
}

.time-line__column-xs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 650px;
  margin-bottom: 20px;
}
@media (min-width: 975px) {
  .time-line__column-xs {
    display: none;
    max-width: unset;
  }
}

.time-line__left-column {
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.time-line__right-column {
  -ms-flex-line-pack: end;
      align-content: flex-end;
  padding-top: 140px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.time-line__box {
  background: #eeeeee;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 58, 137, 0.2);
          box-shadow: 0px 4px 14px 0px rgba(0, 58, 137, 0.2);
  padding: 15px 15px 25px 20px;
  margin-bottom: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
@media (min-width: 975px) {
  .time-line__box {
    max-width: 420px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1260px) {
  .time-line__box {
    padding-left: 3rem;
    padding-top: 2.4rem;
    padding-bottom: 2.6rem;
    padding-right: 3.7rem;
    max-width: 550px;
    margin-bottom: 66px;
  }
}
@media (min-width: 1580px) {
  .time-line__box {
    max-width: 728px;
  }
}

@media (min-width: 975px) {
  .time-line__box-left {
    position: relative;
  }
  .time-line__box-left:before {
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 3px;
    --s:20px;
    background: radial-gradient(circle closest-side, #8EDF3D 98%, rgba(0, 0, 0, 0)) 0 0/100% var(--s), -webkit-gradient(linear, left top, left bottom, color-stop(50%, #8EDF3D), color-stop(0, rgba(0, 0, 0, 0))) 0 calc(var(--s) / 2)/100% calc(2 * var(--s));
    background: radial-gradient(circle closest-side, #8EDF3D 98%, rgba(0, 0, 0, 0)) 0 0/100% var(--s), linear-gradient(#8EDF3D 50%, rgba(0, 0, 0, 0) 0) 0 calc(var(--s) / 2)/100% calc(2 * var(--s));
    border-radius: 4px;
    position: absolute;
    right: -13px;
    top: 42px;
    bottom: 0;
    height: 6.2rem;
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}

.time-line__box-right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 975px) {
  .time-line__box-right {
    position: relative;
  }
  .time-line__box-right:before {
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 3px;
    --s:20px;
    background: radial-gradient(circle closest-side, #8EDF3D 98%, rgba(0, 0, 0, 0)) 0 0/100% var(--s), -webkit-gradient(linear, left top, left bottom, color-stop(50%, #8EDF3D), color-stop(0, rgba(0, 0, 0, 0))) 0 calc(var(--s) / 2)/100% calc(2 * var(--s));
    background: radial-gradient(circle closest-side, #8EDF3D 98%, rgba(0, 0, 0, 0)) 0 0/100% var(--s), linear-gradient(#8EDF3D 50%, rgba(0, 0, 0, 0) 0) 0 calc(var(--s) / 2)/100% calc(2 * var(--s));
    border-radius: 4px;
    position: absolute;
    left: -13px;
    top: 42px;
    bottom: 0;
    height: 6.2rem;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.time-line__text {
  position: relative;
  font-weight: 700;
  color: #8EDF3D;
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  .time-line__text {
    margin-top: -2rem;
  }
  .time-line__text::after {
    content: "";
    display: block;
    position: absolute;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 3px;
    --s:45px;
    background: radial-gradient(circle closest-side, #8EDF3D 98%, rgba(0, 0, 0, 0)) 0 0/100% var(--s), -webkit-gradient(linear, left top, left bottom, color-stop(50%, #8EDF3D), color-stop(0, rgba(0, 0, 0, 0))) 0 calc(var(--s) / 2)/100% calc(2 * var(--s));
    background: radial-gradient(circle closest-side, #8EDF3D 98%, rgba(0, 0, 0, 0)) 0 0/100% var(--s), linear-gradient(#8EDF3D 50%, rgba(0, 0, 0, 0) 0) 0 calc(var(--s) / 2)/100% calc(2 * var(--s));
    border-radius: 4px;
    position: absolute;
    left: -5px;
    right: 0;
    margin: auto;
    height: 9.2rem;
    top: -71px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media (min-width: 1260px) {
  .time-line__text {
    font-size: 2.4rem;
  }
}

.time-line__box-texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media (min-width: 975px) {
  .time-line__box-texts {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 0;
  }
}

.time-line__line {
  display: none;
}
@media (min-width: 960px) {
  .time-line__line {
    display: block;
    width: 3px;
    --s:20px;
    background: radial-gradient(circle closest-side, #8EDF3D 98%, rgba(0, 0, 0, 0)) 0 0/100% var(--s), -webkit-gradient(linear, left top, left bottom, color-stop(50%, #8EDF3D), color-stop(0, rgba(0, 0, 0, 0))) 0 calc(var(--s) / 2)/100% calc(2 * var(--s));
    background: radial-gradient(circle closest-side, #8EDF3D 98%, rgba(0, 0, 0, 0)) 0 0/100% var(--s), linear-gradient(#8EDF3D 50%, rgba(0, 0, 0, 0) 0) 0 calc(var(--s) / 2)/100% calc(2 * var(--s));
    border-radius: 4px;
    position: absolute;
    right: -1px;
    top: 62px;
    bottom: 0;
  }
}

.time-line__title {
  text-align: center;
  margin-bottom: 25px;
  color: #303030;
  font-weight: 500;
}
@media (min-width: 1260px) {
  .time-line__title {
    margin-bottom: 55px;
  }
}

.time-line__box-title {
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 975px) {
  .time-line__box-title {
    text-align: left;
  }
}

.time-line__perex {
  font-size: 1.6rem;
  text-align: center;
  color: #000;
  max-width: 667px;
  margin-bottom: 50px;
}
@media (min-width: 1260px) {
  .time-line__perex {
    font-size: 2rem;
    margin-bottom: 100px;
  }
}

.time-line__box-perex {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1.2rem;
}
@media (min-width: 975px) {
  .time-line__box-perex {
    text-align: left;
    max-width: 66.1rem;
  }
}
@media (min-width: 1260px) {
  .time-line__box-perex {
    font-size: 1.6rem;
  }
}

.time-line__box-year {
  font-size: 1.8rem;
  color: #8EDF3D;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 1260px) {
  .time-line__box-year {
    font-size: 2rem;
  }
}

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

.time-line__box-figure {
  width: 120px;
  height: 114px;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media (min-width: 975px) {
  .time-line__box-figure {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 1260px) {
  .time-line__box-figure {
    width: 163px;
    height: 118px;
  }
}
@media (min-width: 1580px) {
  .time-line__box-figure {
    width: 163px;
    height: 118px;
  }
}

.time-line__box-img {
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.8rem;
}

.timeline-item__figure-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}

.category {
  padding-top: 2.5rem;
  padding-bottom: 3.3rem;
}
@media (min-width: 960px) {
  .category {
    padding-top: 5rem;
    padding-bottom: 6.6rem;
  }
}

.category__main-title {
  text-align: center;
  color: #303030;
  margin-bottom: 3.2rem;
  font-weight: 500;
}

.category__box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.4rem 6.6rem 3rem;
  border: 2px solid #D9D9D9;
  border-radius: 0.8rem;
  height: 100%;
}

.category__figure {
  width: 19.2rem;
  height: 19.2rem;
  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;
  margin-bottom: 3.2rem;
  overflow: hidden;
  border-radius: 0.8rem;
}

.category__title {
  margin-bottom: 4.6rem;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  color: #303030;
}
.category__title:hover, .category__title:focus, .category__title:active {
  text-decoration: underline;
}

.category__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  border-radius: 0.8rem;
}

.category__figure:hover .category__img,
.category__figure:focus .category__img,
.category__figure:active .category__img {
  scale: 1.2;
}

.category__description {
  margin-bottom: 1.6rem;
  text-align: center;
}

.glide__arrow--dark {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #E5E9EF;
}

.glide__arrow--dark .glide__arrow-icon {
  width: 2.4rem;
  height: 2.4rem;
  fill: #303030;
}

.category-listing__row {
  row-gap: 1.6rem;
}

.category-listing {
  padding: 2.5rem 0;
}
@media (min-width: 960px) {
  .category-listing {
    padding: 4rem 0;
  }
}

.category__bottom {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.category__button {
  margin-top: auto;
}

.slider {
  position: relative;
}
.slider::before, .slider::after {
  pointer-events: none;
}
@media (min-width: 1580px) {
  .slider::before, .slider::after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 12vw;
    z-index: 2;
  }
}
@media (min-width: 960px) {
  .slider::before {
    left: 0;
  }
}
@media (min-width: 960px) {
  .slider::after {
    right: 0;
  }
}

.slider--image-cover {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (min-width: 960px) {
  .slider--dark::before {
    background: -webkit-gradient(linear, right top, left top, from(rgba(248, 248, 248, 0)), to(rgb(248, 248, 248)));
    background: linear-gradient(to left, rgba(248, 248, 248, 0) 0%, rgb(248, 248, 248) 100%);
  }
}
@media (min-width: 960px) {
  .slider--dark::after {
    background: -webkit-gradient(linear, left top, right top, from(rgba(248, 248, 248, 0)), to(rgb(248, 248, 248)));
    background: linear-gradient(to right, rgba(248, 248, 248, 0) 0%, rgb(248, 248, 248) 100%);
  }
}

@media (min-width: 960px) {
  .slider--light {
    position: absolute;
  }
  .slider--light::after {
    content: "";
    display: block;
    position: absolute;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, right top, color-stop(60%, rgba(255, 255, 255, 0.6068802521)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6068802521) 60%, rgba(255, 255, 255, 0) 100%);
  }
}

.slider--products .slider__nav-button::before {
  background-color: #fff;
}
.slider--products .slider__nav-button::after {
  margin: auto;
  border-color: #000;
}
.slider--products .slider__nav-button:hover::after {
  border-color: #fff;
}

.slider__container {
  overflow: hidden;
  position: relative;
  height: 100%;
}
@media (min-width: 1260px) {
  .slider--blog .slider__container {
    max-width: 1216px;
    padding: 0;
    width: calc(100% + 56px);
  }
}
@media (min-width: 1260px) {
  .slider--hall-detail .slider__container, .slider--reference .slider__container, .slider--reference-detail .slider__container, .slider--product-detail .slider__container {
    max-width: 1192px;
    padding: 0;
    width: calc(100% + 32px);
  }
}

.slider__container--visible {
  overflow: visible;
}

.slider__container--pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.slider__wrapper {
  -ms-flex-flow: nowrap;
      flex-flow: nowrap;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.slider__wrapper--linear {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.slider__container--android .slider__item,
.slider__wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.slider__nav {
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 4;
}

.slider__nav-button {
  height: 32px;
  position: absolute;
  top: -16px;
  width: 32px;
}
@media (min-width: 1260px) {
  .slider__nav-button {
    height: 64px;
    top: -32px;
    width: 64px;
  }
}
.slider__nav-button::before {
  background: #8EDF3D;
  border-radius: 0.8rem;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}
.slider__nav-button::after {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 2px;
  content: "";
  height: 8px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  z-index: 1;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .slider__nav-button, .slider__nav-button::before, .slider__nav-button::after {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .slider__nav-button:hover::before {
    background: #F0F7FF;
  }
}

.slider__nav-button--prev {
  left: 0.4rem;
}
@media (min-width: 1580px) {
  .contacts__slider .slider__nav-button--prev {
    left: -200px;
  }
}
@media (min-width: 1580px) {
  .slider__nav-button--prev {
    left: 6.4rem;
  }
}
.slider__nav-button--prev::after {
  left: 12px;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 1260px) {
  .slider__nav-button--prev::after {
    left: 3.2rem;
  }
}

.slider__nav-button--next {
  right: 0.4rem;
}
@media (min-width: 1580px) {
  .contacts__slider .slider__nav-button--next {
    right: -200px;
  }
}
@media (min-width: 1580px) {
  .slider__nav-button--next {
    right: 6.4rem;
  }
}
.slider__nav-button--next::after {
  right: 12px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
      -ms-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
@media (min-width: 1260px) {
  .slider__nav-button--next::after {
    right: 3.2rem;
  }
}

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

.slider__pagination {
  position: relative;
  z-index: 3;
}
.slider--image-cover .slider__pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
@media (min-width: 960px) {
  .slider--image-cover .slider__pagination {
    bottom: 3.2rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.slider__page {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 2rem;
  margin: 0.8rem;
  opacity: 0.4;
}

.slider__page--dark {
  color: #848484;
}

.slider__page--active {
  opacity: 1;
}

.slider__item {
  cursor: -webkit-grab;
  cursor: grab;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 1.6rem 0;
  opacity: 0.7;
  position: relative;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transition-property: -webkit-transform opacity;
  transition-property: -webkit-transform opacity;
  transition-property: transform opacity;
  transition-property: transform opacity, -webkit-transform opacity;
}
.slider--image-cover .slider__item {
  margin: 0;
  height: 100%;
}
.slider--hall-detail .slider__item, .slider--reference .slider__item, .slider--reference-detail .slider__item {
  margin: 0;
}

.slider__item--active {
  opacity: 1;
}

@media (min-width: 640px) {
  .slider__item--next {
    opacity: 1;
  }
}
@media (min-width: 640px) {
  .slider--hall-detail .slider__item--next + .slider__item, .slider--reference .slider__item--next + .slider__item, .slider--reference-detail .slider__item--next + .slider__item {
    opacity: 1;
  }
}

.slider__item--invisible {
  visibility: hidden;
}

.slider--products {
  overflow-x: hidden;
}

.slider__item-box {
  background: #fff;
  border-radius: 0.8rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 8px;
  max-width: 572px;
  padding: 20px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (min-width: 640px) {
  .slider__item-box {
    padding: 30px;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .slider__item-box {
    padding: 4rem;
  }
}
.slider--stories .slider__item-box {
  text-align: left;
}
.slider--blog .slider__item-box {
  padding: 16px;
}
@media (min-width: 640px) {
  .slider--blog .slider__item-box {
    padding: 16px;
  }
}
@media (min-width: 960px) {
  .slider--blog .slider__item-box {
    padding: 20px;
  }
}
.slider--products .slider__item-box {
  padding: 0;
}
.slider--hall-detail .slider__item-box, .slider--reference .slider__item-box, .slider--reference-detail .slider__item-box {
  padding: 0 16px;
}
.slider--product-detail .slider__item-box {
  padding: 0;
}

.slider__item-sticker-top {
  font-size: 1.8rem;
  font-weight: 600;
  left: 50%;
  position: absolute;
  top: -15px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 640px) {
  .slider__item-sticker-top {
    left: 4rem;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.slider--timeline .slider__item-figure {
  -ms-flex-flow: nowrap;
      flex-flow: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -4px;
  width: calc(100% + 8px);
}

.slider--timeline .slider__item-picture {
  padding: 0 4px;
}

.slider__item-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 2.4rem;
  text-align: center;
}
@media (min-width: 640px) {
  .slider__item-title {
    font-size: 2.2rem;
    margin: 0 0 2.4rem;
    text-align: left;
  }
}
.slider--stories .slider__item-title {
  text-align: left;
}
.slider--view .slider__item-title {
  margin: 1.6rem 0 0;
}

.slider__item-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 1.6rem;
  margin: 0 0 2.4rem;
  position: relative;
}

.slider__item-view {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (min-width: 640px) {
  .slider__item-view {
    font-size: 2.2rem;
  }
}

.slider__figure {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.slider--gradient .slider__figure::after {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
  content: "";
  height: 100%;
  left: 50%;
  max-width: 1920px;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 960px) {
  .slider--gradient .slider__figure::after {
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  }
}

.slider__picture {
  height: 100%;
}

.slider--image-cover .slider__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.benefits {
  width: 100%;
  background-color: #303030;
}

@media (min-width: 960px) {
  .benefits--about {
    z-index: 200;
    margin-top: -85px;
    position: relative;
  }
}

.benefits__wrapper {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media (min-width: 960px) {
  .benefits__wrapper {
    padding: 73px 0;
  }
}

.benefits__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.benefits__icon-wrapper {
  width: 100px;
  height: 100px;
}

.benefits__icon-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.benefits__text {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  font-weight: 400;
  width: 100%;
}

.subitems {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .subitems {
    padding-top: 4.4rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1260px) {
  .subitems {
    padding-top: 6.6rem;
  }
}
@media (min-width: 1580px) {
  .subitems {
    padding-top: 8.9rem;
  }
}

.subitems__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.subitem {
  padding: 0 1.8rem 1.3rem;
  background: #eeeeee;
  border-radius: 0.8rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.subitems__figure-wrap {
  position: relative;
  width: 19.5rem;
  height: 17.6rem;
  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;
}

.subitem__figure {
  position: absolute;
  top: -2.1rem;
  height: 19.7rem;
  width: 18.7rem;
}
.subitem--big .subitem__figure {
  position: relative;
  height: 21.6rem;
  width: 100%;
}
@media (min-width: 960px) {
  .subitem--big .subitem__figure {
    position: absolute;
    width: 30.9rem;
    top: -5.1rem;
  }
}
@media (min-width: 1580px) {
  .subitem--big .subitem__figure {
    width: 43.9rem;
    top: -2.1rem;
  }
}
.subitem--max .subitem__figure {
  position: relative;
  max-height: 48.5rem;
  width: 100%;
  height: 100%;
}
@media (min-width: 960px) {
  .subitem--max .subitem__figure {
    position: relative;
    width: 100%;
    top: 0;
  }
}
@media (min-width: 1580px) {
  .subitem--max .subitem__figure {
    width: 100%;
    top: 0;
  }
}
@media (min-width: 1920px) {
  .subitem--max .subitem__figure {
    height: 48.5rem;
  }
}
.subitem--no-list .subitem__figure {
  position: relative;
  height: 21.6rem;
  width: 100%;
}
@media (min-width: 960px) {
  .subitem--no-list .subitem__figure {
    position: absolute;
    width: 30.9rem;
    height: 30.9rem;
    top: -3.1rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media (min-width: 1260px) {
  .subitem--no-list .subitem__figure {
    position: absolute;
    width: 30.9rem;
    height: 30.9rem;
    top: -2.1rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media (min-width: 1580px) {
  .subitem--no-list .subitem__figure {
    width: 43.9rem;
    top: -2.1rem;
    height: 42.4rem;
  }
}

.subitem__figure--family {
  top: -3.1rem;
  height: 20.7rem;
  width: 20.7rem;
}

.subitem__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.subitems__left-row {
  row-gap: 1.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.subitems__row {
  row-gap: 1.6rem;
}

.subitems__right-row {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.subitem__title {
  font-weight: 500;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  max-width: 58.3rem;
  margin-bottom: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #303030;
}

.subitem__title-link:hover .subitem__title,
.subitem__title-link:focus .subitem__title,
.subitem__title-link:active .subitem__title {
  text-decoration: underline;
}

.subitem__title-icon {
  width: 1.2rem;
  height: 2rem;
  fill: #8EDF3D;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.subitem__top {
  position: relative;
  min-height: 19.7rem;
  padding-left: 2.6rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 960px) {
  .subitem__top {
    margin-bottom: auto;
  }
}

.subitem__logo-wrapper {
  position: absolute;
  right: 0;
  top: 3.2rem;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.subitem--big .subitem__logo-wrapper {
  top: 0;
  position: relative;
}
@media (min-width: 960px) {
  .subitem--big .subitem__logo-wrapper {
    position: absolute;
    top: 3.2rem;
  }
}
.subitem--max .subitem__logo-wrapper {
  position: relative;
  top: 0;
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .subitem--max .subitem__logo-wrapper {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
}
@media (min-width: 960px) and (min-width: 1580px) {
  .subitem--max .subitem__logo-wrapper {
    margin-bottom: auto;
  }
}

.subitem__list-link {
  font-size: 2rem;
  color: #000;
  text-decoration: underline;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.subitem__list-link:hover, .subitem__list-link:focus .subitem__list-link:hover {
  color: #8EDF3D;
}

.subitem__list-item {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.subitem__list-item:first-of-type {
  padding-top: 0;
}
.subitem__list-item:last-of-type {
  padding-bottom: 0;
}

.subitem-title--small {
  max-width: 26.7rem;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.subitem__title-small-link {
  color: #8EDF3D;
  font-size: 1.6rem;
  font-weight: 300;
  text-decoration: underline;
}

.subitem:hover .subitem-title--small,
.subitem:focus .subitem-title--small,
.subitem:active.subitem-title--small {
  text-decoration: underline;
}

.subitem:hover .subitem__title-small-link,
.subitem:focus .subitem__title-small-link,
.subitem:active .subitem__title-small-link {
  text-decoration: underline;
}

.subitem:hover .subitem__img,
.subitem:focus .subitem__img,
.subitem:active .subitem__img {
  scale: 1.1;
}

.subitem--big {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 0;
  padding-right: 3.2rem;
  padding-left: 3.2rem;
  padding-bottom: 1.3rem;
}
@media (min-width: 1580px) {
  .subitem--big {
    min-height: 51rem;
  }
}
.subitem--big:hover, .subitem--big:focus, .subitem--big:active {
  background: #cfeda6;
}

.subitem--big:hover .subitem__img,
.subitem--big:focus .subitem__img,
.subitem--big:active .subitem__img {
  scale: 1;
}

.subitem__logo-wrapper {
  width: 18.4rem;
  height: 4.4rem;
}
.subitem--max .subitem__logo-wrapper {
  width: 28.3rem;
  height: 6.5rem;
}

.subitem--max .subitem__logo-figure {
  width: 100%;
}

.subitem__logo {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.subitem__logo-wrapper:hover .subitem__logo,
.subitem__logo-wrapper:focus .subitem__logo,
.subitem__logo-wrapper:active .subitem__logo {
  scale: 1.1;
}

.subitems__top-title {
  margin-bottom: 2.2rem;
  text-align: left;
  color: #303030;
  font-weight: 500;
}

.subitem--max {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 1.2rem 0;
}
@media (min-width: 960px) {
  .subitem--max {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.subitem__left-column {
  width: 100%;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.6rem;
}
@media (min-width: 960px) {
  .subitem__left-column {
    width: 40%;
    padding-top: 2.5rem;
    padding-bottom: 3.2rem;
    padding-left: 4.3rem;
    height: 100%;
    margin-bottom: 0;
  }
}

.subitem__right-column {
  width: 100%;
}
@media (min-width: 960px) {
  .subitem__right-column {
    width: 60%;
  }
}

.subitem__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.pagination__wrap {
  padding: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 960px) {
  .pagination__wrap {
    padding: 4rem;
  }
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin: 0 1rem;
}

.pagination__back-arrow {
  width: 0.6rem;
  height: 2rem;
}

.pagination__link {
  color: #8EDF3D;
  font-size: 2rem;
  font-weight: 700;
  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;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 0.8rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.pagination__link:focus, .pagination__link:hover, .pagination__link:active {
  background: #F0F7FF;
  color: #8EDF3D;
}

.pagination__item--back {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pagination__item--active {
  background: #eeeeee;
  color: #8EDF3D;
  pointer-events: none;
  width: 4.8rem;
  height: 4.8rem;
  font-size: 2rem;
  font-weight: 700;
  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;
  border-radius: 0.8rem;
}

.pagination__button {
  width: 4.8rem;
  height: 4.8rem;
  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;
  border-radius: 0.8rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.pagination__button:focus, .pagination__button:hover, .pagination__button:active {
  background: #eeeeee;
}

.pagination__button-icon {
  fill: #8EDF3D;
  width: 2rem;
  height: 2rem;
}
.pagination__button--left .pagination__button-icon {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.pagination__button--right .pagination__button-icon {
  -webkit-transform: rotate(275deg);
      -ms-transform: rotate(275deg);
          transform: rotate(275deg);
}

.gallery-row {
  width: 100%;
  background-color: #eeeeee;
  margin-bottom: 3.3rem;
}

.gallery-row--non-bg {
  background: none;
}

.gallery-row__title {
  font-size: 3.2rem;
  color: #003A89;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}

.gallery-row__wrapper {
  padding: 60px 0;
}

.gallery-row__gallery {
  row-gap: 1.6rem;
}

.gallery-row__gallery-item-wrapper {
  max-height: 166px;
  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;
  height: 166px;
}

.gallery-row__figure {
  height: 100%;
  width: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
}

.gallery-row__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.categories-right {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

.categories-right__title {
  color: #8EDF3D;
  font-weight: 500;
}
.categories__item-link {
  padding: 1.2rem 0;
  display: block;
  font-weight: 600;
  font-size: 2rem;
  color: #8EDF3D;
}
.categories__item-link:hover, .categories__item-link:focus, .categories__item-link:active {
  text-decoration: underline;
}

/* Cookie css settings */
/* Cookie modal */
.cookie-modal {
  padding: 15px;
  z-index: 9999999999;
  pointer-events: none !important;
}

/* Cookie modal | Container */
.cookie-modal__container {
  max-width: 500px;
  max-height: 100%;
  overflow-y: auto;
  pointer-events: all;
  position: relative;
  z-index: 9999999999;
}

/* Cookie box */
.cookie-box {
  background: white;
  display: block;
  padding: 30px;
  z-index: 9999999999;
}
@media screen and (max-width: 992px) {
  .cookie-box {
    padding: 15px;
  }
}
@media screen and (max-width: 500px) {
  .cookie-box {
    padding: 8px;
  }
}

.cookie-box--modal {
  max-width: 520px;
  margin: auto;
  pointer-events: all;
}

.cookie-box--bar {
  bottom: 0;
  position: fixed;
  left: 0;
  right: 0;
}

.cookie-box--hidden .cookie-box--bar {
  display: none;
}
.cookie-box--hidden .cookie-overlay {
  display: none;
}

.click-through {
  pointer-events: none;
}

/* Cookie overlay */
.cookie-overlay {
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  position: fixed;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999999998;
  opacity: 1;
}

/* Cookie box | Settings */
.cookie-box__settings {
  margin-bottom: 20px;
}

.cookie-box__settings-top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-right: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

.cookie-box__settings-label {
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
}

/* Cookie box | Content */
.cookie-box__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  text-align: left;
}
@media screen and (max-width: 1420px) {
  .cookie-box__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cookie-box--modal .cookie-box__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Cookie box | Title */
.cookie-box__title {
  font-weight: 700;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 992px) {
  .cookie-box__title {
    font-size: 19px;
  }
}
.cookie-box__title:not(:first-child) {
  margin-top: 35px;
}

/* Cookie box | Text */
.cookie-box__text {
  margin-right: 40px;
  overflow: auto;
  -ms-overflow-style: none;
  /* width */
  /* Track */
  /* Handle */
  /* Track piece */
}
@media screen and (max-width: 1420px) {
  .cookie-box__text {
    margin-right: 0px;
  }
}
@media screen and (max-width: 992px) {
  .cookie-box__text {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  .cookie-box--bar .cookie-box__text {
    max-height: 130px;
  }
}
.cookie-box--modal .cookie-box__text {
  margin-right: 0px;
  max-height: 450px;
}
@media screen and (max-width: 992px) {
  .cookie-box--modal .cookie-box__text {
    max-height: 200px;
  }
}
.cookie-box__text::-webkit-scrollbar {
  background: none;
  border: none;
  width: 7px;
}
.cookie-box__text::-webkit-scrollbar-track {
  border: none;
}
.cookie-box__text::-webkit-scrollbar-thumb {
  background: #c2c2c2;
}
.cookie-box__text::-webkit-scrollbar-corner {
  border: none;
}
.cookie-box__text::-webkit-scrollbar-track-piece {
  border-left: none;
}

/* Cookie box | Lead */
.cookie-box__lead {
  font-size: 14px;
  /* Cookie box | Lead - Anchor underline */
}
@media screen and (max-width: 992px) {
  .cookie-box__lead {
    font-size: 12px;
  }
}
.cookie-box__lead > a, .cookie-box__lead > p a {
  text-decoration: underline;
}

/* Cookie box | Buttons */
.cookie-box__buttons {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1420px) {
  .cookie-box__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 10px;
  }
}
.cookie-box--modal .cookie-box__buttons {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

.cookie-box__button, .cookie-box__button.btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  min-height: 52px;
  font-size: 14px;
  height: auto;
  line-height: 1.2;
  padding: 4px 10px 4px 10px;
  white-space: nowrap;
}
.cookie-box__button:not(:last-of-type), .cookie-box__button.btn:not(:last-of-type) {
  margin-right: 30px;
}
@media screen and (max-width: 992px) {
  .cookie-box__button:not(:last-of-type), .cookie-box__button.btn:not(:last-of-type) {
    margin-right: 12px;
  }
}
@media screen and (max-width: 992px) {
  .cookie-box__button, .cookie-box__button.btn {
    font-size: 12px;
    min-height: 34px;
  }
}
@media screen and (max-width: 500px) {
  .cookie-box__button, .cookie-box__button.btn {
    font-size: 11px;
    min-height: 34px;
    padding: 4px 8px 4px 8px;
  }
}

.cookie-box__mobile-item {
  display: none;
}
@media all and (max-width: 992px) {
  .cookie-box__mobile-item {
    display: block;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.cookie-box__desktop-item {
  display: block;
}
@media all and (max-width: 992px) {
  .cookie-box__desktop-item {
    display: none;
  }
}

.cookie-box__toggle {
  display: block;
  background: #e8e8e8;
  border-radius: 20px;
  cursor: pointer;
  height: 24px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 50px;
}

.cookie-box__toggle-mark {
  background: #bbbbbb;
  border-radius: 50%;
  display: block;
  height: 20px;
  position: absolute;
  left: 3px;
  top: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 20px;
}

.cookie-box__checkbox {
  display: none;
}
.cookie-box__checkbox:checked + .cookie-box__toggle-mark {
  background: #8EDF3D;
  left: 27px;
}

.cookie-box__checkbox--disabled:checked + .cookie-box__toggle-mark {
  background: #c1ed95;
  cursor: not-allowed;
}

.cookie-box__manage {
  text-decoration: underline;
  font-size: 14px;
}
.cookie-box--modal .cookie-box__manage {
  margin-top: 8px;
}

/* Cookie box | Content | Bottom */
.cookie-box__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}
.cookie-box__bottom a {
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .cookie-box__bottom {
    font-size: 12px;
  }
}

/* Modules | Blog */
/* Article */
.article {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 960px) {
  .article {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.article--small {
  margin: auto;
  max-width: 700px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1580px) {
  .article--small {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.article--large {
  max-width: 945px;
  margin: 0 0 55px 0;
}

/* Article | Spec */
.article__spec {
  margin-bottom: 15px;
}

/* Article | Figure */
.article__figure {
  max-width: 340px;
  width: 100%;
  height: 344px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
  padding: 18px 25px;
}
@media (min-width: 1580px) {
  .article__figure {
    width: 344px;
    height: 344px;
  }
}
.article__figure::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(60%, transparent));
  background: linear-gradient(to top, #000 0%, transparent 60%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.article--small .article__figure {
  height: 255px;
}
@media (min-width: 1580px) {
  .article--small .article__figure {
    width: 255px;
    height: 255px;
  }
}

/* Article | Author */
.article__author {
  z-index: 2;
}

/* Article | Img */
.article__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Article | Title */
.article__title {
  font-weight: bold;
  margin: 0 0 10px 0;
}
@media (min-width: 1260px) {
  .article__title {
    font-size: 2.5rem;
  }
}

/* Article | Perex */
.article__perex {
  font-size: 1.5rem;
  margin: 0 0 15px 0;
}

/* Article | Link */
.article__link {
  text-decoration: underline;
}
.article__title .article__link {
  text-decoration: none;
  color: #303030;
}
.article__title .article__link:hover, .article__title .article__link:focus {
  color: #8EDF3D;
}

.article__link--small {
  font-size: 1.5rem;
}

/* Article | Text */
.article__text {
  padding: 14px 0px;
  max-width: 340px;
}
@media (min-width: 960px) {
  .article--large .article__text {
    padding: 14px 34px;
    max-width: none;
  }
}
@media (min-width: 1580px) {
  .article--small .article__text {
    padding: 14px 34px;
    max-width: none;
  }
}

/* Spec */
.spec {
  margin: -0.2rem -0.8rem;
}

.spec--header-top {
  margin: -0.2rem -0.8rem -0.2rem -3.3rem;
}

/* Spec | Item */
.spec__item {
  color: #cfeda6;
  font-size: 1.5rem;
  margin: 0.2rem 0.8rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.spec__item--date {
  font-size: 1.3rem;
  padding: 0.6rem 1.4rem;
  color: #fff;
  font-weight: 700;
  background: #8EDF3D;
}

.spec__title--hide {
  display: none;
}

/* Modules | Eshop */
.basket-nav {
  border: 0.1rem solid #e9e9e9;
  overflow: hidden;
  min-height: 6rem;
  margin-bottom: 3.5rem;
}

.basket-nav__item {
  padding: 1.5rem;
  position: relative;
  height: 100%;
  color: #000;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  .basket-nav__item {
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) {
  .basket-nav__item::before, .basket-nav__item::after {
    content: "";
    display: block;
    position: absolute;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-bottom: 3.3rem solid rgba(0, 0, 0, 0);
    border-left: 1.5rem solid #fff;
    border-top: 3.3rem solid rgba(0, 0, 0, 0);
    right: 0;
    -webkit-transform: translate(100%);
        -ms-transform: translate(100%);
            transform: translate(100%);
    z-index: 10;
  }
}
.basket-nav__item::before {
  right: -0.1rem;
  border-left-color: #e9e9e9;
}

.basket-nav__link {
  color: #000;
}
.basket-nav__link:hover .basket-nav__item, .basket-nav__link:focus .basket-nav__item {
  background: #f8f8f8;
}
.basket-nav__link:hover .basket-nav__item::after, .basket-nav__link:focus .basket-nav__item::after {
  border-left-color: #f8f8f8;
}

.basket-nav__item--selected {
  background: #f8f8f8;
}
.basket-nav__item--selected::after {
  border-left-color: #f8f8f8;
}

.basket-nav__desc {
  counter-increment: step;
  text-align: center;
}
.basket-nav__desc::before {
  content: "";
  display: block;
  position: static;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 0.8rem 0 0;
  background: no-repeat 0/cover;
}

.basket-nav__desc--first::before {
  width: 3.6rem;
  height: 3.3rem;
  background-image: url("/img/order/steps/1.svg");
}

.basket-nav__desc--second::before {
  width: 2.3rem;
  height: 3.3rem;
  background-image: url("/img/order/steps/2.svg");
}

.basket-nav__desc--last::before {
  width: 3.3rem;
  height: 3.3rem;
  background-image: url("/img/order/steps/3.svg");
}

/* Plugins */
.not-selectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.carousel *, .carousel *:before, .carousel *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.carousel__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  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;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  -webkit-box-shadow: var(--carousel-button-shadow, none);
          box-shadow: var(--carousel-button-shadow, none);
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  -webkit-filter: var(--carousel-button-svg-filter, none);
          filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  -ms-touch-action: none;
      touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4)) ;
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.fancybox__container :focus {
  outline: thin dotted;
}

body.is-using-mouse .fancybox__container :focus {
  outline: none;
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px ;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  outline: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px ;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 20;
}

.fancybox__caption {
  -ms-flex-item-align: center;
      align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -36px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  -webkit-animation: fancybox-rotate 2s linear infinite;
          animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
          animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

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

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  -webkit-animation: 0.15s ease backwards fancybox-fadeIn;
          animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  -webkit-animation: 0.15s ease both fancybox-fadeOut;
          animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  -webkit-animation: 0.15s ease both fancybox-fadeIn;
          animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  -webkit-animation: 0.1s ease both fancybox-fadeOut;
          animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  -webkit-animation: 0.2s ease both fancybox-zoomInUp;
          animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  -webkit-animation: 0.15s ease both fancybox-zoomOutDown;
          animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  -webkit-animation: 0.15s ease both fancybox-throwOutUp;
          animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  -webkit-animation: 0.15s ease both fancybox-throwOutDown;
          animation: 0.15s ease both fancybox-throwOutDown;
}

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

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__image {
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  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;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(8.1%, rgba(0, 0, 0, 0.006)), color-stop(15.5%, rgba(0, 0, 0, 0.021)), color-stop(22.5%, rgba(0, 0, 0, 0.046)), color-stop(29%, rgba(0, 0, 0, 0.077)), color-stop(35.3%, rgba(0, 0, 0, 0.114)), color-stop(41.2%, rgba(0, 0, 0, 0.155)), color-stop(47.1%, rgba(0, 0, 0, 0.198)), color-stop(52.9%, rgba(0, 0, 0, 0.242)), color-stop(58.8%, rgba(0, 0, 0, 0.285)), color-stop(64.7%, rgba(0, 0, 0, 0.326)), color-stop(71%, rgba(0, 0, 0, 0.363)), color-stop(77.5%, rgba(0, 0, 0, 0.394)), color-stop(84.5%, rgba(0, 0, 0, 0.419)), color-stop(91.9%, rgba(0, 0, 0, 0.434)), to(rgba(0, 0, 0, 0.44)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  -ms-touch-action: none;
      touch-action: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::-ms-backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

/* Incredible Select - version 2.2.0 */
/* Incredible select */
.incredible-select {
  width: 100%;
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 15px;
  text-transform: none;
  color: #000;
}

select.incredible-select {
  display: none;
}

/* Incredible select | Bar */
.incredible-select__bar {
  padding: 4px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #848484;
}
.incredible-select__bar .incredible-select__close-btn {
  font-size: 13px;
  padding: 4px 8px;
}

/* Incredible select | Selected option */
.incredible-select__selected-option {
  padding: 13px 25px 13px 15px;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  border: 1px solid #e9e9e9;
  min-height: 50px;
}
.incredible-select__selected-option::after {
  position: absolute;
  right: 15px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
  display: block;
  top: 18px;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* Incredible select | Options */
.incredible-select__options {
  position: absolute;
  background: white;
  top: calc(100% - 1px);
  display: none;
  left: 0;
  right: 0;
  border: 1px solid #e9e9e9;
  z-index: 900;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}

/* Incredible select | Option group */
.incredible-select__label {
  padding: 13px 0 13px 15px;
  color: #000;
  font-weight: bold;
  margin-left: -10px;
}

.incredible-select__optgroup .incredible-select__item {
  padding-left: 20px;
}
.incredible-select__optgroup:not(:last-of-type) {
  border-bottom: 1px solid #e9e9e9;
}

/* Incredible select | Item */
.incredible-select__item {
  width: 100%;
  padding: 13px 15px;
  color: #000;
}
.incredible-select__item.is-selected {
  font-weight: 700;
}
.incredible-select__item:not(:last-of-type) {
  border-bottom: 1px solid #e9e9e9;
}
.incredible-select__item:hover {
  cursor: pointer;
}

/* Incredible select | Item */
.incredible-select__placeholder {
  font-size: 1.4rem;
  color: #000;
}
@media (min-width: 1260px) {
  .incredible-select__placeholder {
    font-size: 1.7rem;
  }
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before, .flatpickr-calendar.arrowRight:before, .flatpickr-calendar.rightMost:after, .flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before, .flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month { /*
/*rtl:begin:ignore*/
  left: 0;
} /*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month { /*
/*rtl:begin:ignore*/
  right: 0;
} /*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input, .numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button, .numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}

.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
