@charset "UTF-8";
:root {
  --colorBrand: hsl(204, 89%, 51%);
  --colorBrand-h: 204;
  --colorBrand-s: 89;
  --colorBrand-l: 51;
  --colorBrand-contrast: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  --colorBrandSecondary: hsl(205, 79%, 95%);
  --colorBrandSecondary-h: 205;
  --colorBrandSecondary-s: 79;
  --colorBrandSecondary-l: 95;
  --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;
  --colorBrandBg: hsla(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 1%), 0.08);
  --colorBrandLight: #7FC7F5;
  --colorShadeBg: #DEF0FC;
  --colorOutlines: #e3e3e3;
  --colorOutlinesLight: #f5f5f5;
  --colorHighlighted: #ba0000;
  --starsColor: #fcad00;
  --heroOverlayGradient: linear-gradient(to top, #000, transparent 100%);
  --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: #000;
  --colorTextSubtle: #4a4a4a;
  --colorLinkText: var(--colorBrand);
  --colorLinkTextActive: var(--colorText);
  --colorInputBorder: var(--colorShadeBg);
  --colorInputBackground: var(--colorShadeBg);
  --colorInputBorderFocus: var(--colorBrand);
  --colorInputBackgroundFocus: var(--colorShadeBg);
  --colorInputBackgroundInvalid: var(--colorThemeAccent);
  --colorButtonBg: var(--colorBrand);
  --colorButtonDisabledBg: gray;
  --colorButtonText: white;
  --stateInfo: #5895f5;
  --stateSuccess: #4dab00;
  --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;
  --cookiePopupLayer: 24;
  --layerSpinnerZIndex: 25;
}

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: 112rem;
  --sizeContentWidthMedium: 75rem;
  --sizeContentWidthSmall: 61.25rem;
  --sizeInputFont: var(--textSm);
  --sizeInputPaddingVertical: 1rem;
  --sizeInputPaddingHorizontal: 1rem;
  --sizeInputPadding: var(--sizeInputPaddingVertical) var(--sizeInputPaddingHorizontal);
  --sizeInputBorder: 1px;
  --sizeInputBorderRadius: 0;
  --sizeButtonFont: var(--textSm);
  --sizeButtonPaddingVertical: var(--spaceSm);
  --sizeButtonPaddingHorizontal: var(--spaceLg);
  --sizeButtonPadding: var(--sizeButtonPaddingVertical) var(--sizeButtonPaddingHorizontal);
  --sizeButtonBorder: 1px;
  --sizeButtonBorderRadius: 0;
  --sectionSpacing: 2.5rem;
}

@media (min-width: 40rem) {
  :root {
    --sizeContentOffset: 2.5rem;
  }
}

@media (min-width: 62rem) {
  :root {
    --sizeContentOffset: 4rem;
  }
}

@media (min-width: 112rem) {
  :root {
    --sectionSpacing: 5rem;
  }
}

/*
	!! DO NOT FORGET TO ADD FONTS TO '@preload.php' FILE AS WELL !!
	----
	Overwrite $font-list object in _font-list.scss file !!
*/
/* !! DO NOT FORGET TO ADD FONTS TO '@preload-fonts.php' FILE AS WELL !! */
@font-face {
  font-family: Poppins;
  src: url(/frontend/fonts/Poppins/Poppins-extrabold-normal.woff2) format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: fallback;
}

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

@font-face {
  font-family: Poppins;
  src: url(/frontend/fonts/Poppins/Poppins-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-textRight {
  text-align: right;
}

.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;
}

.u-hiddenOverflow {
  overflow: hidden;
}

.u-noWrap {
  white-space: nowrap;
}

.u-textUppercase {
  text-transform: uppercase;
}

.u-textLowercase {
  text-transform: lowercase;
}

:root {
  --font-primary: Poppins, 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: 1.5;
  --headingLineHeight: 1.2;
}

@media (min-width: 48.01rem) {
  :root {
    --textBaseSize: 1.15rem;
  }
}

@media (min-width: 64.01rem) {
  :root {
    --textBaseSize: 1.25rem;
  }
}

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: 2rem;
}

@media (min-width: 62rem) {
  h1, .u-textXxl {
    font-size: 3rem;
  }
}

@media (min-width: 112rem) {
  h1, .u-textXxl {
    font-size: 5rem;
  }
}

