/*!***********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./node_modules/toastify-js/src/toastify.css ***!
  \***********************************************************************************************************************************************************************************************/
/*!
 * Toastify js 1.12.0
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */

.toastify {
    padding: 12px 20px;
    color: #ffffff;
    display: inline-block;
    box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
    background: linear-gradient(135deg, #73a5ff, #5477f5);
    position: fixed;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    max-width: calc(50% - 20px);
    z-index: 2147483647;
}

.toastify.on {
    opacity: 1;
}

.toast-close {
    background: transparent;
    border: 0;
    color: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    opacity: 0.4;
    padding: 0 5px;
}

.toastify-right {
    right: 15px;
}

.toastify-left {
    left: 15px;
}

.toastify-top {
    top: -150px;
}

.toastify-bottom {
    bottom: -150px;
}

.toastify-rounded {
    border-radius: 25px;
}

.toastify-avatar {
    width: 1.5em;
    height: 1.5em;
    margin: -7px 5px;
    border-radius: 2px;
}

.toastify-center {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
    max-width: -moz-fit-content;
}

@media only screen and (max-width: 360px) {
    .toastify-right, .toastify-left {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }
}

/*!************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./node_modules/swiper/swiper.css ***!
  \************************************************************************************************************************************************************************************/
/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */

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

/* Slide styles start */

/* 3D Shadows */

.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Slide styles end */

/*!*********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/theme/index.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************/
@property --sck-done {
  syntax: "<number>";
  initial-value: 0;
  inherits: true;
}
@property --sck-index {
  syntax: "<number>";
  initial-value: 0;
  inherits: true;
}
@property --sck-count {
  syntax: "<number>";
  initial-value: 0;
  inherits: true;
}
[data-sck-index=""] > *:nth-child(1) {
  --sck-index: 0;
}
[data-sck-index=""] > *:nth-child(2) {
  --sck-index: 1;
}
[data-sck-index=""] > *:nth-child(3) {
  --sck-index: 2;
}
[data-sck-index=""] > *:nth-child(4) {
  --sck-index: 3;
}
[data-sck-index=""] > *:nth-child(5) {
  --sck-index: 4;
}
[data-sck-index=""] > *:nth-child(6) {
  --sck-index: 5;
}
[data-sck-index=""] > *:nth-child(7) {
  --sck-index: 6;
}
[data-sck-index=""] > *:nth-child(8) {
  --sck-index: 7;
}
[data-sck-index=""] > *:nth-child(9) {
  --sck-index: 8;
}
[data-sck-index=""] > *:nth-child(10) {
  --sck-index: 9;
}
[data-sck-index=""] > *:nth-child(11) {
  --sck-index: 10;
}
[data-sck-index=""] > *:nth-child(12) {
  --sck-index: 11;
}
[data-sck-index=""] > *:nth-child(13) {
  --sck-index: 12;
}
[data-sck-index=""] > *:nth-child(14) {
  --sck-index: 13;
}
[data-sck-index=""] > *:nth-child(15) {
  --sck-index: 14;
}
[data-sck-index=""] > *:nth-child(16) {
  --sck-index: 15;
}
[data-sck-index=""] > *:nth-child(17) {
  --sck-index: 16;
}
[data-sck-index=""] > *:nth-child(18) {
  --sck-index: 17;
}
[data-sck-index=""] > *:nth-child(19) {
  --sck-index: 18;
}
[data-sck-index=""] > *:nth-child(20) {
  --sck-index: 19;
}
[data-sck-index=""] > *:nth-child(21) {
  --sck-index: 20;
}
[data-sck-index=""] > *:nth-child(22) {
  --sck-index: 21;
}
[data-sck-index=""] > *:nth-child(23) {
  --sck-index: 22;
}
[data-sck-index=""] > *:nth-child(24) {
  --sck-index: 23;
}
[data-sck-index=""] > *:nth-child(25) {
  --sck-index: 24;
}
[data-sck-index=""] > *:nth-child(26) {
  --sck-index: 25;
}
[data-sck-index=""] > *:nth-child(27) {
  --sck-index: 26;
}
[data-sck-index=""] > *:nth-child(28) {
  --sck-index: 27;
}
[data-sck-index=""] > *:nth-child(29) {
  --sck-index: 28;
}
[data-sck-index=""] > *:nth-child(30) {
  --sck-index: 29;
}
[data-sck-index=""] > *:nth-child(31) {
  --sck-index: 30;
}
[data-sck-index=""] > *:nth-child(32) {
  --sck-index: 31;
}
[data-sck-index=""] > *:nth-child(33) {
  --sck-index: 32;
}
[data-sck-index=""] > *:nth-child(34) {
  --sck-index: 33;
}
[data-sck-index=""] > *:nth-child(35) {
  --sck-index: 34;
}
[data-sck-index=""] > *:nth-child(36) {
  --sck-index: 35;
}
[data-sck-index=""] > *:nth-child(37) {
  --sck-index: 36;
}
[data-sck-index=""] > *:nth-child(38) {
  --sck-index: 37;
}
[data-sck-index=""] > *:nth-child(39) {
  --sck-index: 38;
}
[data-sck-index=""] > *:nth-child(40) {
  --sck-index: 39;
}
[data-sck-index=""] > *:nth-child(41) {
  --sck-index: 40;
}
[data-sck-index=""] > *:nth-child(42) {
  --sck-index: 41;
}
[data-sck-index=""] > *:nth-child(43) {
  --sck-index: 42;
}
[data-sck-index=""] > *:nth-child(44) {
  --sck-index: 43;
}
[data-sck-index=""] > *:nth-child(45) {
  --sck-index: 44;
}
[data-sck-index=""] > *:nth-child(46) {
  --sck-index: 45;
}
[data-sck-index=""] > *:nth-child(47) {
  --sck-index: 46;
}
[data-sck-index=""] > *:nth-child(48) {
  --sck-index: 47;
}
[data-sck-index=""] > *:nth-child(49) {
  --sck-index: 48;
}
[data-sck-index=""] > *:nth-child(50) {
  --sck-index: 49;
}
[data-sck-index=""] > *:nth-child(51) {
  --sck-index: 50;
}
[data-sck-index=""] > *:nth-child(52) {
  --sck-index: 51;
}
[data-sck-index=""] > *:nth-child(53) {
  --sck-index: 52;
}
[data-sck-index=""] > *:nth-child(54) {
  --sck-index: 53;
}
[data-sck-index=""] > *:nth-child(55) {
  --sck-index: 54;
}
[data-sck-index=""] > *:nth-child(56) {
  --sck-index: 55;
}
[data-sck-index=""] > *:nth-child(57) {
  --sck-index: 56;
}
[data-sck-index=""] > *:nth-child(58) {
  --sck-index: 57;
}
[data-sck-index=""] > *:nth-child(59) {
  --sck-index: 58;
}
[data-sck-index=""] > *:nth-child(60) {
  --sck-index: 59;
}
[data-sck-index=""] > *:nth-child(61) {
  --sck-index: 60;
}
[data-sck-index=""] > *:nth-child(62) {
  --sck-index: 61;
}
[data-sck-index=""] > *:nth-child(63) {
  --sck-index: 62;
}
[data-sck-index=""] > *:nth-child(64) {
  --sck-index: 63;
}
[data-sck-index=""] > *:nth-child(65) {
  --sck-index: 64;
}
[data-sck-index=""] > *:nth-child(66) {
  --sck-index: 65;
}
[data-sck-index=""] > *:nth-child(67) {
  --sck-index: 66;
}
[data-sck-index=""] > *:nth-child(68) {
  --sck-index: 67;
}
[data-sck-index=""] > *:nth-child(69) {
  --sck-index: 68;
}
[data-sck-index=""] > *:nth-child(70) {
  --sck-index: 69;
}
[data-sck-index=""] > *:nth-child(71) {
  --sck-index: 70;
}
[data-sck-index=""] > *:nth-child(72) {
  --sck-index: 71;
}
[data-sck-index=""] > *:nth-child(73) {
  --sck-index: 72;
}
[data-sck-index=""] > *:nth-child(74) {
  --sck-index: 73;
}
[data-sck-index=""] > *:nth-child(75) {
  --sck-index: 74;
}
[data-sck-index=""] > *:nth-child(76) {
  --sck-index: 75;
}
[data-sck-index=""] > *:nth-child(77) {
  --sck-index: 76;
}
[data-sck-index=""] > *:nth-child(78) {
  --sck-index: 77;
}
[data-sck-index=""] > *:nth-child(79) {
  --sck-index: 78;
}
[data-sck-index=""] > *:nth-child(80) {
  --sck-index: 79;
}
[data-sck-index=""] > *:nth-child(81) {
  --sck-index: 80;
}
[data-sck-index=""] > *:nth-child(82) {
  --sck-index: 81;
}
[data-sck-index=""] > *:nth-child(83) {
  --sck-index: 82;
}
[data-sck-index=""] > *:nth-child(84) {
  --sck-index: 83;
}
[data-sck-index=""] > *:nth-child(85) {
  --sck-index: 84;
}
[data-sck-index=""] > *:nth-child(86) {
  --sck-index: 85;
}
[data-sck-index=""] > *:nth-child(87) {
  --sck-index: 86;
}
[data-sck-index=""] > *:nth-child(88) {
  --sck-index: 87;
}
[data-sck-index=""] > *:nth-child(89) {
  --sck-index: 88;
}
[data-sck-index=""] > *:nth-child(90) {
  --sck-index: 89;
}
[data-sck-index=""] > *:nth-child(91) {
  --sck-index: 90;
}
[data-sck-index=""] > *:nth-child(92) {
  --sck-index: 91;
}
[data-sck-index=""] > *:nth-child(93) {
  --sck-index: 92;
}
[data-sck-index=""] > *:nth-child(94) {
  --sck-index: 93;
}
[data-sck-index=""] > *:nth-child(95) {
  --sck-index: 94;
}
[data-sck-index=""] > *:nth-child(96) {
  --sck-index: 95;
}
[data-sck-index=""] > *:nth-child(97) {
  --sck-index: 96;
}
[data-sck-index=""] > *:nth-child(98) {
  --sck-index: 97;
}
[data-sck-index=""] > *:nth-child(99) {
  --sck-index: 98;
}
@property --100vw {
  syntax: "<length>";
  initial-value: 0px;
  inherits: false;
}
@property --100vh {
  syntax: "<length>";
  initial-value: 0px;
  inherits: false;
}
@property --wnd-w {
  syntax: "<number>";
  initial-value: 0;
  inherits: true;
}
@property --wnd-h {
  syntax: "<number>";
  initial-value: 0;
  inherits: true;
}
:root {
  --100vw: 100vw;
  --100vh: 100vh;
  --wnd-w: calc( 10000 * tan(atan2(var(--100vw), 10000px)) );
  --wnd-w-px: 100vw;
  --wnd-h: calc( 10000 * tan(atan2(var(--100vh), 10000px)) );
  --wnd-h-px: 100vh;
  --wnd-mx:0;
  --wnd-mx-px:0px;
  --wnd-my:0;
  --wnd-my-px:0px;
}
/*
$blue:    #0d6efd !default;
$indigo:  #6610f2 !default;
$purple:  #6f42c1 !default;
$pink:    #d63384 !default;
$red:     #dc3545 !default;
$orange:  #fd7e14 !default;
$yellow:  #ffc107 !default;
$green:   #198754 !default;
$teal:    #20c997 !default;
$cyan:    #0dcaf0 !default;
*/
.richtext {
  line-height: 1.5;
  font-family: Roboto, serif;
}
.richtext.column_2 {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.richtext.column_2 p {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}
.richtext.ni p {
  text-indent: 0;
}
.richtext p + p,
.richtext p + ul,
.richtext p + ol,
.richtext p + img,
.richtext ul + p,
.richtext ul + ul,
.richtext ul + ol,
.richtext ul + img,
.richtext ol + p,
.richtext ol + ul,
.richtext ol + ol,
.richtext ol + img,
.richtext img + p,
.richtext img + ul,
.richtext img + ol,
.richtext img + img {
  margin-top: 12px;
}
.richtext ul,
.richtext ol {
  padding-left: 40px;
}
.richtext ul li + li,
.richtext ol li + li {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .richtext ul,
  .richtext ol {
    padding-left: 20px;
  }
}
.richtext img {
  max-width: 100%;
}
.richtext a {
  color: #461220;
  transition: 0.25s;
}
.richtext a:hover {
  text-decoration: underline;
}
.richtext h1,
.richtext .h1,
.richtext h2,
.richtext .h2,
.richtext h3,
.richtext .h3,
.richtext h4,
.richtext .h4 {
  font-weight: 400;
  font-family: Roboto, serif;
}
.richtext {
  /*h1,
  .h1,
  h2,
  .h2 {
  	text-transform: uppercase;
  }*/
}
.richtext h1,
.richtext .h1 {
  font-size: 150%;
  margin-bottom: 40px;
  padding-bottom: 20px;
}
.richtext h2,
.richtext .h2 {
  margin-bottom: 30px;
  margin-top: 40px;
}
.richtext h3,
.richtext .h3 {
  margin-bottom: 20px;
  margin-top: 30px;
}
.richtext h4,
.richtext .h4 {
  margin-bottom: 10px;
  margin-top: 20px;
}
.richtext .mt_h1 {
  margin-top: 40px;
}
.richtext .mt_h2 {
  margin-top: 30px;
}
.richtext .mt_h3 {
  margin-top: 20px;
}
.richtext .mt_h4 {
  margin-top: 10px;
}
.richtext .mb_h1 {
  margin-bottom: 40px;
}
.richtext .mb_h2 {
  margin-bottom: 30px;
}
.richtext .mb_h3 {
  margin-bottom: 20px;
}
.richtext .mb_h4 {
  margin-bottom: 10px;
}
.richtext .center {
  text-align: center;
}
.richtext > *:first-child {
  margin-top: 0;
}
/*
@function scrollProgress() {



}



*/
img[sck-media-parallax],
video[sck-media-parallax] {
  --speed: -0.5;
  --pos-y: 0.5;
  --object-position-x: 50%;
  will-change: object-position;
  -o-object-fit: cover;
     object-fit: cover;
}
img[sck-media-parallax].sck_view_active,
video[sck-media-parallax].sck_view_active {
  -o-object-position: var(--object-position-x) calc(100% * var(--pos-y) + var(--speed) * 50% + var(--speed) * 100% * (var(--wnd-st) - var(--top) - var(--height)) / (var(--wnd-h) + var(--height)));
     object-position: var(--object-position-x) calc(100% * var(--pos-y) + var(--speed) * 50% + var(--speed) * 100% * (var(--wnd-st) - var(--top) - var(--height)) / (var(--wnd-h) + var(--height)));
}
img[sck-media-parallax].sck_view_active.parallax-vertical,
video[sck-media-parallax].sck_view_active.parallax-vertical {
  -o-object-position: calc(100% * var(--pos-y) + var(--speed) * 50% + var(--speed) * 100% * (var(--wnd-st) - var(--top) - var(--height)) / (var(--wnd-h) + var(--height))) var(--object-position-x);
     object-position: calc(100% * var(--pos-y) + var(--speed) * 50% + var(--speed) * 100% * (var(--wnd-st) - var(--top) - var(--height)) / (var(--wnd-h) + var(--height))) var(--object-position-x);
}
img[sck-media-parallax].sck_view_active.parallax-both,
video[sck-media-parallax].sck_view_active.parallax-both {
  --prlx: calc(calc( 100% * var(--pos-y) ) + (var(--speed) * 50%) + (var(--speed) * 100% * (var(--wnd-st) - var(--top) - var(--height))) / (var(--wnd-h) + var(--height)));
  -o-object-position: var(--prlx) var(--prlx);
     object-position: var(--prlx) var(--prlx);
}
*[sck-background-parallax] {
  --speed: -0.5;
  --pos-y: 0.5;
  --background-position-x: 50%;
  will-change: object-position;
  background-size: cover;
}
*[sck-background-parallax].sck_view_active {
  background-position: var(--background-position-x) calc(100% * var(--pos-y) + var(--speed) * 50% + var(--speed) * 100% * (var(--wnd-st) - var(--top) - var(--height)) / (var(--wnd-h) + var(--height)));
}
*[sck-background-parallax].sck_view_active.parallax-vertical {
  background-position: calc(100% * var(--pos-y) + var(--speed) * 50% + var(--speed) * 100% * (var(--wnd-st) - var(--top) - var(--height)) / (var(--wnd-h) + var(--height))) var(--background-position-x);
}
*[sck-background-parallax].sck_view_active.parallax-both {
  --prlx: calc(calc( 100% * var(--pos-y) ) + (var(--speed) * 50%) + (var(--speed) * 100% * (var(--wnd-st) - var(--top) - var(--height))) / (var(--wnd-h) + var(--height)));
  background-position: var(--prlx) var(--prlx);
}
[sck-object-parallax] {
  --speed: -0.5;
  --pos-y: 0;
  --object-transform-x: 0;
  will-change: transform;
}
[sck-object-parallax].sck_view_active {
  transform: translate3D(var(--object-transform-x), calc(100% * var(--pos-y) + var(--speed) * 50% + var(--speed) * 100% * (var(--wnd-st) - var(--top) - var(--height)) / (var(--wnd-h) + var(--height))), 0);
}
[sck-object-parallax] {
  /*&.parallax-vertical {
  	transform:translate3D( calc(calc( 100% * var(--pos-y) ) + (var(--speed) * 50%) + (var(--speed) * 100% * (var(--wnd-st) - var(--top) - var(--height))) / (var(--wnd-h) + var(--height))), var(--object-transform-x), 0 );
  }

  &.parallax-both {
  	--prlx: calc(calc( 100% * var(--pos-y) ) + (var(--speed) * 50%) + (var(--speed) * 100% * (var(--wnd-st) - var(--top) - var(--height))) / (var(--wnd-h) + var(--height)));
  	transform:translate3D( var(--prlx), var(--prlx), 0 );
  }*/
}
*[data-sck-view].sck-offset-top {
  position: relative;
}
*[data-sck-view].sck-offset-top:before {
  position: absolute;
  display: block;
  content: "";
  bottom: 100%;
  left: 0;
  right: 0;
  height: var(--sck-offset-top);
  opacity: 0;
  pointer-events: none;
}
*[data-sck-view].sck-offset-bottom {
  position: relative;
}
*[data-sck-view].sck-offset-bottom:after {
  position: absolute;
  display: block;
  content: "";
  top: 100%;
  left: 0;
  right: 0;
  height: var(--sck-offset-bottom);
  opacity: 0;
  pointer-events: none;
}
:root {
  --wnd-st:0;
}
html :where(.is-position-sticky) {
  --wp-admin--admin-bar--position-offset: calc( 120px + var(--wp-admin--admin-bar--height,0px) ) !important;
}
body > .wp-site-blocks {
  overflow-x: clip;
}
body > .wp-site-blocks > footer.wp-block-template-part {
  margin-top: 0;
}
.wp-block-list {
  padding-left: clamp(20px, (100vw - 1920px) * 0.0076923077 + 32px, 32px);
}
.wp-block-ds-services--hero .componentcmp3 {
  filter: invert(1);
}
.wp-block-ds-news--box > .componentcmp1 {
  width: auto;
}
.bgw {
  background: #fff;
}
.inv1 {
  filter: invert(1);
}
.wauto {
  width: auto;
  flex-shrink: 0;
}
.w100 {
  width: 100%;
}
.w100 > img {
  width: 100%;
}
.ds-block {
  box-sizing: border-box;
  transition: 0.25s;
}
.ds-block:is(a) {
  text-decoration: none;
}
.ds-block * {
  box-sizing: border-box;
  transition: 0.25s;
}
@media (min-width: 769px) {
  [data-effect] {
    transition: all 0.25s, transform 0.75s 0.35s, opacity 0.75s 0.35s;
    opacity: 0;
  }
  [data-effect][data-effect=top] {
    transform: translateY(-100px);
  }
  [data-effect][data-effect=left] {
    transform: translateX(-100px);
  }
  [data-effect][data-effect=right] {
    transform: translateX(100px);
  }
  [data-effect][data-effect=bottom] {
    transform: translateY(100px);
  }
  [data-effect][data-effect=center] {
    transform: scale(0);
  }
  [data-effect].sck_view_active {
    transform: none;
    opacity: 1;
  }
}
.ds_modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999999999;
  padding: clamp(16px, (100vw - 1920px) * 0.0051282051 + 24px, 24px);
}
.ds_modal .ds_modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, (100vw - 1920px) * 0.0051282051 + 24px, 24px);
  background: var(--wp--preset--color--brand-off-white);
  border-radius: 24px;
  padding: clamp(16px, (100vw - 1920px) * 0.0051282051 + 24px, 24px);
  padding-top: clamp(24px, (100vw - 1920px) * 0.0051282051 + 32px, 32px);
  min-widtH: 240px;
  max-width: 940px;
  /*.ds_modal-header {
  	display:flex;
  	align-items:center;
  	justify-content:space-between;
  	padding:0 clamp(0px, calc((100vw - 1920px) * 0.015384615384615385 + 24px), 24px);
  	gap:24px;

  	h2 {
  		color: var(--wp--preset--color--brand-black);
  		align-self: stretch;
  		max-width: none;
  		text-align: left;
  		font-size: clamp(20px, calc((100vw - 1920px) * 0.007692307692307693 + 32px), 32px);
  		font-weight: 300;
  		line-height: clamp(28px, calc((100vw - 1920px) * 0.007692307692307693 + 40px), 40px);
  		margin:0;
  	}

  	.dsButton {

  		._icnpre {
  			transform:rotate(45deg);
  		}
  	}
  }*/
}
.ds_modal .ds_modal-content .dsButton {
  position: absolute;
  top: clamp(24px, (100vw - 1920px) * 0.0051282051 + 32px, 32px);
  right: clamp(32px, (100vw - 1920px) * 0.0102564103 + 48px, 48px);
}
.ds_modal .ds_modal-content .dsButton ._icnpre {
  transform: rotate(45deg);
}
.ds_modal .ds_modal-content .ds_modal-body {
  display: block;
}
.ds_modal .ds_modal-content .ds_modal-body p a, .ds_modal .ds_modal-content .ds_modal-body figcaption a {
  color: inherit;
  font-weight: bolder;
}
.ds_modal .ds_modal-content .ds_modal-body p a:hover, .ds_modal .ds_modal-content .ds_modal-body figcaption a:hover {
  color: var(--wp--preset--color--brand-violet);
}
.ds_modal .ds_modal-content .ds_modal-body p a.dark, .ds_modal .ds_modal-content .ds_modal-body figcaption a.dark {
  color: var(--wp--preset--color--brand-black);
  text-decoration: underline;
}
.ds_modal .ds_modal-content .ds_modal-body p a.dark:hover, .ds_modal .ds_modal-content .ds_modal-body figcaption a.dark:hover {
  color: var(--wp--preset--color--brand-lilac);
}
.wp-block-designsystem-button, .dsButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (max-width: 768px) {
  .wp-block-designsystem-button, .dsButton {
    width: 100%;
  }
}
.wp-block-designsystem-button, .dsButton {
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 12px;
  border-width: 0;
  transition: 0.25s;
  text-decoration: none;
  cursor: pointer;
}
.wp-block-designsystem-button.disabled, .wp-block-designsystem-button[disabled], .dsButton.disabled, .dsButton[disabled] {
  cursor: auto;
}
.wp-block-designsystem-button > ._lbl, .dsButton > ._lbl {
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 21px;
  margin: 0 8px;
  font-family: var(--wp--preset--font-family--foco);
  color: var(--wp--preset--color--extra-text-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  transition: 0.25s;
  transform: translateY(2px);
}
.wp-block-designsystem-button > ._icnpre, .wp-block-designsystem-button > ._icnpost, .dsButton > ._icnpre, .dsButton > ._icnpost {
  display: block;
  width: 16px;
  height: 16px;
  padding: 2px;
  box-sizing: border-box;
  background: var(--wp--preset--color--extra-background-dark);
  border-radius: 4px;
  transition: 0.25s;
  --rt:0deg;
}
.wp-block-designsystem-button > ._icnpre > img, .wp-block-designsystem-button > ._icnpost > img, .dsButton > ._icnpre > img, .dsButton > ._icnpost > img {
  display: block;
  width: 12px;
  height: 12px;
  filter: brightness(5);
  transition: 0.25s;
  transform: rotate(var(--rt));
}
.wp-block-designsystem-button, .dsButton {
  /*&._sz {

  	&-large {

  	}

  	&-mid {
  		padding:7px;
  	}

  	&-small {
  		padding:7px;

  		& > ._lbl {
  			height:24px;
  		}

  		& > ._icnpre, & > ._icnpost {
  			width:24px;
  			height:24px;
  			padding:6px;

  			& > img {
  				width:12px;
  				height:12px;
  			}
  		}
  	}
  }*/
}
.wp-block-designsystem-button._cl-light._st-primary, .dsButton._cl-light._st-primary {
  background: var(--wp--preset--color--extra-background-main);
  /*& > ._lbl {
  	color:var(--wp--preset--color--extra-text-white);
  }*/
  /*& > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--brand-off-white);

  	& > img {
  		filter:brightness(0.05);
  	}
  }*/
}
.wp-block-designsystem-button._cl-light._st-primary:hover, .dsButton._cl-light._st-primary:hover {
  background: var(--wp--preset--color--extra-background-medium);
  /*& > ._lbl {
  	color:var(--wp--preset--color--brand-black);
  }*/
  /*& > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--brand-off-white);

  	& > img {
  		filter:brightness(0.05);
  	}
  }*/
}
.wp-block-designsystem-button._cl-light._st-primary.disabled, .wp-block-designsystem-button._cl-light._st-primary[disabled], .dsButton._cl-light._st-primary.disabled, .dsButton._cl-light._st-primary[disabled] {
  background: var(--wp--preset--color--brand-grey);
  /*& > ._lbl {
  	color:var(--wp--preset--color--system-neutral);
  }*/
  /*& > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--system-neutral);

  	& > img {
  		filter:brightness(0.05);
  	}
  }*/
}
.wp-block-designsystem-button._cl-light._st-secondary, .dsButton._cl-light._st-secondary {
  background: var(--wp--preset--color--extra-background-light);
  /*& > ._lbl {
  	color:var(--wp--preset--color--brand-black);
  }

  & > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--brand-black);

  	& > img {
  		filter:brightness(10);
  	}
  }*/
}
.wp-block-designsystem-button._cl-light._st-secondary:hover, .dsButton._cl-light._st-secondary:hover {
  background: var(--wp--preset--color--extra-background-main);
  /*& > ._lbl {
  	color:var(--wp--preset--color--system-white);
  }

  & > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--brand-black);

  	& > img {
  		filter:brightness(10);
  	}
  }*/
}
.wp-block-designsystem-button._cl-light._st-secondary.disabled, .wp-block-designsystem-button._cl-light._st-secondary[disabled], .dsButton._cl-light._st-secondary.disabled, .dsButton._cl-light._st-secondary[disabled] {
  background: var(--wp--preset--color--brand-grey);
  /*& > ._lbl {
  	color:var(--wp--preset--color--system-neutral-light);
  }

  & > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--system-neutral-light);

  	& > img {
  		filter:brightness(10);
  	}
  }*/
}
.wp-block-designsystem-button._cl-light._st-ghost, .dsButton._cl-light._st-ghost {
  background: none;
  border-color: transparent;
  /*& > ._lbl {
  	color:var(--wp--preset--color--brand-black);
  }*/
}
.wp-block-designsystem-button._cl-light._st-ghost > ._icnpre, .wp-block-designsystem-button._cl-light._st-ghost > ._icnpost, .dsButton._cl-light._st-ghost > ._icnpre, .dsButton._cl-light._st-ghost > ._icnpost {
  background: var(--wp--preset--color--extra-background-main);
  /*& > img {
  	filter:brightness(10);
  }*/
}
.wp-block-designsystem-button._cl-light._st-ghost:hover > ._lbl, .dsButton._cl-light._st-ghost:hover > ._lbl {
  color: var(--wp--preset--color--extra-text-light);
}
.wp-block-designsystem-button._cl-light._st-ghost:hover, .dsButton._cl-light._st-ghost:hover {
  /*& > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--brand-off-white);

  	& > img {
  		filter:brightness(0.05);
  	}
  }*/
}
.wp-block-designsystem-button._cl-light._st-ghost.disabled > ._lbl, .wp-block-designsystem-button._cl-light._st-ghost[disabled] > ._lbl, .dsButton._cl-light._st-ghost.disabled > ._lbl, .dsButton._cl-light._st-ghost[disabled] > ._lbl {
  background: var(--wp--preset--color--brand-ghost);
}
.wp-block-designsystem-button._cl-light._st-ghost.disabled, .wp-block-designsystem-button._cl-light._st-ghost[disabled], .dsButton._cl-light._st-ghost.disabled, .dsButton._cl-light._st-ghost[disabled] {
  /*& > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--system-neutral-light);

  	& > img {
  		filter:brightness(10);
  	}
  }*/
}
.wp-block-designsystem-button._cl-dark._st-primary, .dsButton._cl-dark._st-primary {
  background: var(--wp--preset--color--extra-background-dark);
  /*& > ._lbl {
  	color:var(--wp--preset--color--brand-black);
  }*/
}
.wp-block-designsystem-button._cl-dark._st-primary > ._icnpre, .wp-block-designsystem-button._cl-dark._st-primary > ._icnpost, .dsButton._cl-dark._st-primary > ._icnpre, .dsButton._cl-dark._st-primary > ._icnpost {
  background: var(--wp--preset--color--extra-background-main);
  /*& > img {
  	filter:brightness(10);
  }*/
}
.wp-block-designsystem-button._cl-dark._st-primary:hover, .dsButton._cl-dark._st-primary:hover {
  background: var(--wp--preset--color--extra-background-medium);
  /*& > ._lbl {
  	color:var(--wp--preset--color--brand-off-white);
  }

  & > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--brand-black);

  	& > img {
  		filter:brightness(10);
  	}
  }*/
}
.wp-block-designsystem-button._cl-dark._st-primary.disabled, .wp-block-designsystem-button._cl-dark._st-primary[disabled], .dsButton._cl-dark._st-primary.disabled, .dsButton._cl-dark._st-primary[disabled] {
  background: var(--wp--preset--color--extra-background-medium);
  /*& > ._lbl {
  	color:var(--wp--preset--color--system-neutral);
  }

  & > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--system-neutral);

  	& > img {
  		filter:brightness(0.05);
  	}
  }*/
}
.wp-block-designsystem-button._cl-dark._st-secondary, .dsButton._cl-dark._st-secondary {
  background: var(--wp--preset--color--extra-background-medium);
  /*& > ._lbl {
  	color:var(--wp--preset--color--brand-off-white);
  }*/
}
.wp-block-designsystem-button._cl-dark._st-secondary > ._icnpre, .wp-block-designsystem-button._cl-dark._st-secondary > ._icnpost, .dsButton._cl-dark._st-secondary > ._icnpre, .dsButton._cl-dark._st-secondary > ._icnpost {
  background: var(--wp--preset--color--extra-background-dark);
  /*& > img {
  	filter:brightness(0.05);
  }*/
}
.wp-block-designsystem-button._cl-dark._st-secondary:hover, .dsButton._cl-dark._st-secondary:hover {
  background: var(--wp--preset--color--extra-background-dark);
  /*& > ._lbl {
  	color:var(--wp--preset--color--brand-black);
  }

  & > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--brand-off-white);

  	& > img {
  		filter:brightness(0.05);
  	}
  }*/
}
.wp-block-designsystem-button._cl-dark._st-secondary.disabled, .wp-block-designsystem-button._cl-dark._st-secondary[disabled], .dsButton._cl-dark._st-secondary.disabled, .dsButton._cl-dark._st-secondary[disabled] {
  background: var(--wp--preset--color--brand-grey);
  /*& > ._lbl {
  	color:var(--wp--preset--color--system-neutral-light);
  }

  & > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--system-neutral-light);

  	& > img {
  		filter:brightness(10);
  	}
  }*/
}
.wp-block-designsystem-button._cl-dark._st-ghost, .dsButton._cl-dark._st-ghost {
  background: none;
  border-color: transparent;
}
.wp-block-designsystem-button._cl-dark._st-ghost > ._lbl, .dsButton._cl-dark._st-ghost > ._lbl {
  color: var(--wp--preset--color--extra-text-dark);
}
.wp-block-designsystem-button._cl-dark._st-ghost > ._icnpre, .wp-block-designsystem-button._cl-dark._st-ghost > ._icnpost, .dsButton._cl-dark._st-ghost > ._icnpre, .dsButton._cl-dark._st-ghost > ._icnpost {
  background: var(--wp--preset--color--extra-background-dark);
  /*& > img {
  	filter:brightness(0.05);
  }*/
}
.wp-block-designsystem-button._cl-dark._st-ghost:hover > ._lbl, .dsButton._cl-dark._st-ghost:hover > ._lbl {
  color: var(--wp--preset--color--extra-text-medium);
}
.wp-block-designsystem-button._cl-dark._st-ghost:hover, .dsButton._cl-dark._st-ghost:hover {
  /*& > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--brand-black);

  	& > img {
  		filter:brightness(10);
  	}
  }*/
}
.wp-block-designsystem-button._cl-dark._st-ghost.disabled, .wp-block-designsystem-button._cl-dark._st-ghost[disabled], .dsButton._cl-dark._st-ghost.disabled, .dsButton._cl-dark._st-ghost[disabled] {
  /*& > ._lbl {
  	color:var(--wp--preset--color--system-neutral-light);
  }

  & > ._icnpre, & > ._icnpost {
  	background:var(--wp--preset--color--system-neutral-light);

  	& > img {
  		filter:brightness(10);
  	}
  }*/
}
@property --dsText-mask-width {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0.00001%;
}
@media (min-width: 768px) {
  .dsText[data-rows]:not([data-rows="0"]) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: var(--lines);
    -webkit-line-clamp: var(--lines);
    text-overflow: ellipsis;
    white-space: normal;
  }
  .dsText[data-rows]:not([data-rows="0"])[data-rows="1"] {
    --lines:1;
  }
  .dsText[data-rows]:not([data-rows="0"])[data-rows="2"] {
    --lines:2;
  }
  .dsText[data-rows]:not([data-rows="0"])[data-rows="3"] {
    --lines:3;
  }
  .dsText[data-rows]:not([data-rows="0"])[data-rows="4"] {
    --lines:4;
  }
  .dsText[data-rows]:not([data-rows="0"])[data-rows="5"] {
    --lines:5;
  }
  .dsText[data-rows]:not([data-rows="0"]) {
    clip-path: inset(0 0 -0.1em 0);
    min-height: calc(var(--lines) * 1lh);
  }
}
.dsText a {
  color: inherit;
  font-weight: bolder;
}
.dsText a:hover {
  color: var(--wp--preset--color--brand-violet);
}
.dsText[data-txt-effect] {
  --line:0;
  --mask_opacity: 0.5;
  --mask_transition: 500ms;
  --mask_delay: 0ms;
}
.dsText[data-txt-effect] > .line {
  --dsText-mask-width: 0%;
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) var(--dsText-mask-width), rgba(0, 0, 0, var(--mask_opacity)) var(--dsText-mask-width));
          mask-image: linear-gradient(to right, rgb(0, 0, 0) var(--dsText-mask-width), rgba(0, 0, 0, var(--mask_opacity)) var(--dsText-mask-width));
  transition: --dsText-mask-width var(--mask_transition) linear calc(var(--mask_delay) + var(--line) * 0.5s);
}
.dsText[data-txt-effect].sck_view_active > .line {
  --dsText-mask-width:100%;
}
.wp-site-blocks > main p a, .wp-site-blocks > main figcaption a {
  color: inherit;
  font-weight: bolder;
}
.wp-site-blocks > main p a:hover, .wp-site-blocks > main figcaption a:hover {
  color: var(--wp--preset--color--brand-violet);
}
.wp-site-blocks > main p.dark a, .wp-site-blocks > main figcaption.dark a {
  color: var(--wp--preset--color--brand-black);
  text-decoration: underline;
}
.wp-site-blocks > main p.dark a:hover, .wp-site-blocks > main figcaption.dark a:hover {
  color: var(--wp--preset--color--brand-lilac);
}
.wp-block-ds-post-terms, .dsTagList {
  display: flex;
  align-items: center;
  list-style-type: none;
  gap: 8px;
  padding: 0;
}
.wp-block-ds-post-terms > li, .dsTagList > li {
  display: block;
}
.wp-block-ds-post-terms > li > a, .wp-block-ds-post-terms > li > span, .dsTagList > li > a, .dsTagList > li > span {
  position: relative;
  display: block;
  padding: 7px 16px 9px;
  box-sizing: border-box;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  background: var(--wp--preset--color--system-white);
  color: var(--wp--preset--color--system-neutral);
  transition: 0.25s;
}
.wp-block-ds-post-terms > li > a, .dsTagList > li > a {
  cursor: pointer;
}
.wp-block-ds-post-terms > li > a:hover, .dsTagList > li > a:hover {
  color: var(--wp--preset--color--system-white);
  background: var(--wp--preset--color--system-neutral-dark);
}
.loader {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  background: rgba(248, 248, 238, 0.8);
}
.loader > span {
  position: relative;
  display: block;
  width: 64px;
  height: 8px;
  background: #ff455a;
  transform: rotate(-12deg);
  animation: loader-appear 1s forwards, loader-spin 2s linear infinite 1s;
}
.loader > span::before, .loader > span::after, .loader > span > span {
  position: absolute;
  content: "";
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #ff455a;
}
.loader > span::before {
  transform: rotate(45deg);
}
.loader > span::after {
  transform: rotate(-45deg);
}
.loader > span > span {
  transform: rotate(90deg);
}
@keyframes loader-appear {
  from {
    opacity: 0;
    transform: scale(0) rotate(-12deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(-12deg);
  }
}
@keyframes loader-spin {
  from {
    transform: rotate(-12deg);
  }
  to {
    transform: rotate(348deg);
  }
}
.sw2 {
  width: 400px;
}
.bgw {
  background: #fff;
}
.bgm {
  background: #008BC3;
}
.bgd {
  background: #023b59;
}
.bgt {
  background: transparent;
}
.wpml-ls-statics-footer,
.otgs-development-site-front-end {
  display: none !important;
}
.heroScrollAnim {
  display: block !important;
  transform: translate(-50%, calc(-50% + (var(--wnd-st) + var(--wnd-h) / 3 - var(--pos-top)) * 0.5px)) !important;
  opacity: 1 !important;
  z-index: 2 !important;
  --pos-top:0;
  width: max(0px, (var(--wnd-st) + var(--wnd-h) / 3 - var(--pos-top)) * 5px) !important;
  transition: none !important;
}
.heroAnim {
  position: absolute;
  display: block;
  inset: 0;
  z-index: 10;
  background: var(--wp--preset--color--extra-background-dark);
  transition: 1s;
  transition-delay: 2s;
}
.heroAnim > img {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  height: 100%;
  right: 50%;
  transform: translate(50%, 0);
  transition: 2s;
}
.heroAnim.go {
  opacity: 0;
}
.heroAnim.go > img {
  right: 0;
  transform: none;
}
@media (max-width: 1279px) {
  .heroAnim > img {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    height: auto;
    width: 100%;
    top: 50%;
    transform: translate(0, -50%);
    transition: 2s;
  }
  .heroAnim.go {
    opacity: 0;
  }
  .heroAnim.go > img {
    top: 0;
    transform: none;
  }
}
.wp-block-ds-miniatury--produkt > .mediamedia11 {
  flex-shrink: 0;
}
.wp-block-ds-miniatury--produkt > .smpl_manch {
  position: absolute;
  inset: 0;
}
.wp-block-ds-miniatury--produkt .wp-block-ds-miniatury--produkt---tag {
  z-index: 1;
}
.wp-block-ds-miniatury--produkt .wp-block-ds-miniatury--produkt---tag:not(.active) > .tagdiv1 {
  display: none;
}
.wp-block-ds-miniatury--produkt .wp-block-ds-miniatury--produkt---tag:hover .dsText {
  text-decoration: underline;
}
.wpml-language-switcher-block {
  margin-left: 24px;
  margin-right: 24px;
}
.wpml-language-switcher-block .wp-block-navigation__container .has-child::before {
  position: absolute;
  content: "";
  display: block;
  inset: 100% 0 auto;
  height: 6px;
}
.wpml-language-switcher-block .wp-block-navigation__container .current-language-item {
  gap: 8px;
}
.wpml-language-switcher-block .wp-block-navigation__container .current-language-item .wp-block-navigation-item__content > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wpml-language-switcher-block .wp-block-navigation__container .current-language-item .wp-block-navigation-item__content > div img {
  border-radius: 50% !important;
  width: 20px !important;
  height: 20px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.wpml-language-switcher-block .wp-block-navigation__container .current-language-item .wp-block-navigation-item__content > div span {
  color: #fff;
  font-weight: 700;
}
.wpml-language-switcher-block .wp-block-navigation__container .current-language-item .wp-block-navigation__submenu-icon {
  position: relative;
  width: 16px;
  height: 16px;
  background: var(--wp--preset--color--extra-background-dark);
  color: #fff;
  border-radius: 4px;
  margin: 0;
  top: -2px;
}
.wpml-language-switcher-block .wp-block-navigation__container .current-language-item .wp-block-navigation__submenu-icon svg {
  width: 12px;
  height: 12px;
  margin: 2px;
}
.wpml-language-switcher-block .wp-block-navigation__container .wp-block-navigation__submenu-container {
  min-width: 100% !important;
  border: 0;
  border-radius: 12px;
  overflow: hidden !important;
  top: calc(100% + 6px);
  left: 50%;
  transform: translate(-50%, 0);
}
.wpml-language-switcher-block .wp-block-navigation__container .wp-block-navigation__submenu-container .wp-block-navigation-item {
  background: var(--wp--preset--color--extra-background-medium);
}
.wpml-language-switcher-block .wp-block-navigation__container .wp-block-navigation__submenu-container .wp-block-navigation-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  transition: 0.25s;
}
.wpml-language-switcher-block .wp-block-navigation__container .wp-block-navigation__submenu-container .wp-block-navigation-item a img {
  border-radius: 50% !important;
  width: 20px !important;
  height: 20px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.wpml-language-switcher-block .wp-block-navigation__container .wp-block-navigation__submenu-container .wp-block-navigation-item a span {
  color: #fff;
  font-weight: 700;
}
.wpml-language-switcher-block .wp-block-navigation__container .wp-block-navigation__submenu-container .wp-block-navigation-item a:hover {
  background: var(--wp--preset--color--extra-background-dark);
}
@media (max-width: 992px) {
  .wp-block-ds-menu-side > li:has(.wpml-language-switcher-block) {
    order: 99;
  }
  .wp-block-ds-menu-side > li .wpml-language-switcher-block,
  .wp-block-ds-menu-side > li .wp-block-navigation-item,
  .wp-block-ds-menu-side > li .wpml-ls-dropdown {
    width: 100%;
    margin: 0;
  }
  .wp-block-ds-menu-side > li .wp-block-navigation__container > .wp-block-navigation-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .wp-block-ds-menu-side > li .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content {
    flex-grow: 1;
  }
  .wp-block-ds-menu-side > li .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content .current-language-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    background: var(--wp--preset--color--extra-background-dark);
    border-radius: 12px;
  }
  .wp-block-ds-menu-side > li .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content .current-language-item > .wp-block-navigation__submenu-icon {
    display: none;
  }
  .wp-block-ds-menu-side > li .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation__submenu-container {
    position: relative;
    top: auto;
    lefT: auto;
    width: auto;
    min-width: auto !important;
    transform: none;
    opacity: 1 !important;
    height: auto !important;
    visibility: visible !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-grow: 1;
    background: transparent;
  }
  .wp-block-ds-menu-side > li .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation__submenu-container li {
    background: transparent;
    border-radius: 12px;
  }
  .wp-block-ds-menu-side > li .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation__submenu-container li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    padding: 12px 22px;
  }
  .wp-block-ds-menu-side > li .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation__submenu-container li a:hover {
    background: var(--wp--preset--color--extra-background-medium);
  }
}

/*# sourceMappingURL=index.css.map*/