@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --green-translucent: #0fffb723;
  --green: #0fffb7;
  --black: #000;
  --purple: #7543b5;
  --pink: #d8418f;
  --white: #fff;
  --gradient: linear-gradient(to right, #0fffb7 0%, #7543b5 51%, #d8418f 100%);
  --desktopHorizontal: 7.8125vw;
  --desktopVertical: 7.55208333333vw;
  --font-base-vw: calc(10 / 1920 * 100vw);
  --font-mobile-vw: calc(10 / 320 * 100vw);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-base-vw);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;

  scroll-behavior: smooth;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}

button {
  font-family: "Montserrat", sans-serif;
  background: inherit;
  cursor: pointer;
}

button:disabled {
  background: #ccc;
}

b,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

.footer-logo {
  width: 6.62010416667vw;
  aspect-ratio: 127.106/75;
}

.footer-logo a {
  width: 100%;
  height: 100%;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

a {
  text-decoration: none;
}

.underlined {
  text-decoration: underline;
}

.header {
  font-family: "Montserrat", sans-serif;
  position: fixed;
  padding: 0.5% 15rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
  aspect-ratio: 1920/95;
  z-index: 1000;
  align-items: center;
  border-bottom: 1px rgba(255, 255, 255, 0.15) solid;
  flex-wrap: wrap;
}

.nav-list {
  display: flex;
  list-style-type: none;
  align-items: center;
  gap: 2.8125vw;
}

.nav-link a.active {
  color: var(--green) !important;
}

.header a,
.header span {
  color: #000;
}

.header-script a,
.header-script span {
  color: #fff;
}

.nav-link a:hover {
  color: var(--green);
  opacity: 0.5;
}

.noscroll {
  overflow-y: hidden;
  position: fixed;
}

.nav-link a {
  font-size: 0.833vw;
  font-weight: 400;
  text-align: left;
  text-decoration: none;

  transition: all 0.3s ease-in;
  z-index: 100;
}

.btn {
  font-size: 0.935vw;
  width: 17.7083333333vw;
  color: var(--black);
  border: 1px solid #ffffffdb;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 2rem 0;
  transition: all 0.4s ease;
  font-weight: 600;
}

main:not(#home) {
  position: relative;
  /*top: calc(100vw / 95);*/
  flex: 1 0 auto;
}

.btn:hover {
  scale: 1.05;
  transform: translate3d(0, 0, -10%);
}

.btn:active {
  scale: 0.95;
  transform: translate3d(0, 0, 10%);
}

.header .btn {
  padding: 1.4rem 0;
  font-size: 1.6rem;
  width: 10.4166666667vw;
}

.btn-registration {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--black) !important;
}

.btn-container {
  gap: 1.04166666667vw;
}

.intro-text .btn-container {
  margin-top: 1.364rem;
}

.main_page--swiper-pagination {
  font-size: 2rem;
  display: flex;
  border: rgba(255, 255, 255, 0.35) 1px solid;
  width: fit-content;
  height: 5rem;
  align-items: center;
  color: #fff;
  position: relative;
  font-weight: 600;
  position: absolute;
  z-index: 14;
  top: 44.75rem;
  left: 88.405rem;
}

.main_page--swiper-pagination .relative {
  display: flex;
  width: fit-content;
  height: 100%;
  padding: 0.6rem 0.55rem;
  flex-direction: row;
  align-items: center;
}

.main_page--swiper-pagination .tab {
  display: flex;
  justify-content: center;
  padding: 0.7rem 3.8rem;
  border-radius: 0.3rem;
  cursor: pointer;
  text-transform: uppercase;
}