h2, .u-textXl {
  font-size: 1.85rem;
  margin-bottom: var(--spaceSm);
  color: var(--colorBrand);
}

@media (min-width: 62rem) {
  h2, .u-textXl {
    font-size: 2rem;
  }
}

@media (min-width: 112rem) {
  h2, .u-textXl {
    font-size: 2.5rem;
  }
}

h3, .u-textLg {
  font-size: 1.5rem;
  color: var(--colorBrand);
}

@media (min-width: 62rem) {
  h3, .u-textLg {
    font-size: 1.85rem;
  }
}

@media (min-width: 112rem) {
  h3, .u-textLg {
    font-size: 2rem;
  }
}

h4, .u-textMd {
  font-size: 1.15rem;
}

@media (min-width: 62rem) {
  h4, .u-textMd {
    font-size: 1.35rem;
  }
}

@media (min-width: 112rem) {
  h4, .u-textMd {
    font-size: 1.5rem;
  }
}

.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));
}

.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;
}

[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 #0000001a;
  line-height: 1.5;
  margin-bottom: var(--spaceMd);
}

.AppAlert a {
  color: inherit;
  text-decoration: underline;
}

.AppAlert a:hover, .AppAlert a:active, .AppAlert a:focus {
  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 */
.PageDetail-frame {
  margin-top: var(--spaceLg);
}

/*# sourceMappingURL=page-detail.min.css.map */
main {
  padding-top: var(--spaceLg);
  padding-bottom: var(--spaceXl);
}

/*# sourceMappingURL=layout.min.css.map */
.SubpageHeader {
  position: relative;
  color: #fff;
  background: #000;
  margin-top: calc(var(--spaceLg) * -1);
  margin-bottom: var(--sectionSpacing);
}

.SubpageHeader:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background: var(--heroOverlayGradient);
  height: 50%;
  width: 100%;
  opacity: .5;
}

.SubpageHeader-frame {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  min-height: clamp(15rem, 30vw, 35rem);
  padding: 20vw var(--sectionSpacing) var(--sectionSpacing);
  z-index: 2;
}

.SubpageHeader-title {
  margin: 0;
  color: inherit;
}

.SubpageHeader picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.SubpageHeader picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.SubpageHeader .Breadcrumbs-frame {
  padding: 0;
}

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

.SubpageHeader + .StyledText > .TextTwoCol:first-of-type {
  background: var(--colorShadeBg);
  padding: var(--sectionSpacing);
  margin-top: calc(var(--sectionSpacing) * -1);
}

/*# sourceMappingURL=subpage-header.min.css.map */
@charset "UTF-8";
.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(--textXs);
  padding: var(--spaceSm) 0;
}

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

@media (max-width: 48rem) {
  .Breadcrumbs-item:before {
    content: '❮';
    margin-left: 0;
  }
}

@media (min-width: 48.01rem) {
  .Breadcrumbs-item:not(:first-child):before {
    content: '›';
  }
}

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

.Breadcrumbs-item a {
  text-decoration: none;
  color: var(--colorText);
}

.Breadcrumbs-item a[href] {
  text-decoration: underline;
  transition: var(--animationBase);
}

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

.Breadcrumbs--modern {
  background-color: var(--colorBrandBg);
}

.Breadcrumbs--modern .Breadcrumbs-inner {
  padding: var(--spaceMd) 0;
}

/*# sourceMappingURL=breadcrumbs.min.css.map */
@charset "UTF-8";
.StyledText {
  --lineHeightMultiplier: 1.1;
  --textVspaceMultiplier: 1.35;
  font-size: 1rem;
}

.StyledText h1, .StyledText h2, .StyledText h3, .StyledText h4 {
  line-height: calc(var(--headingLineHeight) * var(--lineHeightMultiplier, 1));
  margin-bottom: calc(var(--spaceUnit) * 0.45 * var(--textVspaceMultiplier, 1));
}

.StyledText h1 + .TextTwoCol, .StyledText h2 + .TextTwoCol, .StyledText h3 + .TextTwoCol, .StyledText h4 + .TextTwoCol {
  margin-top: 0;
}

.StyledText h2, .StyledText h3, .StyledText h4 {
  margin-top: calc(var(--spaceUnit) * 0.75 * var(--textVspaceMultiplier, 1));
}

