@charset "UTF-8";
:root {
  --colorBrand: hsl(76, 72%, 44%);
  --colorBrand-h: 76;
  --colorBrand-s: 72;
  --colorBrand-l: 44;
  --colorBrandSecondary: hsl(19, 96%, 45%);
  --colorBrandSecondary-h: 19;
  --colorBrandSecondary-s: 96;
  --colorBrandSecondary-l: 45;
  --colorBodyBg: hsl(0, 0%, 100%);
  --colorBodyBg-h: 0;
  --colorBodyBg-s: 0;
  --colorBodyBg-l: 100;
  --colorSecondaryBg: hsl(0, 0%, 91%);
  --colorSecondaryBg-h: 0;
  --colorSecondaryBg-s: 0;
  --colorSecondaryBg-l: 91;
  --colorContrastBg: hsl(203, 28%, 8%);
  --colorContrastBg-h: 203;
  --colorContrastBg-s: 28;
  --colorContrastBg-l: 8;
  --colorThemeAccent: hsl(0, 0%, 100%);
  --colorThemeAccent-h: 0;
  --colorThemeAccent-s: 0;
  --colorThemeAccent-l: 100;
  --colorShadeBg: rgba(0,0,0,.8);
  --colorOutlines: #cacaca;
  --colorHighlighted: #ba0000;
  --starsColor: #fcad00;
  --colorErrorsDefault: hsl(352, 100%, 43%);
  --colorErrorsDefault-h: 352;
  --colorErrorsDefault-s: 100;
  --colorErrorsDefault-l: 43;
  --colorText: hsl(0, 0%, 0%);
  --colorText-h: 0;
  --colorText-s: 0;
  --colorText-l: 0;
  --colorTextHeading: #000000;
  --colorTextSubtle: #404040;
  --colorLinkText: var(--colorBrand);
  --colorLinkTextActive: var(--colorText);
  --colorInputBorder: var(--colorOutlines);
  --colorInputBackground: var(--colorThemeAccent);
  --colorInputBorderFocus: #383838;
  --colorInputBackgroundFocus: var(--colorThemeAccent);
  --colorInputBackgroundInvalid: var(--colorThemeAccent);
  --colorButtonBg: var(--colorBrand);
  --colorButtonDisabledBg: gray;
  --colorButtonText: white;
  --stateInfo: #5895f5;
  --stateSuccess: var(--colorBrand);
  --stateWarning: #f58c59;
  --stateError: #dc2727;
  --colorStockIn: var(--stateSuccess);
  --colorStockOut: var(--stateError);
}

:root {
  --durationAnimationBase: .25s;
  --easingAnimationBase: ease-in-out;
  --animationBase: all var(--durationAnimationBase) var(--easingAnimationBase);
}

