@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

@import url(https://fonts.googleapis.com/css?family=Onest:100,200,300,regular,500,600,700,800,900);

@charset "UTF-8";

:root {
  --gray: #202329;
  --black: #000;
  --green: #b2f30c;
  --white: #fff;
  --light-gray: #c3c3c3;
  --blue: #0037ff;
  --ultra-light-gray: #f5f5f6;
  --red: #ff0300;
  --green-avto: #3fc57a;
  --gray-input: #343434;
  --font-family: "Montserrat", sans-serif;
  --second-family: "Onest", sans-serif;
  --margin-section: 104px;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

html,
body {
  height: 100%;
  min-width: 360px;
  scroll-behavior: smooth;
}

body {
  color: #fff;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat", sans-serif;
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
  line-height: 1.5;
}

a {
  color: inherit;
  cursor: pointer;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-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;
}

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

body {
  background: #000;
  font-weight: normal;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

body.lock {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

.wrapper_overflow-visible {
  overflow: visible;
}

.no-webp .wrapper.enter-bg{
  background-image: url("../img/enter-bg.png"); }

.wrapper.enter-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

[class$=__container] {
  max-width: 1680px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0px 40px;
}

.page.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*Формы*/

/*кнопки*/

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  color: #000;
  cursor: pointer;
  border-radius: 40px;
}

.button__button--black {
  color: var(--white);
  background: var(--black);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.button__button--white {
  color: var(--black);
  background: var(--white);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.button__button--green {
  background: var(--green);
  color: var(--black);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.button__button--blue {
  background: var(--blue);
  color: var(--white);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.button__button--blue svg {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.button__button--blue svg g path {
  fill: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.button__button--grey {
  background: var(--light-gray);
  color: var(--black);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/*кнопки*/

.checkbox {
  position: relative;
  margin-left: auto;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox__label {
  cursor: pointer;
}

.checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.checkbox__checkbox--triger {
  width: 36px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.checkbox__checkbox--triger .checkbox__input:checked + .checkbox__label:before {
  background: orange;
}

.checkbox__checkbox--triger .checkbox__input:checked + .checkbox__label:after {
  left: 19px;
}

.checkbox__checkbox--triger .checkbox__label {
  width: 36px;
  height: 20px;
}

.checkbox__checkbox--triger .checkbox__label:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ccc;
  border-radius: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--triger .checkbox__label::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 1px;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%278%27 cy=%278.00009%27 r=%277.64706%27 fill=%27white%27 /%3E%3C/svg%3E");
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--triger.decore .checkbox__input {
  position: absolute;
  width: 44px;
  height: 24px;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.checkbox__checkbox--triger.decore .checkbox__input:focus + .checkbox__label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--triger.decore .checkbox__input:checked + .checkbox__label:before {
  background: #000;
}

.checkbox__checkbox--triger.decore .checkbox__input:checked + .checkbox__label:after {
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%2711.5%27 fill=%27white%27 stroke=%27%23CCCCCC%27 /%3E%3C/svg%3E");
  left: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--triger.decore .checkbox__label:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #cccccc;
  border-radius: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--triger.decore .checkbox__label::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%2711.5%27 fill=%27white%27 stroke=%27%23CCCCCC%27 /%3E%3C/svg%3E");
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.checkbox__checkbox--checked .checkbox__input:focus + .checkbox__label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--checked .checkbox__input:checked + .checkbox__label:before {
  content: "";
  font-size: 8px;
  font-weight: 900;
  color: #fff;
  padding: 8px 5px 5px 6px;
}

.checkbox__checkbox--checked .checkbox__input:checked + .checkbox__label::after {
  content: "";
  display: block;
}

.checkbox__checkbox--checked .checkbox__label {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.checkbox__checkbox--checked .checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.5px;
          flex: 0 0 16.5px;
  width: 16.5px;
  height: 16.5px;
  border: 2px solid var(--green);
  background: var(--black);
  border-radius: 4px;
}

.checkbox__checkbox--checked .checkbox__label::after {
  position: absolute;
  left: 3px;
  top: 4px;
  content: "";
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2712%27 height=%278%27 viewBox=%270 0 12 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10.5123 1.10706L4.72528 6.89305L1.48828 3.66106%27 stroke=%27%23B2F30C%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 /%3E%3C/svg%3E");
  padding-top: 5px;
  display: none;
}

.checkbox__checkbox--checked .checkbox__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.checkbox__checkbox--checked .checkbox__text span {
  display: block;
}

.checkbox__checkbox--checked.grey .checkbox__text {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.03em;
  color: var(--light-gray);
  line-height: 150%;
}

.checkbox__checkbox--checked.grey .checkbox__label {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.checkbox__checkbox--checked.grey .checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.5px;
          flex: 0 0 16.5px;
  width: 16.5px;
  height: 16.5px;
  border: none;
  background: #f5f5f6;
  border-radius: 4px;
}

.checkbox__checkbox--checked.grey .checkbox__label::after {
  position: absolute;
  left: 3px;
  top: 4px;
  content: "";
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2712%27 height=%278%27 viewBox=%270 0 12 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M4.39608 8L0.666016 4.2079L1.59853 3.25988L4.39608 6.10395L10.4002 0L11.3327 0.948025L4.39608 8Z%27 fill=%27%23E0E1E5%27 /%3E%3C/svg%3E");
  padding-top: 5px;
  display: none;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.options__item {
  position: relative;
  cursor: pointer;
}

.options__item:not(:last-child) {
  margin-bottom: 0.3125em;
}

.options__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.options__input:checked + .options__label:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.options__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  gap: 10px;
}

.options__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  border-radius: 50%;
  border: 1px solid var(--light-gray);
}

.options__label:after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--green);
  position: absolute;
  left: 5px;
  top: 5px;
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: 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;
}

/* Wrapper for all connect elements.
  */

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -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;
}

/* Offset direction
  */

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

/* Give origins 0 height/width so they don't interfere with clicking the
  * connect elements.
  */

.noUi-vertical .noUi-origin {
  top: -100%;
  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%;
  background: var(--green);
  border-radius: 50%;
}

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

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

/* Slider size and handle placement;
  */

.noUi-horizontal {
  height: 0.125rem;
  background-color: #fff;
}

.noUi-horizontal .noUi-handle {
  width: 1.125rem;
  height: 1.125rem;
  right: -0.5625rem;
  top: -0.5625rem;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0px 4px 20px rgba(232, 170, 49, 0.3);
          box-shadow: 0px 4px 20px rgba(232, 170, 49, 0.3);
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
  * Giving the connect element a border radius causes issues with using transform: scale
  */

.noUi-target {
  background: var(--gray);
  border-radius: 20px;
  height: 3px;
}

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

.noUi-connect {
  background: var(--green) !important;
}

/* Handles and cursors;
  */

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

/* Handle stripes;
  */

/* Disabled state;
  */

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

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

/* Base;
  *
  */

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

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

/* Values;
  *
  */

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

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

/* Markings;
  *
  */

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

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

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

/* Horizontal layout;
  *
  */

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

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

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

/* Vertical layout;
  *
  */

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

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

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

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

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

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

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  width: 100%;
  max-width: 570px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.main-popup {
  position: relative;
  border-radius: 30px;
  padding: 48px 60px;
  width: 100%;
  min-height: 344px;
  -webkit-box-shadow: 0 4px 10px 0 rgba(124, 112, 150, 0.12);
          box-shadow: 0 4px 10px 0 rgba(124, 112, 150, 0.12);
  background: var(--white);
}

.main-popup__colse {
  position: absolute;
  width: 36px;
  height: 36px;
  top: -10px;
  right: -10px;
}

.main-popup__title {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: var(--black);
  margin: 0px 0px 40px 0px;
}

.main-popup__text {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--black);
  margin: 0px 0px 40px 0px;
}

.main-popup__buttons {
  max-width: 234px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-popup__button {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--black);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 12px;
  padding: 12px 40px;
  max-width: 103px;
  min-height: 48px;
}

.main-popup__button.gray {
  background: var(--light-gray);
}

.main-popup__button.green {
  background: var(--green);
}

.spollers {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.spollers.buttun-sorting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  max-width: 300px;
  width: 100%;
  margin-left: auto;
}

.spollers.buttun-sorting .spollers__title {
  padding: 12px 20px;
  font-size: 16px;
}

.spollers.buttun-sorting .spollers-list {
  top: 53px;
}

.spollers.buttun-sorting .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--light-gray);
}

.spollers__item {
  position: relative;
  width: 100%;
}

.spollers__title {
  width: 100%;
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 16px 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: default;
  text-align: left;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: var(--light-gray);
}

.spollers__title .arrow {
  margin-right: 19px;
}

.spollers__title._spoller-active {
  border-bottom: none;
  border-radius: 16px 16px 0px 0px;
}

.spollers__title._spoller-active .arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.spollers-list {
  position: absolute !important;
  top: 60px;
  width: 100%;
  height: 315px;
  overflow: auto;
  padding-right: 15px;
  border: 1px solid var(--light-gray);
  border-top: none;
  border-radius: 0px 0px 16px 16px;
  padding: 0px 40px 0px 20px;
  background-color: var(--black);
  z-index: 10;
}

.spollers-list::-webkit-scrollbar {
  display: none;
}

.spollers-list.radio {
  padding: 0px 20px;
  height: 248px;
}

.spollers-list.radio .spollers-list__item {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
}

.spollers-list.radio .spollers-list__text {
  font-size: 16px;
  color: var(--light-gray);
}

.spollers-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  border-bottom: 1px solid #202329;
  padding: 12px 0px;
}

.spollers-list__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}

.spollers-faq {
  width: 100%;
}

.spollers-faq__item {
  background: var(--gray);
  border-radius: 16px;
  padding: 16px 40px;
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 16px;
}

.spollers-faq__title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.spollers-faq__title .text {
  font-weight: 500;
  font-size: 24px;
  text-align: left;
  color: var(--white);
}

.spollers-faq__title .open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2750%27 height=%2750%27 viewBox=%270 0 50 50%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2749%27 height=%2749%27 rx=%2724.5%27 stroke=%27%23C3C3C3%27 /%3E%3Cpath d=%27M25 34L25 16%27 stroke=%27white%27 stroke-linecap=%27round%27 /%3E%3Cpath d=%27M16 25H34%27 stroke=%27white%27 stroke-linecap=%27round%27 /%3E%3C/svg%3E");
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.spollers-faq__title._spoller-active .open {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-image: url("data:image/svg+xml,%3Csvg width=%2750%27 height=%2750%27 viewBox=%270 0 50 50%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2749%27 height=%2749%27 rx=%2724.5%27 stroke=%27%23C3C3C3%27 /%3E%3Cpath d=%27M31.3638 31.364L18.6358 18.6361%27 stroke=%27white%27 stroke-linecap=%27round%27 /%3E%3Cpath d=%27M18.6357 31.364L31.3637 18.6361%27 stroke=%27white%27 stroke-linecap=%27round%27 /%3E%3C/svg%3E");
}

.spollers-faq__list {
  padding: 40px 0px;
}

.spollers-faq__list p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
}

.spollers-faq__list li {
  position: relative;
  list-style-type: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  padding-left: 30px;
}

.spollers-faq__list li:not(:last-child) {
  margin-bottom: 12px;
}

.spollers-faq__list li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
  background-color: #d9d9d9;
  border-radius: 50%;
}

.tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tabs__title {
  border: 1px solid #eee;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.3125rem;
}

.tabs__title._tab-active {
  border: 1px solid #000;
}

.tabs-faq__wrap-nav {
  width: 100%;
  max-width: 670px;
}

.tabs-faq__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  min-height: 432px;
  background: var(--gray);
  row-gap: 16px;
}

.tabs-faq__title {
  border-radius: 16px;
  padding: 24px 40px;
  width: 100%;
  min-height: 76px;
  font-weight: 500;
  font-size: 24px;
  line-height: 117%;
  text-align: center;
  color: var(--black);
  background: var(--white);
}

.tabs-faq__title._tab-active {
  background: var(--green);
}

.tabs-faq__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.tabs-faq__content {
  width: 100%;
}

.tabs-quests__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.tabs-quests__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 12px 24px;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  margin: 0px 0px 40px 0px;
}

.tabs-quests__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--white);
  border-radius: 16px;
  padding: 8px 52px;
  min-height: 44px;
  margin: 0px 0px 24px 0px;
}

.tabs-quests__title._tab-active {
  background: var(--green);
  border: 1px solid transparent;
  color: var(--black);
}

.tabs-quests__body {
  max-width: 1250px;
  width: 100%;
}

.tabs-quests__body.quests {
  border-radius: 40px;
  padding: 32px;
  background: var(--gray);
  margin-bottom: 40px;
}

.tabs-quests__row {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
}

.tabs-quests__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  padding: 150px 0px;
}

.tabs-quests__empty-text {
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  text-align: center;
  color: #808080;
}

.tabs-quests__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 40px;
  padding: 20px 56px;
  max-width: 272px;
  min-height: 64px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--black);
  background: var(--white);
}

.tabs-quests__button-black {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  border-radius: 20px;
  padding: 24px 80px;
  min-height: 76px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  background: var(--black);
  margin: 0 auto;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

h1,
.h1 {
  font-family: var(--second-family);
  font-weight: 900;
  font-size: 80px;
  line-height: 110%;
  text-transform: uppercase;
  color: #fff;
}

@supports (font-size: clamp( 32px , 19.6571428571px  +  3.4285714286vw , 80px )) {
  h1,
  .h1 {
    font-size: clamp( 32px , 19.6571428571px  +  3.4285714286vw , 80px );
  }
}

@supports not (font-size: clamp( 32px , 19.6571428571px  +  3.4285714286vw , 80px )) {
  h1,
  .h1 {
    font-size: calc(
			32px + 3px * (100vw - 360) / 87.5px
		);
  }
}

h2,
.h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 113%;
  color: var(--white);
}

@supports (font-size: clamp( 24px , 14.7428571429px  +  2.5714285714vw , 60px )) {
  h2,
  .h2 {
    font-size: clamp( 24px , 14.7428571429px  +  2.5714285714vw , 60px );
  }
}

@supports not (font-size: clamp( 24px , 14.7428571429px  +  2.5714285714vw , 60px )) {
  h2,
  .h2 {
    font-size: calc(
			24px + 2.25px * (100vw - 360) / 87.5px
		);
  }
}

h3,
.h3 {
  font-family: var(--second-family);
  font-weight: 700;
  line-height: 120%;
  color: var(--white);
}

@supports (font-size: clamp( 24px , 19.8857142857px  +  1.1428571429vw , 40px )) {
  h3,
  .h3 {
    font-size: clamp( 24px , 19.8857142857px  +  1.1428571429vw , 40px );
  }
}

@supports not (font-size: clamp( 24px , 19.8857142857px  +  1.1428571429vw , 40px )) {
  h3,
  .h3 {
    font-size: calc(
			24px + 1px * (100vw - 360) / 87.5px
		);
  }
}

.main-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 24px;
  padding: 16px;
  background: var(--gray);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  min-height: 600px;
  max-width: 390px;
}