.StyledText p, .StyledText ul li, .StyledText ol li {
  line-height: calc(var(--bodyLineHeight) * var(--lineHeightMultiplier, 1));
  max-width: 62rem;
}

.StyledText ul, .StyledText ol, .StyledText p, .StyledText table {
  margin-bottom: calc(var(--spaceUnit) * 0.75 * var(--textVspaceMultiplier, 1));
}

.StyledText figcaption {
  margin-top: calc(var(--spaceUnit) * 0.5);
}

.StyledText em {
  font-style: italic;
}

.StyledText hr {
  margin: var(--spaceLg) 0;
  border: none;
  border-bottom: 1px solid var(--colorOutlines);
}

.StyledText blockquote {
  quotes: "“" "”" "‘" "’";
  border-top: 1px solid var(--colorOutlines);
  border-bottom: 1px solid var(--colorOutlines);
  font-family: Source Sans Pro, sans-serif;
  position: relative;
  padding: var(--spaceMd) 0;
  margin: var(--spaceLg) 0;
  font-style: italic;
}

.StyledText blockquote:before {
  content: open-quote;
  color: var(--colorOutlines);
  position: absolute;
  left: 50%;
  top: .2em;
  transform: translate(-50%, -50%);
  font-size: 4em;
  font-weight: 600;
  text-shadow: 5px 0 0 var(--colorThemeAccent);
}

.StyledText blockquote:after {
  content: no-close-quote;
}

.StyledText blockquote p {
  position: relative;
}

.StyledText blockquote p:last-child {
  margin-bottom: 0;
}

.StyledText ul, .StyledText ol {
  list-style-type: none;
  margin-left: var(--spaceMd);
}

@media (max-width: 32rem) {
  .StyledText ul, .StyledText ol {
    margin-left: var(--spaceXxs);
  }
}

.StyledText ul ul, .StyledText ul ol, .StyledText ol ul, .StyledText ol ol {
  margin-left: var(--spaceSm);
  margin-top: .5em;
  margin-bottom: .2em;
  font-size: .9em;
}

.StyledText ul li, .StyledText ol li {
  position: relative;
  padding-left: 1.5em;
  padding-bottom: .7em;
}

.StyledText ul li:last-child, .StyledText ol li:last-child {
  padding-bottom: 0;
}

.StyledText ul li:before, .StyledText ol li:before {
  content: ' ';
  display: block;
  width: 1em;
  height: 2px;
  background: var(--colorBrand);
  position: absolute;
  left: -0.5em;
  top: 0.7em;
  box-shadow: 0 0 0 4px var(--colorThemeAccent);
  z-index: var(--layerPageZIndex);
}

.StyledText ol {
  list-style-type: none;
  counter-reset: li;
}

.StyledText ol li:before {
  counter-increment: li;
  content: counter(li) ".";
  background: var(--colorThemeAccent);
  padding: .2em 0;
  line-height: 1;
  width: auto;
  height: auto;
  left: -1em;
  top: 0.1em;
  min-width: 1.7em;
  text-align: center;
}

.StyledText ol ul > li {
  content: ' ';
}

.StyledText table {
  border-collapse: collapse;
  background: white;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.StyledText table th {
  border: 1px solid var(--colorBrand);
}

.StyledText table td, .StyledText table th {
  padding: var(--spaceSm) 0 var(--spaceSm) var(--spaceMd);
}

.StyledText table td:last-child, .StyledText table th:last-child {
  padding-right: var(--spaceMd);
}

.StyledText table thead tr {
  background: var(--colorShadeBg);
  color: hsl(0, 0%, calc((var(--colorShadeBg-l) - 60) * -100%));
}

.StyledText table tbody tr {
  border: 0;
}

.StyledText table td, .StyledText table th {
  text-align: left;
}

.StyledText iframe {
  border: none;
  width: 100%;
}

.StyledText > *:first-child, .StyledText div > *:first-child {
  margin-top: 0;
}

.StyledText > *:last-child, .StyledText div > *:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=styled-text.min.css.map */
.Services {
  background: var(--colorShadeBg);
  margin-top: var(--sectionSpacing);
  padding: var(--sectionSpacing) 0;
  font-size: 1rem;
}

.Services-inner {
  display: grid;
  align-items: flex-start;
  gap: 3rem;
}

@media (min-width: 62rem) {
  .Services-inner {
    grid-template-columns: 15rem auto;
  }
}

@media (min-width: 75rem) {
  .Services-inner {
    grid-template-columns: 21rem auto;
  }
}

.ServicesNav {
  position: sticky;
  top: 5rem;
  display: none;
  flex-flow: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 62rem) {
  .ServicesNav {
    display: flex;
  }
}

.ServicesNavItem {
  font-weight: 600;
  color: var(--colorText);
}

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

.ServicesListGroup:not(:last-of-type) {
  margin-bottom: 2.5rem;
}

@media (min-width: 62rem) {
  .ServicesListGroup {
    padding-top: 5rem;
    margin-bottom: 0;
  }
  .ServicesListGroup:first-of-type {
    margin-top: -5rem;
  }
}

/*# sourceMappingURL=services.min.css.map */
.ServicesListItem {
  background: #fff;
  padding: 1rem;
}

@media (min-width: 48rem) {
  .ServicesListItem {
    padding: 1rem 2.5rem;
  }
}

.ServicesListItem:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

.ServicesListItem-symbol {
  position: relative;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--colorShadeBg);
}