.tab-active {
  background: var(--gradient);
  position: absolute;
  height: 4rem;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

/* .banner .swiper-slide-current {
  -webkit-animation: clipReveal 0.8s 1;
  animation: clipReveal 0.8s 1;
  z-index: 12 !important;
}

.banner .slide-previous {
  z-index: 11 !important;
} */

.btn-gradient {
  background: var(--gradient);

  border: none;
}

.lang-select {
  display: flex;
  align-items: center;
}

.lang-select a,
.lang-select span {
  text-decoration: none;
  font-size: 0.72916666666vw;
  font-weight: 400;
  line-height: 1.0416vw;
  text-align: center;
  text-transform: uppercase;
}

.lang-select a.active {
  color: var(--green);
}

.lang-select span {
  margin: 0.52083333333vw;
}

.social-container {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.social-button {
  width: 1.04166666667vw;
}

.social-button img {
  width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  color: #000;
}

.parbase {
  width: 100%;
  padding: 13.3rem 15rem;
  position: relative;
}

.parbase-1 {
  width: 100%;
  padding: 3.64583333333% 7.8125%;
  position: relative;
}

.parbase-2 {
  width: 100%;
  padding: 4.53125% 22.03125%;
  position: relative;
}

.parbase-3 {
  width: 100%;
  padding: 4.53125% 22.03125%;
  position: relative;
}

#events .parbase-2 {
  width: 100%;
  padding: 4.53125% 21.3666666667%;
  position: relative;
}

.bg-dark {
  background-color: var(--black);
  color: var(--white);
}

.bg-green {
  background-color: var(--green);
  color: var(--black);
}

.bg-white {
  background-color: var(--white);
  color: var(--black);
}

.bg-grad {
  background: linear-gradient(95deg,
      #0fffb7 -8.88%,
      #7543b5 52.76%,
      #d8418f 111.62%);
}

.bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.stats .bg-wrapper img {
  object-fit: fill;
}

.bg-wrapper img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.bg-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h-100 {
  height: 100%;
}

.h-80 {
  height: 80%;
}

.h-70 {
  height: 70%;
}

.h-50 {
  height: 50%;
}

.h-25 {
  height: 25%;
}

.w-0 {
  width: 0;
}

.w-100 {
  width: 100%;
}

.w-100vw {
  width: 100vw;
}

.w-100-p {
  width: 100%;
  padding: 0 var(--desktopHorizontal);
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;
}

.w-50 {
  width: 50%;
}

.w-40 {
  width: 40%;
}

.w-30 {
  width: 30%;
}

.w-25 {
  width: 25%;
}

.w-20 {
  width: 19%;
}

.w-10 {
  width: 9%;
}

.h-100 {
  height: 100%;
}

.absolute {
  position: absolute;
  inset: 0;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.star {
  position: relative;
}

.relative {
  position: relative;
}

.mb-119 {
  margin-bottom: 7vw;
}

.mb-150 {
  margin-bottom: 7.8125vw;
}

.container-1 {
  margin-top: 19.7916666667vw;
}

.container-2 {
  margin: 13.5416666667vw 0 6.19791666667vw 0;
}

.container-3 {
  margin: 7.29166666667vw 0 13.6458333333vw 0;
}

.container-4 {
  margin-bottom: 20.8854166667vw;
}

.mb-225 {
  margin-bottom: 11.71875vw;
}

.mt-200 {
  margin-top: 11vw;
}

.mt-400 {
  margin-top: 22vw;
}

.mt-380 {
  margin-top: 19.7916666667vw;
}

.mt-300 {
  margin-top: 15.625vw;
}

.mt-260 {
  margin-top: 13.5416666667vw;
}

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

.f-col {
  display: flex;
  flex-direction: column;
}

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

.f-row-mob {
  display: flex;
  flex-direction: row;
  gap: 14rem;
}

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

.f-reverse {
  flex-direction: row-reverse;
}

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

.f-center {
  justify-content: center;
}

.f-evenly {
  justify-content: space-evenly;
}

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

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

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

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

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

.self-start {
  align-self: flex-end;
}

.j-self-center {
  justify-self: center;
}

.j-self-end {
  justify-self: flex-end;
}

.j-self-start {
  justify-self: flex-end;
}

.gap-min {
  gap: 0.20833333333vw;
}

.gap-0 {
  gap: 1.25vw;
}

.gap-1 {
  gap: 2vw;
}

.gap-15 {
  gap: 3.38541666667vw;
}

.gap-2 {
  gap: 4vw;
}

.gap-3 {
  gap: 8vw;
}

.gap-4 {
  gap: 14vw;
}

.gap-9 {
  gap: 0.9rem;
}

.px-1 {
  padding: 0 3%;
}

.text {
  font-size: 16px;
  line-height: 1.5;
}

.text a {
  border-bottom: 1px solid;
  transition: 0.3s;
}

.text a:hover {
  border-color: transparent;
}

.text .video-section {
  width: 100vw;
  margin-left: -22vw;
}

.video {
  position: relative;
  padding-bottom: 56.25%;
  /*пропорции видео 16:9 */
  padding-top: 30px;
  height: 0;
  margin-bottom: 30px;
}

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

.text iframe {
  max-width: 100%;
}

.invert {
  filter: invert(1);
}

.icon_link {
  text-decoration: none;
  border: 0 !important;
  margin-right: 10px;
  display: inline-block;
  margin-top: 5px;
}

.text p {
  margin-bottom: 2.5rem;
}

.text ul {
  margin-bottom: 2.5rem;
  margin-left: 4rem;
}

.text ul li {
  margin-bottom: 1rem;
}

.text h1 {
  margin-bottom: 4rem;
}

.text h2 {
  margin-bottom: 3rem;
}

.text h3 {
  margin-bottom: 2.5rem;
}

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

.text-xs {
  font-size: 1.4rem;
  line-height: 150%;
}

.text-sm {
  font-size: 0.83333333333vw;
}

.text-s {
  font-size: 0.833vw;
}

.text-md {
  font-size: 1.04166666667vw;
  line-height: 150%;
}

.text-24,
h3 {
  font-size: 2.4rem;
}

.text-lg {
  font-size: 1.5625vw;
}

.text-xl {
  font-size: 1.66666666667vw;
}

.date-location {
  font-size: 6rem;
  text-transform: uppercase;
  gap: 2rem;
  font-weight: 600;
  white-space: nowrap;
}

#events .date-location {
  font-size: 6rem;
}

.text-40,
h2 {
  font-size: 4rem;
}

.text-xxl {
  font-size: 18.8rem;
  font-weight: 500;
}

.text-title {
  font-size: 3.125vw;
}

.text-xxxl {
  font-size: 3.125vw;
}

.bold {
  font-weight: 600;
}

.intro-text {
  transform: translateY(0%);
  z-index: 12;
}

.intro-text {
  z-index: 7;
  position: relative;
  justify-content: space-between;
}

.intro-text .date-location {
  line-height: 1.9;
}

#events .intro-text {
  margin: 0;
}

.intro-text .text-xxl {
  color: var(--green);
  line-height: 1;
  text-align: left;
  font-size: 14rem;
  font-style: italic;
  line-height: 12.2rem;
  font-weight: 900;
}

.intro-text .text-xxl {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 57.166rem;
  display: flex;
  flex-direction: column;
}

.intro-right {
  padding-left: 11.01rem;
  flex-grow: 1;
  justify-content: flex-end;
}

#events .text-sm {
  line-height: 1.7;
}

