@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunitoregular.woff2") format("woff2"), url("../fonts/Nunitoregular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunitosemibold.woff2") format("woff2"), url("../fonts/Nunitosemibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunitobold.woff2") format("woff2"), url("../fonts/Nunitobold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunitoextrabold.woff2") format("woff2"), url("../fonts/Nunitoextrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AcariSans";
  src: url("../fonts/AcariSans-Regular.woff2") format("woff2"), url("../fonts/AcariSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AcariSans";
  src: url("../fonts/AcariSans-Bold.woff2") format("woff2"), url("../fonts/AcariSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --animation-left: -100%;
  --animation-right: 100%;
  --animation-top: -100%;
  --animation-bottom: 100%;
  --columns: 12;
  --body-font-size: 0.16rem;
  --gap-x: 20px;
  --gap-y: 20px;
  --container-gap: 15px;
}

body {
  line-height: 1.35;
  font-weight: 400;
  font-size: var(--body-font-size);
  font-family: "Nunito", sans-serif;
  margin: 0;
  color: #000;
}

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

html {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  -webkit-transition-duration: 400ms;
       -o-transition-duration: 400ms;
          transition-duration: 400ms;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

iframe {
  border: 0;
}

b,
strong {
  font-weight: 700;
}

:root {
  --width-max-window: 100vw;
  --width-min-window: 320;
  --width-min-window-px: 320px;
  --min-value: 100;
  --min-value-px: 100px;
  --max-value: 150;
  font-size: calc( var(--min-value-px) + (var(--max-value) - var(--min-value)) * ((var(--width-max-window) - var(--width-min-window-px)) / (1920 - var(--width-min-window))));
}

.grid {
  --grid-gap-x: var(--gap-x);
  --grid-gap-y: var(--gap-y);
  --grid-columns: var(--columns);
}

.container,
.container-xs,
.container-md,
.container-lg,
.container-full {
  --local-container-gap: var(--container-gap);
  --dp-block: block;
  display: var(--dp-block);
  width: 100%;
  padding-left: var(--local-container-gap);
  padding-right: var(--local-container-gap);
  margin-left: auto;
  margin-right: auto;
}

br {
  --dp-inline: inline;
  display: var(--dp-inline);
}

.icon {
  width: 1em;
  height: 1em;
  --dp-block: block;
  display: var(--dp-block);
  flex: 0 0 auto;
  fill: currentColor;
  -webkit-transition: all 400ms 0s;
  -o-transition: all 400ms 0s;
  transition: all 400ms 0s;
  position: relative;
}

.icon--no-fill {
  fill: none;
}

.icon--stroke {
  stroke: currentColor;
}

.icon--only-stroke {
  fill: none;
  stroke: currentColor;
}

.loader {
  height: 1em;
  width: 1em;
  display: block;
  overflow: hidden;
  position: relative;
}

.loader:after,
.loader:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.loader:after {
  opacity: 0.15;
}

.loader:before {
  border-bottom-color: transparent;
  border-top-color: transparent;
  -webkit-animation: loading 1.5s linear infinite;
          animation: loading 1.5s linear infinite;
}

.loader--center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

.loader--size-sm {
  font-size: 0.4rem;
}

.loader--size-md {
  font-size: 0.6rem;
}

.loader--size-lg {
  font-size: 0.8rem;
}

.adaptive-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  --dp-block: block;
  display: var(--dp-block);
}

.adaptive-box:after {
  content: '';
  padding: 0px 0px var(--adaptive-box) 0px;
  width: 100%;
  display: block;
}

.adaptive-box > * {
  position: absolute;
}

.adaptive-box__image,
.adaptive-box__item {
  z-index: 2;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.adaptive-box__image {
  -o-object-fit: cover;
     object-fit: cover;
}

.link {
  color: currentColor;
}

.link:active {
  color: #000;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.main {
  flex-grow: 1;
}

.title h1 {
  font-weight: 800;
  font-size: 0.74rem;
  text-transform: uppercase;
  color: #25334e;
}

.title h2 {
  font-weight: 800;
  color: #25334e;
  font-size: 0.36rem;
  color: #25334e;
  line-height: 0.77rem;
}

body.lock {
  overflow: hidden;
}

.animation {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animation.start {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@-webkit-keyframes steps {
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes steps {
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes opacityItems {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes opacityItems {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes transformClose {
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes transformClose {
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes loading {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loading {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes loading-n {
  100% {
    -webkit-transform: rotate(-720deg);
            transform: rotate(-720deg);
  }
}

@keyframes loading-n {
  100% {
    -webkit-transform: rotate(-720deg);
            transform: rotate(-720deg);
  }
}

.title {
  --dp-block: block;
  display: var(--dp-block);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
}

.title--size-sm {
  font-size: 0.24rem;
}

.title--size-md {
  font-size: 0.24rem;
}

.title--size-lg {
  font-size: 0.24rem;
}

.btn {
  position: relative;
  text-decoration: none;
  -webkit-transition-duration: 400ms;
       -o-transition-duration: 400ms;
          transition-duration: 400ms;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  --dp-flex: flex;
  display: var(--dp-flex);
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 500px;
  background: #000;
  color: #fff;
}

.btn--primary .icon {
  color: #fff;
}

.btn--primary:active {
  background: #585858;
}

.btn--circle {
  --dp-flex: flex;
  display: var(--dp-flex);
  align-items: center;
  justify-content: center;
  line-height: 1;
  --btn-circle: 2rem;
  border-radius: 50%;
  height: var(--btn-circle);
  width: var(--btn-circle);
  background: #000;
  color: #fff;
}

.btn--circle:active {
  background: #585858;
}

.btn--outline {
  border: 1px solid #000;
  color: currentColor;
  background-color: transparent;
}

.btn--outline .icon {
  color: currentColor;
}

.btn--outline:active {
  color: #fff;
  background: #000;
}

.btn--outline:active .icon {
  color: #fff;
}

.btn--size-md {
  font-size: 0.2rem;
  padding: 0.16rem 0.32rem;
}

.social {
  --dp-flex: flex;
  display: var(--dp-flex);
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  overflow: hidden;
  background-color: #000;
  position: relative;
  -webkit-transition-duration: 400ms;
       -o-transition-duration: 400ms;
          transition-duration: 400ms;
}

.social .icon {
  color: #fff;
  font-size: 0.5em;
}

.social:hover {
  background-color: #2b2b2b;
}

.social--size {
  font-size: 0.4rem;
}

.social--circle {
  border-radius: 50%;
}

.social--outline {
  background: none;
  border: 1px solid #000;
}

.social--outline .icon {
  color: #000;
}

.social--outline:hover {
  background-color: #000;
}

.social--outline:hover .icon {
  color: #fff;
}

.social-group {
  --dp-flex: flex;
  display: var(--dp-flex);
  flex-wrap: wrap;
  position: relative;
}

.social-group > * {
  margin-right: 0.25rem;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */

/* CSS Mode */

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

/* a11y */

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-controller {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.swiper-controller .swiper-pagination-progressbar {
  width: 3rem;
  margin-right: 0.5rem;
}

.swiper-controller .swiper-pagination-fraction {
  margin: 0 0.2rem;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* Preloader */

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: loading 1s infinite linear;
          animation: loading 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-button-group {
  display: flex;
  align-items: center;
}

.swiper-button-group .swiper-button-prev {
  margin-right: 0.24rem;
}

.swiper-button-prev,
.swiper-button-next {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  width: 1em;
  font-size: 0.44rem;
  cursor: pointer;
  -webkit-transition-duration: 400ms;
       -o-transition-duration: 400ms;
          transition-duration: 400ms;
}

.swiper-button-prev .icon,
.swiper-button-next .icon {
  font-size: 1em;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.2;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev._center-y,
.swiper-button-next._center-y {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  z-index: 10;
}

.swiper-button-prev._circle,
.swiper-button-next._circle {
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-size: 0.44rem;
}

.swiper-button-prev._circle .icon,
.swiper-button-next._circle .icon {
  font-size: 0.4em;
}

.swiper-button-prev .icon,
.swiper-container-rtl .swiper-button-next .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev._center-y,
.swiper-container-rtl .swiper-button-next._center-y {
  left: 10px;
  right: auto;
}

.swiper-button-next._center-y,
.swiper-container-rtl .swiper-button-prev._center-y {
  right: 10px;
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: relative;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets:not(.swiper-pagination-bullets-dynamic) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  margin: 0 auto;
  white-space: nowrap;
}

.swiper-pagination-bullet {
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #a3a3a3;
  font-size: 0.24rem;
  flex: 0 0 auto;
  -webkit-transition-duration: 400ms;
       -o-transition-duration: 400ms;
          transition-duration: 400ms;
}

.swiper-pagination-bullet:not(:last-child) {
  margin-right: 0.5em;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination._custom .swiper-pagination-bullet {
  width: 0.44rem;
  height: 0.44rem;
  font-size: 0.24rem;
  color: #fff;
}

/* Progress */

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: relative;
  height: 4px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

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

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

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

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

.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  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;
  -ms-scroll-chaining: none;
      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;
      -ms-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%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  -webkit-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  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%);
  -webkit-box-shadow: var(--carousel-button-shadow, none);
          box-shadow: var(--carousel-button-shadow, none);
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev,
.carousel__button.is-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-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;
  -webkit-filter: var(--carousel-button-svg-filter, none);
          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);
  -webkit-box-sizing: border-box;
          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;
  -webkit-transform-origin: top left;
          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 {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
          box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

.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;
  -ms-scroll-chaining: none;
      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;
}

.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__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

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

.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  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%;
  -webkit-transform: translate(-50%, -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 {
  -webkit-animation: fancybox-rotate 2s linear infinite;
          animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
          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;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
          animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

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

@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 {
  -webkit-animation: 0.15s ease backwards fancybox-fadeIn;
          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 {
  -webkit-animation: 0.15s ease both fancybox-fadeOut;
          animation: 0.15s ease both fancybox-fadeOut;
}

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

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

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

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

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

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

@-webkit-keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}

@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}

@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@-webkit-keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}

@-webkit-keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            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;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
          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: -webkit-grab;
  cursor: grab;
}

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

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

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

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

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

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

.fancybox__image {
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: none;
  -o-transition: 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__content {
  flex-direction: row;
  flex-wrap: wrap;
}

.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 {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          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;
  -webkit-box-sizing: content-box;
          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-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  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;
      -ms-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: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(8.1%, rgba(0, 0, 0, 0.006)), color-stop(15.5%, rgba(0, 0, 0, 0.021)), color-stop(22.5%, rgba(0, 0, 0, 0.046)), color-stop(29%, rgba(0, 0, 0, 0.077)), color-stop(35.3%, rgba(0, 0, 0, 0.114)), color-stop(41.2%, rgba(0, 0, 0, 0.155)), color-stop(47.1%, rgba(0, 0, 0, 0.198)), color-stop(52.9%, rgba(0, 0, 0, 0.242)), color-stop(58.8%, rgba(0, 0, 0, 0.285)), color-stop(64.7%, rgba(0, 0, 0, 0.326)), color-stop(71%, rgba(0, 0, 0, 0.363)), color-stop(77.5%, rgba(0, 0, 0, 0.394)), color-stop(84.5%, rgba(0, 0, 0, 0.419)), color-stop(91.9%, rgba(0, 0, 0, 0.434)), to(rgba(0, 0, 0, 0.44)));
  background: -o-linear-gradient(bottom, 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%);
  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));
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__toolbar {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          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%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

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

.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;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-moz-full-screen::backdrop {
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

[data-fancybox] {
  position: relative;
  cursor: pointer;
}

[data-fancybox]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(31, 31, 31, 0.7);
  border: 2px solid #ffb74b;
  pointer-events: none;
  opacity: 0;
  -webkit-transition-duration: 400ms;
       -o-transition-duration: 400ms;
          transition-duration: 400ms;
}

[data-fancybox]:hover .fancybox-zoom,
[data-fancybox]:hover:before {
  opacity: 1;
  pointer-events: auto;
}

[data-fancybox] .fancybox-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  pointer-events: none;
}

.fancybox-zoom {
  position: relative;
  z-index: 4;
  background-color: #000;
  height: 1em;
  width: 1em;
  font-size: 0.64rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition-duration: 400ms;
       -o-transition-duration: 400ms;
          transition-duration: 400ms;
}

.fancybox-zoom:after,
.fancybox-zoom:before {
  content: "";
  height: 2px;
  width: 1em;
  font-size: 0.5em;
  background-color: #fff;
  position: absolute;
}

.fancybox-zoom:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*! nouislider - 14.6.4 - 3/18/2021 */

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.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;
  -webkit-transform-style: flat;
          transform-style: flat;
}

.noUi-connect {
  height: 100%;
  width: 100%;
}

.noUi-origin {
  height: 10%;
  width: 10%;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform .3s;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

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

.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  -webkit-box-shadow: inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB;
          box-shadow: inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

.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;
  -webkit-box-shadow: inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB;
          box-shadow: inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB;
}

.noUi-active {
  -webkit-box-shadow: inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB;
          box-shadow: inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB;
}

.noUi-handle:after,
.noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
  cursor: not-allowed;
}

.noUi-pips,
.noUi-pips * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  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;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  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 {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }

  to {
    -webkit-transform: rotateZ(1turn);
            transform: rotateZ(1turn);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }

  to {
    -webkit-transform: rotateZ(1turn);
            transform: rotateZ(1turn);
  }
}

.green-audio-player {
  min-width: 300px;
  height: 56px;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  flex: 1 0 auto;
}

.green-audio-player.player-accessible .play-pause-btn:hover,
.green-audio-player.player-accessible .controls:hover,
.green-audio-player.player-accessible .volume__button:hover,
.green-audio-player.player-accessible .volume__controls:hover,
.green-audio-player.player-accessible .download:hover {
  outline: dotted 1px #999;
}

.green-audio-player svg,
.green-audio-player img {
  display: block;
}

.green-audio-player .holder {
  position: relative;
}

.green-audio-player .holder .loading .loading__spinner {
  position: absolute;
  left: -3px;
  bottom: 2px;
  width: 16px;
  height: 16px;
  border: 2px solid #b0b0b0;
  border-right-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  -webkit-animation: spin 0.4s linear infinite;
          animation: spin 0.4s linear infinite;
}

.green-audio-player .holder .play-pause-btn {
  visibility: hidden;
  cursor: pointer;
  outline: none;
}

.green-audio-player .holder .play-pause-btn:focus {
  outline: none;
}

.green-audio-player .slider {
  flex-grow: 1;
  background-color: #d8d8d8;
  cursor: pointer;
  position: relative;
}

.green-audio-player .slider .gap-progress {
  background-color: #000;
  border-radius: inherit;
  position: absolute;
  pointer-events: none;
}

.green-audio-player .slider .gap-progress .pin {
  height: 16px;
  width: 16px;
  border-radius: 8px;
  background-color: #000;
  position: absolute;
  pointer-events: all;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.32);
}

.green-audio-player .slider .gap-progress .pin::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0);
  width: 200%;
  height: 200%;
  margin-left: -50%;
  margin-top: -50%;
  border-radius: 50%;
}

.green-audio-player .controls {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #55606e;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
  outline: none;
}

.green-audio-player .controls .controls__slider {
  margin-left: 16px;
  margin-right: 16px;
  border-radius: 2px;
  height: 4px;
}

.green-audio-player .controls .controls__slider .controls__progress {
  width: 0;
  height: 100%;
}

.green-audio-player .controls .controls__slider .controls__progress .progress__pin {
  right: -8px;
  top: -6px;
}

.green-audio-player .controls span {
  cursor: default;
}

.green-audio-player .controls:focus {
  outline: none;
}

.green-audio-player .volume {
  position: relative;
}

.green-audio-player .volume .volume__button {
  cursor: pointer;
  outline: none;
}

.green-audio-player .volume .volume__button:focus {
  outline: none;
}

.green-audio-player .volume .volume__button.open path {
  fill: #000;
}

.green-audio-player .volume .volume__controls {
  width: 30px;
  height: 135px;
  background-color: rgba(0, 0, 0, 0.62);
  border-radius: 7px;
  position: absolute;
  left: -3px;
  bottom: 52px;
  flex-direction: column;
  align-items: center;
  display: flex;
  z-index: 2;
  outline: none;
}

.green-audio-player .volume .volume__controls .volume__slider {
  margin-top: 12px;
  margin-bottom: 12px;
  width: 6px;
  border-radius: 3px;
}

.green-audio-player .volume .volume__controls .volume__slider .volume__progress {
  bottom: 0;
  height: 100%;
  width: 6px;
}

.green-audio-player .volume .volume__controls .volume__slider .volume__progress .volume__pin {
  left: -5px;
  top: -8px;
}

.green-audio-player .volume .volume__controls:focus {
  outline: none;
}

.green-audio-player .volume .volume__controls.hidden {
  display: none;
}

.green-audio-player .volume .volume__controls.top {
  bottom: 52px;
  left: -3px;
}

.green-audio-player .volume .volume__controls.middle {
  bottom: -54px;
  left: 54px;
}

.green-audio-player .volume .volume__controls.bottom {
  bottom: -164px;
  left: -3px;
}

.green-audio-player .download {
  display: none;
  margin-left: 16px;
  cursor: pointer;
  outline: none;
}

.green-audio-player .download:focus {
  outline: none;
}

.green-audio-player:focus {
  outline: none;
}

.message__offscreen {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.wow {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: transparent;
  border: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type="number"]:hover,
input[type="number"]:focus {
  -moz-appearance: number-input;
}

button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1;
  color: currentColor;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: currentColor;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  opacity: 1;
  color: currentColor;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: currentColor;
}

/* @import 'form';
@import 'form-field';
@import 'form-file';
@import 'form-textarea';
@import 'checkbox/form-radio';
@import 'checkbox/form-checkbox';
//@import 'checkbox/form-switch';
@import 'form-send';
@import 'form-politic'; */

/* @import 'menu/index'; */

/* @import 'questions/questions'; */

/* @import 'video/video';  */

/* @import 'quiz/index';  */

/* @import 'slider/index'; */

/* @import '4pt/4pt-sm';  */

.header {
  position: relative;
  z-index: 2;
  margin-top: 56px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 0.71rem;
  margin: 0.23rem 0px 0rem;
}

.header__inner div {
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
}

.header strong {
  font-weight: normal;
  font-size: 0.14rem;
  color: #ff7d56;
}

.header strong:not(:last-child) {
  margin-right: 0.52rem;
}

.header strong a {
  font-family: "AcariSans", sans-serif;
  font-weight: bold;
  font-size: 0.18rem;
  line-height: 0.27rem;
  color: #25334e;
  display: block;
  margin-top: 0.03rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header strong a:hover {
  opacity: 0.5;
}

.footer {
  position: relative;
}

.footer > img {
  position: absolute;
  pointer-events: none;
}

.footer__wave {
  right: 0rem;
  bottom: 0rem;
}

.footer__elipse {
  left: 0px;
  bottom: 0px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 1.29rem;
  padding: 0.2rem 0rem;
  border-top: 1px solid #FFEFE3;
  position: relative;
  z-index: 4;
}

.footer__inner div {
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
}

.footer strong {
  font-weight: normal;
  font-size: 0.14rem;
  color: #ff7d56;
}

.footer strong:not(:last-child) {
  margin-right: 0.52rem;
}

.footer strong a {
  font-family: "AcariSans", sans-serif;
  font-weight: bold;
  font-size: 0.18rem;
  line-height: 0.27rem;
  color: #25334e;
  display: block;
  margin-top: 0.03rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.footer strong a:hover {
  opacity: 0.5;
}

.footer__inner-logo {
  display: flex;
  align-items: center;
}

.footer__logo {
  margin-right: 0.64rem;
}

.footer__logo-dark {
  margin-top: 0.1rem;
}

.dar {
  padding: 119px 0px 415px 0px;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  margin-top: -94px;
  margin-bottom: 341px;
}

.dar__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.dar h1,
.dar a {
  position: relative;
}

.dar h1 {
  max-width: 9rem;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 0.20rem;
}

.dar a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 4.3rem;
  height: 1.09rem;
  background: #ff7d56;
  -webkit-box-shadow: 0rem 0.04rem 0.33rem rgba(255, 125, 86, 0.59);
          box-shadow: 0rem 0.04rem 0.33rem rgba(255, 125, 86, 0.59);
  border-radius: 0.54rem;
  font-weight: bold;
  font-size: 0.32rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin: 0 auto;
}

.dar a:hover {
  background-color: #E86138;
}

.dar a:focus {
  background-color: #CD471F;
}

.dar a img {
  position: absolute;
  left: -284px;
  top: 0.15rem;
}

.dar__podarok {
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.dar__burning-star {
  position: absolute;
  top: 0px;
  left: 0px;
}

.dar__volna {
  position: absolute;
  right: -6px;
  bottom: 113px;
}

.dar .js__dar-paralaks {
  position: absolute;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.podarok {
  margin-bottom: 1.06rem;
}

.podarok h2 {
  text-align: center;
}

.podarok p {
  font-weight: 800;
  font-size: 0.19rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: #ff7d56;
  text-align: center;
  margin-bottom: 0.3rem;
}

.podarok__description {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.podarok__description div {
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 30px rgba(150, 123, 115, 0.05);
          box-shadow: 0px 5px 30px rgba(150, 123, 115, 0.05);
  border-radius: 18px;
  padding: 0.44rem 0.38rem 0.44rem 0.41rem;
  font-size: 20px;
  color: #25334E;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
}

.podarok__description div img {
  margin-right: 0.27rem;
}

.game {
  margin-bottom: 0.98rem;
  position: relative;
  /* select */
}

.game .container {
  position: relative;
  z-index: 5;
}

.game h2 {
  text-align: center;
}

.game p {
  font-weight: 600;
  font-size: 0.24rem;
  line-height: 0.33rem;
  letter-spacing: 0.03em;
  color: #ff7d56;
  text-align: center;
  max-width: 6.86rem;
  margin: 0 auto;
  margin-bottom: 0.54rem;
}

.game p strong {
  font-weight: 800;
}

.game > img {
  position: absolute;
  pointer-events: none;
}

.game__decor-confeta {
  top: 2.30rem;
  left: 2.23rem;
}

.game__decor-podarok {
  top: 3.83rem;
  left: 0.56rem;
}

.game__decor-pieceofcake {
  bottom: -1.02rem;
  left: 2.95rem;
}

.game__decor-gift {
  right: 0.62rem;
  bottom: 4.19rem;
}

.game__decor-star {
  top: 4.20rem;
  right: 1.90rem;
}

.game__decor-stargreen {
  top: 2.11rem;
  right: 8.64rem;
}

.game__decor-bg {
  top: 0.47rem;
  right: 2.06rem;
}

.game .noUi-target {
  background: #ff7e56;
  border-radius: 0.67rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.game .noUi-connects {
  border-radius: 0.67rem;
  position: relative;
}

.game .noUi-connects:before {
  top: 0;
  left: 0px;
  position: absolute;
  content: "";
  width: 9.47rem;
  height: 100%;
  background: url("../images/game/game__hag.png") no-repeat;
  margin-left: 1.53rem;
  background-size: 7.5rem;
  z-index: 2;
}

.game .noUi-connect {
  background: #fff3ea;
  position: relative;
}

.game .noUi-handle.noUi-handle-upper {
  display: none;
}

.game .noUi-horizontal {
  height: 0.15rem;
  padding-left: 0.31rem;
}

.game .noUi-horizontal .noUi-handle {
  width: 0.49rem;
  height: 0.49rem;
  top: -0.16rem;
  cursor: pointer;
}

.game .noUi-handle:after,
.game .noUi-handle:before {
  display: none;
}

.game .noUi-handle {
  background: #fff3ea;
  border-radius: 50%;
  border: 0.08rem solid #ff7d56;
}

.game__prices {
  display: flex;
  justify-content: space-between;
  margin-top: 0.26rem;
  margin-bottom: 0.42rem;
}

.game__prices strong {
  font-weight: 800;
  font-size: 0.18rem;
  color: #25334e;
  line-height: 0.3rem;
}

.game__prices strong.game--orange {
  color: #ff7d56;
}

.game__bottles {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.43rem;
}

.game__bottles strong {
  display: flex;
  font-weight: bold;
  font-size: 0.24rem;
  color: #25334e;
}

.game__bottles strong:not(:last-child) {
  margin-right: 0.2rem;
}

.game__bottles span {
  color: #ff7e56;
  margin-left: 0.04rem;
}

.game__donation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game__donation strong {
  font-weight: bold;
  font-size: 0.21rem;
  color: #25334e;
  margin-right: 0.2rem;
}

.game__donation button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.24rem;
  color: #ffffff;
  width: 3.7rem;
  height: 0.9rem;
  background: #ff7d56;
  -webkit-box-shadow: 0rem 0.04rem 0.33rem rgba(255, 125, 86, 0.59);
          box-shadow: 0rem 0.04rem 0.33rem rgba(255, 125, 86, 0.59);
  border-radius: 0.52rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.game__donation button:hover {
  background: #e86138;
}

.game__donation button:focus {
  background: #cd471f;
}

.game__times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  grid-column-gap: 0.33rem;
  grid-row-gap: 0.33rem;
  margin-bottom: 0.87rem;
}

.game__time strong {
  display: block;
  text-align: center;
  margin-bottom: 0.2rem;
  font-weight: bold;
  font-size: 0.24rem;
  color: #25334e;
}

.game__time strong.game--orange {
  color: #ff7d56;
}

.game__time > div {
  background: #ffffff;
  -webkit-box-shadow: 0rem 0.05rem 0.3rem rgba(150, 123, 115, 0.05);
          box-shadow: 0rem 0.05rem 0.3rem rgba(150, 123, 115, 0.05);
  border-radius: 0.18rem;
  position: relative;
  height: 3.6rem;
}

.game__time > div div {
  position: absolute;
  top: 0;
  left: 0px;
}

.game__time > div div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0px;
  left: 0px;
}

.game__time > div div svg {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  top: 0px;
  left: 0px;
}

.game__time > div div svg.hidden {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.game__time > div.game--border {
  border: 3px solid #ff7d56;
}

.game__time img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.game__time img.hidden {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.game__time .game--little {
  top: auto;
  bottom: 0.15rem;
  left: 0.19rem;
  width: 0.82rem;
  height: 0.98rem;
}

.game__time .game--mediumsmall {
  top: 1.29rem;
  left: 0.2rem;
  width: 1.11rem;
  height: 0.99rem;
}

.game__time .game--medium {
  top: 0.44rem;
  left: 1.31rem;
  width: 1.31rem;
  height: 0.88rem;
}

.game__time .game--mediumlarge {
  top: auto;
  left: 1.59rem;
  bottom: 0.42rem;
  width: 1.4rem;
  height: 1.22rem;
}

.game__time .game--big {
  top: 0.23rem;
  left: auto;
  right: 0.51rem;
  width: 2rem;
  height: 1.78rem;
}

.game__time .game--verybig {
  top: auto;
  left: auto;
  right: 9px;
  bottom: 27px;
  width: 2.42rem;
  height: 1.19rem;
}

.game__time .game--border img {
  position: absolute;
}

.game__time .game--border img.game--little {
  top: auto;
  bottom: -0.04rem;
  left: 0.05rem;
  width: 1.14rem;
  height: 1.14rem;
}

.game__time .game--border img.game--mediumsmall {
  top: 1.2rem;
  left: 0.16rem;
  width: 1.28rem;
  height: 1.28rem;
}

.game__time .game--border img.game--medium {
  top: 0.18rem;
  left: 1.31rem;
  width: 1.32rem;
  height: 1.23rem;
}

.game__time .game--border img.game--mediumlarge {
  top: auto;
  left: 1.48rem;
  bottom: 0.32rem;
  width: 1.6rem;
  height: 1.28rem;
}

.game__time .game--border img.game--big {
  top: 0.23rem;
  left: auto;
  right: 0.49rem;
  height: 1.85rem;
}

.game .select {
  position: relative;
  width: 3.7rem;
}

.game .select__trigger {
  display: flex;
  align-items: center;
  padding: 0 40px 0 20px;
  background: #fff3ea;
  height: 0.6rem;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  color: #1f2937;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  position: relative;
  border-radius: 255px;
}

.game .select__trigger span {
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  font-size: 0.24rem;
  color: #aa7c5a;
}

.game .select__arrow {
  position: absolute;
  right: 0.23rem;
  top: 0.2rem;
}

.game .select__arrow svg path {
  fill: #ff7d56;
}

.game .select__arrow svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.game .select__trigger.active .select__arrow svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.game .select__label--dark {
  color: #4b5563;
  font-weight: 600;
}

.game .select__label {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  position: absolute;
  top: -25px;
  left: 0;
  white-space: nowrap;
}

.game .select__drop {
  display: none;
  width: 100%;
  padding: 10px 0;
  border-top: none;
  position: absolute;
  z-index: 10;
  background: #fff3ea;
  border-radius: 0.3rem;
  top: 0.67rem;
}

.game .select__drop.open {
  display: block;
}

.game .select__list {
  max-height: 320px;
  font-size: 15px;
  color: #1f2937;
  overflow-y: auto;
}

.game .select__list input {
  display: none;
}

.game .select__list label {
  display: block;
  padding: 0.1rem 0.2rem;
  margin-bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-weight: normal;
  font-size: 0.24rem;
  color: #aa7c5a;
}

.game .select__list input:checked + label {
  background-color: #ff7d56;
  color: #fff;
  border-radius: 0.12rem;
}

.accardion {
  margin-bottom: 0.94rem;
  position: relative;
}

.accardion > img {
  position: absolute;
  top: 0px;
  right: 0px;
  pointer-events: none;
}

.accardion h2 {
  text-align: center;
  margin-bottom: 0.3rem;
}

.accardion .container {
  position: relative;
  z-index: 4;
}

.accardion strong {
  font-size: 0.2rem;
  line-height: 130%;
  color: #25334e;
  display: block;
}

.accardion p {
  font-weight: normal;
  font-size: 0.20rem;
  line-height: 158%;
  color: #25334e;
  margin-top: 0.3rem;
}

.accardion__question {
  background: #ffffff;
  -webkit-box-shadow: 0rem 0.05rem 0.3rem rgba(150, 123, 115, 0.05);
          box-shadow: 0rem 0.05rem 0.3rem rgba(150, 123, 115, 0.05);
  border-radius: 0.18rem;
  padding: 0.3rem 0.76rem 0.3rem 0.3rem;
  position: relative;
  cursor: pointer;
}

.accardion__question:not(:last-child) {
  margin-bottom: 0.2rem;
}

.accardion__plusminus {
  position: absolute;
  top: 0.20rem;
  right: 0.20rem;
  width: 0.46rem;
  height: 0.46rem;
  background: #FF7D56;
  border-radius: 50%;
}

.accardion__plusminus svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.22rem;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.accardion__plusminus svg.accardion__minus {
  height: 0.04rem;
}

.accardion__plusminus svg.accardion__plus {
  height: 0.22rem;
}

.accardion__plusminus svg.hidden {
  opacity: 0;
}

.accardion__question:nth-child(3) .accardion__plusminus {
  background: #6ED2EF;
}

.accardion__question:nth-child(4) .accardion__plusminus {
  background: #B2D93A;
}

.accardion__question:nth-child(5) .accardion__plusminus {
  background: #FDCF3F;
}

.accardion__question:nth-child(6) .accardion__plusminus {
  background: #FF7D56;
}

.accardion p.accardion__open {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-top: 0px;
}

.accardion p.accardion__open.open {
  height: auto;
  opacity: 1;
  margin-top: 0.3rem;
}

.aboutcompany {
  margin-bottom: 0.63rem;
  position: relative;
}

.aboutcompany > img {
  position: absolute;
  pointer-events: none;
}

.aboutcompany__decor-gift {
  top: -0.32rem;
  left: 6.26rem;
}

.aboutcompany__decor-starflight {
  top: 0.30rem;
  left: 1.80rem;
}

.aboutcompany__decor-star {
  top: -0.04rem;
  right: 5.13rem;
  z-index: 5;
}

.aboutcompany__decor-rocket {
  right: 2.35rem;
  top: 0.78rem;
}

.aboutcompany__decor-icecream {
  right: 0.76rem;
  bottom: 1.16rem;
}

.aboutcompany__decor-cande {
  left: 0.79rem;
  bottom: 2.24rem;
}

.aboutcompany__decor-giftorange {
  bottom: -0.18rem;
  left: 1.24rem;
}

.aboutcompany__decor-giftblue {
  bottom: -1.75rem;
  right: 2.91rem;
}

.aboutcompany__decor-starorange {
  bottom: -1.55rem;
  left: 7.43rem;
}

.aboutcompany__decor-stargreen {
  bottom: -4.03rem;
  right: 7.44rem;
}

.aboutcompany__decor-gift2 {
  left: 1.50rem;
  bottom: -4.98rem;
}

.aboutcompany__inner {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 4;
}

.aboutcompany__description {
  width: 6.7rem;
  padding-top: 0.37rem;
}

.aboutcompany__images {
  width: 5.04rem;
}

.aboutcompany__images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.aboutcompany strong {
  display: block;
  font-weight: 800;
  font-size: 0.36rem;
  color: #25334e;
  margin-bottom: 0.2rem;
}

.aboutcompany p {
  font-weight: normal;
  font-size: 0.20rem;
  line-height: 158%;
  color: #25334e;
}

.aboutcompany p:not(:last-child) {
  margin-bottom: 0.35rem;
}

.dignaty {
  margin-bottom: 0.72rem;
}

.dignaty .container {
  position: relative;
  z-index: 4;
}

.dignaty h2 {
  text-align: center;
  margin-bottom: 0.43rem;
}

.dignaty p {
  font-weight: bold;
  font-size: 24px;
  color: #ff7d56;
  margin-bottom: 0.46rem;
  text-align: center;
}

.dignaty__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-bottom: 0.55rem;
}

.dignaty__item {
  background: #ff9900;
  -webkit-box-shadow: 0rem 0.5rem 0.3rem rgba(150, 123, 115, 0.05);
          box-shadow: 0rem 0.5rem 0.3rem rgba(150, 123, 115, 0.05);
  border-radius: 0.18rem;
  min-height: 1.91rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-weight: 800;
  font-size: 0.36rem;
  color: #ffffff;
  padding: 0.49rem 0.2rem 0.34rem 0.2rem;
  text-align: center;
}

.dignaty__item:nth-child(2) {
  background: #b2d93a;
}

.dignaty__item:nth-child(3) {
  background: #6ed2ef;
}

.dignaty__item span {
  display: block;
  margin-top: 0.05rem;
  font-weight: 600;
  font-size: 0.21rem;
  line-height: 0.27rem;
  text-align: center;
  color: #ffffff;
}

.dignaty__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.dignaty__inner div {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px dashed #6ed2ef;
  -webkit-box-shadow: 0rem 0.05rem 0.3rem rgba(150, 123, 115, 0.05);
          box-shadow: 0rem 0.05rem 0.3rem rgba(150, 123, 115, 0.05);
  border-radius: 0.18rem;
  min-height: 1.81rem;
  padding: 0.15rem;
  text-align: center;
  font-weight: normal;
  font-size: 0.20rem;
  line-height: 158%;
  text-align: center;
  color: #25334e;
}

.dignaty__inner div.dignaty--orange {
  border-color: #FF9900;
}

.contacts {
  margin-bottom: 0.67rem;
}

.contacts .container {
  position: relative;
  z-index: 4;
}

.contacts h2 {
  text-align: center;
  margin-bottom: 0.38rem;
}

.contacts__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-bottom: 0.52rem;
  grid-gap: 0.1rem;
}

.contacts__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contacts__info svg {
  width: 0.5rem;
  height: 0.5rem;
  margin-bottom: 0.22rem;
}

.contacts__info span {
  display: block;
  margin-bottom: 0.14rem;
  font-weight: normal;
  font-size: 0.24rem;
  color: #ff7d56;
}

.contacts__info strong {
  display: block;
  font-weight: bold;
  font-size: 0.24rem;
  color: #25334e;
}

.contacts__socialnetwork {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-column-gap: 27px;
  grid-row-gap: 27px;
  margin: 0 auto;
  max-width: 8.73rem;
}

.contacts__socialnetwork a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.78rem;
  background: #6ed2ef;
  border-radius: 0.15rem;
  font-weight: bold;
  font-size: 0.24rem;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0.1rem;
}

.contacts__socialnetwork a:hover {
  opacity: 0.5;
}

.contacts__socialnetwork a svg {
  margin-right: 0.1rem;
  width: 0.44rem;
  height: 0.44rem;
}

.contacts__socialnetwork a.contacts--pink {
  background: #e94285;
}

.contacts__socialnetwork a.contacts--pink svg {
  width: 0.44rem;
  height: 0.44rem;
}

.contacts__socialnetwork a.contacts--orange {
  background: #f64d41;
}

.contacts__socialnetwork a.contacts--orange svg {
  width: 0.31rem;
  height: 0.45rem;
}

.popup {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1000;
  overflow: auto;
  cursor: pointer;
}

.popup.js__popup-open {
  opacity: 0;
  visibility: hidden;
}

.popup.js__popup-open.open {
  opacity: 1;
  visibility: visible;
}

.popup__body {
  min-height: 100%;
  padding: 30px 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.popup__content {
  cursor: default;
  border: 1px solid #eff0f2;
  position: relative;
  background: #fff9f4;
  border-radius: 0.45rem;
  padding: 0.25rem 0.41rem 0.24rem 1rem;
  width: 11.70rem;
  min-height: 6.56rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup__content strong {
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #25334e;
}

.popup__content strong span {
  display: block;
  font-weight: 800;
  font-size: 0.14rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: #ff7d56;
}

.popup__content img {
  width: 5.87rem;
}

.popup__close {
  position: absolute;
  top: 0.36rem;
  right: 0.33rem;
  cursor: pointer;
}

.home-player {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  width: 100%;
  background: #fff;
}

.home-player .green-audio-player {
  padding: 0px;
}

.home__player-audio {
  display: flex;
  align-items: center;
}

.home-player .controls {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.home-player .volume {
  display: none;
}

.home-player .download {
  display: none;
}

.home-player .controls__slider {
  height: 2px;
  border-radius: 81px;
  background: #f7f7f7;
  cursor: pointer;
  flex-grow: 1;
  margin: 0px 10px;
}

.home-player .green-audio-player .slider .gap-progress {
  background: #ff7f55;
}

.home-player .green-audio-player .slider .gap-progress .pin {
  background: #ff7f55;
}

.home-player .holder {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ff7f55;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex: 0 0 auto;
}

.home-player .holder svg {
  width: 12px;
  height: 12px;
}

.home-player .holder svg path {
  fill: #fff;
}

.home-player .play-pause-btn {
  height: 13px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  display: none;
  overflow: hidden;
}

.modal._index {
  z-index: 1999;
}

.modal__wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal__container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.modal__box {
  margin: auto;
  padding-bottom: 1rem;
}

.modal__close .icon {
  color: #000;
}

.modal__close:active .icon {
  color: #000;
}

.modal__header {
  height: 1rem;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 20;
  padding: 0 0.15rem;
  flex: 0 0 auto;
}

.modal__header-close {
  margin-left: auto;
}

.modal--theme-primary {
  background: #ffffff;
}

.modal--theme-secondary {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.modal-politic {
  position: relative;
  background-color: #fff;
}

.modal-politic__box {
  margin: auto;
  position: relative;
  padding: 0;
}

.modal-politic__wrapper {
  background-color: #fff;
  max-width: 6rem;
  padding: 0.5rem 0.15rem;
}

.modal-politic__close {
  position: absolute;
  right: 0.15rem;
  top: 0.3rem;
}

.modal-politic__title {
  margin-bottom: 0.2rem;
}

.modal-form {
  position: relative;
  background-color: #fff;
}

.modal-form__box {
  margin: auto;
  position: relative;
  padding: 0;
}

.modal-form__wrapper {
  background-color: #fff;
  max-width: 6rem;
  padding: 0.5rem 0.15rem;
}

.modal-form__close {
  position: absolute;
  right: 0.15rem;
  top: 0.3rem;
}

.modal-video {
  position: relative;
}

.modal-video__box {
  margin: auto;
  max-width: 12rem;
  width: 100%;
  position: relative;
  --adaptive-box: height(560,315);
}

.modal-video__frame {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.modal-video__loader {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  font-size: 4em;
  z-index: 1;
}

.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: #fafafa;
  overflow: hidden;
  display: none;
}

.menu-modal__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 0.3rem;
  overflow-x: hidden;
  overflow-y: auto;
}

.menu-modal__header {
  display: flex;
}

.menu-modal__box {
  display: flex;
  flex: 1;
}

.menu-modal__list {
  margin: auto;
}

.menu-toggle {
  position: relative;
  --dp-flex: flex;
  display: var(--dp-flex);
  align-items: center;
  cursor: pointer;
  font-size: 40px;
  color: currentColor;
  -webkit-transition-duration: 400ms;
       -o-transition-duration: 400ms;
          transition-duration: 400ms;
}

.menu-toggle__icon {
  display: block;
  position: relative;
  background-color: currentColor;
  height: 0.1em;
  width: 0.8em;
  border-radius: 20px;
  -webkit-transition: background 0s 0.3s, width 0.3s 0.3s;
  -o-transition: background 0s 0.3s, width 0.3s 0.3s;
  transition: background 0s 0.3s, width 0.3s 0.3s;
  margin: 0.45em 0 0.45em 0.2em;
}

.menu-toggle__icon:after,
.menu-toggle__icon:before {
  content: "";
  position: absolute;
  background-color: currentColor;
  right: 0;
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 50px;
  -webkit-transition: bottom 0.3s 0.3s,  width 0.3s 0.6s,  -webkit-transform 0.3s  0s;
  transition: bottom 0.3s 0.3s,  width 0.3s 0.6s,  -webkit-transform 0.3s  0s;
  -o-transition: transform 0.3s  0s,  bottom 0.3s 0.3s,  width 0.3s 0.6s;
  transition: transform 0.3s  0s,  bottom 0.3s 0.3s,  width 0.3s 0.6s;
  transition: transform 0.3s  0s,  bottom 0.3s 0.3s,  width 0.3s 0.6s,  -webkit-transform 0.3s  0s;
}

.menu-toggle__icon:after {
  bottom: 0.25em;
  width: 1em;
}

.menu-toggle__icon:before {
  bottom: -0.25em;
  width: 0.6em;
}

.menu-toggle__text {
  font-size: 0.24rem;
  margin-left: 0.2rem;
  line-height: 1;
}

.menu-toggle._active .menu-toggle__icon {
  background: none;
}

.menu-toggle._active .menu-toggle__icon:after,
.menu-toggle._active .menu-toggle__icon:before {
  bottom: 0;
  -webkit-transition: bottom 0.3s 0.3s,  width 0.3s 0s,  -webkit-transform 0.3s 0.6s;
  transition: bottom 0.3s 0.3s,  width 0.3s 0s,  -webkit-transform 0.3s 0.6s;
  -o-transition: transform 0.3s 0.6s,  bottom 0.3s 0.3s,  width 0.3s 0s;
  transition: transform 0.3s 0.6s,  bottom 0.3s 0.3s,  width 0.3s 0s;
  transition: transform 0.3s 0.6s,  bottom 0.3s 0.3s,  width 0.3s 0s,  -webkit-transform 0.3s 0.6s;
}

.menu-toggle._active .menu-toggle__icon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu-toggle._active .menu-toggle__icon:before {
  width: 1em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (min-width: 480px) {
  .container {
    max-width: 440px;
  }
}

@media (min-width: 640px) {
  .container,
  .container-xs {
    max-width: 520px;
  }
}

@media (min-width: 768px) {
  .container-xs,
  .container,
  .container-md {
    max-width: 720px;
  }

  .green-audio-player {
    padding-right: 12px;
  }
}

@media (min-width: 1024px) {
  :root {
    --body-font-size: 0.16rem;
  }

  :root {
    --gap-x: 0.3rem;
  }

  :root {
    --gap-y: 0.3rem;
  }

  :root {
    --container-gap: 0;
  }

  :root {
    --width-min-window: 960;
    --width-min-window-px: 960px;
    --min-value: 50;
    --min-value-px: 50px;
    --max-value: 100;
  }

  .container-xs,
  .container-md,
  .container,
  .container-lg {
    max-width: 11.7rem;
  }

  .title--size-sm {
    font-size: 0.36rem;
  }

  .title--size-md {
    font-size: 0.56rem;
  }

  .title--size-lg {
    font-size: 0.72rem;
  }

  .social--size {
    font-size: 0.64rem;
  }

  .fancybox-zoom {
    font-size: 0.32rem;
  }

  .modal__header {
    padding: 0 0.3rem;
  }

  .modal-politic {
    background-color: transparent;
  }

  .modal-politic__wrapper {
    padding: 0.5rem 0.75rem;
  }

  .modal-politic__close {
    right: 0.3rem;
  }

  .modal-form {
    background-color: transparent;
  }

  .modal-form__wrapper {
    padding: 0.5rem 0.75rem;
  }

  .modal-form__close {
    right: 0.3rem;
  }
}

@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__slide {
    padding: 64px 100px;
  }

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

  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }

  .carousel__button.is-close {
    right: 40px;
  }

  .fancybox__toolbar {
    padding: 8px;
  }
}

@media (min-width: 1920px) {
  :root {
    --width-max-window: 1920px;
  }
}

@media (max-width: 1800px) {
  .dar__paralaks:nth-child(10),
  .dar__paralaks:nth-child(6),
  .dar__paralaks:nth-child(13),
  .dar__paralaks:nth-child(19),
  .dar__paralaks:nth-child(20),
  .dar__paralaks:nth-child(17),
  .dar__paralaks:nth-child(7),
  .dar__burning-star,
  .dar__volna {
    display: none;
  }

  .dar__podarok {
    width: 4.00rem;
  }

  .dar__paralaks:nth-child(8) {
    width: 3.71rem;
  }

  .dar__paralaks:nth-child(15) {
    width: 3.58rem;
  }

  .game .noUi-horizontal {
    padding-left: 0px;
  }
}

@media (max-width: 1519px) {
  .game__time .game--little {
    top: auto;
    bottom: 0.15rem;
    left: 0.19rem;
    width: 0.82rem;
    height: 0.98rem;
  }

  .game__time .game--mediumsmall {
    top: 1.29rem;
    left: 0.2rem;
    width: 1.11rem;
    height: 0.99rem;
  }

  .game__time .game--medium {
    top: 0.44rem;
    left: 4.50rem;
    width: 1.31rem;
    height: 0.88rem;
  }

  .game__time .game--mediumlarge {
    top: auto;
    left: 2.35rem;
    bottom: 0.42rem;
    width: 1.4rem;
    height: 1.22rem;
  }

  .game__time .game--big {
    top: 0.23rem;
    left: auto;
    right: 2.15rem;
    width: 2rem;
    height: 1.78rem;
  }

  .game__time .game--verybig {
    top: auto;
    left: auto;
    right: 9px;
    bottom: 27px;
    width: 2.42rem;
    height: 1.19rem;
  }

  .game__time .game--border img {
    position: absolute;
  }

  .game__time .game--border img.game--little {
    top: auto;
    bottom: -0.04rem;
    left: 0.05rem;
    width: 1.14rem;
    height: 1.14rem;
  }

  .game__time .game--border img.game--mediumsmall {
    top: 1.2rem;
    left: 0.16rem;
    width: 1.28rem;
    height: 1.28rem;
  }

  .game__time .game--border img.game--medium {
    top: 0.18rem;
    left: 3rem;
    width: 1.32rem;
    height: 1.23rem;
  }

  .game__time .game--border img.game--mediumlarge {
    top: auto;
    left: 2.48rem;
    bottom: 0.32rem;
    width: 1.6rem;
    height: 1.28rem;
  }

  .game__time .game--border img.game--big {
    top: 0.23rem;
    left: auto;
    right: 2.56rem;
    height: 1.85rem;
  }
}

@media (max-width: 1200px) {
  .footer__inner {
    flex-direction: column;
  }
}

@media (max-width: 1023px) {
  .title h1 {
    font-size: 50px;
    margin-bottom: 0.16rem;
  }

  .game > img {
    opacity: 0.5;
  }

  .aboutcompany > img {
    opacity: 0.5;
  }

  .footer > img {
    opacity: 0.5;
  }

  .accardion > img {
    opacity: 0.5;
  }

  .title h2 {
    line-height: 0.32rem;
    margin-bottom: 0.20rem;
  }

  .podarok__description {
    grid-template-columns: 1fr;
  }

  .game__bottles strong {
    flex-direction: column;
  }

  .game .noUi-connects:before {
    display: none;
  }

  .game__donation {
    flex-direction: column;
    align-items: flex-start;
  }

  .game__donation strong {
    display: none;
  }

  .game__donation input {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 0.15rem;
  }

  .game__donation button {
    width: 100%;
  }

  .game__time .game--little {
    top: auto;
    bottom: 0.15rem;
    left: 0.19rem;
    width: 0.82rem;
    height: 0.98rem;
  }

  .game__time .game--mediumsmall {
    top: 1.29rem;
    left: 0.2rem;
    width: 1.11rem;
    height: 0.99rem;
  }

  .game__time .game--medium {
    top: 0.44rem;
    left: 1.31rem;
    width: 1.31rem;
    height: 0.88rem;
  }

  .game__time .game--mediumlarge {
    top: auto;
    left: 1.59rem;
    bottom: 0.42rem;
    width: 1.4rem;
    height: 1.22rem;
  }

  .game__time .game--big {
    top: 0.23rem;
    left: auto;
    right: 0.51rem;
    width: 2rem;
    height: 1.78rem;
  }

  .game__time .game--verybig {
    top: auto;
    left: auto;
    right: 9px;
    bottom: 27px;
    width: 2.42rem;
    height: 1.19rem;
  }

  .game__time .game--border img {
    position: absolute;
  }

  .game__time .game--border img.game--little {
    top: auto;
    bottom: -0.04rem;
    left: 0.05rem;
    width: 1.14rem;
    height: 1.14rem;
  }

  .game__time .game--border img.game--mediumsmall {
    top: 1.2rem;
    left: 0.16rem;
    width: 1.28rem;
    height: 1.28rem;
  }

  .game__time .game--border img.game--medium {
    top: 0.18rem;
    left: 1.31rem;
    width: 1.32rem;
    height: 1.23rem;
  }

  .game__time .game--border img.game--mediumlarge {
    top: auto;
    left: 1.48rem;
    bottom: 0.32rem;
    width: 1.6rem;
    height: 1.28rem;
  }

  .game__time .game--border img.game--big {
    top: 0.23rem;
    left: auto;
    right: 0.49rem;
    height: 1.85rem;
  }

  .game__prices strong:nth-child(2),
  .game__prices strong:nth-child(3),
  .game__prices strong:nth-child(4),
  .game__prices strong:nth-child(5),
  .game__prices strong:nth-child(6) {
    display: none;
  }

  .game .select {
    width: 100%;
    margin-bottom: 0.20rem;
  }

  .aboutcompany__inner {
    flex-direction: column;
  }

  .aboutcompany__description {
    padding-top: 0px;
    width: 100%;
  }

  .aboutcompany__images {
    width: 100%;
    order: -1;
    margin-bottom: 0.12rem;
  }

  .dar {
    margin-top: -115px;
  }

  .dar a {
    width: 2.90rem;
    height: 0.67rem;
    font-size: 0.18rem;
  }

  .dar a img {
    width: 1.50rem;
    left: -1.55rem;
  }

  .dar__podarok {
    width: 3rem;
    z-index: 2;
  }

  picture:nth-child(8) .dar__paralaks,
  picture:nth-child(15) .dar__paralaks {
    width: 2rem;
  }

  .popup__content {
    flex-direction: column;
    padding: 0.20rem;
    width: 5.00rem;
    min-height: 5.00rem;
  }

  .popup__content strong {
    text-align: center;
    margin-bottom: 0.35rem;
    font-size: 0.36rem;
  }

  .popup__content strong span {
    font-size: 0.14rem;
  }

  .popup__content img {
    width: 2.41rem;
  }
}

@media (max-width: 767px) {
  .header__inner div {
    flex-direction: column;
  }

  .header strong:not(:last-child) {
    margin-right: 0rem;
    margin-bottom: 0.04rem;
  }

  .dar {
    margin-top: -142px;
    padding-top: 166px;
  }

  .dar h1 {
    max-width: 2.80rem;
  }

  .dar a img {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: -0.88rem;
    left: -1.30rem;
  }

  .game__times {
    grid-template-columns: 1fr;
  }

  .game__time .game--little {
    top: auto;
    bottom: 0.15rem;
    left: 0.19rem;
    width: 0.36rem;
    height: 0.44rem;
  }

  .game__time .game--mediumsmall {
    top: 1.20rem;
    left: 0.09rem;
    width: 0.78rem;
    height: 0.68rem;
  }

  .game__time .game--medium {
    top: 0.18rem;
    left: 1.31rem;
    width: 0.98rem;
    height: 0.65rem;
  }

  .game__time .game--mediumlarge {
    top: 1.42rem;
    left: 1.22rem;
    width: 0.84rem;
    height: 0.78rem;
  }

  .game__time .game--big {
    top: 0.33rem;
    left: auto;
    right: 0.20rem;
    width: 1.39rem;
    height: 1.2rem;
  }

  .game__time .game--border img {
    position: absolute;
  }

  .game__time .game--border img.game--little {
    top: auto;
    bottom: -0.04rem;
    left: 0.05rem;
    width: 0.80rem;
    height: 0.80rem;
  }

  .game__time .game--border img.game--mediumsmall {
    top: 1.2rem;
    left: 0.16rem;
    width: 0.78rem;
    height: 0.68rem;
  }

  .game__time .game--border img.game--medium {
    top: 0.18rem;
    left: 0.70rem;
    width: 1rem;
    height: 0.91rem;
  }

  .game__time .game--border img.game--mediumlarge {
    top: 1.80rem;
    left: 0.80rem;
    width: 0.84rem;
    height: 0.78rem;
  }

  .game__time .game--border img.game--big {
    top: 0.23rem;
    left: auto;
    right: 0.49rem;
    width: 1.13rem;
    height: 1.14rem;
  }

  .game__time .game--border img.game--verybig {
    width: 1.8rem;
    height: 0.89rem;
  }

  .game__bottles strong {
    flex-direction: column;
    font-size: 0.17rem;
  }

  .game__prices strong {
    font-size: 0.12rem;
  }

  .dignaty__items {
    grid-template-columns: 1fr;
  }

  .dignaty__inner {
    grid-template-columns: 1fr;
  }

  .contacts {
    margin-bottom: 0.4rem;
  }

  .contacts__inner {
    grid-template-columns: 1fr;
    grid-row-gap: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .contacts__socialnetwork {
    grid-template-columns: 1fr;
    grid-row-gap: 0.15rem;
  }
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}

@media (max-width: 600px) {
  .title h1 {
    font-size: 0.24rem;
  }

  .dar h1 {
    max-width: 1.50rem;
  }

  .dar a img {
    top: -0.90rem;
    left: -0.20rem;
    width: auto;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  .dar__podarok {
    width: auto;
  }

  picture:nth-child(8) .dar__paralaks,
  picture:nth-child(15) .dar__paralaks {
    width: auto;
  }
}

@media (max-width: 500px) {
  .podarok {
    margin-bottom: 0.25rem;
  }

  .title h2 {
    font-size: 0.24rem;
    line-height: 0.33rem;
    margin-bottom: 0.05rem;
  }

  .popup__content {
    min-height: 4rem;
  }

  .popup__close {
    top: 0.20rem;
    right: 0.20rem;
  }

  .header__logo {
    margin-right: 0.43rem;
  }

  .header strong {
    font-size: 0.10rem;
  }

  .header strong a {
    font-size: 0.12rem;
    line-height: 0.20rem;
  }

  .header__inner {
    margin-top: 0.14rem;
  }

  .dar {
    margin-bottom: 0.70rem;
  }

  .podarok p {
    font-size: 0.14rem;
    margin-bottom: 0.14rem;
    line-height: 0.30rem;
  }

  .podarok__description {
    grid-row-gap: 15px;
  }

  .podarok__description div {
    padding: 0.20rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.14rem;
    line-height: 0.18rem;
  }

  .podarok__description div img {
    margin-right: 0px;
    margin-bottom: 0.10rem;
  }

  .game p {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.03em;
    margin-bottom: 25px;
  }

  .game {
    margin-bottom: 0.40rem;
  }

  .game .select__trigger span,
  .game .select__list label {
    font-size: 0.14rem;
  }

  .game > img {
    display: none;
  }

  .game__time strong {
    font-size: 0.17rem;
  }

  .game__time > div {
    height: 3.10rem;
  }

  .game__time .game--little {
    top: auto;
    bottom: 0.15rem;
    left: 0.19rem;
    width: 0.36rem;
    height: 0.44rem;
  }

  .game__time .game--mediumsmall {
    top: 1.67rem;
    left: 0.09rem;
    width: 0.78rem;
    height: 0.68rem;
  }

  .game__time .game--medium {
    top: 0.18rem;
    left: 0.19rem;
    width: 0.91rem;
    height: 0.65rem;
  }

  .game__time .game--mediumlarge {
    top: 0.89rem;
    left: 0.95rem;
    width: 0.84rem;
    height: 0.78rem;
  }

  .game__time .game--big {
    top: 0.33rem;
    left: auto;
    right: 0.20rem;
    width: 1.29rem;
    height: 1.14rem;
  }

  .game__time .game--border img {
    position: absolute;
  }

  .game__time .game--border img.game--little {
    top: auto;
    bottom: -0.04rem;
    left: 0.09rem;
  }

  .game__time .game--border img.game--mediumsmall {
    top: 0.62rem;
    left: 0.09rem;
  }

  .game__time .game--border img.game--medium {
    top: 0.05rem;
    left: 0.69rem;
  }

  .game__time .game--border img.game--mediumlarge {
    top: auto;
    left: 0.79rem;
    bottom: 0.21rem;
  }

  .game__time .game--border img.game--big {
    top: 0.33rem;
    left: auto;
    right: 0.20rem;
  }

  .game__bottles {
    margin-bottom: 0.17rem;
  }

  .game__bottles strong {
    font-size: 0.14rem;
  }

  .game__times {
    margin-bottom: 0.15rem;
  }

  .game__prices strong:nth-child(2),
  .game__prices strong:nth-child(3),
  .game__prices strong:nth-child(4),
  .game__prices strong:nth-child(5) {
    display: none;
  }

  .game .noUi-connects:before {
    display: none;
  }

  .game .noUi-horizontal {
    height: 0.07rem;
  }

  .game .noUi-horizontal .noUi-handle {
    width: 0.25rem;
    height: 0.25rem;
    border: 0.05rem solid #ff7d56;
    top: -0.10rem;
  }

  .game__prices {
    margin-top: 0.08rem;
    margin-bottom: 0.18rem;
  }

  .game__donation input {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 0.15rem;
    height: 0.70rem;
    font-size: 0.14rem;
  }

  .game__donation button {
    width: 100%;
    height: 0.70rem;
    font-size: 0.18rem;
  }

  .aboutcompany > img {
    display: none;
  }

  .footer > img {
    display: none;
  }

  .accardion > img {
    display: none;
  }

  .accardion {
    margin-bottom: 0.15rem;
  }

  .accardion strong {
    width: 2.15rem;
    font-size: 0.16rem;
    line-height: 0.20rem;
  }

  .accardion p {
    font-size: 0.14rem;
    line-height: 0.18rem;
  }

  .accardion p.accardion__open.open {
    margin-top: 0.12rem;
  }

  .accardion__question:not(:last-child) {
    margin-bottom: 0.15rem;
  }

  .accardion__question {
    padding: 0.15rem 0.1rem;
  }

  .accardion__plusminus {
    top: 0.15rem;
    right: 0.1rem;
  }

  .aboutcompany {
    margin-bottom: 0.30rem;
  }

  .aboutcompany strong {
    font-size: 0.24rem;
    margin-bottom: 0.12rem;
  }

  .aboutcompany p {
    font-size: 0.14rem;
    line-height: 0.22rem;
  }

  .dignaty {
    margin-bottom: 0.45rem;
  }

  .dignaty h2 {
    margin-bottom: 0.3rem;
  }

  .dignaty p {
    font-size: 0.18rem;
    line-height: 0.24rem;
  }

  .dignaty__items {
    grid-row-gap: 15px;
    margin-bottom: 0.28rem;
  }

  .dignaty__item {
    min-height: 0.47rem;
    padding: 0.2rem;
    font-size: 0.24rem;
  }

  .dignaty__item span {
    font-size: 0.18rem;
  }

  .dignaty__inner {
    grid-row-gap: 20px;
  }

  .dignaty p {
    margin-bottom: 0.33rem;
  }

  .dignaty__inner div {
    min-height: 1.42rem;
    padding: 0.1rem;
    font-size: 0.18rem;
    line-height: 0.24rem;
  }

  .contacts .contacts__info svg {
    margin-bottom: 0.05rem;
  }

  .contacts .contacts__info span {
    font-size: 0.14rem;
    margin-bottom: 0.05rem;
  }

  .contacts .contacts__info strong {
    font-size: 0.18rem;
  }

  .footer__inner .footer__inner-logo {
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-bottom: 0.12rem;
  }

  .footer strong {
    text-align: center;
  }

  .footer strong a {
    font-size: 0.14rem;
  }

  .footer strong:not(:last-child) {
    margin-right: 0.3rem;
  }

  .footer__logo {
    margin-right: 0px;
  }
}

@media (max-width: 440px) {
  .game__time .game--mediumsmall {
    top: 1.19rem;
    width: 0.60rem;
    height: 0.50rem;
  }

  .game__time .game--mediumlarge {
    left: 0.69rem;
  }

  .game__time .game--verybig {
    width: 1.95rem;
    height: 0.92rem;
  }

  .game__time .game--border img.game--mediumlarge {
    top: 1.55rem;
    left: 0.08rem;
    width: 0.84rem;
    height: 0.78rem;
  }

  .game__time .game--border img.game--big {
    right: 0.02rem;
  }

  .accardion strong {
    width: 2.03rem;
  }
}

@media (max-width: 320px) {
  .dar {
    padding-top: 182px;
    padding-bottom: 281px;
  }
}

@media (pointer: fine) {
  .link:hover {
    color: #000;
  }

  .btn--primary:hover {
    background: #585858;
  }

  .btn--circle:hover {
    background: #585858;
  }

  .btn--outline:hover {
    color: #fff;
    background: #000;
  }

  .btn--outline:hover .icon {
    color: #fff;
  }

  .modal__close:hover .icon {
    color: #000;
  }

  .modal__close:active .icon {
    color: #000;
  }
}