@media (min-width: 112rem) {
  .ServicesListItem-symbol {
    width: 4rem;
    min-width: 4rem;
    height: 4rem;
  }
}

.ServicesListItem-symbol-inner {
  position: absolute;
  width: 1rem;
  height: 1px;
  background: var(--colorBrand);
  left: 50%;
  top: 50%;
  transform: translate(-50%);
}

@media (min-width: 112rem) {
  .ServicesListItem-symbol-inner {
    width: 1.5rem;
  }
}

.ServicesListItem-symbol-inner:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--colorBrand);
  transition: var(--animationBase);
  transform: rotate(90deg);
}

.ServicesListItem.is-opened .ServicesListItem-symbol-inner:after {
  transform: rotate(0);
}

.ServicesListItem-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  transition: var(--animationBase);
}

.ServicesListItem-title:hover, .ServicesListItem-title:active, .ServicesListItem-title:focus {
  color: var(--colorBrand);
}

.ServicesListItem-title h4 {
  margin: 0;
}

.ServicesListItem-text {
  overflow: hidden;
  max-height: 0;
  transform-origin: top center;
  transition: var(--animationBase);
  transform: scaleY(0);
  opacity: 0;
  font-size: var(--textSm);
}

.ServicesListItem.is-opened .ServicesListItem-text {
  transform: scaleY(1);
  margin-top: var(--spaceMd);
  margin-bottom: var(--spaceSm);
  max-height: 1500px;
  opacity: 1;
}

/*# sourceMappingURL=item.min.css.map */
.ImageGallery {
  border-top: 1px solid var(--colorBrand);
  padding: var(--sectionSpacing) 0 0;
  margin: var(--sectionSpacing) 0;
}

.ImageGallery-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin: 0 0 var(--spaceLg);
  counter-reset: galleryList;
}

@media (min-width: 62rem) {
  .ImageGallery-inner {
    gap: 2.5rem;
  }
}

.ImageGallery-item {
  background: var(--colorBrand);
  overflow: hidden;
  counter-increment: galleryList;
  position: relative;
}

.ImageGallery-itemText {
  font-size: var(--textBaseSize);
}

.ImageGallery-item:after {
  content: counter(galleryList, decimal-leading-zero);
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  font-weight: 700;
  font-size: var(--textLg);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--animationBase);
  transform: scale(0);
  opacity: 0;
  text-align: center;
  padding: var(--spaceSm);
}

@media (max-width: 25rem) {
  .ImageGallery-item:after {
    font-size: var(--testSm);
  }
}

.ImageGallery-item:hover:after {
  transform: scale(1);
  opacity: 1;
}

.ImageGallery-item:hover img {
  opacity: .4;
}

.ImageGallery-item.u-hidden.is-visible {
  display: block !important;
}

.ImageGallery-item img {
  transition: var(--animationBase);
}

/*# sourceMappingURL=image-gallery.min.css.map */
.VisitorsNotificationList {
  position: relative;
  overflow: hidden;
  animation: rollOpen 2s ease-in-out;
  box-shadow: inset 0 -4px 10px lightgrey;
}

@keyframes rollOpen {
  0% {
    max-height: 0;
    overflow: hidden;
  }
  50% {
    max-height: 0;
    overflow: hidden;
  }
  100% {
    max-height: 100vh;
    overflow: hidden;
  }
}