#events .text-24,
#events h3 {
  line-height: 1.4;
}

.overlay {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  inset: 0;
  z-index: 4;
}

.countdown_event-page span {
  text-align: left;
  width: 13vw;
  display: inline-block;
}

.btn-gradient {
  background-color: var(--gradient);
}

.text-white {
  color: var(--white);
}

.text-purple {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-black {
  color: #000;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.vertical-container {
  writing-mode: vertical-lr;
  text-orientation: sideways;
  rotate: 180deg;
}

.circle-container {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  width: 12vw;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  position: relative;
}

.note {
  position: absolute;
  top: var(--desktopVertical);
  right: var(--desktopHorizontal);
  text-align: left;
  width: 37%;
}

.note-form {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  width: 37%;
}

.circle-left {
  z-index: 5;
  transform: translateX(25%);
}

.circle-right {
  z-index: 4;
}

.circle-right .video-circle {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.circled-text-container {
  position: relative;
  width: 80%;
  aspect-ratio: 1/1;

  border-radius: 50%;
}

.jumping-arrow {
  position: absolute;
  animation: jump 0.7s linear alternate infinite;
  rotate: 180deg;
  transform-origin: 50% 50%;
  width: 4.4rem;
  height: 7.5rem;
}

.jumping-arrow img {
  object-fit: scale-down;
  width: 100%;
  height: 100%;
}

.rotate-animation {
  animation: textRotation 16s linear infinite;
}

.rotate-180 {
  rotate: 180deg;
}

.rotate-90 {
  rotate: -90deg;
}

.rotate-90-rev {
  rotate: 90deg;
}

.inner-circle {
  width: 80%;
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-right .inner-circle {
  width: 60%;
}

.square {
  width: 75.5rem;
  height: 65.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.square .ph {
  width: 100%;
  height: 100%;
}

.square .ph img {
  height: 100%;
  width: 100%;
}

.square-title {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.calendar-grid {
  display: flex;
  flex-direction: column;
  gap: 6.875vw;
}

.year-title {
  margin: 2vw 0;
}

.stats {
  gap: 4.375vw;
}

.bullet-list {
  padding-left: 7%;
}

.stats-container {
  border-left: 1px solid rgba(15, 255, 183, 0.35);
  gap: 4.375vw;
}

.stats-container {
  padding-left: 3rem;
}

.distances .distances-list .btn {
  width: 100%;
  font-size: 1.6rem;
  padding: 2.4rem 2.5rem;
  margin-top: 4.5rem;
}

.distances .stats-container {
  border-left: 1px solid #fff;
  padding-left: 3rem;
}

.distances .stats-container:last-child {}

.distances .stats-container {
  gap: 7.86458333333vw;
  /*min-height: 39.5rem;*/
}

.distances .stats-container .stat {
  height: 100%;
  justify-content: space-between;
}

.distances .stat-grid .text-40 {
  font-weight: 600;
}

.distances-list.grid_5 {
  margin-left: -7rem;
}

.starter-pack__list {
  margin-top: 7.8rem;
}

.starter-pack .stats-container {
  gap: 2.8125vw;
  padding: 0 2.13541666667vw;
}

.starter-pack .stats-container:first-child {
  border: none;
}

.starter-pack .stat {
  height: 100%;
  gap: 4rem;
}

.starter-pack .stat-icon {
  flex-grow: 1;
  display: flex;
}

.starter-pack .stat-icon img {
  margin-top: auto;
}

.stat-icon {
  width: 7.8125vw;
  cursor: pointer;
  transition: scale 0.4s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.stat {
  cursor: pointer;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 3.5rem;
}

.stat-grid .text-40 {
  font-weight: 500;
  line-height: 90%;
}

.stat-header {
  height: 7.2rem;
  margin-bottom: 2.5rem;
}

.stat:hover .stat-icon {
  scale: 1.15;
}

.stat-icon img {
  width: 100%;
  object-fit: scale-down;
}

.stat-body .bullet-list {
  margin-bottom: 4.5rem;
  line-height: 1.3 !important;
}

.stat-body .slash {
  white-space: nowrap;
}

.mob {
  display: none;
}

.image-960 {
  width: 50vw;
}

.image-720 {
  width: 37.5vw;
}

.image-450 {
  width: 23.4375vw;
}

.image-350 {
  width: 18.2291666667vw;
}

.image-115 {
  width: 5.98958333333vw;
  aspect-ratio: 1/1;
}

.image-150 {
  width: 15.625vw;
  aspect-ratio: 1/1;
}

.image-150 img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.image-93 {
  width: 9.3rem;
  height: 9.3rem;
  flex-shrink: 0;
}

.image-45 {
  width: 2.29166666667vw;
  height: 3.90625vw;
}

.image-45 img {
  width: 100%;
  object-fit: cover;
}

.image-50 {
  width: 5rem;
  aspect-ratio: 1/1;
}

.image-55 {
  width: 2.86458333333vw;
  aspect-ratio: 55/50;
}

.image-55 img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.invert-color {
  filter: invert(1);
}

.absolute-lb {
  position: absolute;
  left: calc(var(--desktopHorizontal) + 2.989583vw);
  bottom: var(--desktopVertical);
}

.absolute-lt {
  position: absolute;
  left: var(--desktopHorizontal);
  top: var(--desktopVertical);
}

.scroll-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.text-scroll-left {
  transform: translateX(-20%);
  gap: 5rem;
  display: flex;
  align-items: flex-start;
  z-index: 1;
}

.pt-5 {
  padding-top: 5%;
}

.pt-10 {
  padding-top: 9%;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-cover {
  z-index: -1;
}

.f-1 {
  flex: 1;
}

.arrow-horizontal {
  rotate: 90deg;
}

.ph img {
  width: 100%;
  object-fit: cover;
}

.animated-photo .ph img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.ph-1 {
  width: 20.364583vw;
  aspect-ratio: 391/194;
}

.ph-2 {
  width: 17.96875vw;
  aspect-ratio: 345/229.848;
}

.ph-3 {
  width: 11.9791666667vw;
  aspect-ratio: 229/153.679;
}

.overflow-h {
  overflow: hidden;
}

.accordion-btn {
  width: 1.278125vw;
  aspect-ratio: 24.54/25;
  cursor: pointer;
  flex-shrink: 0;
}

.accordion-btn:active {
  animation: bounce 0.4s ease alternate infinite;
}

.accordion-btn img {
  width: 100%;
}

.accordion-btn :hover {
  transform: scale(1.3);
}

.accordion-header {
  border-bottom: 1px rgba(0, 0, 0, 0.353) solid;
}

.pv-1 {
  padding: 2vw 0;
}

.playstore {
  width: 5.6540625vw;
  aspect-ratio: 108.558/32.649;
}

.footer-right {
  padding-left: 10.9729166667vw;
  border-left: rgba(255, 255, 255, 0.353) 1px solid;
}

.footer a {
  color: #fff;
}

.running-line {
  width: max-content;
}

.swiper.mob {
  display: none;
}

.accordion-open {
  cursor: pointer;
  width: 100%;
  position: absolute;
  inset: 0;
  height: 100%;
}

.accordion-content {
  font-size: 1.04166666667vw;
  line-height: 150%;
  will-change: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.accordion-content div {
  padding: 5% 10%;
}

.accordion-content.open {
  max-height: 1500px;
}

.accordion-btn {
  transition: transform 0.5s;
}

.accordion-btn.open {
  transform: rotate(45deg);
}

ol li {
  margin-bottom: 1vw;
}

.news_rubric .news .gap-2 .gap-1.f-col {
  width: 100%;
  gap: 1vw;
}

.news_rubric .news .gap-2 .gap-1 .image-350 {
  width: 100%;
  height: 15vw;
}

.news .image-350 {
  height: 12vw;
}

.news .image-350 img {
  height: 100%;
}

.news a {
  color: #000;
}

.animated-photo {
  width: max-content;
  display: flex;
  gap: 5vw;
  padding: 0 var(--desktopHorizontal);
}

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

#home .banner {
  height: 95rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.main-page__event {
  height: 100%;
}

.banner-text {
  margin-top: 5%;
}

#events .banner {
  height: 95rem;
  background: #0000004b;
}

#calendar .banner,
#about .banner,
#contacts .banner {
  aspect-ratio: 1920/255;
  padding-bottom: 4.27083333333vw;
}

.form {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.35416666667vw;
  row-gap: 3.28125vw;
}

#password {
  display: flex;
  flex-direction: column;
  gap: 6.1rem;
  align-items: flex-start;
}

#password .form {
  grid-template-rows: repeat(2, 1fr);
}

#password .btn-container {
  gap: 2.6rem;
  flex-wrap: nowrap;
}

.form-input {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}

.form-input label {
  color: #000;
  font-size: 1.6rem;
  font-style: normal;
  line-height: normal;
}

label a {
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

label a:hover {
  border-color: transparent;
}

.form-input input,
select,
.form-field,
.form-input .input {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0 2.13541666667vw;
  z-index: 10;
  height: 3.64583333333vw;
  border: 1px var(--green) solid;
  -webkit-box-shadow: 0px 5px 10px 2px var(--green-translucent);
  -moz-box-shadow: 0px 5px 10px 2px var(--green-translucent);
  box-shadow: 0px 5px 10px 2px var(--green-translucent);
  display: flex;
  align-items: center;
  width: 100%;
}

.form-input input.disabled,
.form-input input:disabled,
.form-input select.disabled,
.form-input select:disabled,
.form-input .input.disabled {
  border-color: #d7d7d7;
}

.form-input.error input,
.form-input.error select {
  border-color: red;
}

.errorMessage {
  color: red;
}

.f-row .errorMessage {
  margin-top: 7px;
}

#plans .errorMessage {
  color: #930b0b;
  font-size: 14px;
}

#plans .form-input {
  display: none;
}

#plans .form-input label {
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.flex {
  display: flex;
}

.social_widgets .flex {
  gap: 5rem;
}

.social_widgets .flex .instawall {
  width: 100%;
}

.social_widgets .flex .strava_widget {
  width: 300px;
}

.birthday .flex {
  display: flex;
  gap: 2rem;
}

.pointer {
  cursor: pointer;
}

.switch-input {
  display: none !important;
}

.checkbox-green {
  width: 1.30208333333vw;
  aspect-ratio: 1/1;
  /*background-color: var(--green);*/
  transition: all 0.4s ease;
  position: relative;
  border: #0fffb7 1px solid;
  border-radius: 20%;
}

.checkbox-green input {
  opacity: 0;
  position: absolute;
  inset: 0;
}

input:hover {
  cursor: pointer;
}

.checkbox-green .checkmark {
  display: none;
}

.checkbox-green:has(input:checked) .checkmark {
  display: flex;
}

.checkbox-green:has(input:checked)~label {
  font-weight: 600;
}

.switch-wrapper {
  display: flex;
  position: relative;
  height: 3.64583333333vw;
  background-color: #fff;
  overflow: hidden;
  padding: 5px;
  border: 1px #0fffb7 solid;
  -webkit-box-shadow: 0px 5px 10px 2px var(--green-translucent);
  -moz-box-shadow: 0px 5px 10px 2px var(--green-translucent);
  box-shadow: 0px 5px 10px 2px var(--green-translucent);
}

.active-switcher {
  width: calc(50% - 5px);
  position: absolute;
  background-color: #0fffb7;
  z-index: 1;
  bottom: 5px;
  top: 5px;
  transition: left 0.3s ease;
}

.distance-choice .switch-wrapper {
  height: 5rem;
  width: 18.5rem;
}

.switch-label {
  flex: 1;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
}

#side-text {
  position: absolute;
  top: 41.5%;
  transform: translateY(-50%);
  left: -14vw;
}

#payment-page #side-text {
  top: 50%;
}

