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

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

/* PrismJS 1.26.0
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript+javadoclike+json+latte+less+markup-templating+php+phpdoc+php-extras+regex+sass+scss+sql+uri&plugins=toolbar+copy-to-clipboard */
code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::-moz-selection, code[class*=language-]::-moz-selection, pre[class*=language-] ::-moz-selection, pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.token.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}
div.code-toolbar{position:relative}div.code-toolbar>.toolbar{position:absolute;z-index:10;top:.3em;right:.2em;transition:opacity .3s ease-in-out;opacity:0}div.code-toolbar:hover>.toolbar{opacity:1}div.code-toolbar:focus-within>.toolbar{opacity:1}div.code-toolbar>.toolbar>.toolbar-item{display:inline-block}div.code-toolbar>.toolbar>.toolbar-item>a{cursor:pointer}div.code-toolbar>.toolbar>.toolbar-item>button{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}div.code-toolbar>.toolbar>.toolbar-item>a,div.code-toolbar>.toolbar>.toolbar-item>button,div.code-toolbar>.toolbar>.toolbar-item>span{color:#bbb;font-size:.8em;padding:0 .5em;background:#f5f2f0;background:rgba(224,224,224,.2);box-shadow:0 2px 0 0 rgba(0,0,0,.2);border-radius:.5em}div.code-toolbar>.toolbar>.toolbar-item>a:focus,div.code-toolbar>.toolbar>.toolbar-item>a:hover,div.code-toolbar>.toolbar>.toolbar-item>button:focus,div.code-toolbar>.toolbar>.toolbar-item>button:hover,div.code-toolbar>.toolbar>.toolbar-item>span:focus,div.code-toolbar>.toolbar>.toolbar-item>span:hover{color:inherit;text-decoration:none}
pre {
    border: 1px solid #ccc;
    border-radius: 0;
}
@charset "UTF-8";
@font-face {
  font-family: "icons";
  src: url("../../font/icons.eot?iiycor");
  src: url("../../font/icons.eot?iiycor#iefix") format("embedded-opentype"), url("../../font/icons.ttf?iiycor") format("truetype"), url("../../font/icons.woff?iiycor") format("woff"), url("../../font/icons.svg?iiycor#icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
*,
::before,
::after {
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
}

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

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

.text-red {
  color: #c33c26 !important;
}

h1,
h2,
h3,
h4,
h5,
.--title {
  color: #000;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-align: left;
}

h1,
.--title-h1 {
  font-size: 2.4rem;
  font-weight: 900;
}
@media (min-width: 480px) {
  h1,
  .--title-h1 {
    font-size: calc(24px + 14 * (100vw - 480px) / 1120);
  }
}
@media (min-width: 1700px) {
  h1,
  .--title-h1 {
    font-size: 4.8rem;
  }
}

h2,
.--title-h2 {
  font-size: 2.4rem;
  color: #000;
  text-align: center;
  margin: 0 0 20px 0;
  font-weight: 900;
}
@media (min-width: 1280px) {
  h2,
  .--title-h2 {
    font-size: 3.6rem;
  }
}

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

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

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

p {
  margin: 0;
  color: #000;
}

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

i {
  font-style: normal;
}

strong {
  font-weight: 700;
}

small {
  font-size: 1.2rem;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

::-moz-selection {
  background: #668aff;
  color: #707070;
}

::selection {
  background: #668aff;
  color: #707070;
}

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

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

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

figure,
picture {
  display: block;
  margin: 0;
}

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

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

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

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

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

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

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

label {
  cursor: pointer;
}

input:focus {
  outline: 0;
}

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

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

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

.--bg-light {
  background: #F2F2F2;
}

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

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

.--block {
  display: block;
}

.--content {
  display: block;
  margin: 0 auto;
  min-width: 320px;
  padding: 0 16px;
  position: relative;
  width: 100%;
  max-width: 1030px;
}
@media (min-width: 1280px) {
  .--content {
    max-width: 1332px;
  }
}
@media (min-width: 1700px) {
  .--content {
    max-width: 1606px;
  }
}

.--row {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px); /* 15 column offset */
  margin: 0 -15px; /* 15px column offset */
}

.--column {
  align-items: stretch;
  display: flex;
  padding: 0 15px; /* 15px column offset */
}

.--flex {
  display: flex;
  flex-flow: wrap;
  width: 100%;
}

.--flex-inline {
  display: inline-flex;
  flex-flow: wrap;
}

.--flex-column {
  flex-flow: column wrap;
}

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

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

.--flex-centre,
.--flex-centre-x {
  justify-content: center;
}

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

.--flex-end-x {
  justify-content: flex-end;
}

.--flex-space {
  justify-content: space-between;
}

.--flex-stretch {
  align-items: stretch;
}

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

.--flex-start-x {
  justify-content: flex-start;
}

.--flex-start-y {
  align-items: flex-start;
}

.--flex-end-y {
  align-items: flex-end;
}

.--hide {
  display: none;
}

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

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

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

.--link::after {
  width: 100%;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .--link:hover::after {
    width: 0;
  }
}

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

@media (hover: hover), (-ms-high-contrast: none) {
  .--link-rev:hover::after {
    width: 100%;
  }
}

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

.--link-arrow {
  color: #000;
  font-size: 1.8rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  position: relative;
  line-height: 1.4rem;
}

.--link-arrow::after {
  position: relative;
  content: "";
  margin-left: 1rem;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: #003cff;
  border-radius: 30px;
}

.--link-arrow::before {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  top: 0;
  right: 5px;
  bottom: 2px;
  z-index: 1;
  margin: auto;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.--link-arrow-right::before {
  transform: rotate(-45deg);
}

.--link-arrow-down::before {
  transform: rotate(45deg);
  right: 4px;
  bottom: 6px;
}

.--shadow {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
}

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

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

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

.--text-line-through {
  text-decoration: line-through;
}

.--text-brand {
  color: #003cff;
}

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

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

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

.--offset-1 {
  margin-left: 8.333333%;
}
.--offset-2 {
  margin-left: 16.666667%;
}
@media (min-width: 960px) {
  .--offset-m-1 {
    margin-left: 8.333333%;
  }
  .--offset-m-6 {
    margin-left: 50%;
  }
}
@media (min-width: 1280px) {
  .--offset-l-1 {
    margin-left: 8.333333%;
  }
}
@media (min-width: 640px) {
  .--flex-s-column {
    flex-direction: column;
  }
  .--flex-s-row {
    flex-direction: row;
  }
}
@media (min-width: 960px) {
  .--flex-m-column {
    flex-direction: column;
  }
  .--flex-m-row {
    flex-direction: row;
  }
}
.--bold {
  font-weight: bold;
}

[class*=__button-wrap] {
  margin: -4px auto;
}
@media (min-width: 640px) {
  [class*=__button-wrap] {
    margin: -4px;
  }
}

[class*=__button-wrap--wide] {
  margin: -8px auto;
}
@media (min-width: 640px) {
  [class*=__button-wrap--wide] {
    margin: -8px;
    width: calc(100% + 16px);
  }
}

.button {
  text-transform: uppercase;
  align-items: center;
  display: inline-flex;
  flex-flow: column;
  font-size: 1.4rem;
  font-weight: 700;
  min-height: 49px;
  justify-content: center;
  line-height: 1.2;
  overflow: hidden;
  padding: 16px 28px;
  position: relative;
  text-align: center;
  transition: 0.2s ease-in-out;
  z-index: 1;
  border-radius: 30px;
}
@media (min-width: 480px) {
  .button {
    font-size: 1.4rem;
  }
}
.button, .button::before, .button::after,
.button .button__counter {
  transition: 0.2s ease-in-out;
}
[class*=__button-wrap--wide] .button {
  margin: 8px;
}

.button--brand {
  color: #fff;
  position: relative;
  z-index: 2;
  background: #003cff;
}
.button--brand::before {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: #FFE224;
  transition: 0.2s ease-in-out opacity;
}
.button--brand:hover, .button--brand:focus {
  color: #000;
  background: #FFE224;
}
.button--brand:hover::before, .button--brand:focus::before {
  opacity: 1;
}

.button--light {
  border: 2px solid #c2c2c2;
  background: #fff;
  color: #000;
}
.button--light:hover, .button--light:focus {
  background: #F2F2F2;
  color: #000;
}

.button--ghost {
  border: 2px solid #F2F2F2;
  background: transparent;
  color: #fff !important;
  font-weight: 700;
}
.button--ghost:hover, .button--ghost:focus {
  background: #FFE224;
  color: #000;
  border-color: #FFE224;
}

.button--demand {
  color: #fff;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #5bb000 0, #417d00);
}
.button--demand::before {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: #417d00;
  transition: 0.2s ease-in-out opacity;
}
.button--demand:hover, .button--demand:focus {
  color: #fff;
}
.button--demand:hover::before, .button--demand:focus::before {
  opacity: 1;
}

.icon {
  fill: #003cff;
  left: 0;
}

.icon--phone {
  width: 13px;
  height: 13px;
  left: 3px;
}

.icon--home {
  width: 14px;
  height: 13px;
}

.icon--mail {
  width: 19px;
  height: 13px;
}

.icon::before {
  display: inline-block;
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  position: relative;
  text-transform: none;
  color: #678BFF;
}

.icon--pin:before {
  content: "\e905";
}

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

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

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

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

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

.content {
  font-size: 1.5rem;
  margin-bottom: 8rem;
}

.content__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.content__column {
  padding-left: 15px;
  padding-right: 15px;
}

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

.content--section {
  color: #000;
  width: 100%;
}
.content--section:last-child {
  margin-bottom: 0;
}
@media (min-width: 1280px) {
  .content--section {
    margin: 0 0 40px;
  }
  .content--section:last-child {
    margin-bottom: 0;
  }
}

.section--contact .content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: left;
}

.section--contact .content p {
  font-size: 1.5rem;
  color: #707070;
}

.content > h3 {
  margin: 0 0 18px;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 1280px) {
  .content > h3 {
    margin: 40px 0 20px;
    font-size: 3.1rem;
  }
}

.content > h2 {
  margin: 0 0 22px;
  text-align: left;
  font-weight: 500;
}
@media (min-width: 1280px) {
  .content > h2 {
    font-size: 3.8rem;
    margin: 0 0 20px;
  }
}

.content > ul, .content > p ul,
.--list {
  margin: 0 0 24px;
}
@media (min-width: 1280px) {
  .content > ul, .content > p ul,
  .--list {
    margin: 0 0 35px;
  }
}

.content > ul li, .content > p ul li,
.--list-item {
  font-size: 1.5rem;
  margin: 4px 0 15px;
  padding-left: 25px;
  position: relative;
  color: #000;
}
@media (min-width: 640px) {
  .content > ul li, .content > p ul li,
  .--list-item {
    font-size: 1.7rem;
  }
}
.content > ul li::before, .content > p ul li::before,
.--list-item::before {
  content: "";
  height: 8px;
  width: 8px;
  background: #003cff;
  border-radius: 50%;
  left: 0;
  position: absolute;
  top: 9px;
}

.content > ol, .content > p ol,
.--list-num {
  counter-reset: counter-list;
  margin: 0 0 24px;
}
@media (min-width: 1280px) {
  .content > ol, .content > p ol,
  .--list-num {
    margin: 0 0 35px;
  }
}

.content > ol > li,
.content > p ol > li,
.--list-num-item {
  counter-increment: counter-list;
  font-size: 1.5rem;
  margin: 4px 0 15px;
  padding-left: 25px;
  position: relative;
  color: #000;
}
@media (min-width: 640px) {
  .content > ol > li,
  .content > p ol > li,
  .--list-num-item {
    font-size: 1.7rem;
  }
}
.content > ol > li::before,
.content > p ol > li::before,
.--list-num-item::before {
  color: #000;
  content: counter(counter-list) ".";
  left: 0;
  position: absolute;
  font-weight: 700;
  top: 0;
}
.content > ol > li:nth-child(n+10)::before,
.content > p ol > li:nth-child(n+10)::before,
.--list-num-item:nth-child(n+10)::before {
  content: counter(counter-list);
}

.content ul {
  padding-left: 25px;
}
.content > p {
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 22px;
}
@media (min-width: 640px) {
  .content > p {
    font-size: 2rem;
    margin: 0 0 30px;
  }
}

.content > p strong {
  font-weight: 700;
}

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

.content .table-wrapper {
  background-color: #F6F7FB;
  overflow-x: auto;
  font-size: 1.5rem;
  border-radius: 10px;
  border: 1px solid #C1CFFF;
  margin: 0 0 30px;
}
@media (min-width: 1280px) {
  .content .table-wrapper {
    margin: 0 0 60px;
  }
}

.content .table-wrapper .--bold,
.content table th,
.content table td:last-of-type {
  color: #000;
}

.content table {
  width: 100%;
  border: none;
  background: #F6F7FB;
  border-width: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.content thead,
.content tbody,
.content table tr {
  border: none;
}

.content table th,
.content table td {
  padding: 6px 8px;
  border: 1px solid #C1CFFF;
}
@media (min-width: 960px) {
  .content table th,
  .content table td {
    padding: 14px 16px;
  }
}

.content table tr:last-child td,
.content table tr:last-child th {
  border-bottom: none;
}

.content table td:last-child,
.content table th:last-child {
  border-right: none;
}

.content table tr:first-child td,
.content table tr:first-child th {
  border-top: none;
}

.content table td:first-child,
.content table th:first-child {
  border-left: none;
}

.content table th {
  font-weight: 400;
  font-size: 1.5rem;
}
@media (min-width: 960px) {
  .content table th {
    font-size: 2rem;
  }
}

.content table td {
  font-size: 1.4rem;
  font-weight: 700;
}
@media (min-width: 960px) {
  .content table td {
    font-size: 2rem;
  }
}

.content > img, .content > p img {
  margin: 0 0 12px;
  height: auto;
}

.content blockquote {
  position: relative;
  margin: 0 0 40px 50px;
  font-size: 1.3rem;
}
@media (min-width: 640px) {
  .content blockquote {
    margin: 0 0 80px 95px;
    font-size: 2rem;
  }
}
.content blockquote::before {
  width: 29px;
  height: 24px;
  left: -50px;
  content: "";
  position: absolute;
}
@media (min-width: 640px) {
  .content blockquote::before {
    width: 58px;
    height: 48px;
    left: -95px;
  }
}

.content blockquote em {
  font-size: 1.5rem;
  font-style: italic;
  color: #707070;
  padding-top: 10px;
  margin-bottom: 10px;
  display: block;
}
@media (min-width: 640px) {
  .content blockquote em {
    font-size: 2.2rem;
    padding-top: 25px;
  }
}

.content blockquote figcaption {
  font-size: 1.7rem;
  font-weight: 800;
  color: #000;
  margin-top: 10px;
}
@media (min-width: 640px) {
  .content blockquote figcaption {
    font-size: 2rem;
    margin-top: 20px;
  }
}

.content a {
  text-decoration: underline;
}

.content .button {
  text-decoration: none;
}

.content > .code-toolbar {
  margin: 0 0 40px;
}
@media (min-width: 1280px) {
  .content > .code-toolbar {
    margin: 0 0 60px;
  }
}

.header {
  position: fixed;
  z-index: 3000;
  width: 100%;
  padding: 20px 0 20px 0;
  background: #fff;
  min-height: 80px;
  display: flex;
  align-items: center;
}
@media (min-width: 1280px) {
  .header {
    padding: 25px 0 20px 0;
    min-height: 130px;
  }
}

.header__content {
  align-items: center;
}

.header__menu {
  display: none;
  margin: auto;
  background: #F2F2F2;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 20px);
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1280px) {
  .header__menu {
    display: flex;
    background: none;
    position: static;
  }
}

.header__menu--active {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 30px 0;
  border-bottom: 1px solid #e9e9e9;
}

.header__button {
  display: block;
  margin-left: auto;
  z-index: 2;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .header__button {
    display: none;
  }
}

.header__button-icon {
  width: 31px;
  height: 3px;
  display: flex;
  flex-direction: column;
  background: #F6F7FB;
  position: relative;
  margin: 8px 0;
  transition: 0.2s ease-in-out;
}
.header__button--active .header__button-icon {
  background: rgba(0, 0, 0, 0);
}

.header__button-icon::before {
  top: -8px;
}

.header__button-icon::after {
  bottom: -8px;
}

.header__button-icon::before, .header__button-icon::after {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  width: 31px;
  height: 3px;
  background: #F6F7FB;
  transition: 0.2s ease-in-out;
}

.header__button--active .header__button-icon:before,
.header__button--active .header__button-icon:after {
  top: 0;
}

.header__button--active .header__button-icon:before {
  transform: rotate(45deg);
}

.header__button--active .header__button-icon:after {
  transform: rotate(-45deg);
}

.header__button-label {
  font-size: 1.2rem;
  color: #F6F7FB;
  font-weight: 700;
  text-transform: uppercase;
}

.header__logo {
  margin-right: 20px;
  width: 100%;
  max-width: 170px;
}
@media (min-width: 1700px) {
  .header__logo {
    max-width: 200px;
  }
}

.header__logo-img {
  max-width: 100%;
}

.header__contact {
  gap: 10px 30px;
}
@media (min-width: 960px) {
  .header__contact {
    display: inline-flex;
  }
}
@media (min-width: 1700px) {
  .header__contact {
    padding-left: 40px;
  }
}

.header__link {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 1.3rem;
}
.header--active .header__link {
  color: #000;
}

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

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

.menu__content {
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  left: 0;
  top: 0;
  transition: 0.2s ease-in-out;
}
@media (min-width: 1280px) {
  .menu__content {
    flex-direction: row;
    height: auto;
    justify-content: space-between;
    position: relative;
  }
}

.menu__list {
  display: inline-flex;
  align-items: center;
  flex-flow: column nowrap;
}
@media (min-width: 1280px) {
  .menu__list {
    flex-flow: row nowrap;
  }
}

.menu__item {
  padding: 8px;
}
@media (min-width: 1700px) {
  .menu__item {
    padding: 8px 17px;
  }
}

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

.menu__item-button {
  padding-left: 16px;
}
@media (min-width: 1700px) {
  .menu__item-button {
    padding-left: 33px;
  }
}
.header__menu .menu__item-button {
  display: inline-flex;
}
@media (min-width: 1280px) {
  .header__menu .menu__item-button {
    display: none;
  }
}

.menu__item-button--desktop {
  display: none;
}
@media (min-width: 1280px) {
  .menu__item-button--desktop {
    display: inline-flex;
  }
}

.menu__link {
  display: inline-block;
  font-size: 1.7rem;
  position: relative;
}

.menu__button {
  min-width: 228px;
}
@media (min-width: 1280px) {
  .menu__button {
    min-width: 180px;
  }
}

.footer {
  width: 100%;
  background: #F6F7FB;
  padding: 50px 0 70px 0;
  color: #BDBDBD;
}
@media (min-width: 640px) {
  .footer {
    padding: 130px 0 70px 0;
  }
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .footer__top {
    padding-bottom: 80px;
  }
}
@media (min-width: 1280px) {
  .footer__top {
    flex-wrap: nowrap;
  }
}

.footer__leftside {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-flow: column;
}
@media (min-width: 640px) {
  .footer__leftside {
    flex-flow: row;
    align-items: flex-start;
    padding-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .footer__leftside {
    flex-direction: column;
    justify-content: start;
    gap: 50px;
    padding-bottom: 0;
  }
}
.footer__leftside img {
  width: 80%;
}
@media (min-width: 640px) {
  .footer__leftside img {
    width: 60%;
  }
}
@media (min-width: 1280px) {
  .footer__leftside img {
    width: 80%;
  }
}

.footer__rightside {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-flow: column;
}
@media (min-width: 640px) {
  .footer__rightside {
    flex-flow: row;
    align-items: flex-start;
  }
}
@media (min-width: 1280px) {
  .footer__rightside {
    justify-content: flex-end;
  }
}

.footer__section {
  max-width: 210px;
  width: 100%;
  margin-bottom: 35px;
  text-align: center;
}
@media (min-width: 640px) {
  .footer__section {
    width: auto;
    margin-bottom: 0;
    text-align: left;
  }
}

.footer__contact-wrap {
  display: flex;
  align-items: center;
  flex-flow: column;
  margin: 0 0 15px 0;
  gap: 15px;
}
@media (min-width: 640px) {
  .footer__contact-wrap {
    flex-flow: row;
  }
}
@media (min-width: 1280px) {
  .footer__contact-wrap {
    justify-content: end;
  }
}
@media (min-width: 1700px) {
  .footer__contact-wrap {
    justify-content: start;
  }
}

.footer__contact {
  width: 100%;
  max-width: 540px;
}

.footer__title {
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 640px) {
  .footer__title {
    text-align: left;
    margin-bottom: 25px;
  }
}

.footer__link {
  color: #fff;
  font-size: 1.3rem;
}
.footer__link:hover, .footer__link:focus {
  color: #ffd700;
}

.footer__item {
  margin-bottom: 8px;
}
.footer__item:last-child {
  margin-bottom: 0;
}

.footer__address {
  font-size: 1.3rem;
  text-align: center;
  flex-shrink: 0;
  min-width: 130px;
}
@media (min-width: 640px) {
  .footer__address {
    padding-left: 40px;
    text-align: left;
  }
}

.footer__copyright {
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
}
.footer__copyright a {
  color: #fff;
  text-decoration: underline;
}
.footer__copyright a:hover, .footer__copyright a:focus {
  color: #ffd700;
}

.footer__bottom {
  align-items: center;
  gap: 20px;
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
}

.footer__socials-item {
  padding: 8px;
}
.footer__socials-item:hover .footer__socials-icon, .footer__socials-item:focus .footer__socials-icon {
  fill: #ffd700;
}

.footer__socials-icon {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.footer__socials-icon--facebook {
  width: 20px;
}

.footer__socials-icon--youtube {
  width: 40px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  color: #fff;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.breadcrumb li {
  display: flex;
}

.breadcrumb__item {
  position: relative;
  font-size: 1.5rem;
}
.breadcrumb__item:not(:first-of-type) {
  padding-left: 35px;
}
.breadcrumb__item:not(:first-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  width: 15px;
  height: 1px;
  background: #fff;
  opacity: 50%;
  left: 10px;
  top: 10px;
}

.breadcrumb__home {
  fill: #fff;
}
.breadcrumb__home:hover, .breadcrumb__home:focus {
  fill: #ffd700;
}

.breadcrumb__link {
  color: #003cff;
}
.breadcrumb__link:hover, .breadcrumb__link:focus {
  color: #003cff;
}

.breadcrumb__home-icon {
  fill: #fff;
  width: 1.4rem;
  height: 1.3rem;
}
.breadcrumb__home-icon:hover, .breadcrumb__home-icon:focus {
  fill: #ffd700;
}

.breadcrumb__home-icon {
  fill: #fff;
  width: 1.4rem;
  height: 1.3rem;
}
.breadcrumb__home-icon:hover, .breadcrumb__home-icon:focus {
  fill: #ffd700;
}

.breadcrumb--wiki {
  border-bottom: 1px solid #C1CFFF;
  background-color: #F6F6FB;
}

.breadcrumb--wiki-content {
  margin-left: calc(25% + 2rem);
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

.breadcrumb__item:not(:last-child) {
  color: #003cff;
  font-weight: 500;
  font-size: 16px;
}

.breadcrumb__item:not(:first-child)::before {
  height: 6px;
  width: 6px;
  border-right: 2px solid #003cff;
  border-bottom: 2px solid #003cff;
  transform: rotate(-45deg);
  align-self: center;
  padding: 0;
  left: 12px;
  position: absolute;
  content: "";
}

.breadcrumb__item--active {
  color: #000;
}

.full-menu {
  border-right: 1px solid #C1CFFF;
  overflow-x: hidden;
  height: 100%;
}

.full-menu__top-detail {
  border-top: 1px solid #C1CFFF;
  margin: 0;
}

.full-menu__top-list, .full-menu__item-wrap {
  margin: 0 !important;
  padding-left: 0 !important;
}
.full-menu__top-list::before, .full-menu__item-wrap::before {
  display: none !important;
}

.full-menu__top-list > .full-menu__item-wrap {
  padding-top: 5px;
}

.full-menu__top-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 0 10px;
  overflow-x: auto;
}
.full-menu__top-list:has(.full-menu__detail[open]:last-child) {
  padding-bottom: 0;
}

.full-menu__title {
  font-size: 19px;
}

.full-menu__top-summary-wrap .full-menu__title {
  color: #000;
}

.full-menu__title--bold {
  font-weight: 600;
}

.full-menu__top-summary-wrap {
  padding: 12px 19px 11px;
}
.full-menu__top-summary-wrap:first-child {
  padding-left: 10px;
}

.full-menu__summary,
.full-menu__top-summary-wrap,
.full-menu__summary-wrap,
.full-menu__item,
.full-menu__main-title {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #003cff;
  text-wrap: nowrap;
  width: 100%;
}

.full-menu__summary {
  width: -moz-fit-content;
  width: fit-content;
}

.full-menu__detail {
  min-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
}

.full-menu__top-detail[open] .full-menu__top-summary-wrap {
  background-color: rgba(193, 207, 255, 0.5019607843);
  background-origin: border-box;
}

.full-menu__arrow-icon {
  height: 9px;
  width: 9px;
  margin-right: 12px;
}

.full-menu__top-detail:not([open]) .full-menu__arrow-icon {
  transform: rotate(-90deg);
}

.full-menu__top-detail[open] .full-menu__arrow-icon {
  transform: rotate(0);
}

.full-menu__detail[open] .full-menu__arrow-icon {
  transform: rotate(0);
}

.full-menu__detail:not([open]) .full-menu__arrow-icon {
  transform: rotate(-90deg);
}

.full-menu__list {
  padding-left: 35px !important;
  padding-top: 8px;
  padding-bottom: 8px;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.full-menu__icon {
  height: 20px;
  width: 20px;
  margin-right: 11px;
}

.full-menu__item {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  margin-left: 20px;
}

.full-menu__top-item {
  padding: 0 20px;
}

.full-menu__detail {
  padding: 6px 19px 0 23px;
}

.full-menu__detail-inside {
  padding: 0 !important;
}

.full-menu__detail-inside[open] {
  margin-bottom: -9px;
}

.full-menu__detail[open] {
  background-color: #eaeeff;
  background-origin: border-box;
}

.full-menu__detail[open] {
  padding: 6px 19px 0 23px;
}

.full-menu__main-title-wrap {
  padding: 40px 13px 19px;
}

.full-menu__main-title {
  font-weight: bold;
  color: #003cff;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
}

.full-menu__summary-wrap-current a span {
  font-weight: bolder;
}
.full-menu__summary-wrap-current a:hover {
  color: #003cff;
  cursor: default;
}

.full-menu__letter {
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
}

.full-menu__item-client {
  padding: 2px 0;
  font-size: 16px;
  font-weight: 500;
  margin-left: 0;
}

.full-menu__item-list {
  padding-left: 0 !important;
  margin: 0 !important;
}

.full-menu__item-wrap-dot {
  color: #003cff;
  margin-left: 15px;
}

.full-menu__alphabet {
  margin-left: -9px;
}

.full-menu__alphabet-title {
  color: #003cff;
}

.full-menu__alphabet[open] {
  background-color: transparent;
}

.full-menu__item-dot {
  padding: 5px 4px;
  position: relative;
}
.full-menu__item-dot::before {
  content: "•";
  color: #003cff;
  font-weight: bold;
  position: absolute;
  left: -15px;
  top: 0;
  font-size: 2.4rem;
}

.full-menu__list--no-gap {
  gap: 0;
}

.wiki-header {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px 0 30px;
  margin: auto;
}

.wiki-header__logo span {
  padding-left: 24px;
  margin-left: 30px;
  border-left: 1px #BDBDBD dashed;
  color: #BDBDBD;
  font-size: 16px;
}
.wiki-header__logo span :active, .wiki-header__logo span :focus-visible, .wiki-header__logo span :focus, .wiki-header__logo span :visited, .wiki-header__logo span :target, .wiki-header__logo span :focus-within, .wiki-header__logo span :hover {
  text-decoration: none;
}

.wiki-header__right {
  display: flex;
  align-items: center;
  justify-items: end;
  visibility: visible;
}

.wiki-header__contact {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.wiki-header__darkmode-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #f4f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid #C1CFFF;
  margin-left: 6vw;
  visibility: visible;
}
.wiki-header__darkmode-toggle svg {
  width: 24px;
  height: 24px;
  vertical-align: center;
}
.wiki-header__darkmode-toggle:hover {
  background-color: #e4e9f7;
}

.wiki-header__darkmode-toggle__darkmode-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wiki-header__mail-icon, .wiki-header__phone-icon {
  height: 20px;
  display: none;
}

@media (max-width: 1280px) {
  .wiki-header__mail-icon, .wiki-header__phone-icon {
    display: block;
  }
  .wiki-header__mail, .wiki-header__phone {
    display: none;
  }
  .wiki-header__contact {
    width: 10vw;
  }
}
@media (max-width: 640px) {
  .wiki-header__logo {
    display: flex;
    flex-direction: column;
  }
  .wiki-header__logo span {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
  .wiki-header__contact {
    width: 15vw;
  }
}
@media (max-width: 480px) {
  .wiki-header__right {
    visibility: hidden;
  }
}
.wiki-header__svg {
  height: 25.13px;
  width: 197.729px;
}

.wiki_header__searchbar_container {
  display: flex;
  justify-content: center;
}

.wiki_header__searchbar-wrapper {
  border: 1px dashed grey;
  border-radius: 100px;
  padding-left: 25px;
  padding-right: 5px;
  display: flex;
  align-items: center;
  background-color: white;
  width: 360px;
  height: 56px;
  position: relative;
}

.wiki_header__searchbar_icon {
  width: 12px;
  height: 12px;
}
@media (min-width: 480px) {
  .wiki_header__searchbar_icon {
    width: 22px;
    height: 22px;
  }
}

.wiki_header__searchbar_text {
  padding-left: 10px;
  font-size: 16px;
  font-weight: 500;
  color: black;
  opacity: 50%;
  padding-top: 5px;
  width: 165px;
}
@media (min-width: 480px) {
  .wiki_header__searchbar_text {
    padding-left: 20px;
    font-size: 16px;
    width: auto;
  }
}

.wiki_header__searchbar_text:not(:-moz-placeholder-shown) {
  color: black; /* barva při psaní */
  opacity: 100%;
}

.wiki_header__searchbar_text:not(:placeholder-shown) {
  color: black; /* barva při psaní */
  opacity: 100%;
}

.wiki_header__searchbar_btn {
  min-width: 93px !important;
  height: 40px !important;
  font-size: 16px;
  font-weight: 700;
  padding: 0 !important;
  width: 110px;
  margin-left: -15px;
}

@media (max-width: 1280px) {
  .wiki_header__searchbar_container {
    display: none;
  }
}
.help header {
  min-height: 120px;
  background: #fff;
}
.help header .logo {
  display: block;
  text-decoration: none;
}
.help header .logo img {
  margin: 2px 0;
  height: 26px;
}
.help header .logo span {
  color: #C1C8E2;
  font-size: 17px;
  position: relative;
  display: inline-block;
  line-height: 26px;
  margin-left: 19px;
  padding-left: 20px;
  padding-bottom: 4px;
  margin-top: 2px;
  font-weight: 500;
}
.help header .logo span:before {
  content: "";
  position: absolute;
  height: 30px;
  border-left: 1px dashed #C1C8E2;
  left: 0;
  top: 0;
}
.help header .contact {
  font-size: 16px;
  line-height: 30px;
}
.help header .contact a {
  display: inline-block;
}
.help header .contact a:first-of-type {
  margin: 0 20px;
}
.help header .content {
  min-height: 120px;
  padding: 8px 0 12px 0;
}
.help .search form {
  background: #fff;
  border: 1px dashed #C1C8E2;
  height: 82px;
  border-radius: 41px;
  padding: 7px;
  width: 350px;
  position: relative;
}
@media (min-width: 480px) {
  .help .search form {
    width: 450px;
  }
}
@media (min-width: 640px) {
  .help .search form {
    width: 550px;
  }
}
@media (min-width: 960px) {
  .help .search form {
    width: 740px;
  }
}
.help .search form label {
  position: relative;
  width: 100%;
  font-weight: 500;
}
.help .search form label .text {
  border: 0;
  padding-left: 70px;
  height: 66px;
  display: inline-block;
  border-radius: 33px;
  width: 100%;
}
.help .search form label:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 30px;
  height: 30px;
  background: url("/userfiles/images/icons.svg") 4px 4px no-repeat;
}
.help .search form .btn {
  position: absolute;
  right: 7px;
  top: 7px;
}
.help .search p {
  padding-left: 32px;
  padding-top: 5px;
  font-size: 15px;
  font-weight: 500;
}
.help .search.login form label .text {
  padding-left: 30px;
}
.help .search.login form label:before {
  display: none;
}
.help .big-search {
  padding-top: 20px;
  padding-bottom: 60px;
  background: url(/userfiles/images/line.svg) center -10px no-repeat;
}
.help .big-search.login {
  background-position: center 175px;
}
.help .big-search.login h1 {
  text-align: center;
}
.help .big-search.login p {
  text-align: center;
  margin-top: 50px;
}
.help header .search form {
  width: 330px;
  height: 60px;
}
.help header .search form label:before {
  left: 7px;
  top: 9px;
}
.help header .search form label .text {
  padding-left: 45px;
  height: 46px;
  font-size: 14px;
}
.help.home {
  background: linear-gradient(to bottom, rgb(246, 247, 251) 120px, rgb(255, 255, 255) 100%) no-repeat;
  min-height: 100%;
}
.help.home header .search {
  display: none;
}
.help.home .categories {
  margin-top: 100px;
  margin-bottom: 100px;
}
.help.home .categories .items {
  margin-top: 32px;
}
.help.home .categories .items .btn {
  display: block;
  margin-bottom: 30px;
}
.help.home .categories .items .btn:hover {
  color: #fff;
}
.help.home .faq {
  margin-bottom: 100px;
  margin-top: 100px;
}
.help ul:not(.tracy-row) {
  list-style: none;
  margin: 30px 0;
  padding-left: 25px;
}
.help ul:not(.tracy-row) li {
  margin-bottom: 20px;
  line-height: 140%;
}
.help ul:not(.tracy-row) li:before {
  content: "•";
  font-size: 30px;
  line-height: 23px;
  color: #003cff;
  font-weight: bold;
  display: inline-block;
  width: 0.75em;
  margin-left: -0.75em;
}
.help ul:not(.tracy-row) li ul li:before {
  color: #FFE224;
}
.help .question {
  background: #000;
  padding-top: 150px;
  padding-bottom: 150px;
  color: #fff;
  /*		.form-control{
  			background: @grey-background;
  			height: 66px;
  			line-height: 30px;
  			padding: 18px;
  			border: 2px solid @grey-border;
  			border-radius: 33px;
  			color: #fff;
  		}*/
}
.help .question h2 {
  font-size: 50px;
  margin-top: 0;
}
.help .question textarea.form-control {
  height: 270px;
}
.help .question .text {
  padding-right: 30px;
}
.help .question .text p {
  line-height: 140%;
  color: #BDBDBD;
}
.help .question .text .contact {
  color: #fff;
  line-height: 120%;
  font-size: 23px;
  font-weight: 500;
  margin-top: 90px;
}
.help .question .text .contact a {
  color: #fff;
}
.help .question .text .contact a:hover, .help .question .text .contact a:active {
  color: #003cff;
}
.help .question label {
  font-weight: 400;
  margin: 0;
  font-size: 15px;
  line-height: 66px;
  padding-left: 25px;
}
.help .question .no-padding {
  padding-right: 0;
}
.help .question .star {
  color: #FFE224;
}
.help .question .btn {
  margin-top: 20px;
}
.help section.breadcrumb {
  margin: 0;
  padding: 12px 0 15px 0;
  background: #fff;
}
.help section.breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
}
.help section.breadcrumb .breadcrumb > li {
  color: #C1C8E2;
  font-size: 17px;
}
.help section.breadcrumb .breadcrumb > li + li:before {
  width: 8px;
  height: 12px;
  padding: 0 5px;
  margin: 0 10px;
  background: url("/userfiles/images/icons.svg") -27px 6px no-repeat;
}
.help section.breadcrumb .breadcrumb > li a {
  font-size: 17px;
  color: #000;
  text-decoration: none;
}
.help .menu .btn {
  min-width: 250px;
}
.help .menu ul {
  list-style: none;
  padding-left: 0;
  margin: 40px 0;
}
.help .menu ul li a {
  text-decoration: none;
  font-size: 20px;
  display: block;
}
.help .menu ul li:before {
  display: none;
}
.help .menu ul li ul {
  margin: 10px 0;
}
.help .menu ul li ul li {
  margin: 5px 0;
}
.help .menu ul li ul li a {
  padding-left: 20px;
  color: #000;
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
}
.help .menu ul li ul li a:hover {
  font-weight: 700;
  margin-left: 10px;
}
.help .menu ul li ul li a:before {
  content: "";
  width: 8px;
  height: 20px;
  position: absolute;
  display: block;
  top: 3px;
  left: 5px;
  background: url("/userfiles/images/icons.svg") -27px 6px no-repeat;
}
.help .page ul li img {
  margin: 30px 0;
}
.help .page .content ul, .help .page .content ol {
  padding-left: 20px;
}
.help .page .content ul li, .help .page .content ol li {
  margin: 0 0 10px 0;
}
.help .page .content img {
  margin: 10px 0 20px 0;
  max-width: 100%;
  height: auto;
}
.help .page .content .table-wrapper {
  margin: 30px 0;
  overflow-x: auto;
}
.help .page .content table {
  border: none;
  min-width: 400px;
}
.help .page .content table td, .help .page .content table th {
  padding: 6px 8px;
  border: none;
}
.help .page .content table tr {
  padding: 10px;
  border: none;
}
.help .page .content table tr:not(:last-of-type) td {
  border-bottom: 1px solid #C1C8E2;
}
.help .page .content table td {
  font-size: 15px;
}
.help .page .content table th {
  font-weight: 700;
  border-bottom: 1px solid #C1C8E2;
  font-size: 16px;
}

@media (min-width: 960px) {
  .right-column--margin-top {
    margin-top: 9rem;
  }
}

.blog-outline {
  width: 100%;
  max-width: 330px;
  border-radius: 12px;
  border: 1px solid #C1CFFF;
  padding: 24px 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
  height: -moz-fit-content;
  height: fit-content;
}

.blog-outline__wrap {
  width: 100%;
}

.blog-outline__title {
  font-size: 30px;
  line-height: 28px;
  font-weight: 500;
  color: #202124;
  margin-top: 0;
  margin-bottom: 20px;
}

.blog-outline__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-outline__list-item {
  position: relative;
  margin-bottom: 4px;
  padding-left: 18px; /* For the bullet */
}

.blog-outline__list-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px; /* Adjust to vertically align with text */
  width: 6px;
  height: 6px;
  background-color: #1a73e8; /* Blue bullet */
  border-radius: 50%;
}

.blog-outline__item-link {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #003CFF; /* Blue link color */
  text-decoration: none;
}

.blog-outline__item--secondary {
  padding-left: 36px; /* Indent for sub-items */
}

.blog-outline__item--secondary a {
  font-size: 16px;
  font-weight: 500;
}

.blog-outline__item--secondary:before {
  content: "○"; /* Open circle for sub-items */
  position: absolute;
  left: 18px; /* Position of the open circle */
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  font-size: 12px; /* Adjust size of the circle character */
  color: #1a73e8; /* Blue color for the circle */
}

.blog-tags {
  width: 100%;
  max-width: 330px;
  margin-bottom: 23px;
  height: -moz-fit-content;
  height: fit-content;
}

.blog-tags__wrap {
  display: flex;
  flex-direction: column;
}

.blog-tags__title {
  font-size: 30px;
  line-height: 28px;
  font-weight: 500;
  color: #202124;
  margin-top: 0;
  margin-bottom: 16px;
}

.blog-tags__tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tags__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 80px;
  background-color: rgba(193, 207, 255, 0.5019607843);
  color: #003CFF; /* Blue text for tags */
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.blog-external-links {
  width: 100%;
  max-width: 330px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid #C1CFFF;
  padding: 24px 20px;
  box-sizing: border-box;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 5rem;
}

.blog-external-links__title {
  font-size: 30px;
  line-height: 28px;
  font-weight: 500;
  color: #202124;
  margin-top: 0;
  margin-bottom: 20px;
}

.blog-external-links__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-external-links__item {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px; /* For the bullet */
}

.blog-external-links__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px; /* Adjust to vertically align with text */
  width: 6px;
  height: 6px;
  background-color: #1a73e8; /* Blue bullet */
  border-radius: 50%;
}

.blog-external-links__link {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #1a73e8; /* Blue link color */
  text-decoration: none;
}

@media (max-width: 960px) {
  .blog-outline {
    margin-top: 0;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header h4 {
  margin: 0;
}

.modal-close {
  font-size: 3.5rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #000;
}

.modal-body {
  padding: 1.5rem;
}

.modal-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-links-list li {
  padding: 0.75rem 0;
}
.modal-links-list li:last-child {
  border-bottom: none;
}

.searchbar {
  position: relative;
}

.searchbar__container {
  display: flex;
  flex-direction: column; /* zásadní */
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-top: 20px;
  padding-bottom: 60px;
}

.searchbar__wrapper {
  border: 1px dashed grey;
  border-radius: 100px;
  padding-left: 25px;
  padding-right: 5px;
  display: flex;
  align-items: center;
  background-color: white;
  width: 300px;
  height: 76px;
  position: relative;
}
@media (min-width: 480px) {
  .searchbar__wrapper {
    width: 452px;
  }
}
@media (min-width: 960px) {
  .searchbar__wrapper {
    width: 652px;
  }
}

.searchbar__icon {
  width: 12px;
  height: 12px;
}
@media (min-width: 480px) {
  .searchbar__icon {
    width: 22px;
    height: 22px;
  }
}

.searchbar__text {
  padding-left: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5019607843);
  opacity: 50%;
  padding-top: 5px;
  width: 165px;
}
@media (min-width: 480px) {
  .searchbar__text {
    padding-left: 20px;
    font-size: 18px;
    width: auto;
  }
}
@media (min-width: 960px) {
  .searchbar__text {
    width: 425px;
  }
}

.searchbar__text:not(:-moz-placeholder-shown) {
  color: black; /* barva při psaní */
  opacity: 100%;
}

.searchbar__text:not(:placeholder-shown) {
  color: black; /* barva při psaní */
  opacity: 100%;
}

.searchbar__btn {
  min-width: 93px !important;
  height: 68px !important;
  font-size: 12px;
  font-weight: 700;
  border-radius: 35px;
  padding: 0 !important;
}
@media (min-width: 480px) {
  .searchbar__btn {
    width: 173px;
    font-size: 15px;
  }
}

.searchbar__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.searchbar__hint {
  width: 100%;
  text-align: left;
  padding-left: 20px;
  margin-top: 9px;
  margin-right: 20px;
  margin-left: 20px;
  font-size: 15px;
  font-weight: 400;
}
@media (min-width: 960px) {
  .searchbar__hint {
    font-size: 18px;
  }
}

.searchbar__hint-link {
  color: #003CFF;
  text-underline: #003CFF;
  text-decoration-line: underline;
}

html a {
  color: #003cff;
}

.wiki--dark-mode {
  filter: invert(100%);
}
.wiki--dark-mode a, .wiki--dark-mode summary {
  color: black;
}
.wiki--dark-mode .navigation-btn-next {
  color: #003cff;
}
.wiki--dark-mode a:hover {
  color: #003cff;
}
.wiki--dark-mode .navigation-btn-back:hover,
.wiki--dark-mode .navigation-btn-next:hover {
  color: black;
}
.wiki--dark-mode section {
  background: white;
}
.wiki--dark-mode .wiki-header__right {
  fill: #FFE224 !important;
}

.wiki--dark-mode .wiki-header__svg {
  fill: white;
}

.wiki--dark-mode svg {
  filter: invert(100%);
}

.wiki--dark-mode img {
  filter: invert(100%);
}

.wiki-header__darkmode-toggle--dark div svg {
  filter: invert(0) !important;
}

.search {
  padding-bottom: 10rem;
}

.search__header {
  background: #F6F7FB;
  border-bottom: 1px solid #C1CFFF;
  border-top: 1px solid #C1CFFF;
  padding-top: 40px;
}

.search__header-title {
  margin-bottom: 4rem;
}

.search__category-title {
  font-size: 18px;
  font-weight: 600;
}

.search__category-icon {
  width: 19px;
  height: 19px;
  margin-right: 8px;
}

.search__category-result-count {
  margin-left: 6px;
  background: #C1CFFF;
  color: #003cff;
  height: 24px;
  min-width: 24px;
  font-size: 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search__tabs {
  display: flex;
  flex-direction: row;
}

.search__tabs-item {
  margin-right: 30px;
}
.search__tabs-item .tabs__link {
  box-shadow: unset;
  background: transparent;
  background: transparent;
}
.search__tabs-item .tabs__link--active {
  background: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
}

.search__tabs-content {
  padding-top: 2rem;
}
.search__tabs-content .tabs-content__block {
  display: none;
}
.search__tabs-content .tabs-content__block--active {
  display: flex;
  flex-direction: column;
}

.search__result {
  font-size: 18px;
  color: #003cff;
  text-decoration: underline;
  margin-left: 9px;
  width: -moz-fit-content;
  width: fit-content;
}
.search__result:hover {
  color: #FFE224;
}

.search__result-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 0;
}
.search__result-wrap:not(:last-child) {
  border-bottom: 1px solid #C1CFFF;
}

.search__breadcrumb .breadcrumb {
  padding: 0;
  margin: 0;
  display: none;
  font-size: 14px;
  font-weight: 400;
  flex-direction: row;
  align-items: center;
}
@media (min-width: 640px) {
  .search__breadcrumb .breadcrumb {
    display: flex;
  }
}
.search__breadcrumb .breadcrumb .breadcrumb__item {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.search__breadcrumb .breadcrumb .breadcrumb__item:first-child {
  padding-left: 10px;
}
.search__breadcrumb .breadcrumb .breadcrumb__item:first-child a {
  margin-left: 3px;
}
.search__breadcrumb .breadcrumb .breadcrumb__item:nth-last-child(2) {
  display: none;
}
.search__breadcrumb .breadcrumb .breadcrumb__item a {
  color: rgba(0, 60, 255, 0.5) !important;
}
.search__breadcrumb .breadcrumb .breadcrumb__item::before {
  content: "";
  margin: 0 8px 0;
  display: inline-block;
  height: 5.6px;
  width: 5.6px;
  border-right: rgba(0, 60, 255, 0.5) solid 1px;
  border-top: rgba(0, 60, 255, 0.5) solid 1px;
  transform: rotate(45deg);
}
.search__breadcrumb .breadcrumb .breadcrumb__item:hover {
  text-decoration: underline;
}
.search__breadcrumb .breadcrumb .breadcrumb__item:hover a {
  color: #003cff !important;
}
.search__breadcrumb .breadcrumb .breadcrumb__item:last-of-type {
  display: none;
}

.component-source-viewer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e9e9e9;
}
.component-source-viewer__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.component-source-viewer__heading {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #000;
}
.component-source-viewer__fullscreen {
  font-size: 13px;
  color: #003cff;
  text-decoration: none;
  white-space: nowrap;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .component-source-viewer__fullscreen {
    text-decoration: underline;
  }
}
.component-source-viewer__iframe {
  display: block;
  width: 100%;
  min-height: 480px;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  background: #F2F2F2;
  transition: height 0.15s ease;
}

.section {
  margin: 40px 0;
}

.section--offset {
  margin: 64px 0;
}

.section--offset-top {
  margin: 32px 0 0;
}
@media (min-width: 960px) {
  .section--offset-top {
    margin: 64px 0 0;
  }
}

.section--offset--bottom {
  margin: 0 0 32px;
}
@media (min-width: 960px) {
  .section--offset--bottom {
    margin: 0 0 64px;
  }
}

.section__column {
  justify-content: center;
  margin: 0 0 40px;
  align-items: flex-start;
}
@media (min-width: 1280px) {
  .section__column {
    justify-content: flex-start;
  }
}

.section__column--side,
.section__column--side-wide {
  justify-content: center;
  align-content: flex-start;
}
@media (min-width: 640px) {
  .section__column--side,
  .section__column--side-wide {
    justify-content: space-between;
    margin: 32px auto;
  }
}
@media (min-width: 1280px) {
  .section__column--side,
  .section__column--side-wide {
    flex-flow: column;
    justify-content: flex-start;
  }
}

@media (min-width: 960px) {
  .section__column--side-wide {
    max-width: 398px;
  }
}

.section--offset-top-medium {
  margin-top: 16px;
}

@media (min-width: 960px) {
  .section--offset-top-negative-medium {
    margin-top: -1.6rem;
    margin-right: 0;
  }
}

.section__column--start {
  justify-content: flex-start;
}

.section__block {
  display: block;
  margin: 0 0 40px;
  text-align: center;
}
@media (min-width: 1280px) {
  .section__block {
    text-align: left;
  }
}
.section__block:last-child {
  margin: 0;
}

.section__box--contact {
  border: 1px solid #E2E2E2;
  margin-top: 1.9rem;
  padding: 32px;
}
@media (min-width: 1280px) {
  .section__box--contact {
    padding: 40px 64px;
  }
}

.section--color {
  background: #F6F7FB;
}

.section-white {
  background-color: white;
  padding-top: 80px;
  padding-bottom: 60px;
}

.section--padding-bottom {
  padding-bottom: 5rem;
}

.subitems {
  margin: 0 0 30px 0;
}

.subitems__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .subitems__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 960px) {
  .subitems__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .subitems__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1700px) {
  .subitems__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.subitems__item {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

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

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

.subitems__box {
  position: relative;
  align-items: center;
  width: 100%;
  z-index: 1;
  padding: 15px;
  background: #F6F7FB;
  transition: 0.2s ease-in-out;
  height: 100%;
}
.subitems__box:hover .subitems__figure, .subitems__box:focus .subitems__figure {
  opacity: 0.5;
}
.subitems__box:hover .subitems__title, .subitems__box:focus .subitems__title {
  color: #ffd700;
}
.subitems__item--image .subitems__box {
  aspect-ratio: 16/9;
  align-items: flex-end;
}

.subitems__figure {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: 0.2s ease-in-out;
}
.subitems__figure::after {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  background: linear-gradient(to top, #F6F7FB 0%, transparent 50%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.subitems__bottom {
  position: relative;
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  gap: 8px 15px;
}

.subitems__arrow {
  width: 30px;
  height: 30px;
  background: #003cff;
  display: flex;
  flex-flow: wrap;
  flex-shrink: 0;
  border-radius: 30px;
}
.subitems__arrow::before {
  content: "";
  position: relative;
  left: -2px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  display: block;
  transform-origin: 50% 50%;
}
@media (min-width: 960px) {
  .subitems__arrow {
    width: 36px;
    height: 36px;
  }
}

.subitems__title {
  color: #fff;
  transition: 0.2s ease-in-out;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  .subitems__title {
    font-size: 1.7rem;
  }
}

.client-detail-header {
  padding: 20px;
  background-color: #fff;
  color: #000;
}

.client-detail-header__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  margin-bottom: 30px;
}
@media (min-width: 640px) {
  .client-detail-header__head {
    flex-direction: row;
  }
}

.client-detail-header__logo {
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.client-detail-header__title {
  font-weight: 600;
  font-size: 50px;
  margin: 0;
}

.client-detail-header__body {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 50px;
}

.client-detail-header__label a {
  color: black !important;
  text-decoration: underline;
}
.client-detail-header__label a:not(:first-child) {
  margin-left: 10px;
}
.client-detail-header__label a:hover {
  color: #003cff !important;
}

.client-detail-header__value--bold {
  font-weight: bold;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.category-button {
  margin-bottom: 6rem;
}

.category-button__bottom-title {
  font-weight: 500;
  font-size: 31px;
  margin-bottom: 20px;
  text-align: left;
}

.category-button__row {
  width: 100%;
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
}

.category-button__button {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  text-align: left;
  min-height: 77px;
  width: 100%;
  padding: 5px 5px 5px 15px;
  border: 1px solid #C1CFFF;
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  text-transform: none;
  white-space: normal;
  overflow: hidden;
  transition: width 0.2s ease;
  justify-content: start;
}
@media (min-width: 480px) {
  .category-button__button {
    width: 48%;
  }
}
@media (min-width: 1280px) {
  .category-button__button {
    width: 31%;
  }
}
@media (min-width: 1700px) {
  .category-button__button {
    width: 23%;
  }
}

.category-button__icon {
  height: 26px;
  width: 26px;
  margin-right: 12px;
}
@media (min-width: 640px) {
  .category-button__icon {
    margin-right: 16px;
  }
}

.contact-persons {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  width: 100%;
  max-width: 330px;
}

.contact-persons--margin-top {
  margin-top: 23px;
}

.contact-persons__title {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 3rem;
}

.contact-person {
  border: 1px solid #C1CFFF;
  border-radius: 10px;
  padding: 2.5rem;
  width: 100%;
}
.contact-person:not(:last-of-type) {
  margin-bottom: 24px;
}

.contact-person__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-person__name-wrap {
  display: flex;
  flex-direction: column;
}

.contact-person__name {
  font-weight: 600;
  font-size: 1.8rem;
}

.contact-person__role,
.contact-person__detail {
  font-size: 1.6rem;
}

.contact-person__role::first-letter {
  text-transform: capitalize;
}

.contact-person__figure {
  border-radius: 50%;
  width: 64px;
  height: 64px;
}

.contact-person__img {
  border-radius: 50%;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-person__detail--margin {
  margin-left: 80px;
}

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

.contact-person__more-icon {
  width: 9px;
  height: 9px;
  margin-left: 8px;
}

.contact-person__more-button {
  color: #003cff !important;
  padding: 8px 16px;
  width: -moz-fit-content;
  width: fit-content;
  flex-flow: row nowrap;
  cursor: pointer;
}

.contact-person--hidden {
  display: none;
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.navigation-buttons--margin-bottom {
  margin-bottom: 3rem;
}

.navigation-btn-back,
.navigation-btn-next {
  background: none;
  border: none;
  color: #0050ff;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.navigation-btn-back:hover,
.navigation-btn-next:hover {
  color: #FFE224;
  text-decoration: none;
}

.navigation-btn-back:focus,
.navigation-btn-next:focus {
  outline: none;
}

.navigation-arrow-back,
.navigation-arrow-next {
  font-size: 40px;
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
  top: -5px;
  font-weight: 200;
}

.navigation-arrow-back:hover,
.navigation-arrow-next:hover {
  text-decoration: none;
}

.navigation-label-back,
.navigation-label-next {
  line-height: 1;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.navigation-btn-back:hover .navigation-label-back,
.navigation-btn-next:hover .navigation-label-next {
  border-color: #FFE224;
}

.navigation-btn-back:focus,
.navigation-btn-next:focus {
  outline: none;
  text-decoration: none;
}

.navigation-btn-back:focus .navigation-label-back,
.navigation-btn-next:focus .navigation-label-next,
.navigation-btn-back:active .navigation-label-back,
.navigation-btn-next:active .navigation-label-next {
  border-color: transparent;
  text-decoration: none;
}

.alphabet__section {
  background-color: #fff;
}

.alphabet {
  font-family: "Barlow", sans-serif;
}

.alphabet h2 {
  text-align: left;
}

.alphabet__header-title {
  font-size: 40px;
  line-height: 150%;
  letter-spacing: -0.011em;
  font-weight: 600;
  margin-bottom: 43px;
}

.alphabet__letters {
  position: sticky;
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
  top: 0;
  z-index: 1000;
  background: white;
}

.alphabet__letters a {
  height: 40px;
  width: 40px;
  padding: 7.5px 4px;
  margin: 3px;
  background-color: #F6F7FB;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.011em;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.alphabet__letters a:hover, .alphabet__letters a:focus {
  background: #FFE224;
  color: #000;
}

.alphabet__letter-title {
  padding: 0px 8px;
  font-weight: 600;
  font-size: 40px;
  line-height: 150%;
}

.alphabet__letter-block {
  margin-bottom: 40px;
}

.alphabet__clients-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.alphabet__client {
  border-top: 0.5px solid #C1CFFF;
  flex-direction: column;
  align-items: center;
  display: flex;
}
@media (min-width: 480px) {
  .alphabet__client {
    display: table-row;
  }
}

.alphabet__client:last-child {
  border-bottom: 0.5px solid #C1CFFF;
}

.alphabet__client-name {
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.011em;
  margin-right: 3%;
  padding: 10px 15px 10px 6px;
}
@media (min-width: 480px) {
  .alphabet__client-name {
    text-align: left;
    width: 33%;
  }
}
@media (min-width: 960px) {
  .alphabet__client-name {
    width: 30%;
  }
}

.alphabet__client-name a {
  height: 100%;
  display: inline-block;
  transition: 0.1s ease-in-out;
}

.alphabet__project-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-self: center;
  justify-content: center;
}
@media (min-width: 480px) {
  .alphabet__project-row {
    justify-content: unset;
  }
}

.alphabet__project {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.011em;
  white-space: nowrap;
  padding: 13px 0;
  transition: 0.1s ease-in-out;
  margin-right: 25px;
}
@media (min-width: 960px) {
  .alphabet__project {
    margin-right: 40px;
  }
}

.alphabet__project:nth-child(3) {
  display: none;
}
@media (min-width: 960px) {
  .alphabet__project:nth-child(3) {
    display: unset;
    margin-right: 26px;
  }
}
@media (min-width: 1280px) {
  .alphabet__project:nth-child(3) {
    margin-right: 40px;
  }
}

.alphabet__project:nth-child(4) {
  display: none;
}
@media (min-width: 1280px) {
  .alphabet__project:nth-child(4) {
    display: unset;
    margin-right: 26px;
  }
}

.alphabet__project-more {
  display: flex;
}

.alphabet__project-more p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.011em;
  padding: 10px 0;
  color: #003cff;
  display: none;
}
@media (min-width: 480px) {
  .alphabet__project-more p {
    display: unset;
    margin-right: 32px;
  }
}
@media (min-width: 960px) {
  .alphabet__project-more p {
    margin-right: 52px;
  }
}
@media (min-width: 1280px) {
  .alphabet__project-more p {
    margin-right: 72px;
  }
}

.alphabet__project-more a {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  padding: 18px 0 10px;
}

.alphabet__header {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 960px) {
  .alphabet__header {
    flex-direction: row;
  }
}
@media (min-width: 563px) {
  .alphabet__header {
    display: flex;
  }
}

.alphabet__header--clients {
  flex-direction: column;
}
@media (min-width: 1700px) {
  .alphabet__header--clients {
    flex-direction: row;
  }
}

.alphabet__search {
  border: 1px dashed #bdbdbd;
  border-radius: 84px;
  padding: 5px 5px 5px 30px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

.alphabet__title {
  font-size: 40px;
}

.alphabet__search-icon {
  width: 22px;
  height: 22px;
  margin-right: 20px;
  display: none;
}
@media (min-width: 472px) {
  .alphabet__search-icon {
    display: block;
  }
}

.alphabet__search-input {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  height: 100%;
}
@media (min-width: 563px) {
  .alphabet__search-input {
    min-width: 280px;
  }
}
.alphabet__search-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.alphabet__search-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.alphabet__search-button {
  padding: 25px 40px;
  border-radius: 84px;
}
@media (min-width: 640px) {
  .alphabet__search-button {
    padding: 25px 60px;
  }
}

.alphabet__letter--hidden {
  display: none;
}

.alphabet__client.hidden {
  display: none;
}

.alphabet__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.alphabet__filter {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
}
@media (min-width: 480px) {
  .alphabet__filter {
    flex: 1 1 calc(50% - 15px);
  }
}
@media (min-width: 960px) {
  .alphabet__filter {
    flex: 1 1 0;
  }
}

.alphabet__filter-label {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
}

.alphabet__filter-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background-color: #F6F7FB;
  border: 1px solid #e9e9e9;
  border-radius: 84px;
  padding: 12px 40px 12px 20px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.alphabet__filter-select:hover, .alphabet__filter-select:focus {
  border-color: #003cff;
  outline: none;
}
.alphabet__filter-select:focus {
  box-shadow: 0 0 0 2px rgba(0, 60, 255, 0.15);
}

.wiki-main-header {
  padding-top: 7rem;
}

.wiki-main-header__title {
  font-size: 50px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -1.1%;
  text-align: center;
  margin-bottom: 10px;
}

.wiki-main-header span {
  font-weight: 700;
  text-transform: uppercase;
  color: #003cff;
  background: none;
}

.wiki-main-header__perex {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -1.1%;
}

.wiki-header-buttons {
  padding: 20px 0;
}

.wiki-header-buttons__button {
  margin: 8px;
  color: #003cff;
  background-color: #C1CFFF;
  gap: 8px;
  border: none;
  text-transform: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
}

.detail-clanek__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  padding: 0 40px 80px;
  background: #F6F7FB;
  border-bottom: 1px solid #C1CFFF;
}

.detail-clanek__header-title {
  margin: 16px 0 20px;
  font-size: 50px;
}

.detail-clanek__header-responsible,
.detail-clanek__header-last-edited,
.detail-clanek__header-version,
.detail-clanek__header-spec {
  font-size: 20px;
  display: flex;
  gap: 3px;
}
.detail-clanek__header-responsible span,
.detail-clanek__header-last-edited span,
.detail-clanek__header-version span,
.detail-clanek__header-spec span {
  font-weight: 700;
}

.detail-clanek__header-responsible {
  margin-bottom: 3px;
}

.detail-clanek__header-last-edited {
  margin-bottom: 40px;
}

.detail-clanek__header-perex {
  font-size: 20px;
}

.detail-clanek__content {
  padding: 0 40px;
}

.detail-clanek__header-arrow {
  height: 15px;
  width: 15px;
  margin-bottom: 2px;
  margin-left: 5px;
  transition: 0.2s transform;
}

.detail-clanek__header-archive-details {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  left: -10px;
}

.detail-clanek__header-archive-details[open] .detail-clanek__header-arrow {
  transform: rotate(180deg);
  margin-bottom: 0;
}

.detail-clanek__header-archive-list-item {
  width: -moz-fit-content;
  width: fit-content;
}

.detail-clanek__header-archive-summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  position: relative;
  padding: 0 10px;
}

.detail-clanek__header-archive-list {
  width: 100%;
  position: absolute;
  background: white;
  padding: 27px 10px 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  top: 0;
  z-index: 1;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
}

.detail-clanek__header-archive-label {
  font-weight: 500;
}

.detail-clanek__header-archive-back {
  margin-left: 10px;
  font-size: 17px;
}

.detail-category__title {
  font-size: 50px;
  margin: 16px 0 30px;
  font-weight: 600;
}

.detail-client__projects {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
}

.detail-klienta-podpolozky {
  gap: 20px;
  margin-bottom: 6rem;
}

.detail-klienta-podpolozky__card {
  background-color: #f8f9fc;
  border: 1px solid #e0e7ff;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.2);
  height: -moz-max-content;
  height: max-content;
  padding: 20px;
}

.detail-klienta-podpolozky__head {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 10px;
}

.detail-klienta-podpolozky__process {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 2px;
}

.detail-klienta-podpolozky__text {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 2px;
}

.hp-boxes__title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4rem;
  font-weight: 600;
}

.hp-boxes__wrap {
  display: flex;
  flex-direction: column;
}

.hp-boxes--clients-page {
  margin-bottom: 9rem;
}

.wiki-box {
  background: #F6F7FB;
  border-radius: 10px;
  border: 1px solid #C1CFFF;
  padding: 25px;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .wiki-box {
    width: calc(50% - 16px);
  }
}
@media (min-width: 960px) {
  .wiki-box {
    width: calc(33.3% - 16px);
  }
}

@media (min-width: 640px) {
  .hp-boxes--clients-page .wiki-box {
    width: calc(50% - 16px);
  }
}
@media (min-width: 1700px) {
  .hp-boxes--clients-page .wiki-box {
    width: calc(33.3% - 16px);
  }
}

.wiki-box__top {
  margin-bottom: 10px;
}

.wiki-box__title {
  font-weight: 600;
  font-size: 3rem;
  color: #000;
}

.wiki-box__figure {
  height: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 3px;
}

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

.wiki-box__item {
  margin-bottom: 2px;
  font-weight: 500;
}

.wiki-box__top--icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.wiki-box__icon {
  width: 26px;
  height: 26px;
}

.wiki-compliance {
  margin: 16px 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.wiki-compliance__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #fff;
}
.wiki-compliance__badge--mandatory {
  background: #d73a49;
}
.wiki-compliance__badge--recommended {
  background: #dbab09;
}
.wiki-compliance__badge--reference {
  background: #0366d6;
}
.wiki-compliance__badge--deprecated {
  background: #6a737d;
}
.wiki-compliance__version {
  font-size: 12px;
  color: #6a737d;
}
.wiki-compliance__deprecated {
  flex: 1 0 100%;
  margin-top: 8px;
  padding: 12px 16px;
  background: #fff5b1;
  border-left: 4px solid #dbab09;
  border-radius: 3px;
}
.wiki-compliance__deprecated strong {
  color: #b08800;
}
.wiki-compliance__deprecated-date {
  margin-left: 8px;
  font-size: 12px;
  color: #6a737d;
}
.wiki-compliance__deprecated-reason {
  margin: 8px 0 0;
}
.wiki-compliance__deprecated-replaced {
  margin: 8px 0 0;
}
.wiki-compliance__deprecated-link {
  font-weight: 600;
  text-decoration: underline;
}
.wiki-compliance__ack {
  flex: 1 0 100%;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.wiki-compliance__ack-status {
  font-size: 14px;
  font-weight: 500;
}
.wiki-compliance__ack-status--ok {
  color: #28a745;
}
.wiki-compliance__ack-status--outdated {
  color: #dbab09;
}
.wiki-compliance__ack-status--missing {
  color: #d73a49;
}
.wiki-compliance__ack-form {
  display: inline-block;
  margin: 0;
}
.wiki-compliance__ack-button {
  display: inline-block;
  padding: 8px 18px;
  background: #0366d6;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.wiki-compliance__ack-button:hover {
  background: #0256b3;
}
.wiki-compliance__ack-button:active {
  background: #02478f;
}
.wiki-compliance__ack-button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.help header {
  min-height: 120px;
  background: #fff;
}
.help header .logo {
  display: block;
  text-decoration: none;
}
.help header .logo img {
  margin: 2px 0;
  height: 26px;
}
.help header .logo span {
  color: #e9e9e9;
  font-size: 17px;
  position: relative;
  display: inline-block;
  line-height: 26px;
  margin-left: 19px;
  padding-left: 20px;
  padding-bottom: 4px;
  margin-top: 2px;
  font-weight: 500;
}
.help header .logo span:before {
  content: "";
  position: absolute;
  height: 30px;
  border-left: 1px dashed #e9e9e9;
  left: 0;
  top: 0;
}
.help header .contact {
  font-size: 16px;
  line-height: 30px;
}
.help header .contact a {
  display: inline-block;
}
.help header .contact a:first-of-type {
  margin: 0 20px;
}
.help header .content {
  min-height: 120px;
  padding: 8px 0 12px 0;
}
.help .search form {
  background: #fff;
  border: 1px dashed #e9e9e9;
  height: 82px;
  border-radius: 41px;
  padding: 7px;
  width: 300px;
  position: relative;
}
.help .search form label {
  position: relative;
  width: 100%;
  font-weight: 500;
}
.help .search form label .text {
  border: 0;
  padding-left: 70px;
  height: 66px;
  display: inline-block;
  border-radius: 33px;
  width: 100%;
}
.help .search form label:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 30px;
  height: 30px;
  background: url("/userfiles/images/icons.svg") 4px 4px no-repeat;
}
.help .search form .btn {
  position: absolute;
  right: 7px;
  top: 7px;
}
.help .search p {
  padding-left: 32px;
  padding-top: 5px;
  font-size: 15px;
  font-weight: 500;
}
.help .search.login form label .text {
  padding-left: 30px;
}
.help .search.login form label:before {
  display: none;
}
.help .big-search {
  padding-top: 20px;
  padding-bottom: 60px;
  background: url(/userfiles/images/line.svg) center -10px no-repeat;
}
.help .big-search.login {
  background-position: center 175px;
}
.help .big-search.login h1 {
  text-align: center;
}
.help .big-search.login p {
  text-align: center;
  margin-top: 50px;
}
.help header .search form {
  width: 330px;
  height: 60px;
}
.help header .search form label:before {
  left: 7px;
  top: 9px;
}
.help header .search form label .text {
  padding-left: 45px;
  height: 46px;
  font-size: 14px;
}
.help.home {
  background: linear-gradient(to bottom, rgb(246, 247, 251) 120px, rgb(255, 255, 255) 100%) no-repeat;
  min-height: 100%;
}
.help.home header .search {
  display: none;
}
.help.home .categories {
  margin-top: 100px;
  margin-bottom: 100px;
}
.help.home .categories .items {
  margin-top: 32px;
}
.help.home .categories .items .btn {
  display: block;
  margin-bottom: 30px;
}
.help.home .categories .items .btn:hover {
  color: #fff;
}
.help.home .faq {
  margin-bottom: 100px;
  margin-top: 100px;
}
.help ul:not(.tracy-row) {
  list-style: none;
  margin: 30px 0;
  padding-left: 25px;
}
.help ul:not(.tracy-row) li {
  margin-bottom: 20px;
  line-height: 140%;
}
.help ul:not(.tracy-row) li ul li:before {
  color: #FFE224;
}
.help .question {
  background: #000;
  padding-top: 150px;
  padding-bottom: 150px;
  color: #fff;
}
.help .question h2 {
  font-size: 50px;
  margin-top: 0;
}
.help .question .form-control {
  background: #000;
  height: 66px;
  line-height: 30px;
  padding: 18px;
  border: 2px solid #707070;
  border-radius: 33px;
  color: #fff;
}
.help .question textarea.form-control {
  height: 270px;
}
.help .question .text {
  padding-right: 30px;
}
.help .question .text p {
  line-height: 140%;
  color: #707070;
}
.help .question .text .contact {
  color: #fff;
  line-height: 120%;
  font-size: 23px;
  font-weight: 500;
  margin-top: 90px;
}
.help .question .text .contact a {
  color: #fff;
}
.help .question .text .contact a:hover, .help .question .text .contact a:active {
  color: #003cff;
}
.help .question label {
  font-weight: 400;
  margin: 0;
  font-size: 15px;
  line-height: 66px;
  padding-left: 25px;
}
.help .question .no-padding {
  padding-right: 0;
}
.help .question .star {
  color: #FFE224;
}
.help .question .btn {
  margin-top: 20px;
}
.help section.breadcrumb {
  margin: 0;
  padding: 12px 0 15px 0;
  background: #fff;
}
.help section.breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
}
.help section.breadcrumb .breadcrumb > li {
  color: #e9e9e9;
  font-size: 17px;
}
.help section.breadcrumb .breadcrumb > li + li:before {
  width: 8px;
  height: 12px;
  padding: 0 5px;
  margin: 0 10px;
  background: url("/userfiles/images/icons.svg") -27px 6px no-repeat;
}
.help section.breadcrumb .breadcrumb > li a {
  font-size: 17px;
  color: #000;
  text-decoration: none;
}
.help .menu .btn {
  min-width: 250px;
}
.help .menu ul {
  list-style: none;
  padding-left: 0;
  margin: 40px 0;
}
.help .menu ul li a {
  text-decoration: none;
  font-size: 20px;
  display: block;
}
.help .menu ul li:before {
  display: none;
}
.help .menu ul li ul {
  margin: 10px 0;
}
.help .menu ul li ul li {
  margin: 5px 0;
}
.help .menu ul li ul li a {
  padding-left: 20px;
  color: #000;
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
}
.help .menu ul li ul li a:hover {
  font-weight: 700;
  margin-left: 10px;
}
.help .menu ul li ul li a:before {
  content: "";
  width: 8px;
  height: 20px;
  position: absolute;
  display: block;
  top: 3px;
  left: 5px;
  background: url("/userfiles/images/icons.svg") -27px 6px no-repeat;
}
.help .page ul li img {
  margin: 30px 0;
}
.help .page .content ul, .help .page .content ol {
  padding-left: 20px;
}
.help .page .content ul li, .help .page .content ol li {
  margin: 0 0 10px 0;
}
.help .page .content img {
  margin: 10px 0 20px 0;
  max-width: 100%;
  height: auto;
}
.help .page .content .table-wrapper {
  margin: 30px 0;
  overflow-x: auto;
}
.help .page .content table {
  border: none;
  min-width: 400px;
}
.help .page .content table td, .help .page .content table th {
  padding: 6px 8px;
  border: none;
}
.help .page .content table tr {
  padding: 10px;
  border: none;
}
.help .page .content table tr:not(:last-of-type) td {
  border-bottom: 1px solid #e9e9e9;
}
.help .page .content table td {
  font-size: 15px;
}
.help .page .content table th {
  font-weight: 700;
  border-bottom: 1px solid #e9e9e9;
  font-size: 16px;
}

.tabs__link {
  padding: 9px 16px;
  border: 1px solid #E8EDFF;
  background: #fff;
  box-shadow: inset 0 6px 25px rgba(0, 0, 0, 0.09);
  cursor: pointer;
}

.tabs__link--active {
  border: none;
  box-shadow: none;
  border-bottom: 2px solid #003cff;
}

.files__icon {
  height: 20px;
  width: 20px;
  margin-right: 12px;
  fill: #003cff;
  margin-top: 2px;
}
@media (min-width: 640px) {
  .files__icon {
    margin-right: 16px;
  }
}

.files__list {
  display: flex;
  flex-flow: row wrap;
  gap: 1.5rem;
}

.files__link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  text-align: left;
  height: 77px;
  width: 100%;
  padding: 5px 20px;
  border: 1px solid #C1CFFF;
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  text-transform: none;
  transition: 0.1s background-color;
}
.files__link:hover {
  background-color: #F6F7FB;
}
.files__link:hover svg {
  fill: #FFE224;
}

.files__title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 18px;
}

.poptavka__title {
  margin-top: 35px;
  text-align: center;
}
@media (min-width: 960px) {
  .poptavka__title {
    margin-top: unset;
    text-align: left;
  }
}

@media (max-width: 959px) {
  .poptavka__perex {
    text-align: center;
  }
  .poptavka__header-wrap {
    flex-direction: column !important;
  }
  .poptavka__header-wrap .phone {
    font-size: 29px !important;
  }
  .poptavka__header .logo {
    flex-direction: row !important;
    justify-content: center;
    width: 0;
  }
  .poptavka__header .logo img {
    width: 180px;
  }
  .poptavka__header .logo span {
    border-top: unset !important;
    border-left: 1px dashed #C1C8E2 !important;
    font-size: 16px !important;
    line-height: 20px !important;
    padding-left: 25px !important;
    margin-left: 25px !important;
    width: 200px !important;
    margin-top: unset !important;
  }
}
.poptavka__button {
  text-decoration: none;
  color: white !important;
  margin-top: 30px;
}

@media (max-width: 959px) {
  .poptavka__button-wrap {
    justify-content: center;
  }
}

.contact__info-person {
  justify-content: center;
  text-align: center;
}
@media (min-width: 520px) {
  .contact__info-person {
    text-align: unset;
    justify-content: left;
  }
}
@media (min-width: 1000px) {
  .contact__info-person {
    justify-content: left;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .contact__info-person {
    text-align: unset;
    justify-content: left;
  }
}

.contact__info-phone {
  font-size: 16px;
  color: #fff !important;
}
.contact__info-phone:hover {
  color: #FFE224 !important;
}

.contact__info-figure {
  height: 100px;
  width: 100px;
}

.contact__info-img {
  border-radius: 50%;
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact__napoveda {
  margin-top: 3rem;
  margin-left: 8px;
  margin-bottom: -18px;
}
@media (min-width: 960px) {
  .contact__napoveda {
    margin-bottom: unset;
    margin-left: 0.4rem;
    margin-top: 3rem;
  }
}
@media (min-width: 1000px) {
  .contact__napoveda {
    margin-left: 10.4rem;
    margin-top: 3rem;
  }
}

.contact__napoveda-title {
  font-size: 17px;
  margin-bottom: 5px;
}

.contact__napoveda-list {
  font-size: 15px;
  margin-left: -24px;
}

.contact__info-wrap {
  margin-left: unset;
}
@media (min-width: 520px) {
  .contact__info-wrap {
    margin-left: 10px;
  }
}
@media (min-width: 1000px) {
  .contact__info-wrap {
    margin-left: unset;
  }
}
@media (min-width: 1200px) {
  .contact__info-wrap {
    margin-left: 10px;
  }
}

.button-line__content-title {
  text-align: left;
  font-size: 3.6rem;
}
.button-line__content-title span {
  background: #FFE224;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.3em;
}

.button-line__svg-wrap {
  height: 350px;
}

.button-line-big .main-header__title {
  text-align: left;
  font-size: 4.8rem;
  max-width: 620px;
  margin-bottom: 20px;
}
.button-line-big .main-header__title span {
  background: #FFE224;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.3em;
}

.button-line {
  max-width: 1920px;
  margin: 0 auto 100px;
  padding: 4rem 0;
}

.button-line__cta-button {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}

.button-line__content {
  margin-left: 12%;
}

.button-line__text-span a {
  text-decoration: underline;
}

.button-line__contact {
  padding-right: 10px;
}

.button-line__content-text {
  font-family: "Barlow", sans-serif;
  font-size: 24px;
  font-weight: 500;
  max-width: 600px;
  padding-left: 10px;
}

.button-line__contact {
  padding-right: 10px;
}

.button-line__content-flex {
  display: flex;
  display: -webkit-flex;
  margin-top: 30px;
}
.button-line__content-flex .button-line__contact a {
  text-decoration: underline;
}

.button-line-big .button-line__content-flex {
  display: flex;
  display: -webkit-flex;
  margin-left: 10vw;
  margin-top: 140px;
}

.button-line__content-flex .button-line__contact {
  align-self: center;
  margin-left: 2.5vw;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}

.button-line__cta-button {
  font-weight: 700;
}

.button-line__line-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  z-index: 0;
  min-height: 100%;
}
@media (min-width: 1280px) {
  .button-line__line-container {
    margin-top: -120px;
  }
}

.button-line__line-wrapper--ios {
  display: none !important;
}

.button-line__line-container--ios {
  margin-bottom: 180px !important;
}

.button-line__line-wrapper {
  min-height: 100%;
  position: relative;
  width: 100%;
  max-width: 1920px;
}

.button-line__line-svg {
  display: block;
  width: 100%;
  max-width: 1920px;
  height: 350px;
  position: absolute;
  top: 0;
}
.button-line__line-svg.button-line-big__line-svg {
  height: 450px;
}

.button-line__m-line-svg-top,
.button-line__m-line-svg-bot {
  visibility: visible;
  max-width: 1920px;
}

.button-line__m-line-svg-top {
  margin-bottom: 70px;
}

.button-line-big .button-line__m-line-svg-top {
  margin-bottom: 150px;
}

.button-line__mobile-buttons-svg {
  display: none;
}
@media (max-width: 480px) {
  .button-line__mobile-buttons-svg {
    visibility: visible !important;
  }
}

.button-line__step-overlay {
  position: absolute;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 200px;
}

.button-line__step-overlay .button-line__step-text {
  height: 60px;
  margin-top: 17px;
}
.button-line-big .button-line__step-overlay .button-line__step-text {
  font-size: 18px;
  max-width: 160px;
}

.button-line__step-circle {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  height: 105px;
  width: 108px;
  border-radius: 50%;
}

.button-line__step-circle p {
  margin: 0;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: clamp(16px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 125px;
  height: 105px;
}

.button-line__step-1 {
  top: 85.9%;
  left: 16.9%;
}

.button-line__step-2 {
  top: 87.8%;
  left: 36.5%;
}

.button-line__step-3 {
  top: 74.9%;
  left: 54.4%;
}
.button-line__step-3 .button-line__step-3 .button-line__step-circle p {
  rotate: -16deg;
}

.button-line__step-4 {
  top: 48.5%;
  left: 70.3%;
}

.button-line__step-1 .button-line__step-circle p {
  rotate: -19deg;
}

.button-line__step-2 .button-line__step-circle p {
  rotate: 25deg;
}

.button-line__step-3 .button-line__step-circle p {
  rotate: -20deg;
}

.button-line__step-4 .button-line__step-circle p {
  rotate: 12deg;
}

.button-line-big .button-line__step-circle {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 0.5rem;
  border-radius: 50%;
}
.button-line-big .button-line__step-circle p {
  margin: 0;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: clamp(16px, 2.5vw, 36px);
  font-weight: 900;
}
.button-line-big .button-line__step-1 .button-line__step-circle p {
  rotate: 1.15deg;
}
.button-line-big .button-line__step-2 .button-line__step-circle p {
  rotate: 2.75deg;
}
.button-line-big .button-line__step-4 .button-line__step-circle p {
  rotate: -17deg;
}
.button-line-big .button-line__step-5 .button-line__step-circle p {
  rotate: -14deg;
}
.button-line-big .button-line__step-6 .button-line__step-circle p {
  rotate: -6deg;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
@media (min-width: 1380px) {
  .button-line-big .button-line__step-1 {
    top: 78%;
    left: 15%;
  }
  .button-line-big .button-line__step-2 {
    top: 74%;
    left: 28%;
  }
  .button-line-big .button-line__step-3 {
    top: 62%;
    left: 42%;
  }
  .button-line-big .button-line__step-4 {
    top: 48.5%;
    left: 57%;
  }
  .button-line-big .button-line__step-5 {
    top: 30%;
    left: 71%;
  }
  .button-line-big .button-line__step-6 {
    top: 30%;
    left: 85%;
  }
}
@media (min-width: 1850px) {
  .button-line-big .button-line__step-1 {
    top: 99%;
    left: 14.5%;
  }
  .button-line-big .button-line__step-2 {
    top: 88%;
    left: 28.5%;
  }
  .button-line-big .button-line__step-3 {
    top: 71%;
    left: 43%;
  }
  .button-line-big .button-line__step-4 {
    top: 53%;
    left: 57.5%;
  }
  .button-line-big .button-line__step-5 {
    top: 36%;
    left: 71.5%;
  }
  .button-line-big .button-line__step-6 {
    top: 28%;
    left: 85.5%;
  }
}
@media (max-width: 1850px) {
  .button-line-big .button-line__step-1 {
    top: 97%;
    left: 14.5%;
  }
  .button-line-big .button-line__step-2 {
    top: 87%;
    left: 28.5%;
  }
  .button-line-big .button-line__step-3 {
    top: 71%;
    left: 43%;
  }
  .button-line-big .button-line__step-4 {
    top: 54%;
    left: 57.5%;
  }
  .button-line-big .button-line__step-5 {
    top: 37%;
    left: 71.5%;
  }
  .button-line-big .button-line__step-6 {
    top: 31%;
    left: 85.5%;
  }
}
@media (max-width: 1650px) {
  .button-line-big .button-line__step-1 {
    top: 94%;
    left: 14.5%;
  }
  .button-line-big .button-line__step-2 {
    top: 84%;
    left: 28.5%;
  }
  .button-line-big .button-line__step-3 {
    top: 69%;
    left: 43%;
  }
  .button-line-big .button-line__step-4 {
    top: 54%;
    left: 57.5%;
  }
  .button-line-big .button-line__step-5 {
    top: 39%;
    left: 71.5%;
  }
  .button-line-big .button-line__step-6 {
    top: 34%;
    left: 85.5%;
  }
}
@media (max-width: 1500px) {
  .button-line-big .button-line__step-1 {
    top: 90%;
    left: 14.5%;
  }
  .button-line-big .button-line__step-2 {
    top: 81%;
    left: 28.5%;
  }
  .button-line-big .button-line__step-3 {
    top: 69%;
    left: 43%;
  }
  .button-line-big .button-line__step-4 {
    top: 56%;
    left: 57.5%;
  }
  .button-line-big .button-line__step-5 {
    top: 41%;
    left: 71.5%;
  }
  .button-line-big .button-line__step-6 {
    top: 36%;
    left: 85.5%;
  }
}
@media (max-width: 1340px) {
  .button-line-big .button-line__step-1 {
    top: 89%;
    left: 14.5%;
  }
  .button-line-big .button-line__step-2 {
    top: 80%;
    left: 28.5%;
  }
  .button-line-big .button-line__step-3 {
    top: 68%;
    left: 43%;
  }
  .button-line-big .button-line__step-4 {
    top: 56%;
    left: 57.5%;
  }
  .button-line-big .button-line__step-5 {
    top: 43%;
    left: 71.5%;
  }
  .button-line-big .button-line__step-6 {
    top: 38%;
    left: 85.5%;
  }
}
@media (min-width: 1280px) {
  .button-line__m-line-svg-top,
  .button-line__m-line-svg-bot {
    display: none;
  }
}
@media (max-width: 1280px) {
  .button-line__line-svg, .button-line__svg-wrap {
    visibility: hidden;
  }
  .button-line__line-wrapper {
    width: 640px;
    margin: auto;
  }
  .button-line__step-1 {
    top: 31%;
    left: 33%;
  }
  .button-line__step-2 {
    top: 32%;
    left: 68%;
  }
  .button-line__step-3 {
    top: 97%;
    left: 35.5%;
  }
  .button-line__step-4 {
    top: 90%;
    left: 68%;
  }
  .button-line__m-line-svg-top,
  .button-line__m-line-svg-bot {
    display: block;
    width: 100%;
  }
  .button-line-big .button-line__step-1 {
    top: 46%;
    left: 30%;
  }
  .button-line-big .button-line__step-2 {
    top: 35%;
    left: 52.5%;
  }
  .button-line-big .button-line__step-3 {
    top: 26%;
    left: 76.5%;
  }
  .button-line-big .button-line__step-4 {
    top: 104%;
    left: 20%;
  }
  .button-line-big .button-line__step-5 {
    top: 93%;
    left: 47%;
  }
  .button-line-big .button-line__step-6 {
    top: 89%;
    left: 73%;
  }
  .button-line-big .button-line__step-overlay .button-line__step-text {
    max-width: 130px;
  }
  .button-line-big .button-line__content-flex {
    margin-top: 180px;
  }
}
@media (max-width: 960px) {
  .button-line__content-flex {
    flex-direction: column;
  }
  .button-line__content-flex .button-line__contact {
    margin-left: 0;
    margin-top: 20px;
    align-self: baseline;
  }
  .button-line__cta-button {
    width: -moz-fit-content;
    width: fit-content;
  }
  .button-line-big .button-line__step-1 {
    top: 46%;
    left: 30%;
  }
  .button-line-big .button-line__step-2 {
    top: 35%;
    left: 52.5%;
  }
  .button-line-big .button-line__step-3 {
    top: 26%;
    left: 76.5%;
  }
  .button-line-big .button-line__step-4 {
    top: 104%;
    left: 20%;
  }
  .button-line-big .button-line__step-5 {
    top: 93%;
    left: 47%;
  }
  .button-line-big .button-line__step-6 {
    top: 88%;
    left: 73%;
  }
}
@media (max-width: 640px) {
  .button-line__line-wrapper {
    width: 100vw;
  }
  .button-line_text-span {
    display: block;
  }
}
@media (max-width: 600px) {
  .button-line-big .button-line__step-1 {
    top: 43%;
    left: 27%;
  }
  .button-line-big .button-line__step-3 {
    top: 26%;
    left: 78.5%;
  }
  .button-line-big .button-line__step-4 {
    top: 102%;
    left: 20.5%;
  }
  .button-line-big .button-line__step-overlay .button-line__step-text {
    max-width: 100px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .button-line__line-wrapper {
    width: 100vw;
    animation: none;
  }
  .button-line-big .main-header__title {
    text-align: center;
    font-weight: 700;
  }
  .button-line-big .main-header__title span {
    display: inline;
  }
  .button-line-big .button-line__content-text {
    text-align: center;
    padding: 0;
    font-size: 24px;
    margin-bottom: 55px;
  }
  .button-line__mobile-button-4 {
    margin-bottom: 30px;
  }
  .button-line-big .button-line__content-flex {
    align-items: center;
    margin-left: 0;
  }
  .button-line__content-flex .button-line__contact {
    align-self: center;
  }
  .button-line__content-flex .button-line__contact a {
    text-decoration: underline;
  }
  .button-line__content {
    margin-left: 4%;
  }
  .button-line__m-line-svg-top,
  .button-line__m-line-svg-bot {
    display: none;
  }
  .button-line__mobile-buttons-svg {
    display: block;
    width: 100%;
  }
  .button-line__step-1 {
    top: 17%;
    left: 52%;
  }
  .button-line__step-2 {
    top: 41%;
    left: 50%;
  }
  .button-line__step-3 {
    top: 68%;
    left: 50%;
  }
  .button-line__step-4 {
    top: 90%;
    left: 51%;
  }
  .button-line__step-overlay .button-line__step-text {
    font-weight: 500;
  }
  .button-line-big .button-line__step-overlay .button-line__step-text {
    font-size: 18px;
    max-width: 180px;
  }
  .button-line__step-circle p {
    font-weight: 900;
    font-size: 41.19px;
    text-align: center;
    vertical-align: middle;
  }
  .button-line-big .button-line__step-1 {
    top: 10.5%;
    left: 49%;
  }
  .button-line-big .button-line__step-2 {
    top: 27%;
    left: 48.5%;
  }
  .button-line-big .button-line__step-3 {
    top: 43%;
    left: 50.5%;
  }
  .button-line-big .button-line__step-4 {
    top: 61%;
    left: 49%;
  }
  .button-line-big .button-line__step-5 {
    top: 77%;
    left: 49%;
  }
  .button-line-big .button-line__step-6 {
    top: 93%;
    left: 50%;
  }
  .button-line-big .button-line__step-1 .button-line__step-circle p {
    font-size: 40px;
  }
  .button-line-big .button-line__step-2 .button-line__step-circle p {
    font-size: 40px;
  }
  .button-line-big .button-line__step-3 .button-line__step-circle p {
    font-size: 40px;
  }
  .button-line-big .button-line__step-4 .button-line__step-circle p {
    font-size: 40px;
  }
  .button-line-big .button-line__step-5 .button-line__step-circle p {
    font-size: 40px;
  }
  .button-line-big .button-line__step-6 .button-line__step-circle p {
    font-size: 40px;
  }
  .button-line-big .button-line__mobile-buttons-svg {
    padding-bottom: 60px;
  }
  .button-line-big .button-line__content-flex {
    margin-top: 50px;
  }
  .button-line__content-text {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  .button-line-big .button-line__step-1 .button-line__step-circle p {
    font-size: 32px;
  }
  .button-line-big .button-line__step-2 .button-line__step-circle p {
    font-size: 32px;
  }
  .button-line-big .button-line__step-3 .button-line__step-circle p {
    font-size: 32px;
  }
  .button-line-big .button-line__step-4 .button-line__step-circle p {
    font-size: 32px;
  }
  .button-line-big .button-line__step-5 .button-line__step-circle p {
    font-size: 32px;
  }
  .button-line-big .button-line__step-6 .button-line__step-circle p {
    font-size: 32px;
  }
  .button-line-big .button-line__step-1 {
    top: 11%;
    left: 49%;
  }
  .button-line-big .button-line__step-2 {
    top: 27%;
    left: 48.5%;
  }
  .button-line-big .button-line__step-3 {
    top: 43%;
    left: 50.5%;
  }
  .button-line-big .button-line__step-4 {
    top: 60%;
    left: 49%;
  }
  .button-line-big .button-line__step-5 {
    top: 77%;
    left: 49%;
  }
  .button-line-big .button-line__step-6 {
    top: 93%;
    left: 50%;
  }
}
@media (max-width: 340px) {
  .button-line-big .button-line__step-1 .button-line__step-circle p {
    font-size: 32px;
  }
  .button-line-big .button-line__step-2 .button-line__step-circle p {
    font-size: 32px;
  }
  .button-line-big .button-line__step-3 .button-line__step-circle p {
    font-size: 32px;
  }
  .button-line-big .button-line__step-4 .button-line__step-circle p {
    font-size: 32px;
  }
  .button-line-big .button-line__step-5 .button-line__step-circle p {
    font-size: 32px;
  }
  .button-line-big .button-line__step-6 .button-line__step-circle p {
    font-size: 32px;
  }
  .button-line-big .button-line__step-1 {
    top: 11.5%;
    left: 49%;
  }
  .button-line-big .button-line__step-2 {
    top: 26.5%;
    left: 48.5%;
  }
  .button-line-big .button-line__step-3 {
    top: 43%;
    left: 50.5%;
  }
  .button-line-big .button-line__step-4 {
    top: 60%;
    left: 49%;
  }
  .button-line-big .button-line__step-5 {
    top: 76%;
    left: 49%;
  }
  .button-line-big .button-line__step-6 {
    top: 93%;
    left: 50%;
  }
}
@media (max-width: 320px) {
  .button-line__step-2 {
    top: 39%;
    left: 50%;
  }
  .button-line__step-4 {
    top: 92%;
    left: 51%;
  }
  .button-line-big .button-line__line-wrapper {
    min-width: 320px;
  }
}
@media (max-width: 280px) {
  .button-line-big .button-line__line-wrapper {
    margin-left: -20px;
  }
}
.button-line__line-container--poptavka {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.button-line__line-container--poptavka .button-line__step-circle {
  position: relative;
}

@media (max-width: 1280px) {
  .button-line__step-4 {
    top: 85%;
    left: 68%;
  }
}
@media (max-width: 320px) {
  .button-line__step-2 {
    top: 41%;
  }
  .button-line__step-3 {
    top: 70%;
  }
}
@media (min-width: 1600px) and (max-width: 1700px) {
  .button-line__step-1 {
    top: 81%;
  }
}
@media (min-width: 1470px) and (max-width: 1600px) {
  .button-line__step-1 {
    top: 81.9%;
  }
  .button-line__step-2 {
    top: 83%;
  }
  .button-line__step-3 {
    top: 72.9%;
  }
  .button-line__step-4 {
    top: 50%;
  }
}
@media (min-width: 1280px) and (max-width: 1470px) {
  .button-line__step-1 {
    top: 79.2%;
    left: 16.7%;
  }
  .button-line__step-2 {
    top: 81.5%;
    left: 36.4%;
  }
  .button-line__step-3 {
    top: 72%;
  }
  .button-line__step-4 {
    top: 51%;
  }
}
@media (min-width: 1280px) and (max-width: 1470px) and (max-width: 1390px) {
  .button-line__step-2 {
    top: 81.4%;
    left: 36.6%;
  }
}
@media (min-width: 1600px) and (max-width: 1700px) {
  .button-line__step-1 {
    top: 84%;
    left: 16.7%;
  }
  .button-line__step-2 {
    top: 84.6%;
    left: 36.7%;
  }
  .button-line__step-3 {
    top: 72.9%;
  }
  .button-line__step-4 {
    top: 50%;
  }
}
@media (min-width: 960px) and (max-width: 1000px) {
  .button-line__step-1 {
    top: 27.4%;
    left: 32.3%;
  }
  .button-line__step-2 {
    top: 29.4%;
    left: 68.4%;
  }
  .button-line__step-3 {
    top: 95.5%;
    left: 35.5%;
  }
  .button-line__step-4 {
    top: 78%;
    left: 68.1%;
  }
  .button-line__svg-wrap {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .button-line__step-overlay .button-line__step-text {
    margin-top: 10px;
  }
}
@media (min-width: 480px) and (max-width: 1280px) {
  .button-line__svg-wrap {
    margin-top: 50px;
    height: 370px;
  }
}
@media (min-width: 480px) and (max-width: 1280px) and (max-width: 1000px) {
  .button-line__step-1 {
    top: 32.9%;
    left: 32%;
  }
  .button-line__step-2 {
    top: 34%;
    left: 68.4%;
  }
  .button-line__step-3 {
    top: 98.5%;
    left: 35.7%;
  }
  .button-line__step-4 {
    top: 84.4%;
    left: 68.6%;
  }
}
@media (min-width: 480px) and (max-width: 1280px) and (min-width: 1000px) {
  .button-line__step-1 {
    top: 32.4%;
    left: 32.3%;
  }
  .button-line__step-2 {
    top: 33.4%;
    left: 68.4%;
  }
  .button-line__step-3 {
    top: 99.7%;
    left: 35.5%;
  }
  .button-line__step-4 {
    top: 82%;
    left: 68.1%;
  }
}
@media (min-width: 600px) and (max-width: 960px) {
  .button-line__step-3 {
    top: 100%;
    left: 35.5%;
  }
  .button-line__step-4 {
    top: 82.5%;
    left: 68%;
  }
}
@media (max-width: 480px) {
  .button-line__line-svg {
    display: none;
  }
  .button-line__svg-wrap {
    margin-top: 50px;
    height: 935px;
  }
  .button-line__step-1 {
    top: 14.1%;
    left: 49.6%;
  }
  .button-line__step-2 {
    top: 38%;
    left: 50.4%;
  }
  .button-line__step-3 {
    top: 65.4%;
    left: 50.2%;
  }
  .button-line__step-4 {
    top: 91.7%;
    left: 50%;
  }
}
@media (max-width: 350px) {
  .button-line__step-1 {
    top: 13.9%;
    left: 50.3%;
  }
  .button-line__step-2 {
    top: 37.4%;
    left: 49.9%;
  }
  .button-line__step-3 {
    top: 64.5%;
    left: 50.5%;
  }
  .button-line__step-4 {
    top: 91%;
    left: 49.3%;
  }
  .button-line__step-overlay .button-line__step-text {
    margin-top: 20px;
  }
}
@media (max-width: 1280px) {
  .button-line__line-svg {
    visibility: hidden;
  }
}

@media (width: 1280px) {
  .button-line__line-container {
    margin-top: 0;
  }
  .button-line__step-1 {
    top: 33.4%;
  }
  .button-line__step-2 {
    top: 34.4%;
  }
  .button-line__step-3 {
    top: 100.5%;
  }
  .button-line__step-4 {
    top: 82.5%;
  }
}
.button-line__mobile-button-1 {
  padding-bottom: 70px;
}

.button-line__mobile-button-2 {
  padding-bottom: 45px;
}

.button-line__mobile-button-3 {
  padding-bottom: 85px;
  height: 309px;
}

.button-line__mobile-button-4 {
  padding-bottom: 60px;
  height: 223px;
}

.spec {
  margin: 0 0 15px 0;
  gap: 10px 20px;
}

.spec--article {
  margin: 0;
}

.spec__item {
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
}

.spec__item--date {
  color: #707070;
}
@media (min-width: 1280px) {
  .spec__item--date {
    font-size: 1.7rem;
  }
}
.spec--references .spec__item--date, .spec--article .spec__item--date {
  color: #fff;
}

.spec__item--category {
  border: 2px solid #F6F7FB;
  padding: 7px 14px;
  transition: 0.3s all;
  color: #000;
  border-radius: 50px;
  font-weight: 500;
}
.spec__item--category:hover, .spec__item--category:focus {
  color: #fff;
  background: #F6F7FB;
}
@media (min-width: 1280px) {
  .spec__item--category {
    min-height: 46px;
  }
}
.spec--references .spec__item--category, .spec--article .spec__item--category {
  color: #fff;
}
@media (min-width: 1280px) {
  .spec--references .spec__item--category, .spec--article .spec__item--category {
    min-height: 32px;
  }
}

.not-selectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

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

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

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

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

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

.carousel__track {
  display: flex;
}

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

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

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

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

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

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

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}

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

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

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

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

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

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

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

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

.fancybox__container :focus {
  outline: thin dotted;
}

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

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

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

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

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

.fancybox__track {
  display: flex;
  height: 100%;
}

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

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

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

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

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

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

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

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

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

.fancybox__toolbar__items {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

.incredible-select__bar {
  padding: 4px;
  color: #000;
  display: flex;
  justify-content: center;
  background: #707070;
}
.incredible-select__bar .incredible-select__close-btn {
  font-size: 13px;
  padding: 4px 8px;
}
.incredible-select--stylable {
  width: 100%;
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 15px;
  text-transform: none;
  color: #000;
}
.incredible-select__selected-option {
  padding: 13px 25px 13px 15px;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  border: 1px solid #e9e9e9;
  min-height: 50px;
}
.incredible-select__selected-option::after {
  position: absolute;
  right: 15px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
  display: block;
  top: 18px;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
.incredible-select__options {
  position: absolute;
  background: white;
  top: calc(100% - 1px);
  display: none;
  left: 0px;
  right: 0px;
  border: 1px solid #e9e9e9;
  z-index: 900;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}
.incredible-select__options .incredible-select__item {
  width: 100%;
  padding: 13px 15px;
  color: #000;
}
.incredible-select__options .incredible-select__item.is-selected {
  font-weight: 700;
}
.incredible-select__options .incredible-select__item:not(:last-of-type) {
  border-bottom: 1px solid #e9e9e9;
}
.incredible-select__options .incredible-select__item:hover {
  cursor: pointer;
}

@media (min-width: 960px) {
  .incredible-select--stylable.var--2 .incredible-select__selected-option {
    font-size: 15px;
  }
}
.twitter-typeahead h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.typeahead__icon {
  width: 19px;
  height: 19px;
  margin-right: 8px;
}

.typeahead__result-count {
  margin-left: 6px;
  background: #C1CFFF;
  color: #003cff;
  height: 24px;
  min-width: 24px;
  font-size: 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-menu {
  border: 1px solid #C1CFFF;
  border-radius: 10px;
  padding: 28px 31px;
  background: #fff;
  top: 69px !important;
  left: -55px !important;
  min-width: 350px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 640px) {
  .tt-menu {
    min-width: 80vw;
    left: -50% !important;
  }
}
@media (min-width: 1280px) {
  .tt-menu {
    left: -100px !important;
    min-width: 754px;
  }
}
.tt-menu::before, .tt-menu::after {
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
  top: -20px;
  content: "";
  left: 130px;
  margin-left: -20px;
  position: absolute;
  transform: rotate(180deg);
}
.tt-menu::before {
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 22px solid;
  border-top-color: inherit;
  top: -22px;
  margin-left: -22px;
}

.typeahead__wrapper {
  padding: 7px 0;
}

.typeahead__result {
  font-size: 16px;
  color: #003cff;
  text-decoration: underline;
  margin-left: 9px;
  width: -moz-fit-content;
  width: fit-content;
}
.typeahead__result:hover {
  color: #FFE224;
}

.tt-dataset:not(:last-child) {
  margin-bottom: 25px;
}

.tt-hint {
  color: #BDBDBD;
}

.typeahead__detail {
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.typeahead__breadcrumb .breadcrumb {
  padding: 0;
  margin: 0;
  display: none;
  font-size: 14px;
  font-weight: 400;
  flex-direction: row;
  align-items: center;
}
@media (min-width: 640px) {
  .typeahead__breadcrumb .breadcrumb {
    display: flex;
  }
}
.typeahead__breadcrumb .breadcrumb .breadcrumb__item {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.typeahead__breadcrumb .breadcrumb .breadcrumb__item:first-child a {
  margin-left: 3px;
}
.typeahead__breadcrumb .breadcrumb .breadcrumb__item:nth-last-child(2) {
  display: none;
}
.typeahead__breadcrumb .breadcrumb .breadcrumb__item a {
  color: rgba(0, 60, 255, 0.5) !important;
}
.typeahead__breadcrumb .breadcrumb .breadcrumb__item::before {
  content: "";
  margin: 0 8px 0;
  display: inline-block;
  height: 5.6px;
  width: 5.6px;
  border-right: rgba(0, 60, 255, 0.5) solid 1px;
  border-top: rgba(0, 60, 255, 0.5) solid 1px;
  transform: rotate(45deg);
}
.typeahead__breadcrumb .breadcrumb .breadcrumb__item:hover {
  text-decoration: underline;
}
.typeahead__breadcrumb .breadcrumb .breadcrumb__item:hover a {
  color: #003cff !important;
}
.typeahead__breadcrumb .breadcrumb .breadcrumb__item:last-of-type {
  display: none;
}

.typeahead__breadcrumb strong {
  font-weight: 400;
}

.typeahead__show-more-button {
  border-width: 1px;
  border-radius: 84px;
  padding: 8px 16px;
  color: #fff !important;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 100%;
}

.hidden-code {
  white-space: pre-wrap;
  display: none;
}

.visible-code {
  white-space: pre-wrap;
}

pre[class*=language-] {
  max-height: 595px;
  overflow-y: hidden;
}

.show-more-button {
  color: #bbb;
  font-size: 0.8em;
  padding: 0 0.5em;
  background: #f5f2f0;
  background: rgba(224, 224, 224, 0.2);
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  margin-left: 10px;
  position: absolute;
  top: 373px;
  right: 10px;
}

.show-more-button-active {
  bottom: 10px;
  top: unset;
}