.main-card.catalog-open {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-card__image {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0px 0px 20px 0px;
}

.main-card__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-card__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 16px;
  bottom: 16px;
  border-radius: 8px;
  width: 58px;
  height: 48px;
  font-weight: 600;
  line-height: 117%;
  color: var(--gray);
  background: var(--white);
  z-index: 2;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main-card__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 8px;
  width: 120px;
  height: 48px;
  font-weight: 600;
  line-height: 117%;
  color: var(--gray);
  background: var(--white);
  z-index: 2;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@supports (font-size: clamp( 16px , 13.9428571429px  +  0.5714285714vw , 24px )) {
  .main-card__rating,.main-card__price {
    font-size: clamp( 16px , 13.9428571429px  +  0.5714285714vw , 24px );
  }
}

@supports not (font-size: clamp( 16px , 13.9428571429px  +  0.5714285714vw , 24px )) {
  .main-card__rating, .main-card__price {
    font-size: calc(
			16px + 0.5px * (100vw - 360) / 87.5px
		);
  }
}

.main-card__like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  border-radius: 8px;
  width: 58px;
  height: 48px;
  color: var(--gray);
  background: var(--white);
  z-index: 2;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main-card__like._active {
  background: var(--green);
}

.main-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin: 0px 0px 24px 0px;
}

.main-card__body {
  margin: 0px 0px 24px 0px;
}

.main-card__title {
  font-weight: 600;
  font-size: 24px;
  margin: 0px 0px 12px 0px;
}

@supports (font-size: clamp( 20px , 18.9714285714px  +  0.2857142857vw , 24px )) {
  .main-card__title {
    font-size: clamp( 20px , 18.9714285714px  +  0.2857142857vw , 24px );
  }
}

@supports not (font-size: clamp( 20px , 18.9714285714px  +  0.2857142857vw , 24px )) {
  .main-card__title {
    font-size: calc(
			20px + 0.25px * (100vw - 360) / 87.5px
		);
  }
}

.main-card__description {
  font-size: 16px;
  line-height: 150%;
}

@supports (font-size: clamp( 14px , 13.4857142857px  +  0.1428571429vw , 16px )) {
  .main-card__description {
    font-size: clamp( 14px , 13.4857142857px  +  0.1428571429vw , 16px );
  }
}

@supports not (font-size: clamp( 14px , 13.4857142857px  +  0.1428571429vw , 16px )) {
  .main-card__description {
    font-size: calc(
			14px + 0.125px * (100vw - 360) / 87.5px
		);
  }
}

.main-card__link {
  width: 100%;
  font-weight: 600;
  margin-top: auto;
  min-height: 48px;
}

@supports (font-size: clamp( 14px , 11.4285714286px  +  0.7142857143vw , 24px )) {
  .main-card__link {
    font-size: clamp( 14px , 11.4285714286px  +  0.7142857143vw , 24px );
  }
}

@supports not (font-size: clamp( 14px , 11.4285714286px  +  0.7142857143vw , 24px )) {
  .main-card__link {
    font-size: calc(
			14px + 0.625px * (100vw - 360) / 87.5px
		);
  }
}

.main-card__button-catalog {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 16px;
  padding: 12px 56px;
  max-height: 48px;
  background: var(--green);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--black);
}

.main-card__button-catalog .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-card__wheel {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.item-info__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.item-info__icon svg rect {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-info__block-text-1 {
  font-weight: 500;
  font-size: 16px;
  margin: 0px 0px 5px 0px;
}

@supports (font-size: clamp( 14px , 13.4857142857px  +  0.1428571429vw , 16px )) {
  .item-info__block-text-1 {
    font-size: clamp( 14px , 13.4857142857px  +  0.1428571429vw , 16px );
  }
}

@supports not (font-size: clamp( 14px , 13.4857142857px  +  0.1428571429vw , 16px )) {
  .item-info__block-text-1 {
    font-size: calc(
			14px + 0.125px * (100vw - 360) / 87.5px
		);
  }
}

.item-info__block-text-2 {
  font-weight: 600;
  font-size: 24px;
}

@supports (font-size: clamp( 20px , 18.9714285714px  +  0.2857142857vw , 24px )) {
  .item-info__block-text-2 {
    font-size: clamp( 20px , 18.9714285714px  +  0.2857142857vw , 24px );
  }
}

@supports not (font-size: clamp( 20px , 18.9714285714px  +  0.2857142857vw , 24px )) {
  .item-info__block-text-2 {
    font-size: calc(
			20px + 0.25px * (100vw - 360) / 87.5px
		);
  }
}

.header {
  border-radius: 40px;
  padding: 31px 0px;
  width: 100%;
  margin: 0px 0px 40px 0px;
}

.header::after {
  content: "";
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 80px;
  background: var(--black);
  z-index: 100;
  display: none;
}

.header.catalog {
  position: absolute;
  top: 0px;
  z-index: 100;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.header__logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__user {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__user-link {
  padding: 24px 56px;
  min-height: 64px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--black);
}

.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--white);
  border-radius: 41px;
  width: 38px;
  height: 38px;
  display: none;
}

.menu {
  border-radius: 30px;
  padding: 20px 16px;
  min-width: 577px;
  background: var(--gray);
  overflow: auto;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu__link {
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 30px;
  line-height: 150%;
  color: var(--white);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.icon-menu {
  display: none;
}

.footer-top {
  background-color: var(--black);
  margin: 0px 0px 20px 0px;
}

.footer-top__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-top__logo {
  width: 173px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-top__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.menu-footer-top {
  border-radius: 30px;
  padding: 20px 16px;
  min-width: 577px;
}

.menu-footer-top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu-footer-top ul li a {
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 30px;
  line-height: 150%;
  background: var(--gray);
  color: var(--white);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer-bottom {
  width: 100%;
  background: var(--gray);
  padding: 16px 0px;
}

.footer-bottom__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-bottom__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}

@supports ((-moz-column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px )) or (column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px ))) {
  .footer-bottom__links {
    -webkit-column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px );
       -moz-column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px );
            column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px );
  }
}

@supports not ((-moz-column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px )) or (column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px ))) {
  .footer-bottom__links {
    -webkit-column-gap: calc(
			20px + 3.75px * (100vw - 1200px) / 45px
		);
       -moz-column-gap: calc(
			20px + 3.75px * (100vw - 1200px) / 45px
		);
            column-gap: calc(
			20px + 3.75px * (100vw - 1200px) / 45px
		);
  }
}

.footer-bottom__links-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@supports ((-moz-column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px )) or (column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px ))) {
  .footer-bottom__links-box {
    -webkit-column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px );
       -moz-column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px );
            column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px );
  }
}

@supports not ((-moz-column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px )) or (column-gap: clamp( 20px , -80px  +  8.3333333333vw , 80px ))) {
  .footer-bottom__links-box {
    -webkit-column-gap: calc(
			20px + 3.75px * (100vw - 1200px) / 45px
		);
       -moz-column-gap: calc(
			20px + 3.75px * (100vw - 1200px) / 45px
		);
            column-gap: calc(
			20px + 3.75px * (100vw - 1200px) / 45px
		);
  }
}

.footer-bottom__link {
  font-weight: 500;
  font-size: 10px;
  line-height: 180%;
  color: var(--light-gray);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer-bottom__messages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.footer-bottom__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  min-width: 135px;
  min-height: 40px;
  background: var(--black);
}

.tul-bar {
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
  background: var(--gray);
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 100;
  display: none;
}

.tul-bar._up {
  bottom: -100%;
}

.tul-bar__container {
  width: 100%;
}

.tul-bar__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tul-bar__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
  font-size: 10px;
  line-height: 180%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--white);
}

.tul-bar__link span {
  display: block;
}

.tul-bar__link._active {
  color: var(--green);
}

.tul-bar__link._active svg path {
  fill: var(--green);
}

.tul-bar__icon svg path {
  fill: var(--white);
}

.breadcrumbs {
  padding: 30px 0px 40px 0px;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  display: none;
}

.breadcrumbs__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: var(--light-gray);
}

.breadcrumbs__link {
  color: var(--light-gray);
  display: block;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.breadcrumbs__link::after {
  content: "/";
  margin: 0px 5px;
}

.breadcrumbs__current {
  color: var(--green);
}

.section-filter {
  margin-bottom: 104px;
}

.section-filter__title {
  margin: 0px 0px 60px 0px;
}

.section-filter__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 520px;
}

.section-filter__bg img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 520px;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-filter__wrap-title {
  padding: 320px 0px 220px 0px;
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.section-filter__text {
  font-family: var(--second-family);
  color: var(--green);
  text-align: center;
}

@supports (font-size: clamp( 20px , 9.7142857143px  +  2.8571428571vw , 60px )) {
  .section-filter__text {
    font-size: clamp( 20px , 9.7142857143px  +  2.8571428571vw , 60px );
  }
}

@supports not (font-size: clamp( 20px , 9.7142857143px  +  2.8571428571vw , 60px )) {
  .section-filter__text {
    font-size: calc(
			20px + 2.5px * (100vw - 360) / 87.5px
		);
  }
}

.filter {
  position: relative;
  margin: 0px 0px 24px 0px;
  background: var(--black);
}

.filter__header {
  margin: 0px 0px 40px 0px;
  display: none;
}

.filter__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 117%;
  color: var(--light-gray);
}

.filter__close {
  position: absolute;
  right: 40px;
  top: 40px;
}

.filter__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  margin-top: 40px;
  display: none;
}

.filter__buttons-desktop {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}

.filter__buttons-desktop .filter__button {
  padding: 12px 56px;
}

.filter__button {
  font-weight: 500;
  font-size: 14px;
  min-height: 48px;
  color: var(--black);
}

.filter__button-reset {
  border: 1px solid var(--white);
  border-radius: 16px;
  padding: 12px 56px;
  min-height: 48px;
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  color: var(--white);
}

.price-filter__inpunts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 63px;
     -moz-column-gap: 63px;
          column-gap: 63px;
  margin: 0px 0px 40px 0px;
}

.price-filter__input {
  width: 100%;
  height: 100%;
  border: 1px solid var(--gray-input);
  border-radius: 12px;
  padding: 8px 40px;
  background-color: transparent;
  font-size: 14px;
  line-height: 157%;
  color: var(--light-gray);
}

.section-filter-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  margin: 0px 0px 12px 0px;
}

.section-filter-buttons__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid var(--gray);
  border-radius: 40px;
  padding: 12px 24px;
  min-height: 49px;
  background: var(--gray);
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.section-filter-buttons__button.sorting {
  border-radius: 32px;
  padding: 12px;
  width: 48px;
  height: 48px;
  background: var(--white);
  display: none;
}

.section-filter-buttons__button.all-filters {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  background: var(--white);
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  display: none;
}

.section-filter-buttons__button.all-filters .text {
  color: var(--black);
}

.section-filter-buttons__button .text {
  font-size: 16px;
  color: var(--white);
}

.ui {
  padding: 100px 0px;
}

.ui__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.ui__title {
  font-size: 2.625rem;
  text-align: center;
  margin: 0px 0px 50px 0px;
}

.ui__sub-title {
  font-size: 2rem;
  margin: 0px 0px 20px 0px;
}

.you-spoiled {
  margin: 0px 0px 100px 0px;
}

.you-spoiled__title {
  margin: 0px 0px 60px 0px;
}

.spoiled__slider {
  overflow: hidden;
}

.spoiled__wrapper {
  display: -ms-grid !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr)) !important;
  gap: 40px !important;
}

.spoiled__slide {
  height: auto !important;
}

.spoiled__box-button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  margin: 32px 0px 0px 0px;
  display: none;
}

.spoiled-button-prev svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.spoiled-button-next svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.description-quests {
  margin-bottom: 104px;
}

.description-quests.quests {
  margin: 0px 0px 40px 0px;
}

.description-quests.quests .description-quests__wrap {
  background-color: var(--black);
}

.description-quests__wrap {
  border-radius: 32px;
  background: var(--gray);
  padding: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.description-quests__block1 {
  width: 50%;
}

.description-quests__title {
  margin: 0px 0px 60px 0px;
}

.description-quests__text p {
  font-weight: 500;
  font-size: 24px;
  margin: 0px 0px 24px 0px;
}

.description-quests__text-1 p {
  font-size: 16px;
  line-height: 150%;
  color: var(--light-gray);
}

.description-quests__text-1 p:not(:last-child) {
  margin-bottom: 16px;
}

.description-quests__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  --progress: 50%;
  --size: 120px;
  --bar-width: 20px;
  font-size: 20px;
  width: var(--size);
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: conic-gradient(var(--green), var(--progress), var(--black) 0%);
}

.progress-bar::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: attr(data-value);
  background-color: var(--gray);
  width: calc(100% - var(--bar-width));
  aspect-ratio: 1/1;
  border-radius: inherit;
  font-weight: 700;
  font-size: 32px;
}

.progress-bar-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
}

.progress-bar-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 117%;
  text-align: center;
  color: var(--white);
}

.velovesta {
  margin-bottom: 104px;
}

.velovesta__title {
  margin: 0px 0px 60px 0px;
}

.velovesta-slider__slider {
  overflow: hidden;
  position: relative;
}

.velovesta-slider__slide {
  border-radius: 40px;
  overflow: hidden;
  background-color: var(--black);
}

.velovesta-slider__slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.velovesta-slider-button-prev {
  position: absolute;
  z-index: 2;
  width: 75px;
  height: 75px;
  top: 45%;
  left: 32px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.velovesta-slider-button-next {
  position: absolute;
  z-index: 2;
  width: 75px;
  height: 75px;
  top: 45%;
  right: 32px;
}

.helpers {
  margin-bottom: 104px;
}

.helpers.quests {
  margin: 0px 0px 40px 0px;
}

.helpers.quests .helpers-slider__slide {
  width: 281px !important;
  height: 366px !important;
  margin-right: 20px;
  border-radius: 24px;
}

.helpers__title {
  margin: 0px 0px 60px 0px;
}

.helpers-slider__slider {
  overflow: hidden;
}

.helpers-slider__slide {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  width: 390px !important;
  height: 508px !important;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  margin-right: 40px;
}

.helpers-slider-item {
  width: 100%;
}

.helpers-slider-item__blure {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.helpers-slider-item__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.helpers-slider-item__img img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.helpers-slider-item__content {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 290px 45px 0px 45px;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.helpers-slider-item__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  margin: 0px 0px 24px 0px;
}

.helpers-slider-item__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}

.first-section {
  margin-bottom: 104px;
}

.first-section.quests {
  margin: 0px 0px 40px 0px;
}

.first-section.quests .first-section__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 113%;
  color: var(--white);
}

.first-section.quests .first-section-row-1-item-1 {
  background-color: var(--black);
}

.first-section.quests .first-section-row-2-item-2 {
  background-color: var(--black);
}

.first-section.quests .first-section-row-1-item-1 {
  min-width: 219px;
}

.first-section.quests .first-section-row-1-item-2 {
  min-width: 219px;
}

.first-section.quests .first-section-row-2-item-1 {
  min-width: 219px;
}

.first-section.quests .first-section-row-2-item-2 {
  min-width: 219px;
}

.first-section.quests .first-section-row-1-item-1__title {
  font-weight: 600;
  font-size: 24px;
  margin: 0px 0px 30px 0px;
}

.first-section.quests .first-section-row-1-item-1__text span:nth-child(1) {
  font-weight: 700;
  font-size: 60px;
}

.first-section.quests .first-section-row-1-item-1__text span:nth-child(2) {
  font-size: 32px;
}

.first-section.quests .first-section-row-1-item-2__title {
  font-size: 24px;
  margin: 0px 0px 30px 0px;
}

.first-section.quests .first-section-row-1-item-2__text span:nth-child(1) {
  font-size: 80px;
}

.first-section.quests .first-section-row-1-item-2__text span:nth-child(2) {
  font-weight: 600;
  font-size: 24px;
}

.first-section.quests .first-section-row-2-item-1__header {
  margin: 0px 0px 11px 0px;
}

.first-section.quests .first-section-row-2-item-1__header svg {
  width: 171px;
  height: 95px;
}

.first-section.quests .first-section-row-2-item-2__text-1 {
  font-weight: 600;
  font-size: 24px;
  margin: 0px 0px 8px 0px;
}