.VisitorsNotificationList::before {
  content: '';
  position: absolute;
  height: 100%;
  width: clamp(150px, 220vw, 300px);
  background: linear-gradient(-45deg, transparent 25%, var(--colorBrand) 35%, var(--colorBrand) 65%, transparent 75%);
  opacity: 0.1;
  z-index: -1;
  top: 0;
  left: 0;
  transform: translate(-100%, 0);
  animation: backgroundStrip 8s ease-in-out infinite;
}

@keyframes backgroundStrip {
  80% {
    left: 0;
    transform: translate(-100%, 0);
  }
  100% {
    left: 100%;
    transform: translate(100%, 0);
  }
}

/*# sourceMappingURL=visitors-notification-list.min.css.map */
.AppNavigation {
  margin-left: var(--logoWidth);
}

@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);
}

.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.01rem) {
  .AppNavigation-closer {
    display: none;
  }
}

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

@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.01rem) {
  .AppNavigation-button {
    display: none;
  }
}

/*# sourceMappingURL=navigation.min.css.map */
@charset "UTF-8";
.AppNavigationItem {
  position: relative;
  margin: 0.2em 0 0.2em var(--spaceLg);
}

@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:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 3px;
  width: 100%;
  background: var(--colorBrand);
  opacity: 0;
  pointer-events: none;
  transition: var(--animationBase);
  transform: scale(0.5) translateY(4px);
}

.AppNavigationItem.is-active:after, .AppNavigationItem:hover:after, .AppNavigationItem:focus:after {
  opacity: 1;
  transform: scale(1) translateY(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 {
  position: relative;
  color: var(--colorText);
  text-decoration: none;
  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 {
  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.01rem) {
  .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(--textMd);
  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 */
.HeaderBox {
  position: relative;
}

.HeaderBox-content {
  color: var(--colorText);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--animationBase);
  position: relative;
  white-space: nowrap;
  padding: 1em .5em;
  font-size: 1em;
  line-height: 1;
}

@media (min-width: 48.01rem) {
  .HeaderBox-content {
    padding: 1em;
  }
}

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

.HeaderBox-content svg {
  font-size: .86em;
}

.HeaderBox-label {
  margin-left: .5em;
}

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

.HeaderBox-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  background: var(--colorThemeAccent);
  color: var(--colorText);
  font-weight: 700;
  font-size: .5em;
  width: 1.6em;
  height: 1.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--animationBase);
}

.HeaderBox-badge:empty {
  opacity: 0;
}

/*# sourceMappingURL=header-box.min.css.map */
.QuickSearchItem {
  border-bottom: 1px solid #ededed;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: .8rem 1rem;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: .75em;
  transition: var(--animationBase);
}

.QuickSearchItem:hover, .QuickSearchItem:active, .QuickSearchItem:focus {
  text-decoration: none;
  background: #0000000a;
}

.QuickSearchItem-image {
  margin-right: var(--spaceSm);
}

.QuickSearchItem-content {
  flex: 1;
}

.QuickSearchItem-name {
  transition: var(--animationBase);
}

.QuickSearchItem:hover .QuickSearchItem-name {
  color: var(--colorBrand);
}

.QuickSearchItem-subText {
  font-size: .85em;
  font-weight: 400;
  color: var(--colorTextSubtle);
}

/*# sourceMappingURL=quick-search-item.min.css.map */
.QuickSearch {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--layerModalZIndex);
  background: var(--colorShadeBg);
  pointer-events: none;
  transition: var(--animationBase);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  padding: var(--spaceSm);
  perspective: 250px;
}

