@charset "UTF-8";
:root {
  --colorBrand: hsl(35, 56%, 65%);
  --colorBrand-h: 35;
  --colorBrand-s: 56;
  --colorBrand-l: 65;
  --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(34, 14%, 29%);
  --colorContrastBg-h: 34;
  --colorContrastBg-s: 14;
  --colorContrastBg-l: 29;
  --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);
  --colorShadeBg: rgba(0,0,0,.8);
  --colorOutlines: #e3e3e3;
  --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: black;
  --colorTextSubtle: #404040;
  --colorText: black;
  --colorTextBody: #4a4a4a;
  --colorLinkText: var(--colorBrand);
  --colorLinkTextActive: var(--colorText);
  --colorInputBorder: var(--colorOutlines);
  --colorInputBackground: var(--colorThemeAccent);
  --colorInputBorderFocus: #38383base8;
  --colorInputBackgroundFocus: var(--colorThemeAccent);
  --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;
  --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(--textSm);
  --sizeInputPaddingVertical: var(--spaceSm);
  --sizeInputPaddingHorizontal: var(--spaceMd);
  --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;
}

/*
	!! 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: Montserrat;
  src: url(/frontend/fonts/Montserrat/Montserrat-black-normal.woff2) format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: fallback;
}

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

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

@font-face {
  font-family: Montserrat;
  src: url(/frontend/fonts/Montserrat/Montserrat-medium-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: Montserrat, 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: 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));
}

.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 */
main {
  padding-top: var(--spaceLg);
  padding-bottom: var(--spaceXl);
}

/*# sourceMappingURL=layout.min.css.map */
.ButtonBase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--animationBase);
  background: var(--colorButtonBg);
  cursor: pointer;
  color: #fff;
  padding: var(--sizeButtonPadding);
  font-size: var(--sizeButtonFont);
  text-decoration: none;
  border: none;
  outline: 0;
  text-transform: uppercase;
}

.ButtonBase:hover, .ButtonBase:active, .ButtonBase:focus {
  background: hsl(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 0.8 * 1%));
  text-decoration: none;
  color: #fff;
}

.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--primary {
  /* IS DEFAULT STYLING ABOVE */
}

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

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

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

.ButtonBase--ghost:hover, .ButtonBase--ghost:active, .ButtonBase--ghost:focus {
  background: var(--colorBrand);
}

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

/*# sourceMappingURL=button.min.css.map */
.HomeHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 7rem 0 4rem;
}

@media (max-width: 48rem) {
  .HomeHero {
    min-height: 34rem;
  }
}

.HomeHero-frame {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  padding-left: 8%;
}

.HomeHero-image {
  color: var(--colorBrand);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  clip: rect(0, auto, auto, 0);
  overflow: hidden;
}

.HomeHero-image img, .HomeHero-image svg, .HomeHero-image:after {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.HomeHero-image img {
  object-fit: cover;
}

.HomeHero-image svg:last-of-type {
  position: fixed;
}

.HomeHero-image:after {
  content: ' ';
  background: linear-gradient(9deg, transparent 50%, #00000096 100%);
}

.HomeHero-title {
  color: #fff;
  margin: 0;
  text-shadow: 0 0 11px #000000a6;
  font-weight: 800;
  font-size: 5em;
  line-height: 1.05;
}

@media (max-width: 80rem) {
  .HomeHero-title {
    font-size: var(--textXxxl);
  }
}

@media (max-width: 32rem) {
  .HomeHero-title {
    font-size: var(--textXxl);
  }
}

.HomeHero-perex {
  color: #fff;
  text-shadow: 0 0 7px #000000;
  margin-top: var(--spaceSm);
  font-size: var(--textXl);
  max-width: 33em;
  font-weight: 200;
}

@media (max-width: 64rem) {
  .HomeHero-perex {
    font-size: var(--textLg);
  }
}

.HomeHero-btn {
  margin-top: var(--spaceLg);
}

/*# sourceMappingURL=home-hero.min.css.map */
.HomeSEOTextItem {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--spaceXxl);
}

@media (max-width: 64rem) {
  .HomeSEOTextItem {
    margin-bottom: var(--spaceXl);
  }
}

.HomeSEOTextItem:nth-child(even) {
  justify-content: flex-end;
}

.HomeSEOTextItem-image {
  position: relative;
  width: 43%;
}

@media (max-width: 80rem) {
  .HomeSEOTextItem-image {
    width: 40%;
  }
}

@media (max-width: 48rem) {
  .HomeSEOTextItem-image {
    width: 100%;
    margin-top: var(--spaceMd);
    order: 2;
  }
}

.HomeSEOTextItem:nth-child(even) .HomeSEOTextItem-image {
  order: 2;
}

.HomeSEOTextItem-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--spaceXl);
  max-width: 46rem;
}