.first-section.quests .first-section-row-2-item-2__text-2 {
  margin: 0px 0px 11px 0px;
}

.first-section.quests .first-section__box {
  min-height: 370px;
}

.first-section__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.first-section__block-1 {
  position: relative;
  max-width: 1046px;
  width: 100%;
  border-radius: 40px;
  padding: 40px;
  overflow: hidden;
}

.first-section__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.first-section__bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.first-section__title {
  color: #fff;
}

.first-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  z-index: 2;
  min-height: 520px;
}

.first-section__wrap-iner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 546px;
  width: 100%;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
  margin-top: auto;
  align-items: end;
}

.first-section__blure {
  position: absolute;
  width: 1346px;
  height: 299px;
  top: 0;
  left: 0;
  z-index: 3;
}

.first-section__link {
  min-width: 341px;
  min-height: 84px;
}

.first-section__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.first-section__icons-link {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.first-section-row-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin: 0px 0px 20px 0px;
}

.first-section-row-1-item-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--gray);
  border-radius: 24px;
  padding: 24px;
  min-width: 297px;
}

.first-section-row-1-item-1__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  text-align: center;
  color: var(--green);
  margin: 0px 0px 103px 0px;
}

.first-section-row-1-item-1__text {
  margin-top: auto;
}

.first-section-row-1-item-1__text span:nth-child(1) {
  font-weight: 700;
  font-size: 104px;
  line-height: 108%;
}

.first-section-row-1-item-1__text span:nth-child(2) {
  font-weight: 700;
  font-size: 32px;
}

.first-section-row-1-item-2 {
  min-width: 297px;
  border-radius: 24px;
  padding: 24px;
  background: var(--green);
}

.first-section-row-1-item-2__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  color: var(--gray);
  margin: 0px 0px 57px 0px;
}

.first-section-row-1-item-2__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.first-section-row-1-item-2__text span:nth-child(1) {
  font-weight: 700;
  font-size: 104px;
  color: var(--gray);
}

@supports (font-size: clamp( 60px , 48.6857142857px  +  3.1428571429vw , 104px )) {
  .first-section-row-1-item-2__text span:nth-child(1) {
    font-size: clamp( 60px , 48.6857142857px  +  3.1428571429vw , 104px );
  }
}

@supports not (font-size: clamp( 60px , 48.6857142857px  +  3.1428571429vw , 104px )) {
  .first-section-row-1-item-2__text span:nth-child(1) {
    font-size: calc(
			60px + 2.75px * (100vw - 360) / 87.5px
		);
  }
}

.first-section-row-1-item-2__text span:nth-child(2) {
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  color: var(--gray);
  text-align: center;
}

.first-section-row-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.first-section-row-2-item-1 {
  border-radius: 24px;
  padding: 24px;
  min-width: 297px;
  background: var(--green);
}

.first-section-row-2-item-1__header {
  margin: 0px 0px 108px 0px;
}

.first-section-row-2-item-1__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--gray);
}

.first-section-row-2-item-2 {
  text-align: center;
  border-radius: 24px;
  padding: 24px;
  min-width: 297px;
  background: var(--gray);
}

.first-section-row-2-item-2__text-1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  margin: 0px 0px 24px 0px;
}

@supports (font-size: clamp( 20px , 16.9142857143px  +  0.8571428571vw , 32px )) {
  .first-section-row-2-item-2__text-1 {
    font-size: clamp( 20px , 16.9142857143px  +  0.8571428571vw , 32px );
  }
}

@supports not (font-size: clamp( 20px , 16.9142857143px  +  0.8571428571vw , 32px )) {
  .first-section-row-2-item-2__text-1 {
    font-size: calc(
			20px + 0.75px * (100vw - 360) / 87.5px
		);
  }
}

.first-section-row-2-item-2__text-2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 110%;
  margin: 0px 0px 65px 0px;
}

@supports (font-size: clamp( 60px , 54.8571428571px  +  1.4285714286vw , 80px )) {
  .first-section-row-2-item-2__text-2 {
    font-size: clamp( 60px , 54.8571428571px  +  1.4285714286vw , 80px );
  }
}

@supports not (font-size: clamp( 60px , 54.8571428571px  +  1.4285714286vw , 80px )) {
  .first-section-row-2-item-2__text-2 {
    font-size: calc(
			60px + 1.25px * (100vw - 360) / 87.5px
		);
  }
}

.first-section-row-2-item-2__rating {
  max-width: 165px;
  width: 100%;
  margin: 0 auto;
  border-radius: 14px;
  padding: 7px;
  background: var(--white);
}

.second-section {
  margin-bottom: 104px;
}

.second-section__title {
  margin: 0px 0px 60px 0px;
}

.parent {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[11];
  grid-template-columns: repeat(11, 1fr);
  -ms-grid-rows: (1fr)[3];
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.div1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 1/1/3/5;
  background: var(--green);
  position: relative;
  padding: 32px 28px;
  border-radius: 30px;
  overflow: hidden;
}

.div1__text {
  font-weight: 700;
  font-size: 32px;
  color: var(--black);
}

.div1__img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.div2 {
  position: relative;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-area: 1/5/2/7;
  background: var(--blue);
  padding: 16px 20px;
  border-radius: 30px;
  overflow: hidden;
}

.div2__text {
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  margin-top: 88px;
  line-height: 150%;
}

.div2__img {
  position: absolute;
  top: 0px;
  right: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.div3 {
  position: relative;
  padding: 16px 20px;
  border-radius: 30px;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-area: 2/5/3/7;
  background-color: white;
  overflow: hidden;
}

.div3__text {
  font-weight: 500;
  font-size: 16px;
  margin-top: 88px;
  color: var(--gray);
  position: relative;
  z-index: 2;
}

.div3__text span {
  display: block;
}

.div3__text span:nth-child(1) {
  font-weight: 700;
  font-size: 32px;
  color: var(--gray);
}

.div3__text span:nth-child(2) {
  font-size: 24px;
  font-weight: 600;
  color: var(--light-gray);
}

.div3__img {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 299px;
  height: 193px;
}

.div3__img img {
  position: absolute;
  top: 0px;
  right: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.div4 {
  position: relative;
  min-width: 188px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 7;
  -ms-grid-column-span: 1;
  grid-area: 1/7/3/8;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
}

.div4__button-wrapper {
  padding: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  text-align: left;
}

.div4__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid var(--blue);
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--black);
  font-size: 10px;
  font-weight: 500;
}

.div4__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  color: var(--black);
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.div4__img {
  position: absolute;
  bottom: -170px;
  right: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.div4__img.tablet {
  display: none;
}

.div4__bg {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.div5 {
  position: relative;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 8;
  -ms-grid-column-span: 4;
  grid-area: 1/8/2/12;
  border-radius: 30px;
  background-color: var(--white);
  padding: 28px 32px;
}

.div5__text {
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  color: var(--black);
}

.div5__img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.div5__bg {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.div6 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 8;
  -ms-grid-column-span: 4;
  grid-area: 2/8/3/12;
  border-radius: 30px;
  background-color: var(--white);
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.div6__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid var(--blue);
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--black);
  font-size: 10px;
  font-weight: 500;
}

.div7 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: 3/1/4/6;
  background: var(--white);
  border-radius: 30px;
  padding: 32px 20px;
  position: relative;
}

.div7__text {
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  color: var(--black);
  max-width: 418px;
  width: 100%;
  margin-top: 50px;
}

.div7__bg {
  position: absolute;
  bottom: -3px;
  right: 0px;
}

.div8 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 6;
  -ms-grid-column-span: 2;
  grid-area: 3/6/4/8;
  position: relative;
  background: var(--green);
  border-radius: 30px;
  padding: 20px;
}

.div8__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: var(--black);
}

.div8__img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.div9 {
  position: relative;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 8;
  -ms-grid-column-span: 2;
  grid-area: 3/8/4/10;
  background: var(--white);
  border-radius: 30px;
  padding: 20px;
}

.div9__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: var(--black);
}

.div9__img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}

.div10 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 10;
  -ms-grid-column-span: 2;
  grid-area: 3/10/4/12;
  position: relative;
  border-radius: 30px;
  padding: 20px;
  background: var(--blue);
}

.div10__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
}

.div10__img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-quests {
  margin-bottom: 104px;
}

.about-quests__title {
  margin: 0px 0px 60px 0px;
}

.parent1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  -ms-grid-rows: 1fr 1fr 260px 1fr 200px;
  grid-template-rows: 1fr 1fr 260px 1fr 200px;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.parent1__div1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-area: 1/1/2/7;
}

.parent1__div2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 7;
  -ms-grid-column-span: 3;
  grid-area: 1/7/2/10;
}

.parent1__div3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 10;
  -ms-grid-column-span: 3;
  grid-area: 1/10/2/13;
}

.parent1__div4 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: 2/1/3/4;
}

.parent1__div5 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 6;
  grid-area: 2/4/3/10;
}

.parent1__div6 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 10;
  -ms-grid-column-span: 3;
  grid-area: 2/10/3/13;
}

.parent1__div7 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 3/1/4/5;
}

.parent1__div8 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
  grid-area: 3/5/4/9;
}

.parent1__div9 {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 9;
  -ms-grid-column-span: 4;
  grid-area: 3/9/4/13;
}

.parent1__div10 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-area: 4/1/5/5;
}

.parent1__div11 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 5;
  -ms-grid-column-span: 3;
  grid-area: 4/5/5/8;
}

.parent1__div12 {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 8;
  -ms-grid-column-span: 5;
  grid-area: 4/8/5/13;
}

.parent1__div13 {
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-area: 5/1/6/13;
}

.about-quests-item-green {
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  min-height: 100%;
  background: var(--green);
}

.about-quests-item-green__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: var(--black);
  margin: 0px 0px 80px 0px;
}

.about-quests-item-green__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 112%;
  color: var(--gray);
}

.about-quests-item-grey {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  min-height: 100%;
  background: var(--gray);
}

.about-quests-item-grey__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  color: var(--white);
  margin: 0px 0px 45px 0px;
}

.about-quests-item-grey__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--light-gray);
}

.about-quests-item-image {
  position: relative;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.about-quests-item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-quests-item-blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 24px;
  padding: 40px;
  min-height: 100%;
  background: var(--blue);
}

.about-quests-item-blue__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 113%;
  text-align: center;
  color: var(--white);
}

.about-quests-item-big-text {
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  min-height: 100%;
  background: var(--gray);
}

.about-quests-item-big-text.text-green {
  color: var(--green);
}

.about-quests-item-big-text.text-green .about-quests-item-big-text__text {
  color: var(--green);
}

.about-quests-item-big-text.text-white {
  color: var(--white);
}

.about-quests-item-big-text.text-white .about-quests-item-big-text__text {
  color: var(--white);
}

.about-quests-item-big-text__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  margin: 0px 0px 15px 0px;
}

.about-quests-item-big-text__text {
  font-family: var(--font-family);
  font-weight: 700;
}

.about-quests-item-big-text__text span:nth-child(1) {
  font-size: 104px;
  line-height: 108%;
}

.about-quests-item-big-text__text span:nth-child(2) {
  font-size: 52px;
  line-height: 115%;
}

.about-quests-item-white {
  position: relative;
  border-radius: 24px;
  padding: 40px;
  background: var(--white);
}

.about-quests-item-white__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  color: var(--black);
}

.about-quests-item-white__text {
  max-width: 1340px;
  width: 100%;
  font-size: 20px;
  line-height: 140%;
  color: var(--gray);
}

.about-quests-item-white__img {
  position: absolute;
  right: 20px;
  bottom: -40px;
  width: 207px;
  height: 187px;
}

.catalog {
  margin-bottom: 104px;
}

.catalog__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 12px 24px;
  width: 100%;
  min-height: 52px;
  margin: 0px 0px 40px 0px;
}

.catalog__box-grid {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  justify-content: start;
  grid-template-columns: repeat(auto-fit, minmax(328px, auto));
  margin: 0px 0px 60px 0px;
}

.catalog__button {
  width: 100%;
  min-height: 48px;
}

.personal-cabinet {
  margin-bottom: 104px;
}

.personal-cabinet__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.personal-cabinet__title {
  margin: 0px 0px 60px 0px;
  text-transform: none;
}

.personal-cabinet__title.quests {
  margin: 0px 0px 24px 0px;
}

.personal-cabinet-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 40px;
  padding: 40px 24px;
  max-width: 390px;
  width: 100%;
  max-height: 624px;
  background: var(--gray);
  margin: 0px 0px 40px 0px;
}

.personal-cabinet-menu__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.personal-cabinet-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  border-radius: 30px;
  padding: 16px;
  width: 342px;
  width: 100%;
  background: transparent;
}

.personal-cabinet-menu__link:not(:last-child) {
  margin-bottom: 5px;
}

.personal-cabinet-menu__link .icon svg path {
  fill: #fff;
}

.personal-cabinet-menu__link .text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}

.personal-cabinet-menu__link._active {
  background: var(--green);
  color: var(--black);
}

.personal-cabinet-menu__link._active .icon svg path {
  fill: #000;
}

.personal-cabinet-menu__link._active .text {
  color: var(--black);
}

.personal-cabinet-menu__enter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--white);
  border-radius: 30px;
  padding: 12px 28px;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
}

.personal-cabinet-body {
  width: 100%;
}

.profile__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin: 0px 0px 40px 0px;
}

.profile__name-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 30px;
  padding: 40px;
  width: 100%;
  min-height: 540px;
  width: 100%;
  -webkit-box-shadow: 0 2px 8px 0 rgba(134, 122, 160, 0.3);
          box-shadow: 0 2px 8px 0 rgba(134, 122, 160, 0.3);
  background: var(--gray);
}

.profile__image {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0px 0px 24px 0px;
}

.profile__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin: 0px 0px 40px 0px;
}

.profile__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background-color: var(--white);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.profile__name {
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  color: var(--white);
}

.profile__information {
  border-radius: 30px;
  padding: 40px;
  width: 100%;
  min-height: 540px;
  width: 100%;
  -webkit-box-shadow: 0 2px 8px 0 rgba(134, 122, 160, 0.3);
          box-shadow: 0 2px 8px 0 rgba(134, 122, 160, 0.3);
  background: var(--gray);
}

.profile__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  margin: 0px 0px 40px 0px;
}

.profile__title {
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
}

.profile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  margin: 0px 0px 40px 0px;
}

.profile__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 24px;
}

.profile__text-1 {
  width: 50%;
  font-weight: 500;
  font-size: 16px;
  color: #a9a5b0;
}

.profile__text-2 {
  width: 50%;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
}

.profile__button {
  border-radius: 30px;
  padding: 16px 56px;
  min-height: 56px;
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
}

.change-password {
  border-radius: 30px;
  padding: 40px;
  width: 100%;
  -webkit-box-shadow: 0 2px 8px 0 rgba(134, 122, 160, 0.3);
          box-shadow: 0 2px 8px 0 rgba(134, 122, 160, 0.3);
  background: var(--gray);
}

.change-password__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  color: var(--white);
  margin: 0px 0px 40px 0px;
}

.change-password__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  margin: 0px 0px 40px 0px;
}

.change-password__line {
  border-radius: 35px;
  padding: 16px 16px 16px 24px;
  width: 100%;
  min-height: 56px;
  background: rgba(0, 0, 0, 0.3);
}

.change-password__line.error {
  border: 1px solid red;
}

.change-password__input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: var(--white);
  font-size: 16px;
  line-height: 150%;
}

.change-password__input::-webkit-input-placeholder {
  color: var(--gray-input);
}

.change-password__input::-moz-placeholder {
  color: var(--gray-input);
}

.change-password__input:-ms-input-placeholder {
  color: var(--gray-input);
}