#payment-page .parbase-2 {
  min-height: 600px;
}

#male:checked~.active-switcher {
  left: 5px;
}

#female:checked~.active-switcher {
  left: calc(50% - 5px);
}

#employee:checked~.active-switcher {
  left: 5px;
}

#non-employee:checked~.active-switcher {
  left: 50%;
}

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

.plans-grid {
  display: grid;
  width: 100%;
  gap: 1.04166666667vw;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.payment-grid {
  display: flex;
  width: 100%;
  margin-top: 6.8rem;
  margin-bottom: 14.5rem;
  gap: 2.8rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 11.7rem;
  row-gap: 11.1rem;
}

.event_image {
  position: relative;
}

.event_image .event_city {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--green);
  font-size: 3rem;
  font-weight: 600;
}

.plan-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #0fffb7;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
  padding: 2vw 1vw;
}

.payment-grid .plan-cell {
  padding: 7% 0;
  justify-content: space-evenly;
  background-color: #fff;
  text-align: center;
  max-width: 450px;
}

.agreement-text {
  margin-left: 1.2rem;
}

.plan-cell input {
  opacity: 0;
  position: absolute;
  inset: 0;
}

.plans-grid .plan-cell.active {
  background-color: #0fffb7;
  color: #000;
}

.plan-cell input:hover {
  cursor: pointer;
}