:root {
  --layerNegativeZIndex: -1;
  --layerNullZIndex: 0;
  --layerPageZIndex: 1;
  --layerPageSecondaryZIndex: 2;
  --layerHeaderZIndex: 10;
  --layerDropdownZIndex: 20;
  --layerModalZIndex: 21;
  --layerPopoverZIndex: 22;
  --layerTooltipZIndex: 23;
  --layerSpinnerZIndex: 24;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html.is-not-smooth {
  scroll-behavior: unset;
}

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

body {
  background: var(--colorBodyBg);
  margin: 0;
  font-size: var(--textBaseSize);
  font-family: var(--font-primary);
  color: var(--colorText);
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: var(--bodyLineHeight);
}

body.is-not-overflowed {
  overflow: hidden;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}

::selection {
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  background: var(--colorBrand);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --sizeContentOffset: 1.25rem;
  --sizeContentOffsetHd: 4%;
  --sizeContentWidthHd: 120rem;
  --sizeContentWidthLarge: 87.5rem;
  --sizeContentWidthMedium: 75rem;
  --sizeContentWidthSmall: 61.25rem;
  --sizeInputFont: var(--textRg);
  --sizeInputPaddingVertical: var(--spaceXxs);
  --sizeInputPaddingHorizontal: var(--spaceMd);
  --sizeInputPadding: var(--sizeInputPaddingVertical) var(--sizeInputPaddingHorizontal);
  --sizeInputBorder: 1px;
  --sizeInputBorderRadius: 4px;
  --sizeButtonFont: var(--textSm);
  --sizeButtonPaddingVertical: var(--spaceXxs);
  --sizeButtonPaddingHorizontal: var(--spaceLg);
  --sizeButtonPadding: var(--sizeButtonPaddingVertical) var(--sizeButtonPaddingHorizontal);
  --sizeButtonBorder: 1px;
  --sizeButtonBorderRadius: 0;
}

/* !! DO NOT FORGET TO ADD FONTS TO '@preload.php' FILE AS WELL !! */
@font-face {
  font-family: NotoSans;
  src: url(/frontend/fonts/NotoSans/NotoSans-bold-normal.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: NotoSans;
  src: url(/frontend/fonts/NotoSans/NotoSans-regular-normal.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

.u-frameSm {
  max-width: calc(var(--sizeContentWidthSmall) + var(--sizeContentOffset) * 2);
  padding-left: var(--sizeContentOffset);
  padding-right: var(--sizeContentOffset);
}

.u-frameMd {
  max-width: calc(var(--sizeContentWidthMedium) + var(--sizeContentOffset) * 2);
  padding-left: var(--sizeContentOffset);
  padding-right: var(--sizeContentOffset);
}

.u-frameLg {
  max-width: calc(var(--sizeContentWidthLarge) + var(--sizeContentOffset) * 2);
  padding-left: var(--sizeContentOffset);
  padding-right: var(--sizeContentOffset);
}

.u-frameHd {
  max-width: calc(var(--sizeContentWidthHd) + var(--sizeContentOffset) * 2);
  padding-left: var(--sizeContentOffset);
  padding-right: var(--sizeContentOffset);
}

.u-frameHdOffset {
  max-width: calc(var(--sizeContentWidthHd) + var(--sizeContentOffsetHd, var(--sizeContentOffset)) * 2);
  padding-left: var(--sizeContentOffsetHd, var(--sizeContentOffset));
  padding-right: var(--sizeContentOffsetHd, var(--sizeContentOffset));
}

.u-clearfix::after {
  clear: both;
  content: '';
  display: table;
}

.u-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

[class*="u-frame"] {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.u-fullWidth {
  width: 100%;
}

.u-block {
  display: block;
}

.u-flex {
  display: flex;
}

.u-hidden {
  display: none !important;
}

.u-hiddenVisually {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.u-invisibleScrollBar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.u-invisibleScrollBar::-webkit-scrollbar {
  display: none;
}

.u-customScrollBar {
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  scrollbar-width: thin;
}

.u-customScrollBar::-webkit-scrollbar {
  width: .4rem;
}

.u-customScrollBar::-webkit-scrollbar-track {
  background: transparent;
}

.u-customScrollBar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  transition: all .25s ease-in-out;
}

.u-customScrollBar::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

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

.u-flexJustifyStart {
  justify-content: flex-start;
}

.u-flexJustifyEnd {
  justify-content: flex-end;
}

.u-flexJustifyCenter {
  justify-content: center;
}

.u-flexJustifyBetween {
  justify-content: space-between;
}

.u-flexJustifyAround {
  justify-content: space-around;
}

.u-flexAlignItemsStart {
  align-items: flex-start;
}

.u-flexAlignItemsEnd {
  align-items: flex-end;
}

.u-flexAlignItemsCenter {
  align-items: center;
}

.u-spanRow {
  grid-column: 1 / -1;
}

:root {
  --font-primary: 'NotoSans', sans-serif;
  --font-secondary: serif;
  /* set base values */
  --textBaseSize: 1rem;
  --textScaleRatio: 1.2;
  /* type scale */
  --textXxs: calc(1em / (var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio)));
  --textXs: calc(1em / (var(--textScaleRatio) * var(--textScaleRatio)));
  --textSm: calc(1em / var(--textScaleRatio));
  --textRg: 1em;
  --textMd: calc(1em * var(--textScaleRatio));
  --textLg: calc(1em * var(--textScaleRatio) * var(--textScaleRatio));
  --textXl: calc(1em * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio));
  --textXxl: calc(1em * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio));
  --textXxxl: calc(1em * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio));
  --textXxxxl: calc(1em * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio));
  --bodyLineHeight: 2;
  --headingLineHeight: 1.2;
}

@media (min-width: 320px) {
  :root {
    --textBaseSize: .9rem;
  }
}

@media (min-width: 48.1rem) {
  :root {
    --textBaseSize: 1rem;
  }
}

h1, h2, h3, h4, form legend {
  color: var(--colorTextHeading);
  margin-bottom: var(--spaceXs);
  line-height: var(--headingLineHeight);
}

/* text size */
.u-textXxxl {
  font-size: var(--textXxxl);
}

h1, .u-textXxl {
  font-size: var(--textXxl);
}

h2, .u-textXl {
  font-size: var(--textXxl);
  margin-bottom: var(--spaceSm);
}

h3, .u-textLg {
  font-size: var(--textLg);
}