.change-password__input::-ms-input-placeholder {
  color: var(--gray-input);
}

.change-password__input::placeholder {
  color: var(--gray-input);
}

.change-password__button {
  border-radius: 30px;
  padding: 16px 56px;
  max-width: 237px;
  width: 100%;
  min-height: 56px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: var(--black);
}

.сurrent-statistics {
  border-radius: 32px;
  padding: 32px 40px;
  width: 100%;
  min-height: 392px;
  background: var(--black);
  margin: 0px 0px 40px 0px;
}

.сurrent-statistics.prototype-quests {
  background: var(--gray);
  padding: 0px;
}

.сurrent-statistics.prototype-quests .сurrent-statistics__box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
}

.сurrent-statistics.prototype-quests .progress-bar-1 {
  background: var(--black);
}

.сurrent-statistics.prototype-quests .box-progres-bar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.сurrent-statistics__title {
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin: 0px 0px 32px 0px;
}

.сurrent-statistics__title2 {
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  margin: 0px 0px 32px 0px;
}

.сurrent-statistics__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px 0px 52px 0px;
}

.сurrent-statistics__block-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.сurrent-statistics__text {
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.сurrent-statistics__text span {
  display: block;
}

.сurrent-statistics__text-1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  color: var(--white);
}

.сurrent-statistics__team {
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
  margin: 0px 0px 16px 0px;
}

.сurrent-statistics__box-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.сurrent-statistics__icon {
  position: relative;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.сurrent-statistics__icon img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.сurrent-statistics__icon:nth-child(2) {
  -webkit-transform: translate(-15px, 0);
      -ms-transform: translate(-15px, 0);
          transform: translate(-15px, 0);
}

.сurrent-statistics__icon:nth-child(3) {
  -webkit-transform: translate(-25px, 0);
      -ms-transform: translate(-25px, 0);
          transform: translate(-25px, 0);
}

.сurrent-statistics__icon:nth-child(4) {
  -webkit-transform: translate(-35px, 0);
      -ms-transform: translate(-35px, 0);
          transform: translate(-35px, 0);
}

.сurrent-statistics .text {
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
}

.сurrent-statistics .text1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  color: var(--white);
}

:where([class^=ri-])::before {
  content: "\f3c2";
}

.progress-bar-1 {
  height: 40px;
  border-radius: 100px;
  overflow: hidden;
  background-color: var(--gray);
}

.progress-fill {
  height: 100%;
  background-color: #c4ff00;
}

.box-progres-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}

.box-progres-bar-item {
  width: 100%;
}

.box-progres-bar-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px 0px 16px 0px;
}

.box-progres-bar-text p {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
}

.team__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin: 0px 0px 40px 0px;
}

.team__title {
  margin: 0px 0px 24px 0px;
}

.team__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 40px;
  padding: 20px 56px;
  min-height: 64px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: var(--black);
  background: var(--white);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.team__text {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: var(--black);
}

.team__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}

.team-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  border-radius: 20px;
  padding: 20px 40px;
  background: var(--gray);
  font-weight: 500;
}

.team-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.team-item__img {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  overflow: hidden;
}

.team-item__img img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-item__name {
  font-size: 20px;
  color: var(--ultra-light-gray);
}

.team-item__phone {
  font-size: 20px;
  text-align: center;
  color: var(--ultra-light-gray);
}

.team-item__email {
  font-size: 20px;
  text-align: center;
  color: var(--ultra-light-gray);
}

.team-item__delete {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--light-gray);
  border-radius: 6px;
}

.team-item__delete-text {
  font-size: 14px;
  text-align: center;
  color: #6f6f6f;
  display: none;
}

.team-item__id {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: var(--ultra-light-gray);
}

.first-section-main {
  margin-bottom: 104px;
}

.first-section-main__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.first-section-main__image {
  position: relative;
  border-radius: 40px;
  max-width: 1107px;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}

.first-section-main__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.first-section-main__text {
  position: absolute;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 42px;
  line-height: 112%;
  color: var(--white);
}

.first-section-main-content__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 0px 28px 0px;
}

.first-section-main-content__icon-item {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.first-section-main-content__icon-item:nth-child(2) {
  -webkit-transform: translate(-25px, 0);
      -ms-transform: translate(-25px, 0);
          transform: translate(-25px, 0);
}

.first-section-main-content__icon-item:nth-child(3) {
  -webkit-transform: translate(-45px, 0);
      -ms-transform: translate(-45px, 0);
          transform: translate(-45px, 0);
}

.first-section-main-content__icon-item:nth-child(4) {
  -webkit-transform: translate(-55px, 0);
      -ms-transform: translate(-55px, 0);
          transform: translate(-55px, 0);
}

.first-section-main-content__num {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 244px;
  line-height: 100%;
  color: var(--white);
  margin: 0px 0px 28px 0px;
}

.first-section-main-content__text {
  font-weight: 500;
  font-size: 86px;
  line-height: 117%;
  color: var(--white);
}

.second-section__box-grid {
  margin-bottom: 104px;
  display: -ms-grid;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.second-section__box-grid a {
  display: block;
}

.second-section__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 16px;
}

.second-section-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
}

.second-section-item.white {
  background: var(--white);
}

.second-section-item.white .second-section-item__text {
  color: var(--gray);
}

.second-section-item.gray {
  background: var(--gray);
}

.second-section-item.gray .second-section-item__text {
  color: var(--white);
}

.second-section-item__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 40px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin: 0px 0px 150px 0px;
}

.second-section-item__icon.gray {
  background: var(--gray);
}

.second-section-item__icon.green {
  background: var(--green);
}

.second-section-item__text {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  margin-top: auto;
}

.second-section-flex-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 32px;
  padding: 48px;
  width: 49%;
  min-height: 612px;
  overflow: hidden;
}

.second-section-flex-item.gray {
  background: var(--gray);
}

.second-section-flex-item.gray .second-section-flex-item__title {
  color: var(--white);
}

.second-section-flex-item.green {
  background: var(--green);
}

.second-section-flex-item__title {
  position: relative;
  z-index: 2;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 113%;
}

.second-section-flex-item__text {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  color: var(--gray);
}

.second-section-flex-item__image {
  position: absolute;
  right: 0px;
  bottom: 0px;
  height: auto;
}

.second-section-flex-item__image.mob {
  display: none;
}

.second-section-flex-item__image-1 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: auto;
}

.season-quest {
  margin: 0px 0px 139px 0px;
}

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

.season-quest__wrap-title {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.season-quest__title {
  margin: 0px 0px 32px 0px;
}

.season-quest__title span:nth-child(1) {
  color: var(--green);
}

.season-quest__text {
  font-weight: 500;
  font-size: 32px;
}

.leaders__title {
  margin-top: 22px;
  margin: 0px 0px 24px 0px;
}

.leaders__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin: 0px 0px 104px 0px;
}

.leaders-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.leaders-item__icon {
  position: relative;
  border-radius: 100px;
  width: 120px;
  height: 120px;
  overflow: hidden;
  margin: 0px 0px 12px 0px;
  margin-top: auto;
}

.leaders-item__icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.leaders-item__text {
  font-weight: 500;
  font-size: 24px;
  line-height: 117%;
  text-align: center;
  margin: 0px 0px 20px 0px;
  color: var(--white);
  max-width: 260px;
  width: 100%;
}

.leaders-item__place {
  border-radius: 20px 20px 0 0;
  max-width: 247px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.leaders-item__place.first {
  height: 370px;
  background: #c9b07d;
}

.leaders-item__place.second {
  height: 252px;
  background: #b2c0cb;
}

.leaders-item__place.third {
  height: 171px;
  background: #c29c86;
}

.leaders-item__place-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto 0px 40px 0px;
}

.participants-rating {
  margin: 0px 0px 104px 0px;
}

.participants-rating__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.participants-rating__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.participants-rating__title {
  margin: 0px 0px 26px 0px;
}

.participants-rating__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 8px;
  padding: 8px 40px 8px 20px;
  max-width: 721px;
  width: 100%;
  min-height: 40px;
  background: var(--gray);
}

.participants-rating__search-input {
  font-weight: 500;
  font-size: 12px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: var(--light-gray);
}

.participants-rating__search-input::-webkit-input-placeholder {
  font-size: 12px;
  color: var(--light-gray);
}

.participants-rating__search-input::-moz-placeholder {
  font-size: 12px;
  color: var(--light-gray);
}

.participants-rating__search-input:-ms-input-placeholder {
  font-size: 12px;
  color: var(--light-gray);
}

.participants-rating__search-input::-ms-input-placeholder {
  font-size: 12px;
  color: var(--light-gray);
}

.participants-rating__search-input::placeholder {
  font-size: 12px;
  color: var(--light-gray);
}

.participants-rating__search select {
  background: var(--gray);
  color: #fff;
  width: 100%;
}

.participants-rating__wrap-title {
  display: -ms-grid;
  display: grid;
  text-align: center;
  -ms-grid-columns: 100px 500px 150px 150px;
  grid-template-columns: 100px 500px 150px 150px;
  border-radius: 12px;
  padding: 20px 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--gray);
}

.participants-rating__wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.rating-item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px 500px 150px 150px;
  grid-template-columns: 100px 500px 150px 150px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--ultra-light-gray);
  border-radius: 20px;
  padding: 20px 40px;
  min-height: 120px;
}

.rating-item__num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rating-item__icon-right {
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.rating-item__text {
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  text-align: center;
  color: var(--gray-input);
}

.rating-item__icon-left {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.rating-item__box-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.rating-item__img {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  overflow: hidden;
}

.rating-item__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.rating-item__name {
  font-weight: 500;
  font-size: 24px;
  line-height: 117%;
  text-align: center;
  color: var(--gray-input);
}

.rating-item__id {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 24px;
  color: var(--light-gray);
}

.rating-item__quests {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 24px;
  color: var(--gray-input);
}

.rating-item__points {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 24px;
  color: var(--gray-input);
}

.rating-item__team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rating-item__team-item {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.rating-item__team-item:nth-child(2) {
  -webkit-transform: translate(-15px, 0);
      -ms-transform: translate(-15px, 0);
          transform: translate(-15px, 0);
}

.rating-item__team-item:nth-child(3) {
  -webkit-transform: translate(-25px, 0);
      -ms-transform: translate(-25px, 0);
          transform: translate(-25px, 0);
}

.rating-item__team-item:nth-child(4) {
  -webkit-transform: translate(-35px, 0);
      -ms-transform: translate(-35px, 0);
          transform: translate(-35px, 0);
}

.rating-item__link {
  font-weight: 500;
  font-size: 14px;
  line-height: 157%;
  text-align: center;
  color: var(--light-gray);
  display: none;
}

.erorr-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.erorr-404__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.erorr-404__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.erorr-404-block {
  position: relative;
  border-radius: 12px;
  padding: 40px 60px;
  max-width: 510px;
  min-height: 318px;
  -webkit-box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.03);
  background: var(--white);
}

.erorr-404-block__arrow {
  position: absolute;
  width: 36px;
  height: 36px;
  top: -10px;
  right: -10px;
  cursor: pointer;
}

.erorr-404-block__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  text-align: center;
  color: var(--black);
  margin: 0px 0px 32px 0px;
}

@supports (font-size: clamp( 24px , 21.9428571429px  +  0.5714285714vw , 32px )) {
  .erorr-404-block__title {
    font-size: clamp( 24px , 21.9428571429px  +  0.5714285714vw , 32px );
  }
}

@supports not (font-size: clamp( 24px , 21.9428571429px  +  0.5714285714vw , 32px )) {
  .erorr-404-block__title {
    font-size: calc(
			24px + 0.5px * (100vw - 360) / 87.5px
		);
  }
}

.erorr-404-block__text {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--black);
  margin: 0px 0px 32px 0px;
}

.erorr-404-block__button {
  border-radius: 12px;
  padding: 12px 24px;
  max-width: 390px;
  width: 100%;
  min-height: 54px;
  background: var(--green);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--black);
}

.enter-block {
  margin-bottom: 60px;
}

.enter-block__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.enter-block__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.enter {
  border-radius: 24px;
  -webkit-box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.03);
  background: var(--white);
  min-width: 510px;
  width: 100%;
}

.enter-form {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px 60px;
}

.enter-form__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0px 0px 32px 0px;
}

.enter-form__arrow {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.enter-form__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 112%;
  color: var(--black);
  text-align: center;
}

.enter-form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  margin: 0px 0px 12px 0px;
}

.enter-form__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  width: 100%;
  min-height: 53px;
  background: var(--ultra-light-gray);
  padding: 16px 14px;
  border: 1px solid transparent;
}

.enter-form__line.erorr {
  border: 1px solid var(--red);
}

.enter-form__input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
}

.enter-form__input::-webkit-input-placeholder {
  color: var(--light-gray);
}

.enter-form__input::-moz-placeholder {
  color: var(--light-gray);
}

.enter-form__input:-ms-input-placeholder {
  color: var(--light-gray);
}

.enter-form__input::-ms-input-placeholder {
  color: var(--light-gray);
}

.enter-form__input::placeholder {
  color: var(--light-gray);
}

.enter-form__checkbox {
  margin: 0px 0px 32px 0px;
}

.enter-form__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  margin: 0px 0px 24px 0px;
}

.enter-form__button {
  border-radius: 12px;
  padding: 12px 24px;
  min-height: 54px;
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.enter-form__button.white {
  background-color: var(--white);
  border: 1px solid var(--black);
}

.enter-form__button.green {
  border: 1px solid transparent;
  background-color: var(--green);
}

.enter-form__messages {
  margin: 0px 0px 32px 0px;
}

.enter-form__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px 0px 24px 0px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.enter-form__text span:nth-child(1) {
  border: 1px solid var(--light-gray);
  height: 0px;
  width: 100%;
}

.enter-form__text span:nth-child(2) {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--light-gray);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.enter-form__text span:nth-child(3) {
  border: 1px solid var(--light-gray);
  height: 0px;
  width: 100%;
}

.enter-form__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.enter-form__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  width: 60px;
  height: 56px;
}

.enter-form__password {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline !important;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-align: center;
  color: var(--black);
  text-align: center;
}

.enter-form__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--black);
  margin: 0px 0px 8px 0px;
}

.enter-form__log-in {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--black);
  margin: 0px 0px 32px 0px;
}

.about-us {
  margin-bottom: 104px;
}

.about-us__title {
  margin: 0px 0px 60px 0px;
}

.about-us__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 40px;
}

.about-us__col {
  width: 48.5%;
  min-height: 418px;
}

.item-about-us {
  position: relative;
  border-radius: 40px;
  padding: 60px;
  width: 100%;
  height: 100%;
  background: var(--gray);
  overflow: hidden;
}

.item-about-us__title {
  font-weight: 700;
  font-size: 80px;
  line-height: 110%;
  color: var(--white);
  margin: 0px 0px 157px 0px;
}

.item-about-us__text p {
  font-weight: 400;
  font-size: 24px;
  line-height: 117%;
  color: var(--light-gray);
}

@supports (font-size: clamp( 14px , 11.4285714286px  +  0.7142857143vw , 24px )) {
  .item-about-us__text p {
    font-size: clamp( 14px , 11.4285714286px  +  0.7142857143vw , 24px );
  }
}

@supports not (font-size: clamp( 14px , 11.4285714286px  +  0.7142857143vw , 24px )) {
  .item-about-us__text p {
    font-size: calc(
			14px + 0.625px * (100vw - 360) / 87.5px
		);
  }
}

.item-about-us__text p:not(:last-child) {
  margin-bottom: 24px;
}

.item-about-us__text.fatty p {
  font-weight: 400;
  font-size: 32px;
  line-height: 112%;
  color: var(--light-gray);
}