.plans-grid .plan-cell:has(input:hover) {
  transform: scale(1.05);
}

input[type="date"] {
  width: 100%;
  display: block;
  position: relative;
  z-index: 15;
}

input[type="date"]::after {
  content: url(/static/img/calendar.svg);
  position: absolute;
  width: 1.8rem;
  height: 2rem;
  top: 50%;
  transform: translateY(-50%);
  right: 6.5%;
  z-index: 12;
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  z-index: 15;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6.5%;
  width: 4rem;
  height: 2rem;
  opacity: 0;
  cursor: pointer;
}

.plan-selected {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -20%;
  display: none;
}

.payment-grid .plan-selected {
  top: -10%;
}

.plan-cell:has(input:checked) .plan-selected {
  display: block;
}

.pb-6 {
  padding-bottom: 3.48958333333vw;
  border-bottom: 1px #0fffb7 solid;
  margin-bottom: 3.48958333333vw;
}

.border-grad {
  border: 1px solid;
  border-image: linear-gradient(95deg,
      #0fffb7 -8.88%,
      #7543b5 52.76%,
      #d8418f 111.62%);
  border-image-slice: 1;
}

.select {
  min-width: 30%;
}

select {
  appearance: none;
  background-image: url(/static/img/chevron.svg);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 0.5vw auto;
}

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

#btn-back {
  align-self: start;
  margin-top: 1vw;
}

