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

@font-face {
  font-family: "LabGrotesque";
  font-display: swap;
  src: url("../fonts/LabGrotesque-Medium.woff2") format("woff2"), url("../fonts/LabGrotesque-Medium.woff") format("woff"), url("../fonts/LabGrotesque-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

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

@font-face {
  font-family: "LabGrotesque";
  font-display: swap;
  src: url("../fonts/LabGrotesque-Light.woff2") format("woff2"), url("../fonts/LabGrotesque-Light.woff") format("woff"), url("../fonts/LabGrotesque-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "LabGrotesque";
  font-display: swap;
  src: url("../fonts/LabGrotesque-Thin.woff2") format("woff2"), url("../fonts/LabGrotesque-Thin.woff") format("woff"), url("../fonts/LabGrotesque-Thin.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

:root {
  --color-whte: #fff;
  --color-whte--rgb: 255, 255, 255;
  --color-blck: #000;
  --color-blck--rgb: 0, 0, 0;
  --color-ylw: #ABFC4F;
  --color-ylw--rgb: 171, 252, 79;
  --color-gry: #5D5A59;
  --color-gry--rgb: 93, 90, 89;
  --color-blck2: #303030;
  --color-blck2--rgb: 48, 48, 48;
  --font-primary: LabGrotesque, sans-serif, -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, Droid Sans, Helvetica Neue, Arial, sans-serif, Apple Color Emoji;
}

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

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

*::before,
*::after {
  display: inline-block;
}

html,
body {
  min-width: 360px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: var(--color-primary);
  line-height: 1;
  font-family: "LabGrotesque", sans-serif, -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji";
  font-size: 0.875rem;
  -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: "LabGrotesque", sans-serif, -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

picture,
picture>img,
img {
  vertical-align: top;
}

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

address,
cite {
  font-style: normal;
}

body {
  background-color: var(--color-blck);
  color: var(--color-whte);
  font-size: 1rem;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body::-webkit-scrollbar {
  height: 5px;
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: var(--color-scroll-bg);
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--color-alt);
}

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

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

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

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

::-moz-selection {
  color: var(--color-primary);
  background: var(--color-bg);
}

::selection {
  color: var(--color-primary);
  background: var(--color-bg);
}

[class*=__container] {
  --pad: 30px;
  max-width: calc(76.875rem);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 var(--pad);
  margin: 0 auto;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

.input {
  padding: 1rem 1.6875rem;
  border-radius: 10px;
  border: 1px solid #303030;
  font-size: 1rem;
  font-weight: 300;
  line-height: 110%;
  letter-spacing: -0.32px;
}

.input._form-focus {
  outline: none;
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
  color: #303030;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
  color: #303030;
  -moz-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
  color: #303030;
  -ms-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
  color: #303030;
  -ms-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  color: #303030;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-webkit-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus:-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}

.checkbox__input {
  position: relative;
  width: 1.1875rem;
  height: 1.1875rem;
  min-width: 1.1875rem;
  min-height: 1.1875rem;
  border: 1px solid var(--color-blck2);
  cursor: pointer;
}

.checkbox__input input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}

.checkbox__input input:checked+label {
  opacity: 1;
}

.checkbox__input label {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-blck);
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.checkbox__text {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 122%;
  letter-spacing: -0.24px;
}

.checkbox__text a {
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline;
}

.icon-menu {
  display: none;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, .5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .8s ease 0s;
  transition: opacity .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 .8s ease 0s;
  transition: visibility .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 .3s ease 0s;
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

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

.ibg--top {
  -o-object-position: top;
  object-position: top;
}

.ibg--bottom {
  -o-object-position: bottom;
  object-position: bottom;
}

.ibg--left {
  -o-object-position: left;
  object-position: left;
}

.ibg--right {
  -o-object-position: right;
  object-position: right;
}

.ibg--contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.ml-auto {
  margin-left: auto;
}

.btn {
  border: none;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1.53125rem;
  border-radius: 0.625rem;
  background-color: var(--color-ylw);
  color: var(--color-blck);
  display: block;
}

.titles {
  margin-top: 0.25rem;
}

.titles__item {
  font-size: 3.5rem;
  background-color: var(--color-ylw);
  padding: 0.985rem 1.9375rem;
  margin-top: -0.25rem;
  color: var(--color-blck);
  font-weight: 500;
  line-height: 114%;
  text-transform: uppercase;
  border-radius: 18.246px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.slider__top {
  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-bottom: 3.125rem;
}

.slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 200px;
  gap: 2.1875rem;
  padding: 1.25rem 1.1875rem;
  border: 2px solid var(--color-whte);
}

.slider__nav-arrow svg path {
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

.slider__nav-arrow:hover svg path {
  fill: var(--color-ylw);
}

.slider__nav-arrow--next svg {
  -webkit-transform: rotateZ(180deg);
  -ms-transform: rotate(180deg);
  transform: rotateZ(180deg);
}

.header--fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.header__top {
  padding: 0 0 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--color-whte);
  color: var(--color-gry);
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__top-col--ui {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.875rem;
}

.header__top-logo {
  max-width: 8.875rem;
  width: 100%;
  display: block;
}

.header__top-logo picture,
.header__top-logo picture>img,
.header__top-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header__top-login {
  font-size: 0.75rem;
  padding: 0.4375rem 0;
  line-height: 166%;
}

.header__top-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4375rem;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: .277px;
}

.header__top-phone:hover {
  text-decoration: underline;
}

.header__top-btn {
  background-color: #6e7992;
  color: #d6d6d6;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  padding-left: 0.625rem;
  padding-right: 1.5625rem;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.4375rem 0.5rem;
  line-height: 153%;
}

.header__row {
  padding-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__col--logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem;
}

.header__logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 10.625rem;
}

.header__logo picture,
.header__logo picture>img,
.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header__logo--big {
  max-width: 11.75rem;
}

.header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem;
}

.header__menu li a {
  font-size: 1rem;
  line-height: 125%;
  font-weight: 700;
  text-underline-offset: 5px;
}

.header__menu li a:hover {
  text-decoration: underline;
}

.offer--home {
  padding-bottom: 5.875rem;
}

.offer--home .offer__top {
  padding-top: 7.625rem;
}

.offer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.0625rem;
  -moz-column-gap: 2.0625rem;
  column-gap: 2.0625rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.offer__title {
  display: inline;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 1.125rem 2.1875rem;
  font-size: 3.5625rem;
  font-weight: 500;
  line-height: 112%;
  text-transform: uppercase;
  background-color: var(--color-blck);
  border-radius: 1.125rem;
  margin-top: -0.25rem;
}

.offer__label {
  margin-top: 0.875rem;
  font-size: 1.25rem;
  line-height: 130%;
  max-width: 25rem;
  text-transform: uppercase;
}

.offer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.offer__ticket {
  max-width: 26.875rem;
  width: 100%;
  padding: 1.875rem 2rem;
  color: var(--color-blck);
  background-image: url("../img/home/offer/ticket.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotateZ(7.65deg);
  -ms-transform: rotate(7.65deg);
  transform: rotateZ(7.65deg);
}

.offer__ticket-title,
.offer__ticket-description {
  -webkit-transform: rotateZ(0.8deg);
  -ms-transform: rotate(0.8deg);
  transform: rotateZ(0.8deg);
}

.offer__ticket-title {
  font-size: 2.5625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 0.1875rem;
  padding-bottom: 0.5625rem;
  line-height: 125%;
  font-weight: 300;
  border-bottom: 1.5px solid var(--color-blck);
}

.offer__ticket-title strong {
  font-weight: 700;
}

.offer__ticket-description {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.0625rem;
  padding-top: 0.5625rem;
  font-weight: 300;
  line-height: 133.333%;
}

.offer__btn {
  margin-top: 3.3125rem;
  max-width: 26.8125rem;
  width: 100%;
  text-align: center;
}

.no-webp .forum {
  background-image: url("../img/home/forum/bg.jpg");
}

.forum {
  padding-top: 7.5rem;
  padding-bottom: 9.5625rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #062295;
  background-position: center;
}

.forum__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
}

.forum__left {
  max-width: 36.875rem;
}

.forum__right {
  margin-left: auto;
  margin-right: 9.375rem;
}

.forum__text {
  margin-top: 2.25rem;
  font-size: 1rem;
  line-height: 125%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25rem;
}

.forum__play {
  width: 12.4375rem;
  height: 12.4375rem;
  border-radius: 50%;
  border: 2px solid #fff;
  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-transition: .3s all ease;
  transition: .3s all ease;
}

.forum__play:hover {
  background-color: rgba(255, 255, 255, .2);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.forum__play:hover svg {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.forum__play svg {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.events {
  padding-top: 7.5rem;
  padding-bottom: 8.125rem;
}

.events__titles-item:last-child {
  margin-left: 2.375em;
  margin-right: auto;
}

.events__items {
  margin-top: 3.5625rem;
}

.events__item {
  padding: 3.125rem 0;
  border-bottom: 1px solid var(--color-whte);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.0625rem;
}

.events__item:first-child {
  padding: 2.3125rem 0;
}

.events__item:last-child {
  border-bottom: none;
}

.events__item-time {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-blck);
  padding: 0.3125rem 0.625rem;
  border-radius: 10px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(171, 252, 79, 0.53)), color-stop(111.2%, #abfc4f));
  background: linear-gradient(270deg, rgba(171, 252, 79, 0.53) 0%, #abfc4f 111.2%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.events__item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.events__item-info {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-whte);
  width: 100%;
}

.events__item-info:first-child {
  padding-top: 0;
}

.events__item-info:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.events__item-name {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 118%;
}

.events__item-top {
  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;
  gap: 1.25rem;
}

.events__item-row {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  row-gap: 1.25rem;
}

.events__item-row:has(.events__item-company) {
  margin-top: 2.5rem;
}

.events__item-row:has(.events__item-row-col:nth-child(2)) .events__item-row-col {
  width: calc(50% - 15px);
  -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;
  row-gap: 0.7125rem;
}

.events__item-row:has(.events__item-row-col:nth-child(2)) .events__item-author {
  gap: 0.625rem;
}

.events__item-row:has(.events__item-row-col:nth-child(2)) .events__item-company {
  margin-left: 5.125rem;
  padding: 0.65625rem;
  max-width: 5rem;
  border-radius: 10px;
}

.events__item-row-col {
  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;
  gap: 2.0625rem;
  width: 100%;
}

.events__item-company {
  padding: 1rem;
  border-radius: 16px;

}

.events__item-company svg {
  width: 100%;
  height: auto;
  display: block;
}

.events__item-company img {
  width: 100%;
  height: auto;
  display: block;
}

.events__item-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.0625rem;
}

.events__item-author picture,
.events__item-author picture>img,
.events__item-author img {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.events__item-author-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.625rem;
}

.events__item-author-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 122.222%;
  max-width: 20.0625rem;
}

.events__item-author-position {
  font-size: 0.875rem;
  line-height: 128%;
  font-weight: 400;
  max-width: 20.0625rem;
}

.events__item-play {
  background-color: var(--color-ylw);
  padding: 1rem;
  border-radius: 1.5rem;
  color: #052085;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-height: 3.0625rem;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

.events__item-play svg {
  min-width: 1rem;
  min-height: 1rem;
}

.events__item-play span {
  padding-left: 0.625rem;
}

.events__item-play:hover {
  max-width: 12.3125rem;
}

.events__item-play:hover span {
  width: 100%;
}

.spickers {
  padding-bottom: 9.375rem;
}

.spickers__slider {
  overflow: visible !important;
}

.spickers__slider-slide-inner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  padding-top: 62.923%;
}

.spickers__slider-slide picture,
.spickers__slider-slide picture>img,
.spickers__slider-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.spickers__slider-slide-content {
  position: relative;
  z-index: 3;
  height: 11.6875rem;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.79)), color-stop(72.18%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.79) 0%, rgba(0, 0, 0, 0) 72.18%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 0.625rem;
  padding: 1.625rem 1.1875rem;
}

.spickers__slider-slide-name {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 122.222%;
}

.spickers__slider-slide-pos {
  font-size: 0.875rem;
  line-height: 128%;
}

.registration {
  padding-bottom: 5.875rem;
}

.registration__content {
  padding: 2.9375rem 3.1875rem 3.8125rem 3.8125rem;
  background-color: var(--color-whte);
  border-radius: 30px;
  max-width: 38.625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.registration__title {
  font-size: 2.625rem;
  color: #0a0a0a;
  font-weight: 500;
  letter-spacing: -0.84px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
}

.registration__content-form {
  margin-top: 1.25rem;
}

.registration__content-form .input+.input {
  margin-top: 0.875rem;
}

.registration__content-form .checkbox {
  margin: 1.25rem 0;
}

.registration__content-form .input,
.registration__content-form .btn {
  max-width: 29.375rem;
  width: 100%;
}

.registration__content-form .checkbox {
  color: var(--color-blck2);
}

.registration__content-form .btn {
  padding: 1.125rem;
}

.blog {
  padding-bottom: 8.5rem;
}

.blog__top {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.blog__nav {
  margin-bottom: 1.25rem;
}

.blog__titles-item:last-child {
  margin-left: 2.375em;
}

.blog__slider {
  overflow: visible !important;
}

.blog__slider-slide {
  position: relative;
}

.blog__slider-slide-inner {
  max-width: max-width(738);
  width: 100%;
}

.blog__slider-slide picture,
.blog__slider-slide picture>img,
.blog__slider-slide img {
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 21.6875rem;
}

.blog__slider-slide-content {
  margin-top: 1.1875rem;
  max-width: 23.375rem;
}

.blog__slider-slide-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 120%;
}

.blog__slider-slide-date {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 142%;
}

.blog__slider-slide-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.faq {
  padding-bottom: 7rem;
}

.faq__titles-item:last-child {
  margin-left: 8.8392857143em;
}

.faq__spoller {
  margin-top: 2.3125rem;
}

.faq__spollers-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;
  gap: 1.875rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-whte);
}

.faq__spollers-item-inner {
  max-width: 58.4375rem;
}

.faq__spollers-item-inner[open]+.faq__spollers-item-btn span::before {
  -webkit-transform: rotateZ(0) translate(-50%, -50%);
  -ms-transform: rotate(0) translate(-50%, -50%);
  transform: rotateZ(0) translate(-50%, -50%);
}

.faq__spollers-item-title {
  list-style: none;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 120%;
}

.faq__spollers-item-text {
  padding-top: 1.25rem;
  font-size: 1rem;
  line-height: 125%;
}

.faq__spollers-item-btn {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  background-color: var(--color-ylw);
  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;
}

.faq__spollers-item-btn span {
  width: 1.9375rem;
  height: 1.9375rem;
  position: relative;
}

.faq__spollers-item-btn span::after,
.faq__spollers-item-btn span::before {
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: #052080;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.faq__spollers-item-btn span::before {
  -webkit-transition: .1s all linear;
  transition: .1s all linear;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.partners {
  padding-bottom: 9.25rem;
}

.partners__items {
  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;
  gap: 3.75rem;
  margin-top: 4.1875rem;
}

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

.partners__item img,
.partners__item picture,
.partners__item picture>img {
  display: block;
  width: 100%;
  height: auto;
}

.partners__bottom {
  margin-top: 2.5625rem;
  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;
  gap: 1.75rem;
}

.partners__bottom-label {
  font-size: 1.5rem;
  font-weight: 700;
  max-width: 16.875rem;
}

.partners__btn {
  border-radius: 15px;
  max-width: 322px;
  width: 100%;
  padding: 1.46875rem;
}

.contacts {
  padding: 0 0 9.6875rem 0;
}

.contacts__items {
  margin-top: 3.875rem;
}

.contacts__item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-whte);
  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;
}

.contacts__item:first-child {
  padding-top: 0;
}

.contacts__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contacts__item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.75rem;
}

.contacts__item-left picture,
.contacts__item-left picture>img,
.contacts__item-left img {
  width: 8.25rem;
  height: 8.25rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.contacts__item-name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 116%;
}

.contacts__item-pos {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  line-height: 120%;
}

.contacts__item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25rem;
}

.contacts__item-phone,
.contacts__item-mail {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 116%;
}

.contacts__item-phone:hover,
.contacts__item-mail:hover {
  text-decoration: underline;
}

.page--home {
  position: relative;
}

.no-webp .page--home .wrapper {
  background-image: url("../img/home/bg.jpg");
}

.page--home .wrapper {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.page--home main,
.page--home footer {
  z-index: 1;
  position: relative;
}

.page--home .graphics {
  overflow-x: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.page--home .graphics>picture,
.page--home .graphics>img {
  position: absolute;
  z-index: 0;
}

.page--home .graphics>picture:nth-child(1),
.page--home .graphics>img:nth-child(1) {
  top: 0;
  right: 33.75rem;
  z-index: 0;
}

.page--home .graphics>picture:nth-child(2),
.page--home .graphics>img:nth-child(2) {
  top: 7.5rem;
  left: 0;
}

.page--home .graphics>picture:nth-child(3),
.page--home .graphics>img:nth-child(3) {
  top: 13.625rem;
  right: 0;
}

.page--home .graphics>picture:nth-child(4),
.page--home .graphics>img:nth-child(4) {
  top: 90.75rem;
  right: 0;
}

.page--home .graphics>picture:nth-child(5),
.page--home .graphics>img:nth-child(5) {
  top: 101.0625rem;
  z-index: 0;
  right: 0;
}

.page--home .graphics>picture:nth-child(6),
.page--home .graphics>img:nth-child(6) {
  top: 217.4375rem;
  right: 0;
  z-index: 0;
}

.page--home .graphics>picture:nth-child(7),
.page--home .graphics>img:nth-child(7) {
  top: 227.8125rem;
  left: 0;
  z-index: 3;
}

.page--home .graphics>picture:nth-child(8),
.page--home .graphics>img:nth-child(8) {
  top: 307.125rem;
  left: 0;
}

.page--home .graphics>picture:nth-child(9),
.page--home .graphics>img:nth-child(9) {
  top: 374.375rem;
  right: 0;
}

.page--home .graphics>picture:nth-child(10),
.page--home .graphics>img:nth-child(10) {
  top: 415.75rem;
  right: 0;
}

.offer--home2 {
  padding-bottom: 12.25rem;
}

.offer--home2 .offer__top {
  padding-top: 9.125rem;
}

.offer--home2 .offer__title {
  font-size: 3.25rem;
  padding: 1rem 1.125rem;
}

.offer--home2 .offer__title:last-child {
  margin-left: 0.8421052632em;
}

.offer--home2 .offer__label {
  font-size: 1.125rem;
}

.forum-home2__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.forum-home2__description {
  font-size: 1rem;
  line-height: 125%;
  max-width: 34.0625rem;
}

.forum-home2__reasons {
  margin-top: 6.375rem;
}

.forum-home2__reasons-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
}

.forum-home2__reasons-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.125rem;
  margin-top: 2.625rem;
}

.forum-home2__reasons-item {
  padding-top: 3.4375rem;
  width: calc(20% - 1.125rem);
  position: relative;
}

.no-webp .forum-home2__reasons-item::after {
  background-image: url("../img/home2/forum/star.png");
}

.forum-home2__reasons-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 7.0625rem;
  height: 6.875rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.forum-home2__reasons-item-inner {
  height: 100%;
  padding: 4.375rem 1.25rem 1.875rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .22);
}