.is-active.QuickSearch {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.QuickSearch-content {
  transform: translateY(80%) rotateX(-110deg) translateZ(-200px) scale(0.8);
  transform-origin: top center;
  transition: all 0.4s cubic-bezier(0.64, -0.19, 0.23, 1.33);
  background: var(--colorThemeAccent);
  padding: var(--spaceMd);
  position: relative;
  max-width: 100%;
  margin: auto;
  opacity: 0;
}

.QuickSearch.is-active .QuickSearch-content {
  transform: translateY(0) rotateX(0) translateZ(0) scale(1);
  opacity: 1;
}

.QuickSearch {
  color: var(--colorText);
}

.QuickSearch-content {
  width: 50rem;
  box-shadow: 0 0 0 20px #ffffff05;
  padding: 0;
}

.QuickSearch-search {
  display: flex;
  align-items: center;
  padding: 1.2em 1.5em;
}

.QuickSearch-icon {
  width: 1.1em;
  height: auto;
}

.QuickSearch-input {
  flex: 1;
  height: 1.9em;
  margin: 0 var(--spaceSm);
  color: var(--colorText);
  border: none;
  outline: none;
  font-size: 1em;
  min-width: 0;
}

.QuickSearch-input::-webkit-search-decoration, .QuickSearch-input::-webkit-search-cancel-button, .QuickSearch-input::-webkit-search-results-button, .QuickSearch-input::-webkit-search-results-decoration {
  display: none;
}

.QuickSearch-input::placeholder {
  color: var(--colorTextSubtle);
}

.QuickSearch-cancel {
  cursor: pointer;
  transition: var(--animationBase);
}

.QuickSearch-cancel svg {
  display: block;
  width: 1.2em;
  height: auto;
}

.QuickSearch-cancel:hover {
  color: var(--colorBrand);
}

.QuickSearch-results {
  border-top: 1px solid #ededed;
  overflow: auto;
  max-height: calc(100vh - 120px);
}

.QuickSearch-noResults {
  padding: 1em 1.8em;
  font-size: var(--textSm);
  font-weight: 600;
  color: var(--colorErrorsDefault);
}

.QuickSearch-title {
  font-weight: 700;
  padding: .8rem 1rem .2rem;
}

.QuickSearch-title:after {
  content: ' ';
  display: block;
  width: 1.7em;
  height: 2px;
  background: var(--colorBrand);
  margin-top: .15em;
}

/*# sourceMappingURL=quick-search.min.css.map */
:root {
  --logoWidth: 7rem;
}

@media (min-width: 40rem) {
  :root {
    --logoWidth: 8.5rem;
  }
}

@media (min-width: 62rem) {
  :root {
    --logoWidth: 10.4rem;
  }
}

.AppHeader {
  position: sticky;
  top: 0;
  z-index: var(--layerHeaderZIndex);
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  transition: var(--animationBase);
}

.AppHeader.is-up {
  transform: translateY(-100%);
}

.AppHeader.is-sticked {
  box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.1);
}

.AppHeader.is-sticked .AppHeader-logo {
  padding: .5rem;
  width: 3.8rem;
}

.AppHeader-holder {
  position: relative;
  max-width: var(--sizeContentWidthHd);
  margin: 0 auto;
  padding: .35rem 0;
  color: hsl(0, 0%, calc((var(--colorContrastBg-l) - 60) * -100%));
}

@media (min-width: 120rem) {
  .AppHeader-holder {
    padding-right: var(--sizeContentOffset);
  }
}

.AppHeader-frame {
  display: flex;
  align-items: center;
  padding-right: var(--sizeContentOffset);
}

@media (min-width: 1920px) {
  .AppHeader-frame {
    padding-right: 0;
  }
}

.AppHeader-logo {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  padding: 0.5rem;
  width: var(--logoWidth);
  margin-right: auto;
  transition: var(--animationBase);
}

@media (min-width: 40rem) {
  .AppHeader-logo {
    padding: 1rem;
  }
}

@media (min-width: 62rem) {
  .AppHeader-logo {
    padding: 1.5rem;
  }
}

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

.AppHeader-center {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.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);
}

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

.AppHeader-boxes {
  display: flex;
  margin-left: auto;
  position: relative;
}

.AppHeader-hmb {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: .5rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--colorBrand);
  padding: 0 .5rem;
}

@media (min-width: 32.01rem) {
  .AppHeader-hmb {
    padding: 0 1em;
  }
}

.AppHeader-hmb svg {
  width: 1.6rem;
  height: auto;
}

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

/*# sourceMappingURL=header.min.css.map */
body {
  overflow-x: hidden;
}

.Partners {
  position: relative;
  margin: 0 auto;
  max-width: var(--sizeContentWidthHd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2.5rem 0;
}

.Partners:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 0.063rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--colorBrand);
}

.Partners-swiper {
  position: relative;
  overflow: hidden;
  margin: 1rem 0;
}

.Partners-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  transform: translate3d(0, 0, 0);
}