@media (max-width: 48rem) {
  .HomeSEOTextItem-content {
    padding: 0;
  }
}

.HomeSEOTextItem-title {
  font-size: var(--spaceLg);
}

.HomeSEOTextItem-text {
  font-size: var(--textSm);
}

.HomeSEOTextItem-btn {
  margin-top: var(--spaceLg);
}

/*# sourceMappingURL=home-seo-text-item.min.css.map */
.HomeSEOText {
  position: relative;
  margin-top: var(--spaceXxl);
  padding-bottom: .1px;
}

@media (max-width: 64rem) {
  .HomeSEOText {
    margin-top: var(--spaceXl);
  }
}

.HomeSEOText + * {
  margin-top: 0 !important;
}

.HomeSEOText-shapes {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: var(--colorBrand);
}

.HomeSEOText-shapes svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40rem;
}

.HomeSEOText-shapes svg:last-child {
  top: auto;
  bottom: 0;
}

.HomeSEOText-frame {
  position: relative;
}

/*# sourceMappingURL=home-seo-text.min.css.map */
.HomeStaticBanner {
  position: relative;
  margin: var(--spaceXl) 0;
  padding: var(--spaceXxl) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 26rem;
}

.HomeStaticBanner-image {
  color: var(--colorBrand);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  clip: rect(0, auto, auto, 0);
  overflow: hidden;
}

.HomeStaticBanner-image img, .HomeStaticBanner-image svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.HomeStaticBanner-image svg:first-of-type {
  position: fixed;
}

@media (max-width: 32rem) {
  .HomeStaticBanner-image svg {
    width: 160%;
  }
}

.HomeStaticBanner-image img {
  object-fit: cover;
}

.HomeStaticBanner-frame {
  position: relative;
}

.HomeStaticBanner-title {
  color: var(--colorBrand);
  margin: 0 0 var(--spaceSm);
  max-width: 53%;
  font-size: var(--textXl);
}

@media (max-width: 32rem) {
  .HomeStaticBanner-title {
    max-width: 80%;
  }
}

@media (max-width: 25rem) {
  .HomeStaticBanner-title {
    font-size: var(--textLg);
  }
}

.HomeStaticBanner-title:last-child {
  margin-bottom: 0;
}

.HomeStaticBanner-list[class] {
  list-style: disc;
  margin-left: 1.6rem;
  max-width: 53%;
}

@media (max-width: 32rem) {
  .HomeStaticBanner-list[class] {
    max-width: 75%;
  }
}

.HomeStaticBanner-list[class] li {
  margin-bottom: var(--spaceXs);
}

.HomeStaticBanner-list[class] li:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=home-static-banner.min.css.map */
.HomeBenefitPointItem {
  width: 33.3333%;
  text-align: center;
  padding: 0 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 48rem) {
  .HomeBenefitPointItem {
    width: 100%;
    margin: 0 auto var(--spaceMd);
    max-width: 30em;
  }
  .HomeBenefitPointItem:last-child {
    margin-bottom: 0;
  }
}