.forum-home2__reasons-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.36px;
}

.forum-home2__reasons-item-description {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 128%;
  letter-spacing: -0.28px;
}

.price {
  padding-bottom: 12.5rem;
}

.price__content {
  margin-top: 1.0625rem;
  max-width: 64.375rem;
  width: 100%;
  background-image: url("../img/home2/price/bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0 2rem 3.1875rem 4.125rem;
  color: var(--color-blck);
  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: flex-end;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}

.price__titles {
  margin-top: -1.0625rem;
}

.price__titles-item {
  padding-top: 0.6875rem;
  padding-bottom: 0.6875rem;
  font-size: 2.75rem;
}

.price__tariff {
  margin-top: 1.4375rem;
}

.price__tariff-title {
  font-size: 2.125rem;
  line-height: 113%;
  font-weight: 700;
}

.price__tariff-list {
  margin-top: 1.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.125rem;
}

.price__tariff-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6875rem;
}

.price__tariff-list li::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../img/icons/mark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.price__content-right {
  margin-bottom: 1.25rem;
}

.price__price-title {
  max-width: 15.875rem;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 113%;
}

.price__old-price {
  font-size: 1.6875rem;
  text-decoration-line: line-through;
  color: #b4b4b4;
  line-height: 113%;
  margin-top: 2.3125rem;
}