.Partners-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  bottom: var(--spaceSm);
  left: 50%;
  transform: translateX(-50%);
}

.Partners-pagination .swiper-pagination-bullet {
  width: .8em;
  height: .8em;
  border-radius: 50%;
  margin-left: var(--spaceXs);
  background: var(--colorSecondaryBg);
  transition: var(--animationBase);
  outline: none;
  cursor: pointer;
}

.Partners-pagination .swiper-pagination-bullet-active, .Partners-pagination .swiper-pagination-bullet:hover {
  background: var(--colorBrand);
}

.PartnersItem {
  display: flex;
  align-self: center;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  overflow: hidden;
}

/*# sourceMappingURL=partners.min.css.map */
.FooterNav-item {
  margin-bottom: var(--spaceXxs);
}

.FooterNav-item a {
  color: inherit;
  text-decoration: underline;
}

.FooterNav-item a:hover, .FooterNav-item a:active, .FooterNav-item a:focus {
  text-decoration: none;
}

/*# sourceMappingURL=footer-nav.min.css.map */
.AppFooter {
  background: #000;
  color: #fff;
  font-size: .75rem;
}

@media (min-width: 62rem) {
  .AppFooter {
    font-size: .875rem;
  }
}

@media (min-width: 112rem) {
  .AppFooter {
    font-size: 1rem;
  }
}

.AppFooter a {
  color: inherit;
}

.AppFooter-frame {
  max-width: var(--sizeContentWidthHd);
  margin: 0 auto;
  padding-left: var(--sizeContentOffset);
}

.AppFooter-inner {
  display: grid;
  grid-template-areas: 'main scroll' 'nav scroll' 'copy scroll';
  grid-template-columns: auto 5rem;
  gap: 1px;
  background: rgba(255, 255, 255, 0.4);
}

@media (min-width: 62rem) {
  .AppFooter-inner {
    grid-template-columns: auto 14rem;
  }
}

.AppFooter-main {
  grid-area: main;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: #000;
  padding: 3rem 0;
  font-size: 1.125em;
}

@media (min-width: 62rem) {
  .AppFooter-main {
    padding: 5rem 0;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 75rem) {
  .AppFooter-main {
    grid-template-columns: 1fr 1fr 2fr;
  }
}

.AppFooter-address {
  grid-column: 1 / -1;
}

@media (min-width: 75rem) {
  .AppFooter-address {
    grid-column: auto;
  }
}

.AppFooter-nav {
  grid-area: nav;
  background: #000;
  font-size: 1em;
  padding: var(--spaceMd) 1.5rem var(--spaceMd) 0;
}

.AppFooter-nav .FooterNav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.AppFooter-nav a {
  text-decoration: none;
}

.AppFooter-nav a:hover, .AppFooter-nav a:active, .AppFooter-nav a:focus {
  text-decoration: underline;
}

.AppFooter-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: scroll;
  background: #000;
  cursor: pointer;
}

.AppFooter-title {
  font-size: 1.125em;
  font-weight: 700;
  color: #fff;
}

.AppFooter-el a, .AppFooter-el p {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.AppFooter-el a {
  white-space: nowrap;
}

.AppFooter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  background: var(--colorShadeBg);
  border-radius: 50%;
}

@media (min-width: 62rem) {
  .AppFooter-icon {
    width: 4rem;
    min-width: 4rem;
    height: 4rem;
  }
}

.AppFooter-socials {
  display: flex;
  align-items: center;
  margin-top: var(--spaceMd);
}

.AppFooter-socials a {
  margin-right: var(--spaceXs);
  transition: var(--animationBase);
  color: inherit;
}

.AppFooter-socials a:hover {
  color: var(--colorBrand);
}

.AppFooter-socials a:last-child {
  margin-right: 0;
}

.AppFooter-copy {
  grid-area: copy;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: var(--spaceMd) 1.5rem var(--spaceMd) 0;
  background: #000;
}

.AppFooter-copy p {
  display: flex;
  align-items: center;
  margin: 0;
}

@media (max-width: 25rem) {
  .AppFooter-copy p:first-child {
    width: 100%;
    margin-bottom: var(--spaceXs);
  }
}

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

.AppFooter-copy svg path {
  fill: #fff;
}

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