@supports (font-size: clamp( 14px , 9.3714285714px  +  1.2857142857vw , 32px )) {
  .item-about-us__text.fatty p {
    font-size: clamp( 14px , 9.3714285714px  +  1.2857142857vw , 32px );
  }
}

@supports not (font-size: clamp( 14px , 9.3714285714px  +  1.2857142857vw , 32px )) {
  .item-about-us__text.fatty p {
    font-size: calc(
			14px + 1.125px * (100vw - 360) / 87.5px
		);
  }
}

.item-about-us__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -o-linear-gradient(252deg, #202329 0%, #707a8f 100%);
  background: linear-gradient(198deg, #202329 0%, #707a8f 100%);
  z-index: 2;
}

.item-about-us__img {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  right: 0px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
}

.item-about-us__img.size {
  height: 519px;
}

.tasks {
  margin-bottom: 104px;
}

.tasks__title {
  margin: 0px 0px 60px 0px;
}

.tasks__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 20px;
  margin-bottom: 104px;
}

.tasks__col {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tasks__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 40px;
  padding: 40px;
  text-align: center;
  width: 100%;
}

.tasks__item.green {
  background: var(--green);
}

.tasks__item.white {
  background: var(--white);
}

.tasks__item.blue {
  background: var(--blue);
}

.tasks__item.blue .tasks-item__text {
  color: var(--white);
}

.tasks__item.blue .tasks-item__text-1 {
  color: var(--white);
}

.tasks-item__text {
  font-weight: 500;
  font-size: 32px;
  line-height: 112%;
  color: var(--gray);
  margin: 0px 0px 15px 0px;
}

@supports (font-size: clamp( 24px , 21.9428571429px  +  0.5714285714vw , 32px )) {
  .tasks-item__text {
    font-size: clamp( 24px , 21.9428571429px  +  0.5714285714vw , 32px );
  }
}

@supports not (font-size: clamp( 24px , 21.9428571429px  +  0.5714285714vw , 32px )) {
  .tasks-item__text {
    font-size: calc(
			24px + 0.5px * (100vw - 360) / 87.5px
		);
  }
}

.tasks-item__text-1 {
  color: var(--black);
  text-align: center;
}

.tasks-item__text-1 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  line-height: 108%;
}

.tasks-item__text-1 span:nth-child(1) {
  font-size: 104px;
}

@supports (font-size: clamp( 80px , 64.5714285714px  +  4.2857142857vw , 140px )) {
  .tasks-item__text-1 span:nth-child(1) {
    font-size: clamp( 80px , 64.5714285714px  +  4.2857142857vw , 140px );
  }
}

@supports not (font-size: clamp( 80px , 64.5714285714px  +  4.2857142857vw , 140px )) {
  .tasks-item__text-1 span:nth-child(1) {
    font-size: calc(
			80px + 3.75px * (100vw - 360) / 87.5px
		);
  }
}

.tasks-item__text-1 span:nth-child(2) {
  font-size: 52px;
}

@supports (font-size: clamp( 24px , 16.8px  +  2vw , 52px )) {
  .tasks-item__text-1 span:nth-child(2) {
    font-size: clamp( 24px , 16.8px  +  2vw , 52px );
  }
}

@supports not (font-size: clamp( 24px , 16.8px  +  2vw , 52px )) {
  .tasks-item__text-1 span:nth-child(2) {
    font-size: calc(
			24px + 1.75px * (100vw - 360) / 87.5px
		);
  }
}

.relate-rules {
  border-radius: 40px;
  padding: 60px;
  background: var(--gray);
}

.relate-rules__text {
  line-height: 112%;
  color: var(--light-gray);
  margin: 0px 0px 40px 0px;
}

@supports (font-size: clamp( 14px , 9.3714285714px  +  1.2857142857vw , 32px )) {
  .relate-rules__text {
    font-size: clamp( 14px , 9.3714285714px  +  1.2857142857vw , 32px );
  }
}

@supports not (font-size: clamp( 14px , 9.3714285714px  +  1.2857142857vw , 32px )) {
  .relate-rules__text {
    font-size: calc(
			14px + 1.125px * (100vw - 360) / 87.5px
		);
  }
}

.relate-rules__text-white {
  font-weight: 700;
  color: var(--white);
  margin: 0px 0px 40px 0px;
}

@supports (font-size: clamp( 14px , 9.3714285714px  +  1.2857142857vw , 32px )) {
  .relate-rules__text-white {
    font-size: clamp( 14px , 9.3714285714px  +  1.2857142857vw , 32px );
  }
}

@supports not (font-size: clamp( 14px , 9.3714285714px  +  1.2857142857vw , 32px )) {
  .relate-rules__text-white {
    font-size: calc(
			14px + 1.125px * (100vw - 360) / 87.5px
		);
  }
}

.relate-rules__button {
  min-height: 64px;
  border-radius: 40px;
  padding: 20px 56px;
  background: var(--white);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--black);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq {
  margin-bottom: 104px;
}

.faq__title {
  margin: 0px 0px 60px 0px;
}

.faq__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 320px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 16px;
  padding: 20px 56px;
  min-height: 64px;
  margin: 40px auto 0px auto;
}

.blog {
  margin-bottom: 104px;
}

.blog__title {
  margin: 0px 0px 60px 0px;
}

.blog__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin: 0px 0px 40px 0px;
  overflow: auto;
  scrollbar-width: none;
}

.blog__button {
  border-radius: 60px;
  padding: 12px 20px;
  min-height: 46px;
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  background: #f4f4f4;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.blog__button._tab-active {
  background: var(--green);
}

.blog__rwo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  gap: 40px;
}

.blog__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 24px;
  padding: 16px 16px 32px 16px;
  width: 100%;
  background: var(--gray);
}

.blog-card__img {
  position: relative;
  width: 100%;
  height: 280px;
  margin: 0px 0px 20px 0px;
  border-radius: 16px;
  overflow: hidden;
}

.blog-card__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin: 0px 0px 24px 0px;
}

.blog-card__date {
  font-size: 16px;
  line-height: 150%;
  color: var(--light-gray);
}

.blog-card__button {
  font-weight: 500;
  font-size: 12px;
  line-height: 167%;
  color: var(--black);
  border-radius: 30px;
  padding: 4px 32px;
  min-height: 28px;
  background: var(--white);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.blog-card__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  color: var(--white);
  margin: 0px 0px 16px 0px;
  min-height: 60px;
}

.blog-card__text {
  font-size: 16px;
  line-height: 150%;
  color: var(--light-gray);
  margin: 0px 0px 32px 0px;
}

.blog-card__text-1 {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--light-gray);
  margin-top: auto;
}

.article {
  margin-bottom: 104px;
}

.article__title {
  margin: 0px 0px 60px 0px;
}

.article-box__img {
  position: relative;
  border-radius: 24px;
  max-width: 1680px;
  width: 100%;
  min-height: 458px;
  overflow: hidden;
  margin: 0px 0px 40px 0px;
}

.article-box__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-box-item {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.article-box-item__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: var(--white);
  margin: 0px 0px 40px 0px;
}

.article-box-item__item {
  margin-bottom: 40px;
}

.article-box-item__sub-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  color: var(--white);
  margin: 0px 0px 24px 0px;
}

.article-box-item__sub-title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.article-box-item__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
}

.article-box-item__text.green {
  border-radius: 12px;
  padding: 24px;
  color: var(--gray);
  background: var(--green);
}

.article-box-item__img {
  position: relative;
  border-radius: 12px;
  max-width: 820px;
  width: 100%;
  min-height: 332px;
  overflow: hidden;
}

.article-box-item__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.article-box-item__p {
  font-size: 14px;
  line-height: 157%;
  color: var(--light-gray);
  margin-top: 16px;
}

.article-box-item__author span {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}

.article-box-item__author span:nth-child(1) {
  color: var(--green);
}

.article-box-item__author span:nth-child(2) {
  color: var(--white);
}

.rules {
  margin-bottom: 104px;
}

.rules__title {
  margin: 0px 0px 40px 0px;
}

.rules__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin: 0px 0px 40px 0px;
}

.rules__button {
  border-radius: 8px;
  padding: 16px 56px;
  min-height: 56px;
  font-weight: 600;
  font-size: 14px;
  line-height: 157%;
  text-align: center;
  color: var(--black);
}

.rules-item {
  margin: 0px 0px 60px 0px;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
}

.rules-item__title {
  margin: 0px 0px 30px 0px;
}

.rules-item__icon {
  margin: 34px 0px 34px 0px;
}

.rules-item p {
  line-height: 140%;
  margin: 0px 0px 34px 0px;
}

@supports (font-size: clamp( 14px , 12.4571428571px  +  0.4285714286vw , 20px )) {
  .rules-item p {
    font-size: clamp( 14px , 12.4571428571px  +  0.4285714286vw , 20px );
  }
}

@supports not (font-size: clamp( 14px , 12.4571428571px  +  0.4285714286vw , 20px )) {
  .rules-item p {
    font-size: calc(
			14px + 0.375px * (100vw - 360) / 87.5px
		);
  }
}

.rules-item p span {
  font-weight: 700;
}

.rules-item ol {
  padding-left: 25px;
  margin: 0px 0px 30px 0px;
}

.rules-item ol li {
  line-height: 140%;
}

@supports (font-size: clamp( 14px , 12.4571428571px  +  0.4285714286vw , 20px )) {
  .rules-item ol li {
    font-size: clamp( 14px , 12.4571428571px  +  0.4285714286vw , 20px );
  }
}

@supports not (font-size: clamp( 14px , 12.4571428571px  +  0.4285714286vw , 20px )) {
  .rules-item ol li {
    font-size: calc(
			14px + 0.375px * (100vw - 360) / 87.5px
		);
  }
}

.rules-item ol li:not(:last-child) {
  margin-bottom: 5px;
}

.rules-item ul {
  margin: 0px 0px 30px 0px;
}

.rules-item ul li {
  line-height: 140%;
  position: relative;
  padding-left: 20px;
}

@supports (font-size: clamp( 14px , 12.4571428571px  +  0.4285714286vw , 20px )) {
  .rules-item ul li {
    font-size: clamp( 14px , 12.4571428571px  +  0.4285714286vw , 20px );
  }
}

@supports not (font-size: clamp( 14px , 12.4571428571px  +  0.4285714286vw , 20px )) {
  .rules-item ul li {
    font-size: calc(
			14px + 0.375px * (100vw - 360) / 87.5px
		);
  }
}

.rules-item ul li:not(:last-child) {
  margin-bottom: 5px;
}

.rules-item ul li::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 12px;
  left: 0;
  border-radius: 50%;
  background: var(--white);
}

.certificate {
  margin-bottom: 104px;
}

.certificate.home .certificate__box-content {
  border-radius: 32px;
  padding: 48px;
  min-height: 612px;
  background: var(--gray);
}

.certificate.home .certificate__bg {
  border-radius: 32px;
  padding: 48px;
  background: var(--gray);
}

.certificate__block-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  color: var(--white);
  row-gap: 16px;
  margin-bottom: 104px;
}

.certificate__block-2 {
  margin-bottom: 104px;
}

.certificate__block-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 104px;
}

.certificate__box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}

.certificate__title {
  margin: 0px 0px 48px 0px;
}

.certificate__title span {
  display: block;
}

.certificate__title span:nth-child(1) {
  color: var(--green);
}

.certificate__title span:nth-child(2) {
  color: var(--white);
}

.certificate__text {
  font-weight: 500;
  font-size: 32px;
  line-height: 112%;
}

.certificate__bg {
  position: relative;
  width: 50%;
}

.certificate__bg-item-1 {
  position: absolute;
  width: 521px;
  height: 521px;
  top: 50%;
  right: 0px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.certificate__bg-item-1 img {
  position: absolute;
  width: 521px;
  height: 521px;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.certificate__bg-item-2 {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 178px;
  height: auto;
}

.certificate__bg-item-2 img {
  -o-object-fit: cover;
     object-fit: cover;
}

.certificate__bg-item-3 {
  width: 243px;
  height: auto;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.certificate__bg-item-3 img {
  -o-object-fit: cover;
     object-fit: cover;
}

.certificate__button {
  border-radius: 40px;
  padding: 20px 56px;
  min-height: 64px;
  margin-top: auto;
}

.certificate-block-2__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 16px;
}

.certificate-block-2__col {
  width: 100%;
}

.item-certificate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: relative;
  border-radius: 32px;
  padding: 48px;
  overflow: hidden;
  min-height: 612px;
  background: var(--gray);
}

.item-certificate.white {
  background-color: var(--white);
}

.item-certificate__title {
  font-weight: 700;
  font-size: 80px;
  position: relative;
  z-index: 5;
  color: var(--black);
}

.item-certificate__text {
  position: relative;
  z-index: 5;
  font-weight: 500;
  font-size: 32px;
  color: var(--white);
}

.item-certificate__num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 355px;
  width: 100%;
  font-weight: 700;
  font-size: 40px;
  color: var(--white);
  border-radius: 80px;
  padding: 12px 20px;
  min-height: 72px;
  background: var(--blue);
  margin-top: auto;
}

.item-certificate__image img {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: -48px;
  right: -48px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}

.item-certificate__button {
  margin-top: auto;
  border-radius: 40px;
  padding: 20px 56px;
  min-height: 64px;
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
}

.step {
  border-radius: 24px;
  padding: 40px;
  min-height: 358px;
  background: var(--gray);
  position: relative;
}

.step.step-3 {
  min-height: 507px;
}

.step__step {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 40px;
  padding: 12px 20px;
  min-height: 60px;
  background: var(--green);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  color: var(--black);
  margin: 0px 0px 40px 0px;
}

.step__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.step__wrap {
  position: relative;
  z-index: 2;
}

.step__image {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.step__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  position: relative;
  z-index: 2;
}

.step__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  border-radius: 12px;
  padding: 20px 56px;
  min-height: 74px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: var(--black);
  background: var(--white);
}

.step__list {
  position: relative;
  z-index: 2;
  margin: 0px 0px 50px 0px;
}

.step__list li {
  position: relative;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  padding-left: 20px;
}

.step__list li:not(:last-child) {
  margin-bottom: 10px;
}

.step__list li::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: var(--green);
  border-radius: 50%;
}

.step-form {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.step-form__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  margin: 0px 0px 16px 0px;
}

.step-form__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin: 0px 0px 16px 0px;
}

.step-form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin: 0px 0px 20px 0px;
}

.step-form__line {
  border-radius: 8px;
  padding: 12px 16px;
  min-height: 48px;
  background: var(--white);
}

.step-form__input {
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}

.step-form__input::-webkit-input-placeholder {
  color: var(--light-gray);
}

.step-form__input::-moz-placeholder {
  color: var(--light-gray);
}

.step-form__input:-ms-input-placeholder {
  color: var(--light-gray);
}

.step-form__input::-ms-input-placeholder {
  color: var(--light-gray);
}

.step-form__input::placeholder {
  color: var(--light-gray);
}

.prototype-quests {
  margin-bottom: 104px;
}

.prototype-quests__title {
  margin: 0px 0px 40px 0px;
}

.prototype-quests-header {
  margin: 0px 0px 52px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prototype-quests-header__question {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  border-radius: 60px;
  padding: 0px 40px;
  border-radius: 60px;
  font-size: 40px;
  padding: 12px 40px;
  color: var(--black);
  min-height: 72px;
  min-width: 200px;
}

.prototype-quests-header__question.green {
  background: var(--green);
}

.prototype-quests-header__question.white {
  background: var(--white);
}

.prototype-quests-header__question.gray {
  background: var(--gray);
  color: var(--white);
}

.prototype-quests-header__points {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 60px;
  padding: 12px 40px;
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  text-align: center;
  color: var(--black);
  background: var(--green);
}

.prototype-slider {
  padding: 40px 0px 80px 0px;
}

.prototype-slider__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 113%;
  color: var(--white);
  margin: 0px 0px 40px 0px;
}