h4, .u-textMd {
  font-size: var(--textMd);
}

.u-textSm, small {
  font-size: var(--textSm);
}

.u-textXs {
  font-size: var(--textXs);
}

p {
  line-height: var(--bodyLineHeight);
}

a {
  color: var(--colorLinkText);
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: var(--colorLinkTextActive);
  text-decoration: underline;
}

:root {
  --spaceUnit:  1em;
  --spaceXxxxs: calc(0.125 * var(--spaceUnit));
  --spaceXxxs:  calc(0.25 * var(--spaceUnit));
  --spaceXxs:   calc(0.375 * var(--spaceUnit));
  --spaceXs:    calc(0.5 * var(--spaceUnit));
  --spaceSm:    calc(0.75 * var(--spaceUnit));
  --spaceRg:    var(--spaceUnit);
  --spaceMd:    calc(1.25 * var(--spaceUnit));
  --spaceLg:    calc(2 * var(--spaceUnit));
  --spaceXl:    calc(3.25 * var(--spaceUnit));
  --spaceXxl:   calc(5.25 * var(--spaceUnit));
  --spaceXxxl:  calc(8.5 * var(--spaceUnit));
  --spaceXxxxl: calc(13.75 * var(--spaceUnit));
}

@media (min-width: 320px) {
  :root {
    --spaceUnit: .6em;
  }
}

@media (min-width: 32.1rem) {
  :root {
    --spaceUnit: .7em;
  }
}

@media (min-width: 64.1rem) {
  :root {
    --spaceUnit: .9em;
  }
}

@media (min-width: 80.1rem) {
  :root {
    --spaceUnit: 1em;
  }
}

.u-spaceUnit {
  margin-bottom: var(--spaceUnit);
}

.u-spaceXxxxs {
  margin-bottom: var(--spaceXxxxs);
}

.u-spaceXxxs {
  margin-bottom: var(--spaceXxxs);
}

.u-spaceXxs {
  margin-bottom: var(--spaceXxs);
}

.u-spaceXs {
  margin-bottom: var(--spaceXs);
}

.u-spaceSm {
  margin-bottom: var(--spaceSm);
}

.u-spaceMd {
  margin-bottom: var(--spaceMd);
}

.u-spaceLg {
  margin-bottom: var(--spaceLg);
}

.u-spaceXl {
  margin-bottom: var(--spaceXl);
}

.u-spaceXxl {
  margin-bottom: var(--spaceXxl);
}

.u-spaceXxxl {
  margin-bottom: var(--spaceXxxl);
}

.u-spaceXxxxl {
  margin-bottom: var(--spaceXxxxl);
}

[data-tooltip] {
  position: relative;
  z-index: 2;
}

[data-tooltip]:before {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 11px);
  background: #000000de;
  color: #fff;
  transform-origin: bottom center;
  transition: var(--animationBase);
  transform: translateX(-50%);
  padding: 17px;
  font-size: 14px;
  width: 249px;
  text-align: center;
  line-height: 1.4;
  border-radius: 4px;
  border-bottom: 3px solid var(--colorBrand);
  pointer-events: none;
  opacity: 0;
}

[data-tooltip]:after {
  content: '▾';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  width: 249px;
  font-size: 32px;
  line-height: 17px;
  text-align: center;
  color: var(--colorBrand);
  transition: var(--animationBase);
  pointer-events: none;
  opacity: 0;
}

[data-tooltip]:hover:before {
  pointer-events: auto;
  opacity: 1;
}

[data-tooltip]:hover:after {
  pointer-events: auto;
  opacity: 1;
}

/*# sourceMappingURL=base.min.css.map */
.AppAlert{display:flex;font-size:.8em;background:var(--colorThemeAccent);overflow:hidden;border-radius:4px;box-shadow:0 0 20px rgba(0,0,0,.10196078431372549);line-height:1.5}.AppAlert a{color:inherit;text-decoration:underline}.AppAlert a:active,.AppAlert a:focus,.AppAlert a:hover{text-decoration:none}.AppAlert-icon{background:currentColor;display:flex;align-items:center;justify-content:center;padding:0 1em}.AppAlert-icon svg{color:#fff;width:1em}.AppAlert-text{color:var(--colorText);padding:1.2em}.AppAlert--info{color:var(--stateInfo)}.AppAlert--success{color:var(--stateSuccess)}.AppAlert--warning{color:var(--stateWarning)}.AppAlert--error{color:var(--stateError)}
/*# sourceMappingURL=alert.min.css.map */
main{padding-top:var(--spaceMd);padding-bottom:var(--spaceXl)}
/*# sourceMappingURL=layout.min.css.map */
.Breadcrumbs {
  position: relative;
  z-index: 5;
}

.Breadcrumbs-frame {
  display: flex;
  flex-wrap: wrap;
}

.Breadcrumbs-addon {
  margin: 0 var(--spaceMd) 0 0;
  width: 16.5rem;
}

@media (max-width: 64rem) {
  .Breadcrumbs-addon {
    width: 14.5rem;
  }
}

@media (max-width: 48rem) {
  .Breadcrumbs-addon {
    width: calc(100% + var(--spaceMd) + var(--spaceMd));
    margin: -1px calc(var(--spaceMd) * -1) var(--spaceMd);
    order: 2;
  }
}

.Breadcrumbs-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  font-size: var(--textSm);
  padding: var(--spaceLg) 0;
}