/*# sourceMappingURL=footer.min.css.map */
.CookiesBar {
  --cookieBar-sideOffset: 2rem;
  position: fixed;
  bottom: 1.5rem;
  left: var(--cookieBar-sideOffset);
  width: 28em;
  max-width: calc(100% + 1.5em);
  background: var(--colorThemeAccent);
  z-index: var(--layerModalZIndex);
  box-shadow: 0 0 28px #00000040;
  padding: var(--spaceLg) 2.4em;
  font-size: .875rem;
  overflow: hidden;
}

.CookiesBar-left {
  left: var(--cookieBar-sideOffset);
  right: auto;
}

.CookiesBar-right {
  left: auto;
  right: var(--cookieBar-sideOffset);
}

@media (max-width: 40rem) {
  .CookiesBar {
    --cookieBar-sideOffset: .75rem;
    padding: var(--spaceXl) 1.25em var(--spaceMd);
  }
}

.CookiesBar-buttonsWrapper {
  display: flex;
  flex-flow: row wrap;
  gap: .8em 1.2em;
}

.CookiesBar-buttonsWrapper > * {
  flex: 1 0 40%;
}

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

.CookiesBar-button {
  position: relative;
  font-size: 1em;
  font-weight: bold;
  padding: 0.64em 1.2em;
  text-transform: none;
  border: 0;
  outline: 0;
  transition: var(--animationBase);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  z-index: 1;
  text-transform: uppercase;
}

.CookiesBar-button:hover {
  text-decoration: none;
}

.CookiesBar-button--disableCookies {
  background: var(--colorSecondaryBg);
  color: hsl(0, 0%, calc((var(--colorSecondaryBg-l) - 60) * -100%));
}

.CookiesBar-button--disableCookies:hover {
  background: hsl(var(--colorSecondaryBg-h), calc(var(--colorSecondaryBg-s) * 1%), calc(var(--colorSecondaryBg-l) * 0.88 * 1%));
}

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

@media (max-width: 40rem) {
  .CookiesBar-button--allowCookies {
    order: -1;
  }
}

.CookiesBar-button--allowCookies:hover {
  background: hsl(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 0.88 * 1%));
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
}

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

/*# 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;
  animation: spinner 2s linear infinite;
}

.SpinnerGlobal-spinner::before, .SpinnerGlobal-spinner::after {
  display: block;
  border-radius: 50%;
  content: '';
  width: 25px;
  height: 25px;
  background-color: var(--colorBrand);
  animation: pulse 1s alternate linear infinite;
}

.SpinnerGlobal-spinner::before {
  margin-left: 25px;
}

.SpinnerGlobal-spinner::after {
  margin-top: -25px;
  margin-left: -25px;
}

@keyframes spinner {
  0% {
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
  }
  100% {
    transform: scale(0.8);
    opacity: .5;
  }
}

/*# sourceMappingURL=spinner-global.min.css.map */
.TextGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--spaceMd);
  margin-bottom: var(--spaceXl);
}

.TextGridItem {
  text-align: center;
}

.TextGridItem img {
  margin: 0 auto var(--spaceMd);
  display: block;
}

.TextGridItem big {
  display: block;
  font-size: var(--textXxl);
  font-weight: 700;
  line-height: 1;
}

.TextGridItem h2 {
  margin: 0 0 var(--spaceXs);
  font-size: var(--textMd);
}

.TextGridItem h2:after {
  display: none;
}

.TextIframe {
  min-height: 100%;
}

.TextImageCol {
  display: grid;
  align-items: center;
  gap: var(--sectionSpacing);
  margin: var(--sectionSpacing) 0;
}

@media (min-width: 48rem) {
  .TextImageCol {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (max-width: 48rem) {
  .TextImageCol-image {
    width: 100%;
  }
}

.TextImageCol:nth-child(even) .TextImageCol-image {
  order: -1;
}

@media (max-width: 48rem) {
  .TextImageCol:nth-child(even) .TextImageCol-image {
    order: 2;
  }
}

.TextImageCol-image img {
  width: 100%;
}

.TextTwoCol {
  display: grid;
  gap: 2.5rem;
  margin: var(--sectionSpacing) 0;
}

@media (min-width: 48rem) {
  .TextTwoCol {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 112rem) {
  .TextTwoCol {
    gap: 5rem;
  }
}

/*# sourceMappingURL=wysiwyg.min.css.map */