.HomeBenefitPointItem-image svg, .HomeBenefitPointItem-image img {
  width: auto;
  height: 4em;
  color: var(--colorBrand);
}

.HomeBenefitPointItem-title {
  margin: var(--spaceSm) 0 var(--spaceXs);
  font-weight: 700;
  font-size: var(--textMd);
}

.HomeBenefitPointItem-title:last-child {
  margin-bottom: 0;
}

.HomeBenefitPointItem-title a {
  color: inherit;
}

.HomeBenefitPointItem-text {
  font-size: var(--textSm);
  margin-top: auto;
}

/*# sourceMappingURL=home-benefit-point-item.min.css.map */
.HomeBenefitPoint {
  background: var(--colorBrand);
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  padding: var(--spaceLg) 0;
}

.HomeBenefitPoint--transparent {
  background: transparent;
  color: var(--textColor);
  padding: 0;
  margin: var(--spaceXxl) 0;
}

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

/*# sourceMappingURL=home-benefit-point.min.css.map */
.HomeSimpleBanner {
  position: relative;
  text-align: center;
  margin: var(--spaceXxl) 0 var(--spaceXl);
}

.HomeSimpleBanner-shape {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: var(--colorBrand);
}

.HomeSimpleBanner-shape svg {
  position: absolute;
  left: 0;
  top: -4rem;
  width: 100%;
  height: 20rem;
}

@media (max-width: 90rem) {
  .HomeSimpleBanner-shape svg {
    height: 17vw;
    top: -2vw;
  }
}

.HomeSimpleBanner-title {
  position: relative;
}

.HomeSimpleBanner-image {
  position: relative;
  background: var(--colorBrand);
  height: 12rem;
}

.HomeSimpleBanner-image div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip: rect(0, auto, auto, 0);
  overflow: hidden;
}

.HomeSimpleBanner-image picture {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.HomeSimpleBanner-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

/*# sourceMappingURL=home-simple-banner.min.css.map */
.NewsList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--spaceLg);
  padding-top: var(--spaceMd);
}

@media (max-width: 48rem) {
  .NewsList {
    grid-template-columns: 1fr;
  }
}

.NewsList-header {
  background: var(--colorBrand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--spaceLg);
}

.NewsList-title {
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  margin-bottom: var(--spaceXs);
}

.NewsList-more {
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  font-size: var(--textSm);
  display: flex;
  align-items: center;
}

.NewsList-more:hover, .NewsList-more:active, .NewsList-more:focus {
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
}

.NewsList-more svg {
  transition: var(--animationBase);
  margin-left: var(--spaceXs);
}

.NewsList-more:hover svg {
  transform: translateX(4px);
}

/*# sourceMappingURL=news-list.min.css.map */
.NewsItem {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.NewsItem-image {
  width: 30%;
  margin-right: var(--spaceMd);
}

.NewsItem-content {
  flex: 1;
}

.NewsItem-date {
  font-size: var(--textXs);
  font-weight: 600;
  margin-bottom: var(--spaceXs);
  display: block;
}

.NewsItem-title {
  font-size: var(--textRg);
  color: var(--colorBrand);
  font-weight: 700;
  margin-bottom: var(--spaceXs);
}

.NewsItem-title a {
  color: inherit;
  text-decoration: none;
}

.NewsItem-title a:hover, .NewsItem-title a:active, .NewsItem-title a:focus {
  text-decoration: underline;
}

.NewsItem-perex {
  margin-bottom: var(--spaceMd);
  font-size: var(--textSm);
}

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

.NewsItem-more {
  margin-top: auto;
  text-transform: uppercase;
  font-size: var(--textSm);
}

.NewsItem-more a {
  display: inline-flex;
  align-items: center;
  transition: var(--animationBase);
  font-weight: 700;
}

.NewsItem-more a svg {
  transition: var(--animationBase);
}

.NewsItem-more a:hover svg {
  transform: translateX(3px);
}

/*# sourceMappingURL=news-item.min.css.map */
.HomeNews {
  margin: var(--spaceXxl) 0;
}

.HomeNews:last-of-type {
  margin-bottom: var(--spaceXxl);
}

/*# sourceMappingURL=home-news.min.css.map */
.HomeSimpleText {
  background: hsla(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 1%), 0.8);
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  text-align: center;
  margin: var(--spaceXl) 0;
  padding: var(--spaceXxl) 0;
}