.Breadcrumbs-item:before {
  color: var(--colorTextSubtle);
  margin: 0 var(--spaceXs);
}

@media (max-width: 48rem) {
  .Breadcrumbs-item:before {
    content: url(/frontend/images//breadcrumb/separator-mobile.svg);
    margin-left: 0;
    position: relative;
    top: 5px;
    width: 20px;
  }
}

@media (min-width: 48.1rem) {
  .Breadcrumbs-item:not(:first-child):before {
    content: url(/frontend/images//breadcrumb/separator.svg);
    position: relative;
    top: 4px;
    width: 20px;
  }
}

@media (max-width: 48rem) {
  .Breadcrumbs-item:not(:nth-last-child(2)) {
    display: none;
  }
}

.Breadcrumbs-item a {
  text-decoration: none;
  color: #000;
}

.Breadcrumbs-item a[href] {
  text-decoration: none;
  transition: var(--animationBase);
  font-weight: bold;
}

.Breadcrumbs-item a[href]:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=breadcrumbs.min.css.map */
.SubpageHeader {
  position: relative;
  background: #7b7b7b url(/frontend/images/_webp/page/subpage-bg-2.webp) no-repeat center -8vw;
  background-size: cover;
  margin-top: calc(var(--spaceMd) * -1);
  margin-bottom: var(--spaceXl);
  color: #fff;
  text-shadow: 0 0 10px #000;
}

@media (max-width: 47.9rem) {
  .SubpageHeader {
    background-position: center center;
  }
}

.SubpageHeader-frame {
  padding-top: var(--spaceMd);
  padding-bottom: var(--spaceMd);
  text-align: center;
}

.SubpageHeader-title {
  margin: 0;
  color: #fff;
}

.SubpageHeader-subtitle {
  width: 650px;
  max-width: 100%;
  margin: var(--spaceLg) auto 0;
}

.SubpageHeader-icon {
  text-align: center;
  margin-top: var(--spaceLg);
}

.SubpageHeader-icon svg {
  width: 30px;
  height: 26px;
}

.SubpageHeader-overlay {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: auto;
}

.SubpageHeader .Breadcrumbs-item a {
  color: #fff;
}

/*# sourceMappingURL=subpage-header.min.css.map */
.ButtonBase {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--animationBase);
  background: transparent;
  cursor: pointer;
  color: #fff;
  padding: var(--sizeButtonPadding);
  font-weight: bold;
  font-size: var(--textMd);
  text-decoration: none;
  border: none;
  outline: 0;
  min-width: 215px;
}

.ButtonBase span {
  z-index: 2;
  color: #fff;
  transition: var(--animationBase);
}

.ButtonBase:before, .ButtonBase:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: var(--animationBase);
}

.ButtonBase:before {
  opacity: 1;
  background: url(/frontend/images/btn/btn-green.svg);
  background-size: 100% 100%;
}

.ButtonBase:after {
  opacity: 0;
  background: url(/frontend/images/btn/btn-black.svg);
  background-size: 100% 100%;
}

.ButtonBase:hover, .ButtonBase:active, .ButtonBase:focus {
  text-decoration: none;
}

.ButtonBase:hover:before, .ButtonBase:active:before, .ButtonBase:focus:before {
  opacity: 0;
}

.ButtonBase:hover:after, .ButtonBase:active:after, .ButtonBase:focus:after {
  opacity: 1;
}

.ButtonBase svg {
  margin: 0 var(--spaceXxs) 0 0;
  width: auto;
  height: 1em;
}

.ButtonBase svg:last-child {
  margin: 0 0 0 var(--spaceXxs);
}

.ButtonBase--lg {
  font-size: calc(var(--sizeButtonFont) * 1.2);
}