.prototype-slider__slider {
  overflow: hidden;
}

.prototype-slider__slide:nth-child(even) {
  margin-top: 100px !important;
}

.prototype-slider__wrapper {
  display: flex;
  gap: 40px;
}

.prototype-slider__slide {
  flex: 1;
}

.prototype-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.prototype-card__num {
  font-weight: 700;
  font-size: 80px;
  line-height: 110%;
  color: var(--white);
  margin: 0px 0px 24px 0px;
}

.prototype-card__img {
  position: relative;
  border-radius: 24px;
  width: 100%;
  min-height: 580px;
  overflow: hidden;
  margin: 0px 0px 40px 0px;
}

.prototype-card__img img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.prototype-card__sub-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 112%;
  color: var(--white);
  margin: 0px 0px 20px 0px;
}

.prototype-card__description {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
}

.prototype-quests-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.prototype-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.prototype-buttons__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  border-radius: 40px;
  padding: 20px 56px;
  width: 100%;
  min-height: 64px;
  flex: 1;
}

.prototype-buttons__button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.prototype-buttons__button-empty {
  flex: 1;
}

.prototype-quests-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin: 0px 0px 40px 0px;
}

.prototype-quests-form__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  padding: 0px 40px;
  width: 100%;
  min-height: 92px;
  background: var(--white);
  position: relative;
}

.prototype-quests-form__input {
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  background-color: transparent;
  min-height: 54px;
}

.prototype-quests-form__input::-webkit-input-placeholder {
  color: var(--light-gray);
}

.prototype-quests-form__input::-moz-placeholder {
  color: var(--light-gray);
}

.prototype-quests-form__input:-ms-input-placeholder {
  color: var(--light-gray);
}

.prototype-quests-form__input::-ms-input-placeholder {
  color: var(--light-gray);
}

.prototype-quests-form__input::placeholder {
  color: var(--light-gray);
}

.prototype-quests-form__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 108px;
  height: 92px;
  background: var(--green-avto);
}

.tintin-group__wrap.col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.tintin-group__block-1 {
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  background: var(--gray);
  margin: 0px 0px 40px 0px;
}

.tintin-group__block-1.bg-col-transparent {
  background: transparent;
}

.tintin-group__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  color: var(--white);
  margin: 0px 0px 15px 0px;
}

.tintin-group__title.list {
  margin: 0px 0px 40px 0px;
}

.tintin-group__text {
  font-weight: 500;
}

.tintin-group__name-professions {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  color: var(--white);
  padding-left: 15px;
  border-left: solid 1px var(--green);
  margin: 20px 0px 0px 0px;
}

.tintin-group__block2 {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin: 0px 0px 40px 0px;
}

.tintin-group__block2.bg-color-gray {
  border-radius: 20px;
  background: var(--gray);
  padding: 40px;
}

.tintin-group__block2.col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.tintin-group__block2 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  overflow: hidden;
}

.tintin-group .color-green {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--green);
}

.tintin-group__list {
  width: 50%;
}

.tintin-group__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
}

.tintin-group__item, .tintin-group__list ul li {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  padding-left: 20px;
}

.tintin-group__item::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 8px;
  left: 0;
  background: var(--green);
  border-radius: 50%;
}

.tintin-group__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.tintin-group__image {
  border-radius: 24px;
  overflow: hidden;
}

.tintin-group__image img {
  width: 100%;
  height: auto;
}

.tintin-group .tintin-group__box-buuton {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tintin-group .tintin-group__button {
  gap: 20px;
  width: 100%;
  border-radius: 20px;
  padding: 36px 40px;
  font-weight: 500;
  font-size: 24px;
  line-height: 117%;
  color: var(--black);
}

.tintin-group .tintin-group__button._active {
  background: var(--green);
}

.timeline {
  position: relative;
  width: 100%;
}

/* The actual timeline (the vertical ruler) */

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--green);
  top: 0;
  bottom: 0;
  left: 0%;
  margin-left: -3px;
}

/* Container around content */

.container {
  position: relative;
  background-color: inherit;
  width: 100%;
}

/* The circles on the timeline */

.container::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  left: -18px;
  background-color: var(--green);
  top: 35px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */

.left {
  left: 0;
}

/* Place the container to the right */

.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */

.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border-width: 10px 0 10px 10px;
  font-weight: 500;
  font-size: 24px;
  line-height: 117%;
}

/* Add arrows to the right container (pointing left) */

.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */

.right::after {
  left: -19px;
}

/* The actual content */

.content {
  padding: 40px 10px 40px 50px;
  position: relative;
  border-radius: 6px;
}

.content p {
  font-weight: 500;
  font-size: 24px;
  line-height: 117%;
  color: var(--white);
}

/* Media queries - Responsive timeline on screens less than 600px wide */

.favorites__title {
  margin: 0px 0px 60px 0px;
}

.favorites__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  margin: 0px 0px 40px 0px;
}

.favorites__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--light-gray);
  margin: 0px 0px 40px 0px;
}