.HomeSimpleText:last-of-type {
  margin-bottom: 0;
}

.HomeSimpleText-title {
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
}

.HomeSimpleText-btn {
  margin-top: var(--spaceLg);
}

/*# sourceMappingURL=home-simple-text.min.css.map */
.HomePartners {
  margin: var(--spaceXxl) 0;
}

.HomePartners-title {
  color: var(--colorBrand);
  margin-bottom: var(--spaceMd);
}

.HomePartners-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.HomePartners-swiper {
  position: relative;
  overflow: hidden;
  margin: 0 var(--spaceMd);
  flex: 1;
}

.HomePartners-prev, .HomePartners-next {
  outline: none;
  cursor: pointer;
  transition: var(--animationBase);
}

.HomePartners-prev:hover, .HomePartners-prev:active, .HomePartners-prev:focus, .HomePartners-next:hover, .HomePartners-next:active, .HomePartners-next:focus {
  color: var(--colorBrand);
}

.HomePartners-img {
  max-width: 100%;
  height: 115px;
  object-fit: contain;
}

.HomePartners-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition-property: transform;
  box-sizing: content-box;
  transform: translate3d(0, 0, 0);
}

.HomePartners .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  text-align: center;
}

.btnFacebook {
  position: fixed;
  right: -44px;
  top: 409px;
  width: 129px;
  color: #000;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: .3s;
  z-index: 999999999999;
  padding: 0;
  outline: transparent;
  border: none;
  background-color: transparent;
}

.btnFacebook svg {
  height: 100%;
}

.btnFacebook.open {
  right: 297px;
}

@media (max-width: 400px) {
  .btnFacebook.open {
    right: 246px;
  }
}

.frameFacebook {
  position: fixed;
  right: -340px;
  top: 0;
  z-index: 99;
  width: 340px;
  height: 100%;
  overflow-y: auto;
  transition: .3s;
}

.frameFacebook iframe {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.frameFacebook.open {
  right: 0;
}

/*# sourceMappingURL=home-partners.min.css.map */
.AppNavigation {
  border-right: 1px solid #fff;
  padding-right: var(--spaceLg);
}

@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);
  font-size: var(--textSm);
}

@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 {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  transition: all .25s ease-in-out;
}

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

span.AppNavigationItem-link {
  cursor: default;
}

.AppNavigationItem-link.is-active, .AppNavigationItem-link:hover, .AppNavigationItem-link:focus {
  color: inherit;
  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;
  margin-left: -1px;
}

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

.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: var(--spaceSm);
}

@media (max-width: 32rem) {
  .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 */
.AppHeader {
  position: sticky;
  top: 0;
  z-index: var(--layerHeaderZIndex);
}

.AppHeader--overlapse {
  height: 0;
}

.AppHeader-holder {
  padding: 1.1em 0;
  background: var(--colorContrastBg);
  color: hsl(0, 0%, calc((var(--colorContrastBg-l) - 60) * -100%));
  transition: var(--animationBase);
}

.AppHeader--overlapse:not(.is-sticked) .AppHeader-holder {
  background: transparent;
  padding: var(--spaceLg) 0;
}

@media (max-width: 80rem) {
  .AppHeader--overlapse:not(.is-sticked) .AppHeader-holder {
    padding: 1.1em 0;
  }
}

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

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

.AppHeader-logo {
  margin-right: auto;
}

.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: 25px;
  position: relative;
}