.ButtonBase--md {
  font-size: calc(var(--sizeButtonFont) * 1.1);
}

.ButtonBase--sm {
  font-size: calc(var(--sizeButtonFont) * 0.85);
}

.ButtonBase:disabled {
  background: var(--colorTextSubtle);
  opacity: .6;
  pointer-events: none;
}

.ButtonBase--secondary {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #fff;
  box-shadow: 0 0 20px #00000024;
}

.ButtonBase--white span {
  color: var(--colorBrand);
}

.ButtonBase--white:before {
  opacity: 1;
  background: url(/frontend/images/btn/btn-white.svg);
  background-size: 100% 100%;
}

.ButtonBase--white:hover, .ButtonBase--white:active, .ButtonBase--white:focus {
  color: #fff;
}

.ButtonBase--white:hover:before, .ButtonBase--white:hover:after, .ButtonBase--white:active:before, .ButtonBase--white:active:after, .ButtonBase--white:focus:before, .ButtonBase--white:focus:after {
  border-color: #fff;
}

.ButtonBase--ghost {
  background: transparent;
}

.ButtonBase--ghost span {
  color: var(--colorBrand);
}

.ButtonBase--ghost:before {
  opacity: 1;
  background: url(/frontend/images/btn/btn-ghost.svg);
  background-size: 100% 100%;
}

.ButtonBase--ghost:disabled {
  background: transparent;
  color: var(--colorTextSubtle);
}

.ButtonBase--ghost:hover span, .ButtonBase--ghost:active span, .ButtonBase--ghost:focus span {
  color: #fff;
}

.ButtonBase--danger {
  background: transparent;
  color: var(--colorErrorsDefault);
  border: 1px solid var(--colorErrorsDefault);
}

.ButtonBase--danger:disabled {
  background: transparent;
  color: var(--colorTextSubtle);
  border-color: var(--colorTextSubtle);
}

.ButtonBase--danger:hover, .ButtonBase--danger:active, .ButtonBase--danger:focus {
  background: var(--colorErrorsDefault);
}

.ButtonBase.small {
  font-size: var(--textRg);
  min-width: auto;
  padding: 3px var(--spaceMd);
}

.ButtonBase.small:before {
  top: 1px;
}

.ButtonBase.is-active {
  pointer-events: none;
}

.ButtonBase.is-active span {
  color: #fff;
}

.ButtonBase.is-active:before {
  opacity: 1;
  background: url(/frontend/images/btn/btn-green.svg);
  background-size: 100% 100%;
}

/*# sourceMappingURL=button.min.css.map */
.BlogSignpostFew {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: var(--spaceMd);
}

@media (max-width: 79.9rem) {
  .BlogSignpostFew {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 63.9rem) {
  .BlogSignpostFew {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 31.9rem) {
  .BlogSignpostFew {
    grid-template-columns: repeat(1, 1fr);
  }
}

.BlogSignpostFew .ButtonBase {
  min-width: auto;
  margin: 5px 20px;
  text-align: center;
}

/*# sourceMappingURL=blog-signpost-few.min.css.map */
.BlogTags{display:flex;flex-wrap:wrap}.BlogTags-tag{background:var(--colorSecondaryBg);color:var(--colorTextSubtle);font-size:var(--textSm);margin:0 .2em .2em 0;padding:.2em .8em;transition:var(--animationBase);text-align:center}.BlogTags--sm .BlogTags-tag{font-size:var(--textXs)}.BlogTags-tag:active,.BlogTags-tag:focus,.BlogTags-tag:hover{text-decoration:none;background:var(--colorBrand);color:hsl(0,0%,calc((var(--colorBrand-l) - 60) * -100%))}
/*# sourceMappingURL=blog-tags.min.css.map */
.BlogItem {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
}

.BlogItem-picture {
  position: relative;
}

.BlogItem-picture img {
  display: block;
  width: 100%;
}

.BlogItem-picture:hover .BlogItem-hover {
  opacity: 1;
}

.BlogItem-overlay {
  position: absolute;
  bottom: -2px;
  width: calc(100% + 1px);
  height: auto;
  left: 0;
}

.BlogItem-hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: hsla(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 1%), 0.7);
  opacity: 0;
  transition: var(--animationBase);
}

.BlogItem-hoverBtn {
  border: 1px solid hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  display: flex;
  align-items: center;
  font-size: var(--textMd);
  padding: var(--spaceXxxs) var(--spaceSm);
  transition: var(--animationBase);
}

.BlogItem-hoverBtn:hover {
  background: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  color: var(--colorBrand);
}

