@charset "UTF-8";
:root {
  --container-padding: 20px;
  --container-width: 1280px;
  --container-small-width: 1290px;
  --container-article-width: 995px;
  --fontFamily: "Mulish", sans-serif;
  --iconFont: "icomoon";
  --font-size: 16px;
  --text-color: #4e4e4e;
  --accent-color: #0000fe;
  --accent-color2: #5f14cd;
  --divider: 1px solid #d9d9d9;
  --grey: #abb3c3;
  --grey2: #f8f8fa;
  --bg-gradient: linear-gradient(138.5deg, #fc813f -54.37%, #b138f7 94.32%);
  --bg-gradient2: linear-gradient(135.7deg, #fc813f 23.46%, #b138f7 118.43%);
  --bg-gradient3: linear-gradient(100.06deg, #ffeee1 8.85%, #efe3f8 104.14%);
  --block-padding: clamp(
    50px,
    50px + (100 - 50) * ((100vw - 320px) / (1920 - 320)),
    100px
  );
  --title-margin-bottom: clamp(
    30px,
    30px + (50 - 30) * ((100vw - 320px) / (1920 - 320)),
    50px
  );
  --poligon: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  --poligon2: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
  --poligon3: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
  --poligon4: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
  --poligon5: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  --decor-poligon-width: 40%;
  --decor-poligon-heiight: clamp(
    25px,
    25px + (50 - 25) * ((100vw - 320px) / (1920 - 320)),
    50px
  );
  --active-color: var(--accent-color);
  --link-color: var(--text-color);
  --native-color: rgba(45, 45, 43, 0.7);
  --overlay: hsla(0, 0%, 0%, 0.5);
  --border-radius: 10px;
  --cubic-bezier: cubic-bezier(0.5, -0.75, 0.7, 2);
  --strore-height: 1px;
  /*
  cubic-bezier(0.165, 0.84, 0.44, 1);
  cubic-bezier(.57,.21,.69,1.25)
  cubic-bezier(.22,.68,0,1.71)
  cubic-bezier(.57,.21,.69,3.25)
  cubic-bezier(.25,.75,.5,1.25)
  cubic-bezier(.51,.92,.24,1.15)
  cubic-bezier(.5,-.75,.7,2)
  cubic-bezier(.42,.97,.52,1.49)
  cubic-bezier(.32,2,.55,.27)
  cubic-bezier(.17,.67,1,1.23)
  */
  accent-color: var(--accent-color);
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: -webkit-fill-available;
  overflow-x: hidden;
  --section-padding-normal: 60px;
  --section-padding-small: 40px;
  --section-padding-big: 120px;
}
@media (max-width: 767px) {
  html {
    --section-padding-normal: 30px;
    --section-padding-small: 20px;
    --section-padding-big: 60px;
  }
}

html,
body {
  margin: 0;
  font-family: var(--fontFamily);
  font-size: var(--font-size);
  line-height: 26px;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  min-width: 320px;
  scroll-padding-top: var(--header-height);
}
@media (max-width: 767px) {
  html,
body {
    scroll-padding-top: 73px;
  }
}

body {
  text-rendering: optimizeSpeed;
  position: relative;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  background-color: #ffffff;
}
body.show-menu {
  overflow-y: hidden;
  height: 100%;
}
body.lock {
  overflow: hidden;
  height: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

body,
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
  position: relative;
  /*@include themed() {
      background-color: t($bg);
      color: t($text1);
  }*/
}
@media (max-width: 767px) {
  body,
.wrapper {
    overflow-x: hidden;
  }
}

.wrapper {
  height: 100%;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .main--notfront:not(.pbnone) {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .main--notfront:not(.pbnone) {
    padding-bottom: 50px;
  }
}

.--bg-grey {
  background-color: var(--grey2);
}

.--bg-gradient {
  background: var(--bg-gradient);
}

.--bg-gradient2 {
  background: var(--bg-gradient2);
}

.--bg-gradient3 {
  background: var(--bg-gradient3);
}

/* mixin container */
/* 
max-width 500px, padding px/rem
@include container3(1,500);

max-width 500px  в відсотках (пропорцыйно збільшується), padding %
@include container3(2,500);

max-width 100% (другий параметр немаэ значення), padding px/rem
@include container3(3,500);
*/
.container,
[class*=__container]:not(.fancybox__container) {
  max-width: calc(var(--container-width) + var(--container-padding) * 2);
  width: 100%;
  padding-left: max(var(--container-padding), env(safe-area-inset-left));
  padding-right: max(var(--container-padding), env(safe-area-inset-right));
  margin-left: auto;
  margin-right: auto;
}

.small-container,
[class*=__small-container]:not(.fancybox__small-container) {
  max-width: calc(var(--container-small-width) + var(--container-padding) * 2);
  width: 100%;
  padding-left: max(var(--container-padding), env(safe-area-inset-left));
  padding-right: max(var(--container-padding), env(safe-area-inset-right));
  margin-left: auto;
  margin-right: auto;
}

.container2 {
  display: -ms-grid;
  display: grid;
}
@media (min-width: 768px) {
  .container2 {
    -ms-grid-columns: minmax(var(--container-padding), 1fr) minmax(0, calc(var(--container-width) / 2)) minmax(0, calc(var(--container-width) / 2)) minmax(var(--container-padding), 1fr);
    grid-template-columns: minmax(var(--container-padding), 1fr) minmax(0, calc(var(--container-width) / 2)) minmax(0, calc(var(--container-width) / 2)) minmax(var(--container-padding), 1fr);
  }
}
@media (max-width: 767px) {
  .container2 {
    -ms-grid-columns: minmax(var(--container-padding), 1fr) minmax(0, var(--container-width)) minmax(var(--container-padding), 1fr);
    grid-template-columns: minmax(var(--container-padding), 1fr) minmax(0, var(--container-width)) minmax(var(--container-padding), 1fr);
  }
}

.min-container,
[class*=__min-container] {
  max-width: calc(var(--container-article-width) + var(--container-padding) * 2);
  width: 100%;
  padding-left: max(var(--container-padding), env(safe-area-inset-left));
  padding-right: max(var(--container-padding), env(safe-area-inset-right));
  margin-left: auto;
  margin-right: auto;
}

.grid-container {
  display: -ms-grid;
  display: grid;
}
@media (min-width: 768px) {
  .grid-container {
    -ms-grid-columns: minmax(var(--container-padding), 1fr) minmax(0, calc(var(--container-width) / 2)) minmax(0, calc(var(--container-width) / 2)) minmax(var(--container-padding), 1fr);
    grid-template-columns: minmax(var(--container-padding), 1fr) minmax(0, calc(var(--container-width) / 2)) minmax(0, calc(var(--container-width) / 2)) minmax(var(--container-padding), 1fr);
  }
}
@media (max-width: 767px) {
  .grid-container {
    -ms-grid-columns: minmax(var(--container-padding), 1fr) minmax(0, var(--container-width)) minmax(var(--container-padding), 1fr);
    grid-template-columns: minmax(var(--container-padding), 1fr) minmax(0, var(--container-width)) minmax(var(--container-padding), 1fr);
  }
}

/* Scrollbar style */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(225, 225, 225, 0.3);
          box-shadow: inset 0 0 6px rgba(225, 225, 225, 0.3);
  background-color: var(--accent-color);
}

/* Selection text background */
::-moz-selection {
  background: var(--native-color);
  /* Safari, Chrome, Opera */
  color: var(--link-color);
  mix-blend-mode: difference;
}
::selection {
  background: var(--native-color);
  /* Safari, Chrome, Opera */
  color: var(--link-color);
  mix-blend-mode: difference;
}

::-moz-selection {
  background: var(--native-color);
  /* FireFox */
  color: var(--link-color);
  mix-blend-mode: difference;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

ul,
ol {
  /*&[class] {
        list-style: none;
        padding: 0;
        margin: 0;
    }*/
}
ul[class*=_lsn],
ol[class*=_lsn] {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

._disable-scroll {
  position: relative;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

._flex,
[class*=__flex],
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.a-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

._hide {
  display: none;
}

.order--1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.order--2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.order--3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.order--4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.responsive-iframe {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 20.25%;
  /* 56.25% - 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.section-padding {
  padding-top: var(--section-padding-normal);
  padding-bottom: var(--section-padding-normal);
}
.section-padding-top-normal {
  padding-top: var(--section-padding-normal);
}
.section-padding-top-big {
  padding-top: var(--section-padding-big);
}
.section-padding-top-small {
  padding-top: var(--section-padding-small);
}
.section-padding-top-none {
  padding-top: 0px;
}
.section-padding-bottom-normal {
  padding-bottom: var(--section-padding-normal);
}
.section-padding-bottom-big {
  padding-bottom: var(--section-padding-big);
}
.section-padding-bottom-small {
  padding-bottom: var(--section-padding-small);
}
.section-padding-bottom-none {
  padding-bottom: 0px;
}

@media (min-width: 1245px) {
  .w100 {
    --cont-w: calc(var(--container-width) + (var(--container-padding) * 2));
    --cont-margin: calc(-1 * (100vw - var(--cont-w) / 2));
    margin-left: var(--cont-margin);
    margin-right: var(--cont-margin);
  }
}
@media (min-width: 1035px) {
  .w100 {
    --cont-w: calc(
      var(--container-article-width) + (var(--container-padding) * 2)
    );
    --cont-margin: calc(-1 * (100vw - var(--cont-w) / 2));
    margin-left: var(--cont-margin);
    margin-right: var(--cont-margin);
  }
}
@media (max-width: 1034px) {
  .w100 {
    margin-left: 0;
    margin-right: 0;
  }
}

.w100p0 {
  margin: 0 calc(50% - 50vw);
}

.hide {
  opacity: 0;
  -webkit-animation-name: hide;
          animation-name: hide;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  display: none;
}

@-webkit-keyframes hide {
  50% {
    opacity: 0;
    min-height: 0;
    min-width: 0;
    padding: 0;
    margin: 0;
  }
  100% {
    opacity: 0;
    min-height: 0;
    min-width: 0;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    visibility: hidden;
    display: none !important;
  }
}

@keyframes hide {
  50% {
    opacity: 0;
    min-height: 0;
    min-width: 0;
    padding: 0;
    margin: 0;
  }
  100% {
    opacity: 0;
    min-height: 0;
    min-width: 0;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    visibility: hidden;
    display: none !important;
  }
}
@-webkit-keyframes mouse {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes mouse {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/* We remove all animations and transitions for people who prefer not to use them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
         -o-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (min-width: 768px) {
  ._space-between--mob-center {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 767px) {
  ._space-between--mob-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .responsive-iframe {
    padding-top: 56.25%;
  }
}
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol
      *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

input[type=submit],
button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
}

input,
textarea {
  font-family: inherit;
  color: inherit;
  border: none;
  outline: none;
}

.preloader {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: fixed;
  background-color: #ffffff;
  z-index: 9999;
}

.spinner-1 {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(from 135deg at top, currentColor 90deg, #0000 0) 0 calc(50% - 4px)/17px 8.5px, -o-radial-gradient(bottom left, farthest-side, #0000 calc(100% - 6px), currentColor calc(100% - 5px) 99%, #0000) top right/50% 50% content-box content-box, -o-radial-gradient(top, farthest-side, #0000 calc(100% - 6px), currentColor calc(100% - 5px) 99%, #0000) bottom/100% 50% content-box content-box;
  background: conic-gradient(from 135deg at top, currentColor 90deg, #0000 0) 0 calc(50% - 4px)/17px 8.5px, radial-gradient(farthest-side at bottom left, #0000 calc(100% - 6px), currentColor calc(100% - 5px) 99%, #0000) top right/50% 50% content-box content-box, radial-gradient(farthest-side at top, #0000 calc(100% - 6px), currentColor calc(100% - 5px) 99%, #0000) bottom/100% 50% content-box content-box;
  background-repeat: no-repeat;
  -webkit-animation: s1 1s infinite linear;
          animation: s1 1s infinite linear;
}

@-webkit-keyframes s1 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes s1 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.spinner-2 {
  width: 50px;
  aspect-ratio: 1;
  display: -ms-grid;
  display: grid;
}
.spinner-2:before, .spinner-2:after {
  content: "";
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  --c: radial-gradient(farthest-side, #25b09b 92%, #0000);
  background: var(--c) 50% 0, var(--c) 50% 100%, var(--c) 100% 50%, var(--c) 0 50%;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  -webkit-animation: s2 1s infinite;
          animation: s2 1s infinite;
}
.spinner-2:before {
  margin: 4px;
  -webkit-filter: hue-rotate(45deg);
          filter: hue-rotate(45deg);
  background-size: 8px 8px;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes s2 {
  100% {
    -webkit-transform: rotate(0.5turn);
            transform: rotate(0.5turn);
  }
}

@keyframes s2 {
  100% {
    -webkit-transform: rotate(0.5turn);
            transform: rotate(0.5turn);
  }
}
.spinner-3 {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: -o-radial-gradient(farthest-side, #1eb37f 94%, #0000) top/8px 8px no-repeat, conic-gradient(#0000 30%, #1eb37f);
  background: radial-gradient(farthest-side, #1eb37f 94%, #0000) top/8px 8px no-repeat, conic-gradient(#0000 30%, #1eb37f);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  -webkit-animation: s3 1s infinite linear;
          animation: s3 1s infinite linear;
}

@-webkit-keyframes s3 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes s3 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.spinner-4 {
  width: 50px;
  aspect-ratio: 1;
  display: -ms-grid;
  display: grid;
  -webkit-animation: s4 4s infinite;
          animation: s4 4s infinite;
}
.spinner-4:before, .spinner-4:after {
  content: "";
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  border: 8px solid;
  border-radius: 50%;
  border-color: red red #0000 #0000;
  mix-blend-mode: darken;
  -webkit-animation: s4 1s infinite linear;
          animation: s4 1s infinite linear;
}
.spinner-4:after {
  border-color: #0000 #0000 blue blue;
  animation-direction: reverse;
}

@-webkit-keyframes s4 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes s4 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.spinner-5 {
  width: 50px;
  aspect-ratio: 1;
  display: -ms-grid;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-right-color: #25b09b;
  -webkit-animation: s5 1s infinite linear;
          animation: s5 1s infinite linear;
}
.spinner-5:before, .spinner-5:after {
  content: "";
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
  -webkit-animation: s5 2s infinite;
          animation: s5 2s infinite;
}
.spinner-5:after {
  margin: 8px;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

@-webkit-keyframes s5 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes s5 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.spinner-6 {
  width: 50px;
  height: 50px;
  aspect-ratio: 1;
  display: -ms-grid;
  display: grid;
  border: 1px solid #0000;
  border-radius: 50%;
  border-color: #ccc #0000;
  -webkit-animation: s6 1s infinite linear;
          animation: s6 1s infinite linear;
}

@-webkit-keyframes s6 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes s6 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.spinner-7 {
  width: 70px;
  aspect-ratio: 1;
  background: -o-radial-gradient(farthest-side, #ffa516 90%, #0000) center/16px 16px, -o-radial-gradient(farthest-side, green 90%, #0000) bottom/12px 12px;
  background: radial-gradient(farthest-side, #ffa516 90%, #0000) center/16px 16px, radial-gradient(farthest-side, green 90%, #0000) bottom/12px 12px;
  background-repeat: no-repeat;
  -webkit-animation: s7 1s infinite linear;
          animation: s7 1s infinite linear;
  position: relative;
}
.spinner-7:before {
  content: "";
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  inset: auto 0 16px;
  margin: auto;
  background: #ccc;
  border-radius: 50%;
  -webkit-transform-origin: 50% calc(100% + 10px);
      -ms-transform-origin: 50% calc(100% + 10px);
          transform-origin: 50% calc(100% + 10px);
  -webkit-animation: inherit;
          animation: inherit;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

@-webkit-keyframes s7 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes s7 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.spinner-8 {
  width: 50px;
  aspect-ratio: 1;
  --c: radial-gradient(farthest-side, var(--accent-color) 92%, #0000);
  background: var(--c) 50% 0, var(--c) 50% 100%, var(--c) 100% 50%, var(--c) 0 50%;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  -webkit-animation: s8 1s infinite;
          animation: s8 1s infinite;
  position: relative;
}
.spinner-8::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: 3px;
  background: repeating-conic-gradient(#0000 0 35deg, var(--accent-color) 0 90deg);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 3px), #000 0);
  border-radius: 50%;
}

@-webkit-keyframes s8 {
  100% {
    -webkit-transform: rotate(0.5turn);
            transform: rotate(0.5turn);
  }
}

@keyframes s8 {
  100% {
    -webkit-transform: rotate(0.5turn);
            transform: rotate(0.5turn);
  }
}
.spinner-9 {
  width: 50px;
  aspect-ratio: 1;
  display: -ms-grid;
  display: grid;
  color: #854f1d;
  background: -o-radial-gradient(farthest-side, currentColor calc(100% - 6px), #0000 calc(100% - 5px) 0);
  background: radial-gradient(farthest-side, currentColor calc(100% - 6px), #0000 calc(100% - 5px) 0);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 13px), #000 calc(100% - 12px));
  border-radius: 50%;
  -webkit-animation: s9 2s infinite linear;
          animation: s9 2s infinite linear;
}
.spinner-9:before, .spinner-9:after {
  content: "";
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, currentColor)) center, -webkit-gradient(linear, left top, left bottom, color-stop(0, currentColor)) center;
  background: -o-linear-gradient(currentColor 0 0) center, -o-linear-gradient(currentColor 0 0) center;
  background: linear-gradient(currentColor 0 0) center, linear-gradient(currentColor 0 0) center;
  background-size: 100% 10px, 10px 100%;
  background-repeat: no-repeat;
}
.spinner-9:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

@-webkit-keyframes s9 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes s9 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.spinner-10 {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid #514b82;
  -webkit-animation: s10-1 0.8s infinite linear alternate, s10-2 1.6s infinite linear;
          animation: s10-1 0.8s infinite linear alternate, s10-2 1.6s infinite linear;
}

@-webkit-keyframes s10-1 {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}

@keyframes s10-1 {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@-webkit-keyframes s10-2 {
  0% {
    -webkit-transform: scaleY(1) rotate(0deg);
            transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    -webkit-transform: scaleY(1) rotate(135deg);
            transform: scaleY(1) rotate(135deg);
  }
  50% {
    -webkit-transform: scaleY(-1) rotate(0deg);
            transform: scaleY(-1) rotate(0deg);
  }
  100% {
    -webkit-transform: scaleY(-1) rotate(-135deg);
            transform: scaleY(-1) rotate(-135deg);
  }
}
@keyframes s10-2 {
  0% {
    -webkit-transform: scaleY(1) rotate(0deg);
            transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    -webkit-transform: scaleY(1) rotate(135deg);
            transform: scaleY(1) rotate(135deg);
  }
  50% {
    -webkit-transform: scaleY(-1) rotate(0deg);
            transform: scaleY(-1) rotate(0deg);
  }
  100% {
    -webkit-transform: scaleY(-1) rotate(-135deg);
            transform: scaleY(-1) rotate(-135deg);
  }
}
/* mixin fs-clamp */
/* Responsive text */
/* mixin adaptiv */
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-Black.woff") format("woff"), url("../fonts/Mulish-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-BlackItalic.woff") format("woff"), url("../fonts/Mulish-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-BoldItalic.woff") format("woff"), url("../fonts/Mulish-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-ExtraBoldItalic.woff") format("woff"), url("../fonts/Mulish-ExtraBoldItalic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-ExtraBold.woff") format("woff"), url("../fonts/Mulish-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-ExtraLight.woff") format("woff"), url("../fonts/Mulish-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-Bold.woff") format("woff"), url("../fonts/Mulish-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-Italic.woff") format("woff"), url("../fonts/Mulish-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-ExtraLightItalic.woff") format("woff"), url("../fonts/Mulish-ExtraLightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-Light.woff") format("woff"), url("../fonts/Mulish-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-LightItalic.woff") format("woff"), url("../fonts/Mulish-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-Medium.woff") format("woff"), url("../fonts/Mulish-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-MediumItalic.woff") format("woff"), url("../fonts/Mulish-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-Regular.woff") format("woff"), url("../fonts/Mulish-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-SemiBold.woff") format("woff"), url("../fonts/Mulish-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Mulish";
  font-display: swap;
  src: url("../fonts/Mulish-SemiBoldItalic.woff") format("woff"), url("../fonts/Mulish-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "icomoon";
  font-display: swap;
  src: url("../fonts/icomoon.woff") format("woff"), url("../fonts/icomoon.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
.spoiler__init > :first-child {
  cursor: pointer;
  color: #fff;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 0;
  /*&::before,
  &::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    background-color: #fff;
    height: 2px;
    width: 8px;
    transition: transform 0.5s ease 0s;
  }
  &::before {
    transform: translate(50%, -100%) rotate(45deg);
  }
  &::after {
    transform: translate(50%, 100%) rotate(-45deg);
  }*/
}
.spoiler__init > :first-child:after {
  content: "\e901";
  font-family: var(--iconFont);
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 12px;
  height: 12px;
  font-size: 12px;
}
.spoiler__init .spoiler__open {
  /*
     &::before {
       transform: translate(-20%, -50%) rotate(40deg);
     }
     &::after {
       transform: translate(50%, -50%) rotate(-40deg);
     }
  */
}
.spoiler__init .spoiler__open:first-child {
  margin-bottom: 15px;
}
.spoiler__init .spoiler__open::before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

._to-top {
  border-radius: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #534741;
  position: fixed;
  right: 1rem;
  bottom: 2.5rem;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
  pointer-events: none;
  cursor: pointer;
  z-index: 9999;
}
._to-top:before, ._to-top:after {
  content: "";
  width: 100%;
  height: 100%;
  border-style: solid;
  border-color: #ffffff;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
  -webkit-transform: translate3d(-2px, 2px, 0);
          transform: translate3d(-2px, 2px, 0);
}
._to-top:before {
  border-width: 0.4vmin 0.4vmin 0 0;
  display: block;
}
._to-top:after {
  float: left;
  position: relative;
  top: -85%;
  border-width: 0 0.4vmin 0 0;
}
._to-top:hover:after, ._to-top:hover:before {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
._to-top:hover:before {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}
._to-top:hover:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  height: 120%;
}
._to-top.show {
  opacity: 1;
  pointer-events: all;
}
._to-top.hide {
  opacity: 0;
  pointer-events: none;
}
._to-top__circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
._to-top__circle--static {
  position: absolute;
  top: 0;
  left: 0;
  stroke: #eee;
  fill: transparent;
  stroke-width: 10;
}
._to-top__circle--progress {
  stroke: var(--link-color);
  fill: transparent;
  stroke-width: 20;
}

@media (min-width: 768px) {
  ._to-top {
    width: 50px;
    height: 50px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  ._to-top {
    width: 44px;
    height: 44px;
    padding: 18px;
  }
}
.pwm-icon-left, .pwm-icon-right {
  position: relative;
  display: -ms-grid;
  display: grid;
  height: 1em;
  width: 1em;
  cursor: pointer;
}
.pwm-icon-left::before, .pwm-icon-left::after, .pwm-icon-right::before, .pwm-icon-right::after {
  content: "";
  height: 1px;
  width: 1em;
  display: block;
  background-color: var(--accent-color);
  position: absolute;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.pwm-icon-left:focus::before, .pwm-icon-left:focus::after, .pwm-icon-right:focus::before, .pwm-icon-right:focus::after {
  outline: none;
  color: var(--accent-color);
}
@media (any-hover: hover) {
  .pwm-icon-left:hover::before, .pwm-icon-left:hover::after, .pwm-icon-right:hover::before, .pwm-icon-right:hover::after {
    background-color: var(--accent-color);
  }
}
.pwm-icon-left:active::before, .pwm-icon-left:active::after, .pwm-icon-right:active::before, .pwm-icon-right:active::after {
  color: var(--accent-color);
}
.pwm-icon-right::before, .pwm-icon-right::after {
  left: 0;
}
.pwm-icon-right::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 1.3em;
}
.pwm-icon-right::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 1.3em;
}
.pwm-icon-left::before, .pwm-icon-left::after {
  right: 0;
}
.pwm-icon-left::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 1.3em;
}
.pwm-icon-left::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 1.3em;
}
.pwm-icon-long-left, .pwm-icon-long-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease-in-out;
  -o-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
.pwm-icon-long-left:after, .pwm-icon-long-right:after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 0;
  top: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.pwm-icon-long-left {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.pwm-icon-long-right {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.pwm-icon-close {
  display: block;
  width: 1em;
  height: 1em;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.pwm-icon-close:before, .pwm-icon-close:after {
  content: "";
  display: block;
  width: 100%;
  height: var(--strore-height);
  position: absolute;
  top: 50%;
  left: 0;
  background-color: inherit;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.pwm-icon-close:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pwm-icon-close:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.pwm-icon-close:focus:before, .pwm-icon-close:focus:after {
  background-color: var(--accent-color);
}
@media (any-hover: hover) {
  .pwm-icon-close:hover {
    -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.pwm-icon-close:active:before, .pwm-icon-close:active:after {
  background-color: var(--accent-color);
}
.pwm-icon-plus {
  display: block;
  width: 1em;
  height: 1em;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.pwm-icon-plus:before, .pwm-icon-plus:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: inherit;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.pwm-icon-plus:after {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.pwm-icon-plus:focus:before, .pwm-icon-plus:focus:after {
  background-color: var(--accent-color);
}
@media (any-hover: hover) {
  .pwm-icon-plus:hover {
    -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.pwm-icon-plus:active:before, .pwm-icon-plus:active:after {
  background-color: var(--accent-color);
}

[class^=icon-]:before,
[class*=" icon-"]:before,
[class^=icon-]:after,
[class*=" icon-"]:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: var(--iconFont);
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-bell:before {
  content: "\e91d";
}

.icon-users2:before {
  content: "\e913";
}

.icon-star2:before {
  content: "\e91c";
}

.icon-users:before {
  content: "\e914";
}

.icon-image:before {
  content: "\e915";
}

.icon-cart:before {
  content: "\e916";
}

.icon-settings:before {
  content: "\e917";
}

.icon-heart2:before {
  content: "\e918";
}

.icon-instruction:before {
  content: "\e919";
}

.icon-advert:before {
  content: "\e91a";
}

.icon-business_card:before {
  content: "\e91b";
}

.icon-briefcase:before {
  content: "\e912";
}

.icon-check:before {
  content: "\e910";
}

.icon-chart:before {
  content: "\e911";
}

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

.icon-user2:before {
  content: "\e900";
}

.icon-user:before {
  content: "\e901";
}

.icon-update:before {
  content: "\e902";
}

.icon-trophy:before {
  content: "\e903";
}

.icon-star:before {
  content: "\e904";
}

.icon-right:before {
  content: "\e906";
}

.icon-prev:before {
  content: "\e907";
}

.icon-next:before {
  content: "\e908";
}

.icon-location:before {
  content: "\e909";
}

.icon-inst:before {
  content: "\e90a";
}

.icon-heart:before {
  content: "\e90b";
}

.icon-fire:before {
  content: "\e90c";
}

.icon-file:before {
  content: "\e90d";
}

.icon-down:before {
  content: "\e90e";
}

.icon-clipboard:before {
  content: "\e90f";
}

.bs64-password {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpkNjEyMjY4Mi1kYmY5LTQwNzYtODA4OS1iNDg3Y2EyN2VjZmIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjNDQTYwNEVFRjM3MTFFOEI1MDlFMjg4NDlCM0IyMjIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjNDQTYwNERFRjM3MTFFOEI1MDlFMjg4NDlCM0IyMjIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5Y2Q3Y2U3NC1iZGFiLTRjMDgtYTczYS0zMGM0MmMxOGE2MzkiIHN0UmVmOmRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDoyNmU4ZjA0Yy1hMzI5LTFlNGEtOTA2OC1kZTVmNTNkYmFhZTIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6m0YrRAAABMUlEQVR42sTTvyvEcRzH8c9J4gY/Lou66HKDUgxOBiWG+xsMBnVxix+T1Wyw2tB1ymKRQdQxOQx3oS5JBsVfwMJAX8/39frq6/qyfAfvegzfH+9f9/lezPM8FyWaXMSINVy3YgjTyKIHn3jGGfZwg/ewYr3YVILtVcMqKro2Hygg1bjCIA4whkcl5fCKeKCJFR3Bviath415jUMM4Aoz2Ah09h2hX82sWNIKbGmvTj20fbfxFFLgTuO3a8qi016LmiaBckii7xzdendeufUqlcCD5T8KrOidLlxi12kP2+dEEzRjLSR5HS3owDHu0ef/kMPa7xYTupfBApZ0Ohbjavag0/gRKY1kR3eKPKYwiTmU8KKPKf3bl9imbrMY1bhORavYwQXevgv8+58pcoEvAQYALU9ch/cIiaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: contain;
}

.bs64-password-show {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjYWVjOWZiYi00ZDU4LTQxMmYtODcwMi0zYWMxYzc4ZTU0MWQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjNDQTYwNTJFRjM3MTFFOEI1MDlFMjg4NDlCM0IyMjIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjNDQTYwNTFFRjM3MTFFOEI1MDlFMjg4NDlCM0IyMjIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpkMTgzYmMzOC1mMzlmLTQ2OTQtYjI3ZC0xOWVhZDBjN2RhZWMiIHN0UmVmOmRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDpjNzAwNzcyYi0yYzg4LWQzNDMtOTMwNi03ZjAyZDE2ZTBjOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz53I3B2AAABVklEQVR42sTTyytFURTH8XOFzMRA3RQDlCITQqSk/AMmkomBx+QWE8XAUIqZZEJedVMkAymPMkCuN3kUEckjUoqJCY7v0u/oZHoGdn3q7NNea6+99jkh13WdICPOCThCf+ZJKEAtqhHGJ26xjllsIgMN2PcH28shBdi5jtGFHc1dJWnGFZ7Q6QXn4QBHuMQ2itCGGzxjHGP4wioqveCwgueRq7LqMapd99CrRHdoRbdiMq0Hw9rNMqZiDVtKZuUnoA6LqszWx2Nax3Q+EFE1aVjBKfpxjQcMKOkJ0rW2SbE/Z7Mys3QrNZhT+TMYwYvm7QpOQQxRr/uH6EGLdr3HIM58N9CHRCRjAefWA6+RZVhSh62iHOSjQ00r0bpynfsChV6wlfWojyWi0mJ6rlJzG7GMV0wh2/8l2plLManmVegai1WujTfsYgIbeP9N8O8/U+AE3wIMAOAeYTJHg1SWAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-size: contain;
}

.header {
  background-color: #ffffff;
  padding: 20px 0;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  color: #000000;
  font-weight: 500;
  border-right: var(--divider);
  padding-right: 15px;
  margin-right: 24px;
  cursor: pointer;
}
.header__login:before {
  color: var(--accent-color);
  font-size: 20px;
}

.lang__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  color: #000000;
  font-weight: 500;
  cursor: pointer;
}
.lang__current:before {
  font-size: 8px;
}
.lang__list {
  display: none;
}

nav.menu {
  /* Відкриваємо сабменю при наведенні на десктопі */
  /* Стилі для сенсорних пристроїв */
}
nav.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.menu ul.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 991px) {
  nav.menu ul.menu__list {
    font-size: 16px;
    font-weight: bold;
  }
}
@media (max-width: 990px) {
  nav.menu ul.menu__list {
    font-size: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
nav.menu ul.menu__list li {
  position: relative;
  padding: 0 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  nav.menu ul.menu__list li {
    padding: 8px 0;
  }
}
nav.menu ul.menu__list li a {
  display: block;
  text-decoration: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  nav.menu ul.menu__list li a {
    position: relative;
  }
  nav.menu ul.menu__list li a:after {
    content: "";
    height: 2px;
    width: 0;
    display: block;
    background-color: var(--text-color);
    position: absolute;
    left: 0;
    bottom: -5px;
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
  }
}
nav.menu ul.menu__list ul {
  display: none;
  grid-column: 1/-1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--accent-color);
  z-index: 1000;
}
@media (min-width: 768px) {
  nav.menu ul.menu__list ul {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  nav.menu ul.menu__list ul {
    padding: 5px 0 0 15px;
  }
}
@media (min-width: 991px) {
  nav.menu ul.menu__list ul li {
    width: 200px;
  }
}
@media (min-width: 768px) {
  nav.menu ul.menu__list ul ul {
    left: 100%;
    top: 0;
  }
}
nav.menu ul.menu__list li:hover > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  nav.menu ul.menu__list li:hover > a:after {
    width: 100%;
  }
}
nav.menu .menu__list i {
  border: solid var(--text-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 5px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
nav.menu ul.menu__list li:hover > a .arrow {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  /* Змінюємо напрямок стрілки при ховері */
}
@media (hover: none) {
  nav.menu ul.menu__list li a {
    cursor: pointer;
  }
  nav.menu ul.menu__list li a:focus + ul,
nav.menu ul.menu__list li a:active + ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 767px) {
  .bodymenuopen .header__branding,
.bodymenuopen .header__action {
    position: relative;
    z-index: 4;
  }
}

@media (max-width: 767px) {
  .menu__body {
    background-color: inherit;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    left: 0;
    top: 0;
    padding: calc(var(--header-height) + 20px) 20px;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    -webkit-transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .menu--open .menu__body {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    background-color: var(--accent-color);
    z-index: 3;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
}
@media (max-width: 767px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-user-select: all;
       -moz-user-select: all;
            user-select: all;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 10;
    width: 22px;
    height: 18px;
    cursor: pointer;
  }
  .burger:before, .burger:after {
    content: "";
    position: absolute;
    left: 0;
  }
  .burger:before, .burger:after,
.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transition: width 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: width 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out, width 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, width 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, width 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  .burger:before {
    top: 0;
  }
  .burger:after {
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .burger--active span {
    width: 0;
  }
  .burger--active:before {
    top: 50%;
    bottom: 50%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .burger--active:after {
    top: 50%;
    bottom: 50%;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

@-webkit-keyframes revtopleft {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes revtopleft {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
.footer {
  background-color: #373f41;
  color: #bdbdbd;
  padding: 38px 0;
}
.footer a {
  color: #bdbdbd;
}
.footer__branding {
  font-weight: 800;
  line-height: 187%;
  letter-spacing: 0.2px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .footer__branding {
    font-size: 30px;
  }
}
@media (max-width: 719px) {
  .footer__branding {
    font-size: 24px;
    text-align: center;
  }
}
.footer__copyright {
  line-height: 185%;
  letter-spacing: 0.1px;
  color: #bdbdbd;
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: 13px;
  }
}
@media (max-width: 719px) {
  .footer__copyright {
    font-size: 12px;
    text-align: center;
  }
}
.footer__wrapper {
  display: -ms-grid;
  display: grid;
}
@media (min-width: 768px) {
  .footer__wrapper {
    --gap: 50px;
    -ms-grid-columns: minmax(var(--container-padding), 1fr) minmax(0, calc(30 * var(--container-width) / 100 - var(--gap) / 2)) var(--gap) minmax(0, calc(70 * var(--container-width) / 100 - var(--gap) / 2)) minmax(var(--container-padding), 1fr);
    grid-template-columns: minmax(var(--container-padding), 1fr) minmax(0, calc(30 * var(--container-width) / 100 - var(--gap) / 2)) var(--gap) minmax(0, calc(70 * var(--container-width) / 100 - var(--gap) / 2)) minmax(var(--container-padding), 1fr);
  }
}
@media (max-width: 767px) {
  .footer__wrapper {
    -ms-grid-columns: minmax(var(--container-padding), 1fr) minmax(0, var(--container-width)) minmax(var(--container-padding), 1fr);
    grid-template-columns: minmax(var(--container-padding), 1fr) minmax(0, var(--container-width)) minmax(var(--container-padding), 1fr);
  }
}
.footer__content {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
@media (max-width: 719px) {
  .footer__content {
    margin-bottom: 27px;
  }
}
@media (min-width: 720px) {
  .footer__links, .footer__bottom {
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/5;
  }
}
@media (max-width: 719px) {
  .footer__links, .footer__bottom {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
}
.footer__links {
  display: -ms-grid;
  display: grid;
}
@media (min-width: 720px) {
  .footer__links {
    gap: 10px;
  }
}
@media (max-width: 719px) {
  .footer__links {
    gap: 5px;
  }
}
@media (min-width: 720px) {
  .footer__links {
    margin-bottom: 47px;
  }
}
@media (max-width: 719px) {
  .footer__links {
    margin-bottom: 30px;
  }
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.1px;
}
@media (min-width: 720px) {
  .footer__menu {
    font-size: 16px;
    gap: 10px 50px;
  }
}
@media (max-width: 719px) {
  .footer__menu {
    font-size: 14px;
    gap: 5px 20px;
  }
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 50px;
}
@media (max-width: 719px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__bottom a {
  line-height: 171%;
  letter-spacing: 0.1px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
@media (min-width: 720px) {
  .footer__bottom a {
    font-size: 14px;
  }
}
@media (max-width: 719px) {
  .footer__bottom a {
    font-size: 12px;
  }
}
.footer__bottom a:hover {
  text-decoration: none;
}

.error404 {
  padding: 30px 0;
  background: -o-linear-gradient(348.22deg, #ffe6d1 1.55%, #eed8ff 64.1%);
  background: linear-gradient(101.78deg, #ffe6d1 1.55%, #eed8ff 64.1%);
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 539px) {
  .error404 {
    text-align: center;
  }
}
.error404 h1 {
  font-weight: 700;
  font-size: clamp(30px, 30px + 15 * (100vw - 320px) / 1600, 45px);
  line-height: 1.2;
  letter-spacing: 0.1px;
  color: #000000;
  margin-bottom: 25px;
}
.error404__block {
  max-width: 748px;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (min-width: 540px) {
  .error404__block {
    -ms-grid-columns: 40% 60%;
    grid-template-columns: 40% 60%;
  }
}
.error404__media {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 539px) {
  .error404__media {
    max-width: 448px;
    margin: auto;
  }
}
.error404__media > div {
  font-style: normal;
  font-weight: 700;
  font-size: clamp(150px, 150px + 50 * (100vw - 320px) / 1600, 200px);
  line-height: 28%;
  letter-spacing: 0.2px;
  color: #ffffff;
}
.error404__media div,
.error404__media svg {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
}
.error404__media svg {
  -ms-grid-column-align: end;
      justify-self: end;
}

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

.big-title {
  font-size: clamp(28px, 28px + 22 * (100vw - 320px) / 1600, 50px);
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  letter-spacing: 0.1px;
  color: #000000;
}

.h2title {
  font-style: normal;
  font-weight: 800;
  font-size: clamp(24px, 24px + 11 * (100vw - 320px) / 1600, 35px);
  line-height: 160%;
  letter-spacing: 0.2px;
  color: #000000;
}
@media (min-width: 768px) {
  .h2title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .h2title {
    margin-bottom: 30px;
  }
}

.h5title {
  font-weight: 700;
  font-size: 24px;
  line-height: 167%;
  letter-spacing: 0.1px;
  color: #000000;
}

h3 {
  font-style: normal;
  font-weight: 700;
  font-size: clamp(24px, 24px + 11 * (100vw - 320px) / 1600, 35px);
  line-height: 120%;
  letter-spacing: 0.2px;
}

.st-text,
.st-text p {
  font-size: 14px;
  line-height: 18px;
  color: var(--text-color);
}

.st-text p:not(:first-of-type), .st-text p:not(:last-child) {
  margin-bottom: 1em;
}

.st-text2 {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.3px;
}

/*
[class*="__listul"] {
  padding: 0;
  margin: 0;
  li {
    display: flex;
    align-items: baseline;
    &:not(:last-child) {
      margin-bottom: 10px;
    }
    &:before {
      content: "";
      display: block;
      background-color: #a1c3da;
      border-radius: 100%;
      width: 9px;
      height: 9px;
      flex: 0 0 9px;
      margin: 0 6px 0 0;
    }
  }
}

[class*="__listol"] {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: item 0;
  li {
    display: flex;
    counter-increment: item;
    line-height: 28px;
    &:before {
      content: counter(item) ".";
      font-family: var(--fontFamily2);
      font-size: 18px;
      font-weight: 700;
      margin-right: 3px;
    }
    &:not(:last-child) {
      margin-bottom: 10px;
    }
  }
}
*/
ul:not([class]),
ol:not([class]) {
  padding: 0;
}
ul:not([class]):not(li > ul):not(li > ol),
ol:not([class]):not(li > ul):not(li > ol) {
  margin: 15px 0 20px 20px;
}

ul:not([class]) li {
  position: relative;
}
ul:not([class]) li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 100%;
  background-color: var(--accent-color);
  margin-right: 10px;
  position: absolute;
  top: 8px;
  left: -18px;
}
ul:not([class]) li > ul {
  margin: 10px 20px;
}

ol:not([class]) {
  counter-reset: olcounter;
}
ol:not([class]) li {
  counter-increment: olcounter;
  position: relative;
}
ol:not([class]) li:before {
  content: counter(olcounter);
  color: var(--accent-color);
  font-weight: 600;
  line-height: 1;
  margin-right: 15px;
  position: absolute;
  top: 5px;
  left: -20px;
}

li:not([class]):not(:last-child) {
  margin-bottom: 10px;
}
li:not([class]) > ol {
  margin: 10px 20px;
}

.btn,
.wp-block-button__link {
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 50px;
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 12px 24px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  line-height: 20px;
}
.btn:focus,
.wp-block-button__link:focus {
  outline: none;
}
@media (any-hover: hover) {
  .btn:hover,
.wp-block-button__link:hover {
    background-color: #0101d1;
    border-color: #0101d1;
  }
}
.btn2 {
  background-color: var(--accent-color2);
  border: 1px solid var(--accent-color2);
  border-radius: 10% 10% 10% 10%/50% 50% 50% 50%;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  padding: 12px 24px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.3s ease-in-out;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn2:focus {
  outline: none;
}
@media (any-hover: hover) {
  .btn2:hover {
    background-color: #4d09af;
    border-color: #4d09af;
  }
}
.btn3 {
  border: 1px solid var(--accent-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #3232e9;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 24px;
  -webkit-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.btn3:hover {
  background-color: #e8e8ff;
}

.btn4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  color: #000000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.btn4:hover {
  color: #2828c7;
}
.btn4:before {
  font-size: 12px;
}

.form__group {
  position: relative;
}
.form__group:not(:last-child) {
  margin-bottom: 18px;
}
.form__hint {
  background-color: #e7d8e7;
  border-radius: 10px;
  color: #817676;
  font-size: 14px;
  left: calc(100% + clamp(20px, 20px + 90 * (100vw - 768px) / 102, 110px));
  line-height: 18px;
  padding: 12px 15px;
  position: absolute;
  top: 0;
  max-width: clamp(150px, 150px + 110 * (100vw - 850px) / 1070, 260px);
  width: 100%;
}
@media (max-width: 767px) {
  .form__hint {
    display: none;
  }
}
.form__hint:before {
  border-bottom: 10px solid transparent;
  border-right: 10px solid #e7d8e7;
  border-top: 10px solid transparent;
  content: "";
  height: 0;
  left: -10px;
  position: absolute;
  top: 12px;
  width: 0;
}
.form__hint-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.2px;
  margin-bottom: 3px;
}
.form__hint-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

.show-password {
  width: 16px;
  height: 16px;
  display: block;
  cursor: pointer;
  position: absolute;
  bottom: 12px;
  right: 12px;
}

label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1px;
  color: #000000;
  position: relative;
}
label input[type=text],
label input[type=tel],
label input[type=email],
label input[type=file],
label input[type=password],
label select,
label textarea {
  margin-top: 6px;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=file],
input[type=password],
select,
textarea {
  background-color: #ffffff;
  color: #373f41;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.42;
  outline: none;
  width: 100%;
  padding: 10px 14px;
}
input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=file]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  /*display: none;
  font-size: inherit;
  line-height: inherit;*/
  color: #737b7d;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=file]::-moz-placeholder, input[type=password]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  /*display: none;
  font-size: inherit;
  line-height: inherit;*/
  color: #737b7d;
}
input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=file]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  /*display: none;
  font-size: inherit;
  line-height: inherit;*/
  color: #737b7d;
}
input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=file]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  /*display: none;
  font-size: inherit;
  line-height: inherit;*/
  color: #737b7d;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=file]::placeholder,
input[type=password]::placeholder,
select::placeholder,
textarea::placeholder {
  /*display: none;
  font-size: inherit;
  line-height: inherit;*/
  color: #737b7d;
}
input[type=text]:active, input[type=text]:focus,
input[type=tel]:active,
input[type=tel]:focus,
input[type=email]:active,
input[type=email]:focus,
input[type=file]:active,
input[type=file]:focus,
input[type=password]:active,
input[type=password]:focus,
select:active,
select:focus,
textarea:active,
textarea:focus {
  color: var(--grey-dark);
}
input[type=text]._error,
input[type=tel]._error,
input[type=email]._error,
input[type=file]._error,
input[type=password]._error,
select._error,
textarea._error {
  border-color: red;
}

textarea {
  min-height: 100px;
  height: 100%;
}

input[type=checkbox] {
  --s: 20px;
  height: var(--s);
  width: var(--s);
  border-radius: 3px;
  border: none;
  outline: none;
  padding: 2px 5px;
  background: #ffffff;
  /* -webkit-mask: radial-gradient(
        100% 100%,
        var(--accent-color) 98%,
        var(--accent-color)
      )
      no-repeat center / calc(3 * var(--s) / 5) content-box,
    linear-gradient(var(--accent-color) 0 0) padding-box,
    linear-gradient(var(--accent-color) 0 0);
  -webkit-mask-composite: source-over, xor;
  mask-composite: add, exclude;*/
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  cursor: pointer;
  /*-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  &:checked:after {
    content: "";
    display: block;
    width: calc(var(--s) / 4);
    height: calc(2 * (var(--s) / 4));
    border: solid var(--accent-color);
    border-width: 0 calc(var(--s) / 10) calc(var(--s) / 10) 0;
    transform: rotate(45deg);
  }*/
}
input[type=checkbox]:disabled {
  background: #a4b3c5;
  cursor: not-allowed;
}
input[type=checkbox]:focus-visible {
  border-color: #0009;
}
@media (min-width: 768px) {
  input[type=checkbox] {
    margin: 0 10px 0 0;
  }
}
@media (max-width: 767px) {
  input[type=checkbox] {
    --s: 20px;
    border: calc(var(--s) / 20) solid var(--accent-color);
    margin: 0 5px 0 0;
  }
  input[type=checkbox]:checked:after {
    border-width: 0 calc(var(--s) / 20) calc(var(--s) / 20) 0;
  }
}

.pw-m-select {
  position: relative;
  width: 100%;
  min-height: 40px;
  height: 100%;
  background-color: var(--native-color);
  border: 1px solid var(--native-color);
}
@media (min-width: 768px) {
  .pw-m-select {
    max-width: 340px;
  }
}
.pw-m-select__selected {
  font-size: 14px;
  outline: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.pw-m-select__value {
  padding: 10px 16px;
  color: #757575;
  line-height: 28px;
}
.pw-m-select__arrow {
  width: 40px;
  height: 40px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pw-m-select__arrow:before {
  color: var(--accent-color);
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.pw-m-select__list {
  background-color: var(--native-color);
  list-style: none;
  margin: 0;
  padding: 11px 0;
  display: none;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 50;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.pw-m-select__item {
  padding: 8px 16px;
  font-size: 16px;
  line-height: 20px;
  color: #4b4b4b;
  cursor: pointer;
}
.pw-m-select__item:hover, .pw-m-select__item-active {
  color: var(--accent-color);
}
.pw-m-select._open .pw-m-select__selected {
  -webkit-box-shadow: 0px 10px 15px 0px rgba(199, 208, 228, 0.7);
          box-shadow: 0px 10px 15px 0px rgba(199, 208, 228, 0.7);
  position: relative;
  z-index: 100;
}
.pw-m-select._open .pw-m-select__list {
  display: block;
}
.pw-m-select._open .pw-m-select__arrow:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.pw-m-select__overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.progress-bar {
  background-color: var(--native-color);
  border-radius: 12px;
  padding: 14px 25px 28px 25px;
}
.progress-bar__bar {
  -webkit-box-shadow: 0px 6px 15px #d2d9e8;
          box-shadow: 0px 6px 15px #d2d9e8;
  background: #ffffff;
  width: 100%;
  height: 20px;
  border-radius: 10em;
}
.progress-bar__progress {
  height: 20px;
  -webkit-animation: progress 3s linear infinite;
          animation: progress 3s linear infinite;
  background: -o-linear-gradient(135deg, #1eb37f 25%, #2ac891 25%, #2ac891 50%, #1eb37f 50%, #1eb37f 75%, #2ac891 75%, #2ac891);
  background: linear-gradient(-45deg, #1eb37f 25%, #2ac891 25%, #2ac891 50%, #1eb37f 50%, #1eb37f 75%, #2ac891 75%, #2ac891);
  background-repeat: repeat-x;
  /* The size of the bars must match the background-position in the @keyframes */
  background-size: 1.5em 1.5em;
  border-radius: 10px;
  height: inherit;
  width: 100%;
  border-radius: 10em;
}
.progress-bar__text {
  color: #3f3f3f;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 12px;
}
.progress-bar__text span {
  color: #5a5a5a;
}

@-webkit-keyframes progress {
  to {
    background-position: 1.5em 0;
  }
}

@keyframes progress {
  to {
    background-position: 1.5em 0;
  }
}
input[type=email]._error,
input[type=file]._error,
input[type=tel]._error,
input[type=text]._error,
select._error,
textarea._error {
  border: 1px solid red;
}

._form__status-error {
  color: var(--black);
}

._error {
  border-color: red;
}

.social {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
}
.social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
}
.social__link:before {
  color: #ffffff;
  font-size: inherit;
}

.icon-pwm_facebook {
  background-color: #3d6ad6;
  font-size: 21px;
}

.icon-pwm_instagram {
  background: -webkit-gradient(linear, left top, left bottom, from(#7423c1), color-stop(50.45%, #a91c8e), to(#db8a40));
  background: -o-linear-gradient(top, #7423c1 0%, #a91c8e 50.45%, #db8a40 100%);
  background: linear-gradient(180deg, #7423c1 0%, #a91c8e 50.45%, #db8a40 100%);
  font-size: 18px;
}

.pwm_facebook {
  margin-left: 8px;
}