.AppHeader-hmb {
  display: flex;
  flex-direction: column;
  font-size: .5rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: var(--spaceLg);
  padding-left: var(--spaceLg);
  border-left: 1px solid #fff;
}

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

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

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

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

.FooterNav:last-child {
  margin-bottom: 0;
}

.FooterNav-item {
  font-size: var(--textXs);
  margin-bottom: var(--spaceXs);
  position: relative;
  padding-left: var(--spaceMd);
  text-transform: uppercase;
}

@media (max-width: 48rem) {
  .FooterNav-item {
    font-size: var(--textSm);
  }
}

.FooterNav-item:before {
  content: ' ';
  display: block;
  width: .5em;
  height: .5em;
  border-right: 2px solid var(--colorBrand);
  border-bottom: 2px solid var(--colorBrand);
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: .5em;
}

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

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

/*# sourceMappingURL=footer-nav.min.css.map */
.InputBase {
  width: 100%;
  display: block;
  border: var(--sizeInputBorder) solid var(--colorInputBorder);
  background: var(--colorInputBackground);
  border-radius: var(--sizeInputBorderRadius);
  padding: var(--sizeInputPadding);
  font-size: var(--sizeInputFont);
  transition: var(--animationBase);
  outline: none;
}

.InputBase.is-invalid {
  border-color: var(--colorErrorsDefault);
  background-color: var(--colorInputBackgroundInvalid);
}

.InputBase:focus {
  border-color: var(--colorInputBorderFocus);
  background-color: var(--colorInputBackgroundFocus);
}

/*# sourceMappingURL=input.min.css.map */
.TextareaBase {
  width: 100%;
  height: 7.8em;
  display: block;
  resize: vertical;
  border: var(--sizeInputBorder) solid var(--colorInputBorder);
  background: var(--colorInputBackground);
  border-radius: var(--sizeInputBorderRadius);
  padding: var(--sizeInputPadding);
  font-size: var(--sizeInputFont);
  transition: var(--animationBase);
  outline: none;
}

.TextareaBase.is-invalid {
  border-color: var(--colorErrorsDefault);
  background-color: var(--colorInputBackgroundInvalid);
}

.TextareaBase:focus {
  border-color: var(--colorInputBorderFocus);
  background-color: var(--colorInputBackgroundFocus);
}

/*# sourceMappingURL=textarea.min.css.map */
.CheckboxBase {
  font-size: 1em;
  margin: 0;
  width: 1em;
  height: 1em;
  border: 2px solid var(--colorText);
  position: relative;
  top: .15em;
  transition: var(--animationBase);
  cursor: pointer;
  outline: none;
  border-radius: 0;
}

.CheckboxBase:not(:disabled):hover, .CheckboxBase:not(:disabled):focus, .CheckboxBase:checked {
  border-color: var(--colorBrand);
  background: var(--colorBrand);
}

.CheckboxBase:after {
  content: ' ';
  display: block;
  width: .62em;
  height: .34em;
  border-left: 0.18em solid hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  border-bottom: 0.18em solid hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  transform: rotate(-45deg);
  margin-left: calc(1em * 0.19 - 1px);
  margin-top: calc(1em * 0.22 - 1px);
  transition: var(--animationBase);
  opacity: 0;
}

.CheckboxBase:checked:after {
  opacity: 1;
}

.CheckboxBase:disabled, .CheckboxBase:disabled + * {
  border-color: var(--colorTextSubtle);
  opacity: .4;
}

.CheckboxBase.is-invalid {
  border-color: var(--colorErrorsDefault);
}

/*# sourceMappingURL=checkbox.min.css.map */
.AppForm form, .AppForm-holder {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 32rem) {
  .AppForm form, .AppForm-holder {
    grid-template-columns: 1fr;
  }
}

.AppForm-subTitle {
  border-top: 1px dashed var(--colorOutlines);
  padding-top: var(--spaceSm);
}

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