.BlogItem-hoverBtn svg {
  margin-right: var(--spaceXs);
}

.BlogItem-content {
  padding: 0 var(--spaceMd) var(--spaceLg);
}

.BlogItem-date {
  display: block;
  font-size: var(--textSm);
  color: var(--colorTextSubtle);
  margin-bottom: var(--spaceSm);
}

.BlogItem-tags {
  margin-bottom: var(--spaceSm);
}

.BlogItem-title {
  font-size: var(--textLg);
}

.BlogItem-title a {
  color: inherit;
}

.BlogItem-perex {
  margin-bottom: var(--spaceMd);
  font-size: var(--textRg);
}

.BlogItem-perex:empty {
  display: none;
}

.BlogItem-more {
  margin-top: auto;
  font-weight: bold;
  text-transform: lowercase;
}

/*# sourceMappingURL=blog-item.min.css.map */
.BlogList{display:grid;grid-template-columns:repeat(3,1fr);grid-gap:var(--spaceXl) var(--spaceMd)}@media (max-width:48rem){.BlogList{grid-template-columns:repeat(2,1fr)}}@media (max-width:32rem){.BlogList{grid-template-columns:1fr}}
/*# sourceMappingURL=blog-list.min.css.map */
@charset "UTF-8";
.AppNavigationItem {
  position: relative;
  margin: 0.2em 0 0.2em var(--spaceMd);
  font-size: var(--textMd);
}

@media (max-width: 80rem) {
  .AppNavigationItem {
    margin: 0;
    font-size: .8rem;
    border-bottom: 1px solid var(--colorOutlines);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: var(--colorText);
  }
  .AppNavigationItem:last-child {
    border-bottom: none;
  }
}

.AppNavigationItem:first-child {
  margin-left: 0;
}

.AppNavigationItem-frame {
  display: flex;
  align-items: center;
}

@media (max-width: 80rem) {
  .AppNavigationItem-opener {
    display: flex;
    margin-left: .5em;
  }
  .AppNavigationItem-opener svg {
    width: 12px;
    height: auto;
    transition: var(--animationBase);
  }
  .AppNavigationItem-opener.is-opened svg {
    transform: rotate(-180deg);
  }
}

.AppNavigationItem-link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  transition: all .25s ease-in-out;
}

@media (max-width: 80rem) {
  .AppNavigationItem-link {
    display: block;
    padding: .8em 0;
    flex: 1;
  }
}

.AppNavigationItem-link.is-active, .AppNavigationItem-link:hover, .AppNavigationItem-link:focus {
  color: var(--colorBrand);
  text-decoration: none;
}

.AppNavigationItem-submenu {
  position: absolute;
  left: 0;
  top: calc(100% + .8rem);
  transition: var(--animationBase);
  transform-origin: top left;
  transform: scale(0);
  opacity: 0;
  box-shadow: 0 0 20px #0000003b;
  width: 230px;
  z-index: var(--layerDropdownZIndex);
  border-top: 2px solid var(--colorBrand);
}

@media (max-width: 80rem) {
  .AppNavigationItem-submenu {
    position: static;
    box-shadow: none;
    opacity: 0;
    max-height: 0;
    transform: rotateX(90deg);
    overflow: hidden;
    width: 100%;
    border-top: 1px dashed var(--colorOutlines);
  }
}

.AppNavigationItem-submenu:before {
  content: '▲';
  display: block;
  position: absolute;
  bottom: 100%;
  width: 100%;
  text-align: left;
  padding-left: 1em;
  color: var(--colorBrand);
  line-height: 1;
  padding-top: 0.4em;
}

@media (min-width: 80.1rem) {
  .AppNavigationItem:hover .AppNavigationItem-submenu {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 80rem) {
  .AppNavigationItem-submenu.is-opened {
    opacity: 1;
    max-height: 1000px;
    transform: rotateX(0deg);
  }
}

.AppNavigationItem-submenu .AppNavigationItem {
  background: #fff;
  width: 100%;
  border-bottom: 1px solid var(--colorOutlines);
  margin: 0;
}

.AppNavigationItem-submenu .AppNavigationItem:last-child {
  border-bottom: none;
}

.AppNavigationItem-submenu .AppNavigationItem-link {
  display: block;
  padding: 10px;
  font-size: var(--textXs);
  color: var(--colorText);
}

.AppNavigationItem-submenu .AppNavigationItem-link.is-active, .AppNavigationItem-submenu .AppNavigationItem-link:hover, .AppNavigationItem-submenu .AppNavigationItem-link:focus {
  color: var(--colorBrand);
  text-decoration: none;
}

@media (max-width: 80rem) {
  .AppNavigationItem-submenu .AppNavigationItem-link {
    padding: 1em 0 1em 1.5em;
    font-weight: 400;
    font-size: .9em;
  }
}

/*# sourceMappingURL=navigation-item.min.css.map */
.AppNavigation {
  flex: 1;
}

@media (max-width: 80rem) {
  .AppNavigation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: calc(100vw - 2rem);
    background: var(--colorThemeAccent);
    box-shadow: 0 0 32px #0000005c;
    padding: 0;
    z-index: var(--layerPageZIndex);
    overflow: auto;
    transition: var(--animationBase);
    transform: translateX(100%);
    opacity: 0;
  }
  .AppNavigation.is-opened {
    transform: translateX(0);
    opacity: 1;
  }
}