.favorites__button {
  border-radius: 12px;
  padding: 12px 24px;
  max-width: 248px;
  width: 100%;
  min-height: 54px;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

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

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  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-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

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

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

.swiper-slide {
  -ms-flex-negative: 0;
      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;
}

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

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          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;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

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

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

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

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

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

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

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

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

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

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

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

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

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

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

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

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

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

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

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

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

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

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

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

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

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

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

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

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

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.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%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

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

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

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

.swiper-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-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

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

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

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

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

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

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

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

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

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

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

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

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  -o-transition-property: transform, opacity, height;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/**
 * Swiper 9.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 13, 2023
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: var(--swiper-wrapper-transition-timing-function, initial);
       -o-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

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

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  -ms-flex-negative: 0;
      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;
  display: block;
}

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

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

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          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;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

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

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

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

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.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%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

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

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
  border-radius: 5px;
  width: 3px;
  height: 67px;
  background: #B2F30C;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.5s linear;
  -o-transition: opacity 0.2s 0.5s linear;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 20px;
  width: 3px;
  bottom: 20px;
  right: 15px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (max-width: 1700px) {
  .prototype-slider__slide:nth-child(even) {
    margin-top: 0px !important;
  }

  .prototype-card__img {
    min-height: 720px;
  }
}

@media (max-width: 1650px) {
  .tabs-quests__body {
    max-width: 100%;
  }

  .personal-cabinet__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .personal-cabinet-menu {
    background-color: transparent;
    max-width: 100%;
    padding: 0px;
    margin-top: 20px;
  }

  .personal-cabinet-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 10px;
  }

  .personal-cabinet-menu__link {
    padding: 10px;
  }

  .first-section-main-content__icon-item {
    width: 80px;
    height: 80px;
  }

  .participants-rating__wrap-title {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-columns: 100px 450px 150px 150px;
    grid-template-columns: 100px 450px 150px 150px;
    text-align: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .rating-item {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-columns: 100px 450px 150px 150px;
    grid-template-columns: 100px 450px 150px 150px;
    text-align: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .rating-item__img {
    width: 60px;
    height: 60px;
  }

  .rating-item__team-item {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1550px) {
  .profile__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
  }
}

@media (max-width: 1500px) {
  .about-us__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .item-about-us {
    padding: 40px;
  }

  .item-about-us__title {
    width: 100%;
    font-size: 40px;
    margin: 0px 0px 57px 0px;
  }
}

@media (max-width: 1390px) {
  .second-section-flex-item__image {
    height: 350px;
  }

  .second-section-flex-item__image-1 {
    height: 366px;
  }
}

@media (max-width: 1200px) {
  .main-popup__title {
    font-size: 20px;
  }

  .main-popup__text {
    font-size: 14px;
  }

  .spollers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .spollers.buttun-sorting {
    display: none;
  }

  .spollers__title {
    font-size: 24px;
    line-height: 117%;
    text-align: center;
    color: var(--white);
    border: none;
    border-radius: 0px;
    padding: 16px 0px;
  }

  .spollers-list {
    border: none;
    position: relative !important;
    top: 0px;
    padding: 0px 0px 0px 0px;
    height: auto;
  }

  .tabs-faq__wrap-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 100%;
  }

  .tabs-faq__navigation {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: transparent;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    min-height: auto;
    padding: 0px;
    margin: 0px 0px 40px 0px;
  }

  .tabs-faq__title {
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8px 32px;
    font-size: 14px;
    min-height: 38px;
  }

  .tabs-faq__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .tabs-quests__row {
    gap: 20px;
  }

  .main-card.catalog-open {
    min-height: auto;
  }

  .header::after {
    display: block;
  }

  .header {
    padding: 20px 0px;
  }

  .header.catalog .header__wrapper {
    padding-right: 20px;
  }

  .header__logo {
    z-index: 101;
  }

  .header__user {
    margin-left: auto;
    position: relative;
    z-index: 101;
  }

  .header__user-link {
    padding: 8px 48px;
    min-height: 40px;
  }

  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 101;
  }

  .menu {
    min-width: 100%;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: -100%;
    border-radius: 0px;
    padding-top: 120px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: var(--black);
    z-index: 100;
  }

  .menu-open .menu {
    top: 0%;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .menu__link {
    font-size: 32px;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 20px;
    height: 15px;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .footer-bottom__links {
    -webkit-column-gap: inherit;
       -moz-column-gap: inherit;
            column-gap: inherit;
  }

  .footer-bottom__links {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .footer-bottom__links-box {
    -webkit-column-gap: inherit;
       -moz-column-gap: inherit;
            column-gap: inherit;
  }

  .footer-bottom__links-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    row-gap: 14px;
  }

  .footer-bottom__messages {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .footer-bottom__message {
    min-width: 100px;
  }

  .section-filter {
    margin-bottom: 40px;
  }

  .section-filter__title {
    margin: 0px 0px 40px 0px;
  }

  .section-filter__wrap-title {
    padding: 230px 0px 150px 0px;
  }

  .filter {
    position: fixed;
    width: 100%;
    height: 100%;
    left: -100%;
    padding: 40px;
    top: 0px;
    z-index: 101;
    overflow: auto;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .filter.open-filter {
    left: 0%;
  }

  .filter__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .filter__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .filter__buttons-desktop {
    display: none;
  }

  .price-filter__body {
    padding: 0px 0px 15px 0px;
  }

  .price-filter__inpunts {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    padding: 12px 0px;
    margin: 0px 0px 24px 0px;
  }

  .price-filter__input {
    width: auto;
  }

  .price-filter__range {
    margin: 0px 10px;
  }

  .section-filter-buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 16px;
  }

  .section-filter-buttons__button.sorting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .section-filter-buttons__button.all-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .section-filter-buttons__button.none {
    display: none;
  }

  .you-spoiled {
    margin: 0px 0px 40px 0px;
  }

  .spoiled__wrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 0px !important;
  }

  .spoiled__box-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .description-quests {
    margin-bottom: 40px;
  }

  .description-quests__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
    padding: 36px 48px;
  }

  .description-quests__block1 {
    width: 100%;
  }

  .description-quests__title {
    margin: 0px 0px 24px 0px;
  }

  .velovesta {
    margin-bottom: 40px;
  }

  .velovesta-slider-button-prev {
    width: 47px;
    height: 48px;
  }

  .velovesta-slider-button-prev svg {
    width: 47px;
    height: 48px;
  }

  .velovesta-slider-button-next {
    width: 47px;
    height: 48px;
    right: 16px;
  }

  .velovesta-slider-button-next svg {
    width: 47px;
    height: 48px;
  }

  .helpers {
    margin-bottom: 40px;
  }

  .helpers.quests .helpers-slider__slide {
    margin-right: 0px;
  }

  .helpers-slider__slide {
    border-radius: 24px;
    width: 592px !important;
    height: 650px !important;
    -webkit-transform: scale(0.9) !important;
        -ms-transform: scale(0.9) !important;
            transform: scale(0.9) !important;
    margin-right: 0px;
  }

  .helpers-slider__slide.swiper-slide-active {
    -webkit-transform: scale(1) !important;
        -ms-transform: scale(1) !important;
            transform: scale(1) !important;
  }

  .helpers-slider-item__content {
    padding: 100px 45px 0px 45px;
  }

  .first-section {
    margin-bottom: 40px;
  }

  .first-section__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
  }

  .first-section-row-1-item-1 {
    width: 100%;
    min-width: 150px;
  }

  .first-section-row-1-item-2 {
    width: 100%;
    min-width: 150px;
  }

  .first-section-row-2-item-1 {
    width: 100%;
    min-width: auto;
  }

  .first-section-row-2-item-1__header svg {
    width: 100%;
  }

  .first-section-row-2-item-2 {
    width: 100%;
    min-width: auto;
  }

  .second-section {
    margin-bottom: 40px;
  }

  .div1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-area: 1/1/3/13;
  }

  .div2 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-area: 3/1/4/7;
  }

  .div3 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-area: 4/1/5/7;
  }

  .div4 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    -ms-grid-column: 7;
    -ms-grid-column-span: 6;
    grid-area: 3/7/5/13;
  }

  .div4__img {
    bottom: 0px;
    right: 0%;
  }

  .div4__img.dectop {
    display: none;
  }

  .div4__img.tablet {
    display: none;
  }

  .div4__bg {
    left: 25%;
    bottom: -50px;
    display: none;
  }

  .div5 {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-area: 5/1/6/13;
  }

  .div6 {
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-area: 6/1/7/13;
  }

  .div7 {
    -ms-grid-row: 7;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    grid-area: 7/1/8/13;
  }

  .div8 {
    -ms-grid-row: 8;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-area: 8/1/9/5;
    min-height: auto;
    min-width: auto;
  }

  .div9 {
    -ms-grid-row: 8;
    -ms-grid-row-span: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 4;
    grid-area: 8/5/9/9;
  }

  .div10 {
    -ms-grid-row: 8;
    -ms-grid-row-span: 1;
    -ms-grid-column: 9;
    -ms-grid-column-span: 4;
    grid-area: 8/9/9/13;
  }

  .about-quests {
    margin-bottom: 40px;
  }

  .parent1 {
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
    -ms-grid-rows: 1fr 1fr 1fr 250px 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 250px 1fr 1fr;
  }

  .parent1__div1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
    grid-area: 1/1/2/9;
  }

  .parent1__div2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 9;
    -ms-grid-column-span: 4;
    grid-area: 1/9/2/13;
  }

  .parent1__div3 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-area: 2/1/3/7;
  }

  .parent1__div4 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 7;
    -ms-grid-column-span: 6;
    grid-area: 2/7/3/13;
  }

  .parent1__div5 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
    grid-area: 3/1/4/9;
  }

  .parent1__div6 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 9;
    -ms-grid-column-span: 4;
    grid-area: 3/9/4/13;
  }

  .parent1__div7 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-area: 4/1/5/5;
  }

  .parent1__div8 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 4;
    grid-area: 4/5/5/9;
  }

  .parent1__div9 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 9;
    -ms-grid-column-span: 4;
    grid-area: 4/9/5/13;
  }

  .parent1__div10 {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-area: 5/1/6/7;
  }

  .parent1__div11 {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 7;
    -ms-grid-column-span: 6;
    grid-area: 5/7/6/13;
  }

  .parent1__div12 {
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 8;
    grid-area: 6/1/7/9;
  }

  .parent1__div13 {
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    -ms-grid-column: 9;
    -ms-grid-column-span: 4;
    grid-area: 6/9/7/13;
  }

  .about-quests-item-green {
    padding: 30px;
    font-size: 32px;
  }

  .about-quests-item-green__text {
    font-size: 20px;
  }

  .about-quests-item-grey {
    padding: 30px;
    font-size: 24px;
  }

  .about-quests-item-grey__title {
    font-size: 20px;
  }

  .about-quests-item-blue {
    padding: 30px;
  }

  .about-quests-item-blue__title {
    font-size: 32px;
  }

  .about-quests-item-big-text {
    padding: 30px;
  }

  .about-quests-item-big-text__title {
    font-size: 20px;
  }

  .about-quests-item-big-text__text span:nth-child(1) {
    font-size: 80px;
  }

  .about-quests-item-big-text__text span:nth-child(2) {
    font-size: 20px;
  }

  .about-quests-item-white {
    padding: 30px;
    min-height: 100%;
  }

  .about-quests-item-white__title {
    margin: 0px 0px 32px 0px;
  }

  .about-quests-item-white__img {
    display: none;
  }

  .catalog {
    margin-bottom: 40px;
  }

  .catalog__box-grid {
    margin: 0px 0px 24px 0px;
  }

  .personal-cabinet {
    margin-bottom: 40px;
  }

  .profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .profile__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    row-gap: 8px;
  }

  .profile__button {
    width: 100%;
  }

  .change-password {
    margin: 0px 0px 40px 0px;
  }

  .change-password__button {
    max-width: 100%;
  }

  .team-item {
    width: 48%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 32px 24px 20px 24px;
  }

  .team-item__header {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    margin: 0px 0px 32px 0px;
  }

  .team-item__phone {
    margin: 0px 0px 12px 0px;
    font-size: 16px;
  }

  .team-item__email {
    margin: 0px 0px 40px 0px;
    font-size: 16px;
  }

  .team-item__delete {
    width: 100%;
    height: 100%;
    background-color: transparent;
  }

  .team-item__delete-text {
    display: block;
  }

  .team-item__delete-icon {
    display: none;
  }

  .first-section-main {
    margin-bottom: 40px;
  }

  .first-section-main__text {
    font-size: 32px;
    -webkit-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    bottom: 20px;
    left: 20px;
  }

  .first-section-main-content__num {
    font-size: 132px;
  }

  .first-section-main-content__text {
    font-size: 52px;
  }

  .second-section__box-grid {
    margin-bottom: 40px;
  }

  .second-section__box-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .second-section__box-grid {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .second-section-item {
    padding: 20px;
  }

  .second-section-flex-item {
    min-height: 503px;
    padding: 32px;
    width: 100%;
  }

  .second-section-flex-item__title {
    font-size: 32px;
    margin: 0px 0px 20px 0px;
  }

  .second-section-flex-item__text {
    font-size: 20px;
  }

  .rating-item {
    -ms-grid-columns: 100px 250px 100px 100px;
    grid-template-columns: 100px 250px 100px 100px;
  }

  .rating-item__box-name {
    padding-right: 20px;
  }

  .rating-item__name {
    font-size: 16px;
  }

  .rating-item__id {
    font-size: 16px;
  }

  .rating-item__quests {
    font-size: 16px;
  }

  .rating-item__points {
    font-size: 16px;
  }

  .about-us {
    margin-bottom: 40px;
  }

  .tasks {
    margin-bottom: 40px;
  }

  .tasks__row {
    margin-bottom: 40px;
  }

  .tasks__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .tasks__col:nth-child(1) {
    width: 48%;
  }

  .tasks__col:nth-child(2) {
    width: 48%;
  }

  .tasks__col:nth-child(3) {
    width: 100%;
  }

  .faq {
    margin-bottom: 40px;
  }

  .blog {
    margin-bottom: 40px;
  }

  .blog__rwo {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .article {
    margin-bottom: 40px;
  }

  .article-box__img {
    min-height: 257px;
  }

  .rules {
    margin-bottom: 40px;
  }

  .certificate {
    margin-bottom: 40px;
  }

  .certificate__block-1 {
    margin-bottom: 40px;
  }

  .certificate__block-1 {
    min-height: 380px;
  }

  .certificate__block-2 {
    margin-bottom: 40px;
  }

  .certificate__block-3 {
    row-gap: 40px;
  }

  .certificate__text {
    font-size: 20px;
  }

  .certificate__bg-item-1 {
    width: 281px;
    height: 281px;
    top: 30%;
    -webkit-transform: translate(0, 0%);
        -ms-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }

  .certificate__bg-item-2 {
    width: 180px;
  }

  .certificate__bg-item-3 {
    width: 150px;
  }

  .certificate-block-2__row {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .item-certificate {
    min-height: 529px;
    padding: 40px;
  }

  .item-certificate__title {
    font-size: 40px;
  }

  .item-certificate__text {
    font-size: 20px;
  }

  .step__image {
    height: 250px;
    bottom: 0%;
    right: 0px;
  }

  .prototype-quests {
    margin-bottom: 40px;
  }

  .prototype-slider__title {
    font-size: 40px;
  }

  .prototype-card__num {
    font-size: 60px;
  }

  .prototype-card__img {
    min-height: 420px;
    margin: 0px 0px 32px 0px;
  }

  .prototype-card__sub-title {
    font-size: 24px;
  }

  .prototype-card__description {
    font-size: 16px;
  }

  .tintin-group__list {
    width: 100%;
  }

  .tintin-group__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
  }

  .tintin-group .tintin-group__box-buuton {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .favorites__title {
    margin: 0px 0px 40px 0px;
  }
}

@media (max-width: 1200px) and (max-width: 1200px) {
  .team__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .tasks__col:nth-child(1) {
    width: 100%;
  }

  .tasks__col:nth-child(2) {
    width: 100%;
  }

  .tasks__col:nth-child(3) {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  [class$=__container] {
    padding: 0px 40px;
  }

  .div2__text {
    font-weight: 500;
    font-size: 12px;
    margin-top: 88px;
  }

  .parent1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    height: 100%;
  }

  .about-quests-item-image {
    min-height: 384px;
  }

  .about-quests-item-blue {
    min-height: 182px;
  }

  .box-progres-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .first-section-main__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .first-section-main__image {
    min-height: 450px;
    border-radius: 16px;
  }

  .second-section__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .second-section-flex-item__image.dectop {
    display: none;
  }

  .second-section-flex-item__image.mob {
    display: block;
  }

  .second-section-flex-item__image {
    right: -60px;
    bottom: -60px;
  }

  .second-section-flex-item__image-1 {
    display: none;
  }

  .rating-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 16px 20px;
  }

  .rating-item__num {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 60px;
    height: 60px;
    -webkit-transform: translate(0, -80%);
        -ms-transform: translate(0, -80%);
            transform: translate(0, -80%);
  }

  .rating-item__text {
    font-size: 16px;
    font-weight: 500;
  }

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

  .rating-item__id {
    display: none;
  }

  .rating-item__quests {
    display: none;
  }

  .rating-item__points {
    display: none;
  }

  .rating-item__team {
    display: none;
  }

  .rating-item__link {
    display: block;
  }

  .about-us__col {
    width: 100%;
  }

  .certificate__block-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .certificate__block-1 {
    min-height: 450px;
    margin: 0px 0px 16px 0px;
  }

  .certificate__box-content {
    width: 100%;
  }

  .certificate__title {
    margin: 0px 0px 20px 0px;
  }

  .certificate__bg {
    width: 100%;
    min-height: 270px;
  }

  .certificate__bg-item-1 {
    width: 246px;
    height: 246px;
    top: 10%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }

  .certificate-block-2__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .item-certificate {
    min-height: 450px;
  }

  .tintin-group__wrap.col-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  [class$=__container] {
    padding: 0px 14px;
  }

  .main-popup {
    padding: 40px 20px;
  }

  .spollers__title {
    font-size: 20px;
    padding: 10px 0px;
  }

  .spollers-list__text {
    font-size: 14px;
  }

  .spollers-faq__item {
    padding: 16px;
  }

  .spollers-faq__title .text {
    font-size: 18px;
  }

  .spollers-faq__list {
    padding: 20px 0px;
  }

  .tabs-quests__navigation {
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px;
  }

  .tabs-quests__text {
    margin: 0px 0px 20px 0px;
    font-weight: 500;
    font-size: 12px;
  }

  .tabs-quests__title {
    font-size: 12px;
    min-height: 30px;
    padding: 4px 16px;
    border-radius: 20px;
    margin: 0px 0px 20px 0px;
  }

  .tabs-quests__body.quests {
    background: var(--black);
    padding: 0px;
  }

  .tabs-quests__row {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .tabs-quests__empty {
    padding: 70px 0px;
  }

  .tabs-quests__button {
    min-width: 100%;
    min-height: 48px;
    padding: 10px 56px;
  }

  .tabs-quests__button-black {
    background-color: var(--white);
    min-height: 48px;
    border-radius: 16px;
    padding: 12px 56px;
    font-size: 14px;
    color: var(--black);
  }

  h1,
  .h1 {
    font-weight: 700;
  }

  h2,
  .h2 {
    font-weight: 600;
  }

  h3,
  .h3 {
    font-weight: 600;
  }

  .main-card {
    padding: 12px;
    border-radius: 16px;
    min-height: 550px;
  }

  .main-card__image {
    margin: 0px 0px 16px 0px;
    height: 224px;
  }

  .main-card__header {
    margin: 0px 0px 20px 0px;
  }

  .main-card__body {
    margin: 0px 0px 32px 0px;
  }

  .main-card__title {
    font-weight: 700;
  }

  .item-info__block-text-2 {
    font-weight: 700;
  }

  .header::after {
    height: 60px;
  }

  .header {
    padding: 16px 0px;
  }

  .header.catalog .header__wrapper {
    padding-right: 0px;
  }

  .header__wrapper {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .header__logo img {
    height: 28px;
  }

  .header__logo {
    height: 28px;
    width: 61px;
  }

  .header__user-link {
    font-size: 12px;
    min-height: 28px;
    padding: 8px 32px;
  }

  .header__burger {
    width: 28px;
    height: 28px;
  }

  .menu {
    padding-top: 100px;
    padding-left: 0px;
  }

  .menu__list {
    row-gap: 24px;
    padding-left: 15px;
  }

  .menu__link {
    font-size: 24px;
    padding: 0px;
  }

  .icon-menu {
    width: 15px;
    height: 10px;
  }

  .footer-top__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .footer-top__logo img {
    height: 28px;
  }

  .footer-top__logo {
    height: 28px;
    width: 61px;
  }

  .footer-top__menu {
    width: 100%;
  }

  .menu-footer-top {
    padding: 20px 0px;
    min-width: auto;
    width: 100%;
  }

  .menu-footer-top ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 8px;
  }

  .menu-footer-top ul li a {
    min-width: 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
  }

  .footer-bottom {
    background-color: var(--black);
  }

  .footer-bottom__box {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .footer-bottom__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
  }

  .footer-bottom__links-box {
    row-gap: 8px;
  }

  .footer-bottom__message {
    min-width: 32px;
    min-height: 32px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 20px;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    background: var(--white);
  }

  .footer-bottom__message svg path {
    fill: #000;
  }

  .tul-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .section-filter__title {
    margin: 0px 0px 16px 0px;
  }

  .section-filter__bg img {
    top: 90px;
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .section-filter__wrap-title {
    padding: 150px 0px 60px 0px;
  }

  .filter {
    padding: 20px;
  }

  .filter__close {
    right: 20px;
    top: 20px;
  }

  .price-filter__input {
    width: 100%;
  }

  .section-filter-buttons__button {
    min-height: 38px;
    padding: 8px 12px;
  }

  .section-filter-buttons__button.sorting {
    min-height: 38px;
    padding: 8px 12px;
  }

  .spoiled-button-prev svg {
    width: 123px;
    height: 37px;
  }

  .spoiled-button-next svg {
    width: 123px;
    height: 37px;
  }

  .description-quests__wrap {
    background: var(--black);
    padding: 0px;
  }

  .description-quests__title {
    margin: 0px 0px 32px 0px;
  }

  .description-quests__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .progress-bar {
    background: conic-gradient(var(--green), var(--progress), var(--gray) 0%);
  }

  .progress-bar::after {
    background-color: var(--black);
  }

  .progress-bar-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }

  .velovesta-slider__slide {
    border-radius: 0px;
  }

  .velovesta-slider-button-prev {
    display: none;
  }

  .velovesta-slider-button-next {
    display: none;
  }

  .helpers-slider__slide {
    width: 256px !important;
    height: 328px !important;
    border-radius: 16px;
  }

  .first-section.quests .first-section__title {
    font-size: 32px;
  }

  .first-section.quests .first-section-row-2-item-2 {
    background: var(--gray);
  }

  .first-section.quests .first-section-row-1-item-1 {
    background: var(--gray);
  }

  .first-section.quests .first-section__box {
    min-height: 297px;
  }

  .first-section.quests .first-section__block-1 {
    border-radius: 16px;
  }

  .first-section.quests .first-section-row-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    text-align: center;
  }

  .first-section.quests .first-section-row-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 20px;
    text-align: center;
  }

  .first-section__block-1 {
    padding: 20px;
  }

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

  .first-section__link {
    min-height: 56px;
    min-width: auto;
    width: 100%;
  }

  .first-section__icons {
    display: none;
  }

  .first-section-row-1 {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }

  .first-section-row-1-item-1 {
    padding: 21px;
  }

  .first-section-row-1-item-1__title {
    margin: 0px 0px 26px 0px;
    font-size: 20px;
    line-height: 140%;
  }

  .first-section-row-1-item-1__text span:nth-child(1) {
    font-size: 60px;
  }

  .first-section-row-1-item-1__text span:nth-child(2) {
    font-size: 24px;
  }

  .first-section-row-1-item-2 {
    padding: 21px;
  }

  .first-section-row-1-item-2__title {
    margin: 0px 0px 20px 0px;
    text-align: center;
    font-size: 20px;
  }

  .first-section-row-1-item-2__text span:nth-child(1) {
    font-size: 60px;
  }

  .first-section-row-1-item-2__text span:nth-child(2) {
    font-size: 24px;
  }

  .first-section-row-2 {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }

  .first-section-row-2-item-1__header {
    margin: 0px 0px 11px 0px;
  }

  .first-section-row-2-item-1__header svg {
    height: 72px;
  }

  .first-section-row-2-item-1__text {
    font-size: 14px;
    font-weight: 600;
  }

  .first-section-row-2-item-2__text-1 {
    font-size: 20px;
    color: var(--green);
  }

  .first-section-row-2-item-2__text-2 {
    font-size: 60px;
    margin: 0px 0px 11px 0px;
  }

  .first-section-row-2-item-2__rating {
    display: none;
  }

  .parent {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 245px 245px 245px 245px 245px 245px 200px 150px;
    grid-template-rows: 245px 245px 245px 245px 245px 245px 200px 150px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .div1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/2/3;
    border-radius: 12px;
  }

  .div1__text {
    font-size: 20px;
  }

  .div1__img {
    width: 252px;
    height: 105px;
  }

  .div2 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
    border-radius: 12px;
  }

  .div3 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
    border-radius: 12px;
  }

  .div4 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 3/1/4/3;
    border-radius: 12px;
  }

  .div5 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 4/1/5/3;
  }

  .div6 {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 5/1/6/3;
  }

  .div7 {
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 6/1/7/3;
  }

  .div7__text {
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
  }

  .div7__bg {
    right: 50%;
    -webkit-transform: translate(50%, 0);
        -ms-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }

  .div7__bg svg {
    width: 140px;
    height: 70px;
  }

  .div8 {
    -ms-grid-row: 7;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 7/1/8/2;
    border-radius: 12px;
  }

  .div9 {
    -ms-grid-row: 7;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 7/2/8/3;
    border-radius: 12px;
  }

  .div10 {
    -ms-grid-row: 8;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 8/1/9/3;
    border-radius: 12px;
  }

  .about-quests-item-green {
    min-height: auto;
  }

  .about-quests-item-green__title {
    margin: 0px 0px 32px 0px;
  }

  .about-quests-item-grey {
    min-height: auto;
  }

  .about-quests-item-grey__title {
    margin: 0px 0px 32px 0px;
  }

  .about-quests-item-big-text {
    min-height: auto;
  }

  .about-quests-item-white {
    min-height: auto;
  }

  .catalog__title {
    font-size: 12px;
  }

  .personal-cabinet__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .personal-cabinet__title {
    margin: 0px 0px 20px 0px;
  }

  .personal-cabinet-menu__list {
    display: none;
  }

  .profile__header {
    row-gap: 16px;
  }

  .profile__name-box {
    border-radius: 16px;
    padding: 24px 16px 32px 16px;
  }

  .profile__name-box {
    margin: 0px 0px 16px 0px;
    min-height: auto;
  }

  .profile__image {
    width: 120px;
    height: 120px;
  }

  .profile__actions {
    margin: 0px 0px 24px 0px;
  }

  .profile__name {
    font-size: 20px;
  }

  .profile__information {
    border-radius: 16px;
    padding: 24px 16px 32px 16px;
  }

  .profile__wrap {
    margin: 0px 0px 16px 0px;
  }

  .profile__title {
    font-size: 20px;
  }

  .profile__text-2 {
    font-size: 14px;
  }

  .profile__button {
    font-size: 14px;
    min-height: 48px;
    padding: 12px 24px;
    font-size: 16px;
  }

  .change-password {
    border-radius: 16px;
    padding: 24px 16px 32px 16px;
    margin: 0px 0px 16px 0px;
  }

  .change-password__title {
    font-size: 20px;
    margin: 0px 0px 32px 0px;
  }

  .change-password__line {
    border-radius: 12px;
    padding: 12px;
    min-height: 44px;
  }

  .change-password__input {
    font-size: 12px;
  }

  .change-password__button {
    font-size: 14px;
    min-height: 48px;
    padding: 12px 24px;
    font-size: 16px;
    min-height: 44px;
    border-radius: 12px;
    padding: 12px;
  }

  .сurrent-statistics {
    min-height: 320px;
    padding: 0px;
    border-radius: 0px;
  }

  .сurrent-statistics__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }

  .team__title-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .team__button {
    border-radius: 16px;
    padding: 12px 56px;
    min-height: 48px;
    width: 100%;
  }

  .team-item {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding: 24px;
  }

  .team-item__name {
    font-size: 16px;
  }

  .first-section-main-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .first-section-main-content__num {
    display: none;
  }

  .first-section-main-content__text {
    font-size: 16px;
  }

  .second-section__box-grid {
    row-gap: 20px;
  }

  .second-section-item__icon {
    margin: 0px 0px 30px 0px;
    width: 60px;
    height: 60px;
  }

  .second-section-item__text {
    font-size: 20px;
  }

  .second-section-flex-item {
    min-height: 240px;
    border-radius: 16px;
    padding: 20px;
  }

  .second-section-flex-item__title {
    font-size: 20px;
  }

  .second-section-flex-item__text {
    font-size: 16px;
  }

  .second-section-flex-item__image {
    width: 335px;
    height: 212px;
  }

  .season-quest {
    margin: 0px 0px 40px 0px;
  }

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

  .season-quest__wrap-title {
    margin: 0px 0px 24px 0px;
  }

  .season-quest__title {
    margin: 0px 0px 10px 0px;
  }

  .season-quest__title span {
    display: block;
  }

  .season-quest__text {
    font-size: 16px;
  }

  .leaders__title {
    margin-top: 0px;
  }

  .leaders__box {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    margin: 0px 0px 40px 0px;
  }

  .leaders-item__icon {
    width: 60px;
    height: 60px;
  }

  .leaders-item__text {
    display: none;
  }

  .leaders-item__place {
    max-width: 104px;
  }

  .leaders-item__place.first {
    height: 194px;
  }

  .leaders-item__place.second {
    height: 129px;
  }

  .leaders-item__place.third {
    height: 81px;
  }

  .participants-rating__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0px 0px 32px 0px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .participants-rating__wrap-item.none {
    display: none;
  }

  .erorr-404-block {
    border-radius: 20px;
  }

  .enter {
    min-width: auto;
    border-radius: 0px;
    min-width: 340px;
    width: 100%;
  }

  .enter-form {
    padding: 40px 15px;
  }

  .about-us__col {
    min-height: 300px;
  }

  .item-about-us {
    padding: 16px;
    border-radius: 16px;
  }

  .item-about-us__title {
    font-size: 32px;
    margin: 0px 0px 47px 0px;
  }

  .item-about-us__img.size {
    height: 259px;
  }

  .tasks__title {
    margin: 0px 0px 20px 0px;
  }

  .tasks__item {
    padding: 24px;
    border-radius: 16px;
  }

  .relate-rules {
    padding: 16px;
    border-radius: 16px;
    min-height: 315px;
  }

  .relate-rules__text-white {
    font-weight: 600;
    margin: 0px 0px 16px 0px;
  }

  .relate-rules__button {
    min-height: 48px;
  }

  .faq__button {
    min-height: 48px;
  }

  .blog__rwo {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .article__title {
    margin: 0px 0px 40px 0px;
  }

  .article-box__img {
    min-height: 165px;
    border-radius: 12px;
  }

  .article-box-item__title {
    font-size: 24px;
    margin: 0px 0px 32px 0px;
  }

  .article-box-item__sub-title {
    font-weight: 500;
    font-size: 20px;
    margin: 0px 0px 16px 0px;
  }

  .rules__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }

  .rules__button {
    min-height: 40px;
    width: 100%;
    padding: 10px 40px;
    border-radius: 20px;
    padding: 4px 20px;
    font-weight: 500;
    font-size: 12px;
  }

  .rules-item {
    margin: 0px 0px 20px 0px;
  }

  .rules-item__title {
    margin: 0px 0px 20px 0px;
  }

  .rules-item p {
    margin: 0px 0px 20px 0px;
  }

  .rules-item ol {
    padding-left: 20px;
  }

  .rules-item ul li {
    padding-left: 10px;
  }

  .certificate.home .certificate__box-content {
    padding: 20px;
    min-height: 350px;
  }

  .certificate.home .certificate__bg {
    padding: 20px;
    min-height: 350px;
  }

  .certificate__block-2 {
    margin: 0px 0px 16px 0px;
  }

  .certificate__block-3 {
    row-gap: 16px;
  }

  .certificate__text {
    font-size: 16px;
    line-height: 150%;
  }

  .certificate__bg-item-1 img {
    width: 281px;
    height: 281px;
  }

  .certificate__bg-item-2 {
    width: 101px;
    height: 101px;
    left: 75%;
    top: 10%;
  }

  .certificate__bg-item-3 {
    width: 70px;
    height: 70px;
    left: 75%;
    bottom: 10%;
  }

  .item-certificate {
    min-height: 315px;
    border-radius: 16px;
    padding: 24px 20px;
  }

  .item-certificate__title {
    font-size: 32px;
  }

  .item-certificate__text {
    font-size: 16px;
    line-height: 150%;
  }

  .item-certificate__num {
    min-height: 40px;
    font-size: 20px;
    font-weight: 500;
    max-width: 180px;
    width: 100%;
  }

  .item-certificate__button {
    min-height: 54px;
    border-radius: 40px;
    padding: 16px 56px;
    font-size: 14px;
  }

  .step {
    border-radius: 16px;
    padding: 16px 16px 0px 16px;
  }

  .step__step {
    margin: 0px 0px 16px 0px;
    font-size: 20px;
    min-height: 44px;
  }

  .step__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }

  .step__image {
    position: static;
    height: auto;
  }

  .step__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }

  .step__button {
    width: 100%;
    font-size: 14px;
    line-height: 157%;
    height: 54px;
    padding: 20px 20px;
  }

  .step-form__title {
    font-size: 20px;
  }

  .step-form__text {
    font-size: 14px;
    line-height: 157%;
    margin: 0px 0px 40px 0px;
  }

  .step-form__inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }

  .step-form__line {
    min-height: 44px;
  }

  .step-form__input {
    font-size: 12px;
  }

  .prototype-quests-header {
    margin: 0px 0px 40px 0px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 16px;
  }

  .prototype-quests-header__question {
    font-size: 20px;
    min-height: 44px;
    min-width: 105px;
    padding: 8px 20px;
    border-radius: 40px;
  }

  .prototype-quests-header__points {
    font-weight: 500;
    font-size: 14px;
    line-height: 157%;
    width: 100%;
  }

  .prototype-slider {
    padding: 40px 0px 40px 0px;
  }

  .prototype-slider__title {
    font-size: 20px;
  }

  .prototype-card__num {
    font-size: 40px;
    margin: 0px 0px 16px 0px;
  }

  .prototype-card__img {
    margin: 0px 0px 16px 0px;
  }

  .prototype-card__sub-title {
    font-size: 20px;
    font-weight: 500;
  }

  .prototype-buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }

  .prototype-buttons__button {
    min-height: 54px;
    padding: 16px;
  }

  .prototype-quests-form__line {
    min-height: 54px;
    padding: 0px 16px;
  }

  .prototype-quests-form__input {
    font-size: 14px;
  }

  .prototype-quests-form__icon {
    width: 54px;
    height: 54px;
  }

  .prototype-quests-form__icon svg {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 48px;
    height: 48px;
  }

  .tintin-group__block-1 {
    padding: 20px;
    padding: 16px;
    margin: 0px 0px 20px 0px;
  }

  .tintin-group__title.list {
    margin: 0px 0px 32px 0px;
  }

  .tintin-group__title {
    font-size: 20px;
    line-height: 140%;
  }

  .tintin-group__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
  }

  .tintin-group__name-professions {
    line-height: 150%;
    font-size: 16px;
  }

  .tintin-group__block2.bg-color-gray {
    padding: 24px;
  }

  .tintin-group__block2.col-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .tintin-group__list ul {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .tintin-group__item::after {
    width: 10px;
    height: 10px;
    top: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }

  .tintin-group__item {
    font-size: 16px;
    line-height: 150%;
  }

  .tintin-group .tintin-group__box-buuton {
    gap: 16px;
  }

  .tintin-group .tintin-group__button {
    font-size: 14px;
    border-radius: 8px;
    padding: 16px 40px;
  }

  .timeline::after {
    width: 2px;
  }

  .container::after {
    width: 16px;
    height: 16px;
    left: -10px;
  }

  .content p {
    font-size: 16px;
  }

  .content {
    padding: 35px 10px 0px 35px;
  }

  .favorites__box {
    row-gap: 20px;
  }

  .favorites__button {
    font-weight: 500;
  }
  .prototype-slider__wrapper {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) and (max-width: 767.98px) {
  .relate-rules__text {
    margin: 0px 0px 20px 0px;
  }
}

@media (any-hover: hover) {
  .button__button--black:hover {
    color: var(--black);
    background: var(--green);
  }

  .button__button--white:hover {
    background: var(--green);
  }

  .button__button--green:hover {
    background: var(--white);
  }

  .button__button--blue:hover {
    background: var(--green);
    color: var(--black);
  }

  .button__button--blue:hover svg g path {
    fill: #000;
  }

  .button__button--grey:hover {
    background: var(--green);
  }

  .spollers.buttun-sorting:hover .text {
    color: var(--green);
  }

  .spollers.buttun-sorting:hover .icon svg path {
    fill: var(--green);
  }

  .spollers__item:hover {
    color: var(--green);
  }

  .spollers__item:hover .spollers__title {
    color: var(--green);
  }

  .spollers__item:hover .spollers__title .arrow svg path {
    fill: var(--green);
  }

  .main-card:hover .main-card__rating {
    background: var(--green);
  }

  .main-card:hover .item-info__icon svg rect {
    fill: var(--green);
  }

  .menu__link:hover {
    background: var(--white);
    color: var(--black);
  }

  .menu-footer-top ul li a:hover {
    background: var(--white);
    color: var(--black);
  }

  .footer-bottom__link:hover {
    color: var(--green);
  }

  .spoiled-button-prev:hover svg path {
    stroke: #c3c3c3;
  }

  .spoiled-button-next:hover svg path {
    stroke: #c3c3c3;
  }

  .velovesta-slider-button-prev:hover svg ellipse {
    fill: var(--green);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .velovesta-slider-button-next:hover svg ellipse {
    fill: var(--green);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .helpers-slider__slide:hover .helpers-slider-item__blure {
    opacity: 1;
  }

  .helpers-slider__slide:hover .helpers-slider-item__content {
    opacity: 1;
  }

  .first-section__icons-link:hover svg rect {
    fill: var(--green);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .first-section__icons-link._active svg rect {
    fill: var(--green);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .team__button:hover {
    background: var(--green);
  }

  .erorr-404-block__button:hover {
    -webkit-box-shadow: 0 0 5px var(--green);
            box-shadow: 0 0 5px var(--green);
  }

  .enter-form__button:hover {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }

  .relate-rules__button:hover {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }

  .blog__button:hover {
    background: var(--green);
  }

  .blog-card__button:hover {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
}

.webp .wrapper.enter-bg{ background-image: url(../img/enter-bg.webp); }

.input__error {
  color: red;
  font-size: 12px;
  line-height: 12px;
  font-weight: bold;
}

.status-message .erorr-404-block {
  max-width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 40px;
  min-height: auto;
}

.status-message .erorr-404-block__text {
  font-size: 16px;
  line-height: 150%;
  margin: 0px;
}

.answer-input-error {
  position: absolute;
  bottom: -30px;
  font-size: 20px;
  display: none;
}

.article h1 {
  font-size: clamp(24px ,14.7428571429px + 2.5714285714vw ,60px);
  margin: 0 0 60px 0;
  text-transform: none;
}

.article h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: var(--white);
  margin: 0 0 40px 0;
}

.article h3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  color: var(--white);
  margin: 0 0 24px 0;
}

.article h4 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 117%;
  color: var(--white);
  margin: 0px 0px 24px 0px;
}
.article h4::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #FFD700; /* Жёлтый цвет */
  border-radius: 50%; /* Превращает квадрат в круг */
  margin-right: 4px; /* Отступ между кружком и текстом */
  vertical-align: middle; /* Выравнивание по центру с текстом */
}

.article p, 
.article ul,
.article ol {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  margin-bottom: 40px;
}

.current-statistics {
  margin-bottom: 20px;
}

.rating-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.star {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}

.star:hover,
.star.hover,
.star.selected {
  color: #fdd017;
}

/* Скрытое радио-инпуты (для хранения значения) */
.rating-input {
  display: none;
}

@media (max-width: 600px) {
  .star {
    font-size: 1.6rem;
  }
}
.quest-feedback-form {
  margin-top: 40px;
}
.quest-feedback-form, .quest-feedback-form__form {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  font-size: 14px;
  color: var(--white);
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: " / ";
  margin: 0 8px;
  color: #999;
}

.breadcrumb a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--white);
  text-decoration: none;
}

.breadcrumb li:last-child span {
  color: var(--white);
  font-weight: 500;
}

.breadcrumb__container {
  margin-top: 20px;
  text-align: left;
  width: 100%;
}

.first-section__box-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.first-section__box-price {
  font-size: 24px;
}

.first-section__box-buttons .button {
  min-width: 300px;
  min-height: 70px;
}

.section-filter__wrap {
  position: relative;
  z-index: 999;
}