.price__price {
  margin-top: 0.5625rem;
  font-size: 3.125rem;
  line-height: 78%;
  font-weight: 700;
}

.price__taxes {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 125%;
  margin-top: 0.5625rem;
}

.page--home2 {
  position: relative;
}

.no-webp .page--home2 .wrapper {
  background-image: url("../img/home2/bg.jpg");
}

.page--home2 .wrapper {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
}

.page--home2 main,
.page--home2 footer {
  position: relative;
  z-index: 1;
}

.page--home2 .graphics {
  overflow-x: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.page--home2 .graphics>picture,
.page--home2 .graphics>img {
  position: absolute;
  z-index: 0;
}

.page--home2 .graphics>picture:nth-child(1),
.page--home2 .graphics>img:nth-child(1) {
  top: 3.1875rem;
  left: 0;
  z-index: 1;
}

.page--home2 .graphics>picture:nth-child(2),
.page--home2 .graphics>img:nth-child(2) {
  top: 12.5rem;
  right: 0;
}

.page--home2 .graphics>picture:nth-child(3),
.page--home2 .graphics>img:nth-child(3) {
  top: 40.4375rem;
  left: 0;
}

.page--home2 .graphics>picture:nth-child(4),
.page--home2 .graphics>img:nth-child(4) {
  top: 99.6875rem;
  left: 0;
}

.page--home2 .graphics>picture:nth-child(5),
.page--home2 .graphics>img:nth-child(5) {
  top: 96.625rem;
  right: 0;
}

.page--home2 .graphics>picture:nth-child(6),
.page--home2 .graphics>img:nth-child(6) {
  top: 157.125rem;
  left: 0;
}

.page--home2 .graphics>picture:nth-child(7),
.page--home2 .graphics>img:nth-child(7) {
  top: 199.625rem;
  right: 0;
}

.page--home2 .graphics>picture:nth-child(8),
.page--home2 .graphics>img:nth-child(8) {
  top: 231.875rem;
  left: 0;
  z-index: 2;
}

.page--home2 .graphics>picture:nth-child(8),
.page--home2 .graphics>img:nth-child(8) {
  top: 230.3125rem;
  right: 0;
}

.page--home2 .graphics>picture:nth-child(9),
.page--home2 .graphics>img:nth-child(9) {
  top: 230.3125rem;
  right: 0;
}

.page--home2 .graphics>picture:nth-child(10),
.page--home2 .graphics>img:nth-child(10) {
  top: 292.8125rem;
  right: 0;
}

.page--home2 .graphics>picture:nth-child(11),
.page--home2 .graphics>img:nth-child(11) {
  top: 403.75rem;
  right: 0;
}

.page--home2 .graphics>picture:nth-child(12),
.page--home2 .graphics>img:nth-child(12) {
  top: 0;
  right: 24.1875rem;
  z-index: 0;
}

.page--home2 .events {
  padding-bottom: 5rem;
}

.page--home2 .partners {
  padding-bottom: 10.9375rem;
}

.footer {
  padding: 5rem 0 3.3125rem 0;
  border-top: 1px solid var(--color-whte);
  background: #091e6d;
}

.footer__row {
  padding-top: 4.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer__col--logo {
  width: 28.98%;
}

.footer__col--contacts {
  width: 29.83%;
}

.footer__col--copyright {
  font-size: 0.8125rem;
  line-height: 107%;
}

.footer__logo {
  max-width: 12.5rem;
  width: 100%;
  display: block;
}

.footer__logo picture,
.footer__logo picture>img,
.footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer__phone {
  font-size: 1.125rem;
  letter-spacing: .277px;
  font-weight: 700;
}

.footer__schedule {
  margin: 1.125rem 0 0 0;
  font-size: 0.8125rem;
}

.footer__politics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.9375rem;
  margin-top: 1.125rem;
}

.footer__politics li a {
  text-decoration: underline;
}

.swiper {
  overflow: hidden;
}

.swiper-initialized {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

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

@media (max-width: 90em) {

  .page--home .graphics>picture,
  .page--home .graphics>img {
    z-index: 0 !important;
  }
}

@media (max-width: 1440px) {

  .page--home2 .graphics>picture,
  .page--home2 .graphics>img {
    z-index: 0 !important;
  }
}

@media (max-width: 78.75em) {
  .offer__title {
    margin-left: 0;
  }

  .offer__label {
    font-size: 1rem;
  }

  .offer--home2 .offer__title {
    font-size: 2.625rem;
  }

  .offer--home2 .offer__label {
    font-size: 1rem;
    max-width: 18.75rem;
    margin-left: auto;
    text-align: right;
  }

  .forum-home2__reasons {
    margin-top: 3.125rem;
  }

  .forum-home2__reasons-items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .forum-home2__reasons-item {
    width: calc(33.333% - 0.75rem);
  }
}

@media (max-width: 61.99875em) {
  [class*=__container] {
    --pad: 15px;
  }

  .titles__item {
    font-size: 2.25rem;
    padding: 0.625rem 1.25rem;
    border-radius: 7px;
  }

  .header__top-col--ui {
    gap: 0.9375rem;
  }

  .header__top-btn {
    gap: 0.625rem;
    font-size: 0.875rem;
  }

  .header__col--logos {
    gap: 0.9375rem;
  }

  .header__row {
    padding-top: 1.25rem;
  }

  .header__logo {
    max-width: 140px;
  }

  .header__menu ul {
    gap: 0.9375rem;
  }

  .header__menu li a {
    font-size: 0.875rem;
  }

  .offer {
    padding-bottom: 1.875rem;
  }

  .offer.offer--home .offer__top {
    padding-top: 3.75rem;
  }

  .offer__title {
    padding: 0.75rem 0.9375rem;
    font-size: 2.25rem;
  }

  .offer__title.ml-auto {
    margin-left: 0;
  }

  .offer__label {
    margin-top: 0;
    margin-left: auto;
    text-align: right;
    font-size: 1.125rem;
    max-width: 22.5rem;
    padding-bottom: 0.1875rem;
  }

  .offer__ticket {
    margin-top: 1.25rem;
    -webkit-transform: rotateZ(0);
    -ms-transform: rotate(0);
    transform: rotateZ(0);
  }

  .offer__ticket-title,
  .offer__ticket-description {
    -webkit-transform: rotateZ(0);
    -ms-transform: rotate(0);
    transform: rotateZ(0);
  }

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

  .offer__btn {
    margin-top: 1.25rem;
  }

  .offer__top {
    -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;
    text-align: center;
  }

  .offer__label {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin-top: 0.9375rem;
    max-width: 100%;
    text-align: center;
    width: 100%;
    display: block;
  }

  .forum {
    padding-bottom: 5rem;
  }

  .forum__right {
    margin-right: 6.25rem;
  }

  .forum__play {
    width: 9.375rem;
    height: 9.375rem;
  }

  .events__item-row:has(.events__item-row-col:nth-child(2)) .events__item-row-col {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .events__item-row:has(.events__item-row-col:nth-child(2)) .events__item-company {
    margin-left: 0;
  }

  .events {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .events__items {
    margin-top: 1.25rem;
  }

  .events__item {
    padding: 1.875rem 0;
  }

  .events__item:first-child {
    padding: 1.875rem 0;
  }

  .events__item-info {
    padding: 1.25rem 0;
  }

  .events__item-play span {
    display: none;
    padding-left: 0;
  }

  .events__item-company {
    margin-left: 5.125rem;
    padding: 0.65625rem;
    max-width: 5rem;
    border-radius: 10px;
  }

  .spickers {
    padding-bottom: 3.75rem;
  }

  .spickers__slider-slide-inner {
    max-width: 24.375rem;
    margin-left: auto;
    margin-right: auto;
  }

  .registration {
    padding-bottom: 3.75rem;
  }

  .blog {
    padding-bottom: 3.75rem;
  }

  .blog__top {
    margin-bottom: 1.25rem;
  }

  .blog__slider-slide {
    width: 100%;
  }

  .faq {
    padding-bottom: 3.75rem;
  }

  .partners {
    padding-bottom: 3.75rem;
  }

  .partners__items {
    margin-top: 2.5rem;
  }

  .partners__bottom {
    margin-top: 1.875rem;
  }

  .contacts {
    padding-bottom: 3.75rem;
  }

  .contacts__item-left picture,
  .contacts__item-left picture>img,
  .contacts__item-left img {
    width: 6.25rem;
    height: 6.25rem;
  }

  .contacts__item-name,
  .contacts__item-phone,
  .contacts__item-mail {
    font-size: 1.25rem;
  }

  .offer--home2 .offer__top {
    padding-top: 3.75rem;
  }

  .offer--home2 .offer__title {
    padding: 0.75rem 0.9375rem;
    font-size: 2.25rem;
  }

  .offer--home2 .offer__title.ml-auto {
    margin-left: 0;
  }

  .offer--home2 .offer__title:last-child {
    margin-left: 0;
  }

  .offer--home2 .offer__label {
    max-width: 100%;
    text-align: center;
  }

  .forum-home2 {
    padding-bottom: 3.75rem;
  }

  .forum-home2__top {
    -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;
    gap: 1.25rem;
  }

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

  .price {
    padding-bottom: 3.75rem;
  }

  .price__content {
    padding-bottom: 1.875rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-position: bottom center;
    padding-left: 1.875rem;
  }

  .price__content-right {
    margin-top: 1.25rem;
    margin-left: auto;
    width: 24%;
  }

  .price__titles-item {
    font-size: 2rem;
  }

  .price__old-price {
    font-size: 1.375rem;
  }

  .price__price {
    font-size: 1.75rem;
  }

  .price__taxes {
    font-size: 1.125rem;
  }

  .page--home2 .graphics>picture:nth-child(11),
  .page--home2 .graphics>img:nth-child(11) {
    right: -200px;
  }

  .page--home2 .events {
    padding-bottom: 3.75rem;
  }

  .page--home2 .partners {
    padding-bottom: 3.75rem;
  }

  .footer__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    gap: 1.875rem;
  }

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

  .footer__col {
    width: 100%;
  }

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

  .footer__politics,
  .footer__schedule {
    margin-top: 0.75rem;
  }
}

@media (max-width: 47.99875em) {
  .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    overflow: auto;
    padding: 3.125rem 0.9375rem 0.9375rem 1.875rem;
    -webkit-transition: left .3s;
    transition: left .3s;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 4.375rem;
    left: -100%;
    top: 0;
    -webkit-transition: left .3s;
    transition: left .3s;
    z-index: 2;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: var(--color-whte);
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .icon-menu.menu-open span {
    width: 0;
  }

  .icon-menu.menu-open::before,
  .icon-menu.menu-open::after {
    background: var(--color-blck);
  }

  .icon-menu.menu-open::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .icon-menu.menu-open::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .btn {
    font-size: 1rem;
    padding: 1.28125rem;
  }

  .slider__top {
    margin-bottom: 1.875rem;
  }

  .slider__nav {
    display: none;
  }

  .header__top {
    padding-left: 0.625rem;
  }

  .header__top-col--ui {
    gap: 0.3125rem;
  }

  .header__top-login {
    padding: 0;
    font-size: 0.375rem;
  }

  .header__top-phone span {
    display: none;
  }

  .header__top-btn {
    font-size: 0.5625rem;
    gap: 0.125rem;
  }

  .header__top-btn-icon {
    width: 0.9375rem;
    height: 0.625rem;
  }

  .header__top-btn-icon svg {
    width: 100%;
    height: 100%;
  }

  .header__top-logo {
    max-width: 6.25rem;
  }

  .header__menu {
    position: fixed;
    width: 320px;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--color-whte);
    z-index: 2;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }

  .header__menu ul {
    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: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0.9375rem;
  }

  .header__menu li a {
    color: var(--color-blck);
    font-size: 1.5rem;
  }

  .header__menu.menu-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .offer {
    padding-bottom: 1.875rem;
  }

  .offer.home--offer .offer__top {
    padding-top: 1.875rem;
  }

  .offer__title {
    border-radius: 0.4375rem;
    font-size: 1.5rem;
    text-align: center;
  }

  .offer__label {
    margin-top: 0.3125rem;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin-left: 0;
    margin-bottom: 0rem;
    margin-top: 0.9375rem;
    text-align: center;
    max-width: 100%;
    text-align: center;
    padding-left: 0.9375rem;
    font-size: 0.875rem;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .offer__ticket {
    margin-left: auto;
    margin-right: auto;
    max-width: 21.375rem;
    margin-top: 0.625rem;
    border-radius: 5px;
    padding-left: 1.5625rem;
  }

  .offer__ticket-title {
    font-size: 1.625rem;
    padding-bottom: 0.25rem;
  }

  .offer__ticket-description {
    padding-top: 0.25rem;
    font-size: 0.875rem;
  }

  .offer__btn {
    margin-top: 1.25rem;
    margin-left: auto;
    margin-right: auto;
  }

  .forum {
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
  }

  .forum__row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.25rem;
  }

  .forum__right {
    margin-right: 0;
  }

  .forum__text {
    font-size: 0.875rem;
    gap: 0.9375rem;
  }

  .forum__play {
    width: 5.625rem;
    height: 5.625rem;
  }

  .events__item-row:has(.events__item-company) {
    margin-top: 1.25rem;
  }

  .events__item-row:has(.events__item-row-col:nth-child(2)) .events__item-row-col {
    row-gap: 0.3125rem;
  }

  .events__item-row:has(.events__item-row-col:nth-child(2)) .events__item-company {
    max-width: 3.75rem;
  }

  .events {
    padding: 2.5rem 0;
  }

  .events__item {
    padding: 1.25rem 0;
    gap: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .events__item:first-child {
    padding: 1.25rem 0;
  }

  .events__item-time {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .events__item-time {
    font-size: 1.75rem;
  }

  .events__item-name {
    font-size: 1rem;
  }

  .events__item-name br {
    display: none;
  }

  .events__item-row {
    margin-top: 1.25rem;
    gap: 1.5625rem;
  }

  .events__item-row-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: reverse;
    flex-direction: reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.3125rem;
  }

  .events__item-company {
    max-width: 3.75rem;
    padding: 0.71875rem;
    border-radius: 10px;
    margin-left: 0;
  }

  .events__item-play {
    min-width: 2.5rem;
    min-height: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.9375rem;
  }

  .events__item-play svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .events__item-author {
    gap: 0.9375rem;
  }

  .events__item-author picture,
  .events__item-author picture>img,
  .events__item-author img {
    width: 3.125rem;
    height: 3.125rem;
  }

  .events__item-author-text {
    gap: 0.5rem;
  }

  .events__item-author-title {
    line-height: normal;
    font-size: 0.875rem;
  }

  .events__item-author-position {
    font-size: 0.75rem;
  }

  .events__titles-item {
    margin-left: 0 !important;
    margin-top: -0.625rem;
  }

  .spickers {
    padding-bottom: 2.5rem;
  }

  .spickers__slider-slide-inner {
    max-width: 100%;
  }

  .spickers__slider-slide-name {
    font-size: 1rem;
  }

  .spickers__slider-slide-pos {
    font-size: 0.75rem;
  }

  .registration {
    padding-bottom: 2.5rem;
  }

  .registration__content {
    padding: 1.875rem;
    border-radius: 20px;
  }

  .registration__content-form .input,
  .registration__content-form .btn {
    max-width: 100%;
  }

  .registration__title {
    font-size: 2rem;
  }

  .blog__slider-slide-content {
    margin-top: 0.625rem;
    max-width: 100%;
  }

  .blog__slider-slide-title {
    font-size: 1rem;
    line-height: normal;
  }

  .faq {
    padding-bottom: 2.5rem;
  }

  .faq__titles-item:last-child {
    margin-left: 0;
    margin-top: -0.625rem;
  }

  .faq__spollers-item {
    padding: 1.125rem 0;
  }

  .faq__spollers-item-title {
    font-size: 1.125rem;
  }

  .faq__spollers-item-text {
    font-size: 0.875rem;
    padding-top: 0.625rem;
  }

  .faq__spollers-item-btn {
    min-width: 3.125rem;
    min-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
  }

  .partners {
    padding-bottom: 2.5rem;
  }

  .partners__items {
    margin-top: 2.5rem;
    gap: 1.875rem;
  }

  .partners__item {
    max-height: 7.5rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }

  .partners__item img,
  .partners__item picture,
  .partners__item picture>img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .partners__bottom {
    margin-top: 1.25rem;
    gap: 1.25rem;
  }

  .partners__bottom-label {
    font-size: 1.25rem;
  }

  .partners__btn {
    padding-top: 1rem;
    padding-bottom: 1rem;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .contacts {
    padding-bottom: 2.5rem;
  }

  .contacts__items {
    margin-top: 1.875rem;
  }

  .contacts__item {
    -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;
    padding: 1.125rem 0;
    gap: 1.25rem;
  }

  .contacts__item-pos {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .contacts__item-right {
    gap: 0.625rem;
  }

  .contacts__item-name,
  .contacts__item-phone,
  .contacts__item-mail {
    font-size: 1.125rem;
  }

  .page--home .graphics {
    display: none;
  }

  .offer--home2 {
    padding-bottom: 1.875rem;
  }

  .offer--home2 .offer__top {
    padding-top: 1.875rem;
  }

  .offer--home2 .offer__title {
    border-radius: 0.4375rem;
    font-size: 1.5rem;
    text-align: center;
  }

  .forum-home2__reasons-title {
    font-size: 1.75rem;
  }

  .forum-home2__reasons-items {
    margin-top: 1.25rem;
  }

  .forum-home2__reasons-item {
    width: calc(50% - 9px);
  }

  .forum-home2__reasons-item:after {
    width: 6.25rem;
    height: 6.25rem;
  }

  .forum-home2__reasons-item-inner {
    padding-top: 3.125rem;
    padding-bottom: 1.25rem;
  }

  .forum-home2__reasons-item-title {
    font-size: 1rem;
  }

  .price__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    -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;
    padding: 1.25rem;
    padding-top: 0;
  }

  .price__content-right,
  .price__content-left {
    margin-left: 0;
    width: 100%;
  }

  .price__titles {
    width: 100%;
  }

  .price__titles-item {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .price__tariff-title {
    font-size: 1.75rem;
  }

  .price__tariff-list {
    margin-top: 1.125rem;
    gap: 0.875rem;
  }

  .price__tariff-list li {
    font-size: 0.875rem;
  }

  .price__price-title {
    margin-top: 0;
    max-width: 100%;
    font-size: 1.625rem;
  }

  .price__old-price {
    font-size: 1rem;
    margin-top: 0.75rem;
  }

  .page--home2 .graphics {
    display: none;
  }

  .page--home2 .events {
    padding-bottom: 2.5rem;
  }

  .page--home2 .partners {
    padding-bottom: 2.5rem;
  }

  .footer {
    padding-top: 2.5rem;
    padding-bottom: 1.25rem;
  }

  .footer .row {
    padding-top: 1.875rem;
  }
}

@media (max-width: 47.99875em)and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 29.99875em) {
  .forum__row {
    margin-top: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .forum__text {
    margin-top: 0;
  }

  .forum__right {
    margin-right: auto;
    margin-left: 0;
  }

  .registration__title {
    font-size: 1.5rem;
  }

  .blog__titles-item:last-child {
    margin-left: 0;
    margin-top: -0.75rem;
  }

  .partners__items {
    gap: 1.875rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .partners__item {
    width: calc(50% - 15px);
    max-height: none;
  }

  .partners__item img,
  .partners__item picture,
  .partners__item picture>img {
    width: 100%;
    max-height: 5rem;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .partners__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .partners__bottom-label {
    width: 100%;
    font-size: 1.125rem;
    text-align: center;
  }

  .forum-home2__reasons-item {
    padding-top: 0;
    width: 100%;
  }

  .forum-home2__reasons-item::after {
    width: 4.375rem;
    height: 4.375rem;
    top: 50%;
    left: initial;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    right: 1.25rem;
  }

  .forum-home2__reasons-item-inner {
    padding-top: 1.25rem;
    padding-right: 6.875rem;
  }

  .forum-home2__reasons-title {
    font-size: 1.5rem;
  }
}

.webp .forum {
  background-image: url(../img/home/forum/bg.webp);
}

.webp .page--home .wrapper {
  background-image: url(../img/home/bg.webp);
}

.webp .forum-home2__reasons-item::after {
  background-image: url(../img/home2/forum/star.webp);
}

.webp .page--home2 .wrapper {
  background-image: url(../img/home2/bg.webp);
}