.AppForm-col.is-inline {
  display: flex;
  flex-wrap: wrap;
}

.AppForm-col.is-right {
  justify-self: flex-end;
}

.AppForm-label {
  font-size: var(--textSm);
  font-weight: 700;
  margin: 0 0 .2em;
  display: block;
}

.AppForm-label.is-danger {
  color: var(--colorErrorsDefault);
}

.AppForm-label.is-required:after {
  content: '*';
  color: var(--colorErrorsDefault);
  margin-left: .15em;
}

.AppForm-label.is-inline {
  flex: 1;
  margin-left: var(--spaceSm);
}

.AppForm-element {
  position: relative;
}

.AppForm-bubble {
  position: absolute;
  top: var(--sizeInputPaddingHorizontal);
  right: .5em;
  transform: translateY(-50%);
}

.AppForm-bubble.is-inline {
  position: relative;
  top: 0;
  right: 0;
  transform: none;
  margin: 0.15em 0 0 var(--spaceSm);
}

select + .AppForm-bubble {
  right: 1.9em;
}

.AppForm-gdpr {
  font-size: var(--textXs);
  padding-bottom: .4em;
}

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

.AppForm-underNotes span {
  color: var(--colorErrorsDefault);
}

/*# sourceMappingURL=form.min.css.map */
.AppFooter {
  background: var(--colorSecondaryBg);
  padding-top: var(--spaceXl);
  margin-top: var(--spaceXl);
}

.AppFooter h2 {
  font-size: var(--textSm);
  font-weight: 700;
  color: var(--colorText);
  margin-bottom: var(--spaceMd);
}

@media (max-width: 48rem) {
  .AppFooter h2 {
    font-size: var(--textRg);
  }
}

.AppFooter-frame {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--spaceXl);
}

.AppFooter-main {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.AppFooter-main a {
  color: inherit;
}

.AppFooter-contacts {
  width: 48%;
  margin-bottom: var(--spaceLg);
}

@media (max-width: 25rem) {
  .AppFooter-contacts {
    width: 100%;
  }
}

.AppFooter-contact {
  display: flex;
  font-size: var(--textXs);
  margin-bottom: var(--spaceLg);
}

@media (max-width: 48rem) {
  .AppFooter-contact {
    font-size: var(--textSm);
  }
}

.AppFooter-contact svg {
  margin-right: var(--spaceRg);
  color: var(--colorBrand);
}

.AppFooter-contact span, .AppFooter-contact a {
  flex: 1;
  font-weight: 500;
}

.AppFooter-socials {
  display: flex;
  flex-wrap: wrap;
}

.AppFooter-socials a {
  text-decoration: none;
  transition: var(--animationBase);
  margin-right: var(--spaceXxs);
}

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

.AppFooter-socials a:hover, .AppFooter-socials a:active, .AppFooter-socials a:focus {
  text-decoration: none;
  color: var(--colorBrand);
}

.AppFooter-socials a svg {
  width: 1.2em;
  height: 1.2em;
}

.AppFooter-navs {
  width: 48%;
}

@media (max-width: 25rem) {
  .AppFooter-navs {
    width: 100%;
  }
}

.AppFooter-form {
  width: 48%;
  margin-left: var(--spaceLg);
  font-size: .85em;
}

@media (max-width: 64rem) {
  .AppFooter-form {
    width: 100%;
    margin: var(--spaceLg) 0 0;
    font-size: 1em;
  }
}

.AppFooter-form h2 {
  font-size: var(--textXl);
  font-weight: 700;
}

.AppFooter-copyFrame {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.AppFooter-copy {
  padding: var(--spaceMd) 0;
  background: var(--colorContrastBg);
  color: hsl(0, 0%, calc((var(--colorContrastBg-l) - 60) * -100%));
  font-size: var(--textXs);
}

.AppFooter-copy a {
  color: inherit;
}

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

@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 */