.AppNavigation-closer {
  position: absolute;
  top: 0;
  right: 0;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--colorBrand);
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  transition: var(--animationBase);
  z-index: 5;
}

.AppNavigation-closer:hover, .AppNavigation-closer:active, .AppNavigation-closer:focus {
  background: hsl(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 0.8 * 1%));
}

@media (min-width: 80.1rem) {
  .AppNavigation-closer {
    display: none;
  }
}

.AppNavigation-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 80rem) {
  .AppNavigation-list {
    flex-direction: column;
    padding: var(--spaceLg);
  }
}

.AppNavigation-button {
  margin-left: var(--spaceLg);
  width: calc(100% - var(--spaceLg) - var(--spaceLg));
  justify-content: center;
}

@media (min-width: 48.1rem) {
  .AppNavigation-button {
    display: none;
  }
}

/*# sourceMappingURL=navigation.min.css.map */
.AppHeader {
  position: relative;
  z-index: var(--layerHeaderZIndex);
  padding-top: var(--spaceMd);
  padding-bottom: var(--spaceMd);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}

@media (max-width: 520px) {
  .AppHeader {
    padding: .8em 0;
  }
}

.AppHeader-frame {
  display: flex;
  align-items: center;
}

@media (max-width: 80rem) {
  .AppHeader-logo {
    margin-right: auto;
    width: 20vw;
    min-width: 120px;
    max-width: 180px;
  }
}

.AppHeader-logo img, .AppHeader-logo svg {
  max-width: 100%;
  height: auto;
}

.AppHeader-contact {
  font-weight: 300;
  font-size: var(--textSm);
  margin-bottom: .4em;
}

@media (max-width: 64rem) {
  .AppHeader-contact {
    display: none;
  }
}

.AppHeader-contact a {
  color: inherit;
  color: var(--textSubtle);
}

.AppHeader-contact a svg {
  color: var(--colorBrand);
}

.AppHeader-boxes {
  display: flex;
  margin-left: var(--spaceSm);
  margin-right: var(--spaceSm);
  position: relative;
}

@media (max-width: 700px) {
  .AppHeader-boxes {
    display: none;
  }
}

.AppHeader-box {
  display: flex;
  align-items: center;
}

.AppHeader-box:not(:first-of-type) {
  margin-left: var(--spaceMd);
}

.AppHeader-box svg {
  width: 3em;
  height: 3em;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.15));
  margin-right: var(--spaceXs);
}

.AppHeader-boxText {
  font-size: var(--textSm);
}

.AppHeader-boxText strong {
  display: block;
}

.AppHeader-boxText a {
  color: #000;
}

@media (max-width: 48rem) {
  .AppHeader-button {
    display: none;
  }
}

.AppHeader-hmb {
  display: flex;
  align-items: center;
  margin-left: var(--spaceLg);
  cursor: pointer;
  font-weight: bold;
}

.AppHeader-hmb span {
  font-size: var(--textMd);
}

.AppHeader-hmb svg {
  width: 3em;
  height: 3em;
  margin-right: var(--spaceXs);
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.15));
}

@media (max-width: 700px) {
  .AppHeader-hmb svg {
    width: 2em;
    height: 2em;
  }
}

@media (max-width: 32rem) {
  .AppHeader-hmb {
    margin-left: var(--spaceMd);
  }
}

@media (min-width: 80.1rem) {
  .AppHeader-hmb {
    display: none;
  }
}

/*# sourceMappingURL=header.min.css.map */
.FooterNav {
  margin: 0 auto;
  max-width: var(--sizeContentWidthMedium);
  font-size: var(--textRg);
}

.FooterNav-item {
  margin-bottom: var(--spaceXxs);
}

/*# sourceMappingURL=footer-nav.min.css.map */
.AppFooter {
  color: #fff;
}