.noborder {
  border: none;
}

.swiper.tabs-slider {
  width: 100%;
  position: relative;
}

.auth {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  font-size: 1vw;
  max-width: 50%;
  margin: 0 auto;
}

.payment_total .text-sm {
  margin-right: 10px;
}

.payment_total {
  margin-top: 5.2rem;
}

#profile .custom-pagination {
  margin-bottom: 3vw;
}

#profile .event_item {
  display: flex;
  flex-direction: row;
  gap: 6.2rem;
}

#profile .event_item .event_image {
  /* background: url(/static/img/square-aqsu.png) no-repeat center;
  background-size: cover;
  padding: 4vw; */
  width: 30rem;
  height: 26rem;
}

#profile .event_item .event_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#profile .event_item .event_data {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.6rem;
}

#profile .event_item .event_data .btn {
  padding: 1.8rem 0;
}

#profile .event_item .event_data h2 {
  font-size: 2.4vw;
  margin-bottom: 1vw;
  color: #000;
}

#profile .event_item .event_data h2 a {
  color: #000;
}

#profile .event_item .event_data .btn {
  margin-top: auto;
}

#profile .event_title a {
  color: #000;
  font-size: 2.4rem;
}

#profile .parbase-1 {
  flex-direction: column;
  gap: 0;
}

#profile .swiper-wrapper {
  flex-direction: column;
}

.tabs-slider .swiper-slide {
  background: #fff;
  display: flex;
  align-items: center;
  width: 100%;
}

#profile .tab-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.tab-content .btn-container {
  margin-bottom: 3rem;
  padding-top: 5.8rem;
  border-top: 1px #0fffb7 solid;
  margin-top: 6.7rem;
}