.AppFooter a {
  color: #fff;
}

.AppFooter-top {
  background: var(--colorBrand) url(/frontend/images/_webp/footer/bg.webp) no-repeat center right;
  background-size: cover;
  padding: 2.8em 0 calc(2.8em - var(--spaceLg));
}

@media (max-width: 47.9rem) {
  .AppFooter-top {
    background: var(--colorBrand);
  }
}

.AppFooter-frame {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "nav contact map"
 "userSection social map";
}

@media (max-width: 1200px) {
  .AppFooter-frame {
    grid-template-columns: 0.7fr repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .AppFooter-frame {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "nav userSection "
 "contact social"
 "map map";
  }
}

@media (max-width: 480px) {
  .AppFooter-frame {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    grid-template-areas: "nav"
 "userSection"
 "contact"
 "social"
 "map";
  }
}

.AppFooter-contact {
  grid-area: contact;
}

.AppFooter-iconRow {
  margin-bottom: var(--spaceSm);
  display: flex;
  align-items: center;
}

.AppFooter-iconRow.address {
  align-items: flex-start;
}

.AppFooter-iconRow .icon {
  display: flex;
  align-items: center;
}

.AppFooter-iconRow svg {
  margin-right: var(--spaceSm);
  width: 34px;
}

.AppFooter-iconRow strong {
  display: inline-block;
  width: 86px;
}

@media (max-width: 650px) {
  .AppFooter-iconRow strong {
    display: none;
  }
}

.AppFooter-map {
  grid-area: map;
}

.AppFooter-map svg {
  margin-top: 25px;
  width: 358px;
  max-width: 100%;
}

.AppFooter-title {
  margin-bottom: var(--spaceRg);
  font-size: var(--textMd);
  color: #fff;
}

.AppFooter-col {
  margin-bottom: var(--spaceLg);
}

.AppFooter-nav {
  grid-area: nav;
}

.AppFooter-userSection {
  grid-area: userSection;
}

.AppFooter-socials {
  grid-area: social;
}

.AppFooter-copy {
  font-size: var(--textSm);
  width: 100%;
  padding: var(--spaceMd) var(--sizeContentOffset);
  margin: 0 auto;
  background: #000;
}

.AppFooter-copy .u-frameMd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 47.9rem) {
  .AppFooter-copy .u-frameMd {
    flex-direction: column;
  }
}

.AppFooter-copy p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.AppFooter-copy p a {
  text-decoration: underline;
}

.AppFooter-copy p a:hover {
  text-decoration: none;
}

.AppFooter-copy svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

@media (max-width: 25rem) {
  .AppFooter-copy svg {
    width: 1.4em;
  }
}

/*# sourceMappingURL=footer.min.css.map */
.CookiesBar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 20em;
  background: var(--colorThemeAccent);
  z-index: var(--layerModalZIndex);
  box-shadow: 0 0 28px #00000040;
  padding: var(--spaceMd);
  font-size: var(--textXs);
  overflow: hidden;
}

.CookiesBar-text {
  margin-bottom: var(--spaceSm);
}

.CookiesBar-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  z-index: var(--layerNegativeZIndex);
  opacity: .05;
  transform: rotate(5deg);
}

.CookiesBar .ButtonBase {
  min-width: auto;
}

/*# sourceMappingURL=cookies-bar.min.css.map */
.SpinnerGlobal{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;background:var(--colorShadeBg);pointer-events:none;opacity:0;z-index:var(--layerSpinnerZIndex);transition:var(--animationBase)}.SpinnerGlobal.is-active{pointer-events:auto;opacity:1}.SpinnerGlobal-spinner{margin:auto;width:25px;height:25px;background-color:transparent;border-radius:50%;display:block;-webkit-animation:spinner 2s linear infinite;animation:spinner 2s linear infinite}.SpinnerGlobal-spinner:after,.SpinnerGlobal-spinner:before{display:block;border-radius:50%;content:"";width:25px;height:25px;background-color:var(--colorBrand);-webkit-animation:pulse 1s linear infinite alternate;animation:pulse 1s linear infinite alternate}.SpinnerGlobal-spinner:before{margin-left:25px}.SpinnerGlobal-spinner:after{margin-top:-25px;margin-left:-25px}@-webkit-keyframes spinner{to{transform:rotate(1turn)}}@keyframes spinner{to{transform:rotate(1turn)}}@-webkit-keyframes pulse{to{transform:scale(.8);opacity:.5}}@keyframes pulse{to{transform:scale(.8);opacity:.5}}
/*# sourceMappingURL=spinner-global.min.css.map */