.tabs-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tabs-slider .swiper-pagination-bullet {
  width: 20px;
  height: 100%;

  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
  border-bottom: var(--gradient) 1px solid;
}

.slide-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: 15.071rem 14.96rem;
  min-width: 100%;
}

.custom-pagination {
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  border-bottom: #0fffb7 1px solid;
  z-index: 15 !important;
  position: relative !important;
}

#profile .custom-pagination {
  justify-content: space-between;
  align-items: flex-end;
}

#profile .custom-pagination .pagination-right {
  display: flex;
  gap: 7.5rem;
  align-items: end;
  height: 100%;
  padding: 0;
}

.custom-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #0fffb7;
}

.custom-pagination div {
  cursor: pointer;
  font-size: 2.4rem;
  color: #000;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.8rem;
}

.custom-pagination div a {
  color: #000;
}

.custom-pagination .active {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-pagination .active {
  border-image: var(--gradient) 1;
  border-width: 4px;
  border-style: solid;
  border-top: none;
  border-left: none;
  border-right: none;
}

.documents {
  column-gap: 5.65625vw;
  row-gap: 2.29166666667vw;
  columns: 2;
}

.documents .gap-min {
  width: 40%;
}

.documents-container {
  gap: 26.4rem;
}

.documents a {
  color: var(--white);
}

.map-circle-placemark {
  opacity: 0;
}

.bgCircle {
  position: relative;
  border-radius: 50%;
}

.profile-pic {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.sign-out {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: center;
  gap: 1rem;
}

.sign-out a span {
  color: #f52020;
  font-size: 1.6rem;
}

.error-message {
  color: #f52020;
}

.registration-closed {
  color: #f52020;
  border: 1px dashed #f52020;
}

.registration-success {
  color: #000;
  border: 1px dashed #0fffb7;
}

.balloon-content {
  font-family: Arial, sans-serif;
  /* width: 37.21rem; */
  height: max-content;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.balloon-header {
  background: var(--gradient);
  color: #fff;
  padding: 0 4.5rem;
  padding-top: 2.7rem;
  padding-bottom: 2.9rem;
  font-size: 2.4rem;
  height: 40%;
  font-weight: bold;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.balloon-header span {
  width: 100%;
}

.event-link {
  color: #000;
  margin-bottom: 2rem;
}

.event-link .square {
  margin-bottom: 0.7rem;
}

.balloon-close-button {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
  position: absolute;
  opacity: 0.6;
  top: 2rem;
  right: 2rem;
}

.balloon-body {
  background-color: #fff;
  border-bottom-left-radius: 10px;
  font-size: 1.6rem;
  height: 60%;
  padding: 3rem 4.6rem;
  border-bottom-right-radius: 10px;
  line-height: 1.5;
}

.balloon-body div {
  margin-bottom: 1.5rem;
}

.ymaps-2-1-79-balloon__close {
  display: none;
}

.ymaps-2-1-79-balloon {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.ymaps-2-1-79-balloon__layout {
  background: none !important;
}

.ymaps-2-1-79-balloon__content {
  padding: 0 !important;
  margin-right: 0 !important;
  border: none !important;
  background: none !important;
}

.custom-balloon .ymaps-balloon__content {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
}

.send-message-container {
  display: flex;
  flex-direction: column;
  gap: 2vw;

  padding: 10% 15%;
}

input[name="message"] {
  min-height: 250%;
}

.square-event-title {
  display: flex;
  gap: 5rem;
  align-items: center;
}

#profile .event_item .square-event-title {
  gap: 2.6rem;
}

.arrow-mob {
  width: 3rem;
  height: 5.1rem;
}

#profile .arrow-mob {
  width: 1.7rem;
  height: 3rem;
}

.other_races-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9.567rem;
}

.other_races {
  gap: 1.7rem;
}

.pass-toggle {
  position: absolute;
  right: 2.8rem;
  top: 5.7rem;
  width: 2.8rem;
  height: 1.9rem;
  z-index: 10;
}

.pass-toggle::after {
  content: url(/static/img/pass-vis.svg);
  width: 100%;
  height: 100%;
}

.pass-toggle input {
  position: absolute;
  z-index: 11;
  inset: 0;
  width: 4rem;
  height: 2.8rem;
  opacity: 0;
  cursor: pointer;
}

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

.flip-clock {
  display: flex;
  gap: 1rem;
}

.event_data .flip-clock {
  margin: auto 0 0 0;
}

.flip-clock__piece {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #00ffad;
  color: #000;
  border-radius: 0.5rem;
  width: 5.95rem;
  height: 5.1454rem;
}

#home .intro-right .flip-clock__piece,
#events .intro-right .flip-clock__piece {
  height: 8rem;
  width: 10rem;
}

.intro-right .flip-clock__piece .card {
  font-size: 4rem;
}

.intro-right .flip-clock__piece .card__top {
  transform: translateY(50%);
}

.intro-right .flip-clock__piece .card__bottom::after {
  transform: translateY(-90%);
}

.flip-clock__slot {
  font-size: 1.2rem;
  margin-top: 0.878rem;
  text-transform: uppercase;
  align-self: center;
  color: var(--green);
  font-weight: 600;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-size: 1.6rem;
  line-height: 0.95;
  width: 100%;
  height: 100%;
}

.card__top,
.card__bottom,
.card__back::before,
.card__bottom::after {
  display: flex;
  justify-content: center;
  height: 50%;
  color: #000;
  background: #00ffad;
  align-items: flex-end;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  width: 100%;
}

.card__top {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  transform: translateY(35%);
}

.card__bottom {
  color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0;
  background: #0ee6a5;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  pointer-events: none;
  overflow: hidden;
}

.card__bottom::after {
  display: block;
  content: attr(data-value);
  background: none;
  text-align: center;
  transform: translateY(-50%);
}

.card__back::before,
.card__bottom::after {
  content: attr(data-value);
  padding: 0;
  border-radius: 0.5rem;
}

.card__back {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  pointer-events: none;
  width: 100%;
}

.card__back::before {
  position: relative;
  z-index: -1;
  overflow: hidden;
}

.flip .card__back::before {
  animation: flipBottom 0.3s cubic-bezier(0.15, 0.45, 0.28, 1);
  animation-fill-mode: both;
  transform-origin: center bottom;
}

.flip .card__back .card__bottom {
  transform-origin: center top;
  animation-fill-mode: both;

  animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
}

.instagram-block {
  background: var(--gradient);
  color: var(--white);
}

.instagram-block .text-title {
  margin-bottom: 7.06rem;
}

.banner__logo {
  width: 62.311rem;
  height: 37rem;
}

.filter-list {
  display: flex;
  font-size: 1.6rem;
  gap: 2rem;
  font-weight: 600;
}

.filter-list .form-field {
  margin-top: 0.8rem;
  height: 6rem;
}

.participants .result_table {
  margin-top: 6rem;
}

.result_table .items {
  width: 100%;
  font-size: 1.6rem;
  border-collapse: collapse;
}

.table tr {
  border-bottom: 1px var(--green) solid;
}

.table th {
  text-align: start;
}

.table th .sort-link {
  color: #000;
}

.table tr td,
.table th {
  padding: 1rem;
}

.scroll_div {
  overflow-x: auto;
}

.pager {
  display: flex;
  justify-content: center;
  margin-top: 9rem;
}

.page_events .name {
  font-weight: 600;
}

.page_events .name a {
  color: #000;
}

ul.yiiPager li {
  position: relative;
}

ul.yiiPager li.next a,
ul.yiiPager li.previous a {
  z-index: 5;
  background: url(/static/img/ArrowPager.svg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  color: transparent;
}

/* ul.yiiPager li.next::after, ul.yiiPager li.previous::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/static/img/ArrowPager.svg) no-repeat;
  background-size:  cover;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
} */

ul.yiiPager li.next {
  margin-left: 3.3rem;
  width: 3rem;
  height: 1.735rem;
}

ul.yiiPager li.previous {
  margin-right: 4.1rem;
  width: 3rem;
  height: 1.735rem;
}

ul.yiiPager li.previous {
  transform: scaleX(-1);
}

ul.yiiPager {
  display: flex;
  align-items: center;
}

ul.yiiPager a:link,
ul.yiiPager a:visited {
  border: none;
  font-weight: bold;
  color: var(--black);
  padding: 1px 6px;
  text-decoration: none;
  font-size: 1.6rem;
}

ul.yiiPager .selected a {
  background: none;
  color: var(--green);
  font-weight: bold;
}

@keyframes flipBottomToTop {
  0% {
    transform: rotateX(0deg);
  }

  100% {
    transform: rotateX(90deg);
  }
}

@keyframes flipBottom {
  0% {
    transform: rotateX(-90deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}

@keyframes jump {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(20%);
  }
}

@keyframes shake {
  from {
    transform: rotate(-15deg);
  }

  to {
    transform: rotate(15deg);
  }
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes clipReveal {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  100% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0%, 0 0%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0%, 0 0%);
  }
}