@charset "UTF-8";

:root {
  --transition: .4s;
  --zero: #000;
  --white: #fff;
  --black-fon: #110E13;
  --pink: #F43B8F;
  --blue: #5C43FF;
}

/*Миксины*/

.ppix {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 10000;
  display: none;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

html,
body {
  scrollbar-gutter: stable;
  overflow: hidden auto;
}

body {
  max-width: 100%;
  margin: 0px;
  font-family: "Akrobat";
  font-weight: 600;
  color: var(--white);
  background: var(--black-fon);
  font-size: 18px;
  line-height: 120%;
  width: 100%;
}

.no-scroll {
  height: 100vh;
  overflow: hidden;
}

.no-scroll > .simplebar-track {
  display: none;
}

/* Флекс */

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

.flex--top-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex--top-center {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--top-right {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

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

.flex--top-space-a {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--center-left {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

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

.flex--center-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

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

.flex--center-space-a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--bottom-left {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex--bottom-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex--bottom-center {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--bottom-space {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex--bottom-space-a {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.flex--column {
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex--nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex--1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.pos--relative {
  position: relative;
}

.pos--absolute {
  position: absolute;
}

/* Цвета */

.color--zero {
  color: var(--zero);
}

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

.color--black-fon {
  color: var(--black-fon);
}

.background--zero {
  background-color: var(--zero);
}

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

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

.svg-hover path,
.svg-hover circle,
.svg-hover rect {
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.svg-hover--zero:hover path[fill],
.svg-hover--zero:hover circle[fill],
.svg-hover--zero:hover rect[fill] {
  fill: var(--zero);
}

.svg-hover--zero:hover path[stroke],
.svg-hover--zero:hover circle[stroke],
.svg-hover--zero:hover rect[stroke] {
  stroke: var(--zero);
}

.svg-hover--white:hover path[fill],
.svg-hover--white:hover circle[fill],
.svg-hover--white:hover rect[fill] {
  fill: var(--white);
}

.svg-hover--white:hover path[stroke],
.svg-hover--white:hover circle[stroke],
.svg-hover--white:hover rect[stroke] {
  stroke: var(--white);
}

.svg-hover--black-fon:hover path[fill],
.svg-hover--black-fon:hover circle[fill],
.svg-hover--black-fon:hover rect[fill] {
  fill: var(--black-fon);
}

.svg-hover--black-fon:hover path[stroke],
.svg-hover--black-fon:hover circle[stroke],
.svg-hover--black-fon:hover rect[stroke] {
  stroke: var(--black-fon);
}

.hover-opacity {
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.hover-opacity:hover {
  opacity: 0.5;
}

.container {
  width: 1240px;
  max-width: calc(100vw - 200px);
  margin: 0 auto;
}

.first-screen {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.first-screen__content {
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  z-index: 1;
  padding-bottom: 98px;
  padding-top: 45px;
}

.first-screen__content::before {
  content: "";
  display: block;
  width: 1280px;
  height: 1280px;
  position: absolute;
  bottom: 50%;
  left: 50%;
  z-index: -2;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#FB3B8C), to(#1C49FA));
  background: -o-linear-gradient(left, #FB3B8C 0%, #1C49FA 100%);
  background: linear-gradient(90deg, #FB3B8C 0%, #1C49FA 100%);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  opacity: 0.5;
  pointer-events: none;
}

.no-webp .first-screen__content::after{
  background: url("../img/2025/top.png") center center/contain no-repeat; }

.first-screen__content::after {
  content: "";
  display: block;
  width: 817px;
  height: 588px;
  position: absolute;
  top: 143px;
  left: 648px;
  z-index: -1;
  pointer-events: none;
}

.first-screen__top {
  margin-bottom: 32px;
}

.button {
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--white);
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  gap: 8px;
  position: relative;
  overflow: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
  outline: none;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.button::before {
  background: var(--pink);
  -webkit-transform: translateY(120%) scale(1.1);
      -ms-transform: translateY(120%) scale(1.1);
          transform: translateY(120%) scale(1.1);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.12, 0.8, 0.4, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.12, 0.8, 0.4, 1);
  -o-transition: transform 0.6s cubic-bezier(0.12, 0.8, 0.4, 1);
  transition: transform 0.6s cubic-bezier(0.12, 0.8, 0.4, 1);
  transition: transform 0.6s cubic-bezier(0.12, 0.8, 0.4, 1), -webkit-transform 0.6s cubic-bezier(0.12, 0.8, 0.4, 1);
}

.button::after {
  background: #3346E2;
  -webkit-transform: translateY(160%) scale(1.1);
      -ms-transform: translateY(160%) scale(1.1);
          transform: translateY(160%) scale(1.1);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.12, 0.8, 0.4, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.12, 0.8, 0.4, 1);
  -o-transition: transform 0.8s cubic-bezier(0.12, 0.8, 0.4, 1);
  transition: transform 0.8s cubic-bezier(0.12, 0.8, 0.4, 1);
  transition: transform 0.8s cubic-bezier(0.12, 0.8, 0.4, 1), -webkit-transform 0.8s cubic-bezier(0.12, 0.8, 0.4, 1);
}

.button span {
  position: relative;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  z-index: 1;
}

.button i {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-box-shadow: inset 0 0 0 1px var(--white);
          box-shadow: inset 0 0 0 1px var(--white);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.button i::before,
.button i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0%;
  background: url("../img/2025/arrow.svg") center center/7px no-repeat;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.button i::after {
  left: -100%;
}

.button:hover {
  border-color: transparent;
}

.button:hover::before,
.button:hover::after {
  -webkit-transform: translateY(0) scale(1.5);
      -ms-transform: translateY(0) scale(1.5);
          transform: translateY(0) scale(1.5);
}

.button:hover i::before,
.button:hover i::after {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.button--blue {
  border: none;
  text-transform: uppercase;
  background: var(--blue);
  -webkit-box-shadow: 0px 0px 20px 0px var(--blue);
          box-shadow: 0px 0px 20px 0px var(--blue);
  padding: 30px 20px;
}

.button--blue::before {
  background: var(--white);
}

.button--blue::after {
  background: var(--pink);
}

.button--blue:hover {
  -webkit-box-shadow: 0px 0px 20px 0px var(--pink);
          box-shadow: 0px 0px 20px 0px var(--pink);
}

.button--pink {
  border: none;
  text-transform: uppercase;
  background: var(--pink);
  -webkit-box-shadow: 0px 0px 20px 0px var(--pink);
          box-shadow: 0px 0px 20px 0px var(--pink);
  padding: 30px 20px;
}

.button--pink::before {
  background: var(--white);
}

.button--pink::after {
  background: var(--blue);
}

.button--pink:hover {
  -webkit-box-shadow: 0px 0px 20px 0px var(--blue);
          box-shadow: 0px 0px 20px 0px var(--blue);
}

.button--transparent {
  border: none;
  text-transform: uppercase;
  background: rgba(167, 167, 167, 0.1);
  padding: 30px 20px;
}

.button--240 {
  min-width: 240px;
}

.button--308 {
  min-width: 308px;
}

.button__ico {
  position: relative;
  z-index: 1;
}

.marquee-wrap {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  overflow: hidden;
  cursor: default;
}

#marquee-sticky {
  position: absolute;
  bottom: 32px;
  z-index: 1;
}

.marquee {
  font-size: 64px;
  line-height: 100%;
  font-weight: 100;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.24;
}

.marquee-logo {
  margin-right: 64px;
  max-height: 48px;
}

.first-screen__title {
  gap: 10px;
  text-transform: uppercase;
  line-height: 100%;
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 100px;
  margin-bottom: 76px;
}

.first-screen__subtitle {
  font-size: 23px;
  line-height: 120%;
}

.first-screen__title_row_gia {
  text-align: left;
  gap: 20px;
  padding-left: 200px;
}

.gradient-text {
  background: var(--Linear, linear-gradient(91deg, var(--pink) 0%, var(--blue) 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.first-screen__buttons {
  padding-left: 142px;
}

.section {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.anons {
  padding-top: 80px;
}

.section-circle {
  width: 1240px;
  height: 1240px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 59, 140, 0.4)), to(rgba(28, 73, 250, 0.4)));
  background: -o-linear-gradient(top, rgba(251, 59, 140, 0.4) 0%, rgba(28, 73, 250, 0.4) 100%);
  background: linear-gradient(180deg, rgba(251, 59, 140, 0.4) 0%, rgba(28, 73, 250, 0.4) 100%);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  position: absolute;
  z-index: -1;
}

.section-circle--1 {
  left: -932px;
  top: -276px;
}

.section-circle--2 {
  right: -832px;
  top: -176px;
  background: -o-linear-gradient(330deg, rgba(251, 59, 140, 0.4) 0%, rgba(28, 73, 250, 0.4) 100%);
  background: linear-gradient(120deg, rgba(251, 59, 140, 0.4) 0%, rgba(28, 73, 250, 0.4) 100%);
}

.section-circle--3 {
  left: -832px;
  top: -276px;
}

.section-circle--4 {
  right: -532px;
  top: -176px;
  background: -o-linear-gradient(330deg, rgba(251, 59, 140, 0.4) 0%, rgba(28, 73, 250, 0.4) 100%);
  background: linear-gradient(120deg, rgba(251, 59, 140, 0.4) 0%, rgba(28, 73, 250, 0.4) 100%);
}

.section-circle--5 {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(100% - 250px);
  background: -o-linear-gradient(350deg, rgba(251, 59, 140, 0.4) 0%, rgba(28, 73, 250, 0.4) 100%);
  background: linear-gradient(100deg, rgba(251, 59, 140, 0.4) 0%, rgba(28, 73, 250, 0.4) 100%);
}

.h2 {
  color: var(--white);
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 64px;
}

.h2:last-child {
  margin-bottom: 0;
}

.h3 {
  color: var(--white);
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.h3:last-child {
  margin-bottom: 0;
}

.pink {
  color: var(--pink);
}

.numbers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}

.number {
  padding: 8px 16px 8px 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(167, 167, 167, 0.05);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  gap: 10px 30px;
  transition: .4s;
}

.number:hover {
  box-shadow: 0px 0px 30px 0px var(--pink);
}

.number__num {
  font-size: 100px;
  line-height: 0.6;
  padding: 10px 0;
  min-width: 180px;
}

.number__num span {
  font-size: 50%;
}

.number__text {
  font-size: 24px;
  line-height: 120%;
}

.spoilers {
  gap: 24px;
}

.spoilers__column {
  gap: 24px;
  width: calc(50% - 12px);
}

.spoilers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 24px; 
}

.spoilers__column + .spoilers__column {
  padding-top: 92px;
}

.spoilers--top .spoilers__column + .spoilers__column {
  padding-top: 0 !important;
}

.spoiler {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(167, 167, 167, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 38px 36px 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
  min-height: 170px;
}

.spoiler::before {
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  pointer-events: none;
  background: -o-radial-gradient(50% 0%, 100% 100%, var(--blue) 0%, rgba(244, 59, 143, 0.4) 50%, rgba(244, 59, 143, 0.01) 100%);
  background: radial-gradient(100% 100% at 50% 0%, var(--blue) 0%, rgba(244, 59, 143, 0.4) 50%, rgba(244, 59, 143, 0.01) 100%);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
}

.spoiler:hover,
.spoiler.open {
  -webkit-box-shadow: 0px 0px 30px 0px var(--pink);
          box-shadow: 0px 0px 30px 0px var(--pink);
  z-index: 2;
}

.spoiler:hover::before,
.spoiler.open::before {
  opacity: 1;
  height: 100%;
}

.spoiler:hover .spoiler__arrow {
  opacity: 1;
}

.spoiler.open .spoiler__arrow {
  opacity: 0;
}

.spoiler__preview {
  gap: 20px;
  padding-bottom: 32px;
}

.spoiler__title {
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 34px;
  font-style: normal;
  line-height: 120%;
  text-transform: uppercase;
}

.spoiler__title--big {
  font-size: 60px;
}

.spoiler__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  opacity: 0.3;
}

.spoiler__contnetn {
  display: none;
  margin-bottom: 15px;
}

.spoiler__categories {
  margin-top: 64px;
  gap: 10px;
}

.spoiler__categories:first-child {
  margin-top: 26px;
}

.spoiler__category {
  display: block;
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  color: var(--white);
}

.spoiler__tag {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0px 5.653px;
  background: var(--pink);
  padding: 6px 12px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
}

.naminations .spoilers__column + .spoilers__column {
  padding-top: 130px;
}

.naminations .spoiler {
  min-height: 250px;
}

.nominations-section {
  position: relative;
  z-index: 1;
}

.no-webp .nominations-section::before{
  background: url("../img/2025/nominations-back.png") center center/contain no-repeat; }

.nominations-section::before {
  content: "";
  display: block;
  width: 1740px;
  height: 1256px;
  position: absolute;
  top: -55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

p {
  margin: 0 0 20px;
  line-height: 120%;
}

p:last-child {
  margin-bottom: 0;
}

p {
  font-weight: 700;
}

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

img {
  max-width: 100%;
}

.prinych {
  margin-top: 40px;
}

.section-experts {
  overflow: hidden;
}

.expert-block {
  position: relative;  
}

.expert-slider {
  position: relative;
  overflow: hidden;
}

.expert {
  width: 280px;
}

.expert__photo {
  margin-bottom: 32px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.expert__photo::before {
  content: "";
  display: block;
  width: 100%;
  height: 250px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 14, 19, 0)), color-stop(95%, #110E13));
  background: -o-linear-gradient(top, rgba(17, 14, 19, 0) 0%, #110E13 95%);
  background: linear-gradient(180deg, rgba(17, 14, 19, 0) 0%, #110E13 95%);
}

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

.expert__fio {
  font-size: 20px;
  font-style: normal;
  line-height: 120%;
  margin-bottom: 16px;
}

.expert__fio span {
  text-transform: uppercase;
}

.expert__position {
  margin-bottom: 16px;
}

.expert__company {
  color: rgba(255, 255, 255, 0.6);
}
.expert__company a {
  color: inherit;
}

.expert-navigation {
  position: absolute;
  top: 25px;
  right: 0;
}

.slider__navigation {
  gap: 16px;
}

.slider__arrow {
  cursor: pointer;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.slider__arrow.disabled {
  opacity: 0.1;
}

.steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 36px;
  gap: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--2, radial-gradient(49.88% 100% at 50% 0%, rgba(255, 255, 255, 0.05) 0%, rgba(17, 14, 19, 0.1) 100%));
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.step:hover {
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px 0px 30px 0px #F43B8F;
          box-shadow: 0px 0px 30px 0px #F43B8F;
}

.step:hover::before,
.step:hover::after {
  opacity: 1;
}

.step:hover .step__text {
  opacity: 1;
}

.step:hover .step__text .pink {
  color: var(--white);
}

.step::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: -o-linear-gradient(345deg, #F43B8F 40%, #5C43FF 100%);
  background: linear-gradient(105deg, #F43B8F 40%, #5C43FF 100%);
  opacity: 0;
  z-index: -2;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.no-webp .step::after{
  background: url(../img/2025/step.png) center center/cover; }

.step::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.step--big {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  gap: 18px;
}

.step--big::before,
.step--big::after {
  display: none;
}

.step--big .button {
  margin-left: auto;
  margin-right: 172px;
}

.step__title {
  font-size: 24px;
  text-transform: uppercase;
}

.step__text {
  opacity: 0.64;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.step__text p {
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.step__num {
  position: absolute;
  right: 24px;
  bottom: 0;
  z-index: -1;
  opacity: 0.1;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 120px;
  font-style: normal;
  line-height: 120%;
  pointer-events: none;
  text-align: right;
}

.text-standart-transform {
  text-transform: none;
}

.uslov {
  position: relative;
  margin: 166px 0;
  z-index: 1;
}

.no-webp .uslov::before{
  background: url("../img/2025/uslov.png") center center/contain no-repeat; }

.uslov::before {
  content: "";
  display: block;
  width: 942px;
  height: 681px;
  position: absolute;
  top: -180px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

.uslist {
  gap: 8px;  
}

.custom-ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.custom-ul:last-child {
  margin-bottom: 0;
}

.custom-ul li {
  margin-bottom: 24px;
  position: relative;
  padding-left: 64px;
}

.custom-ul li:last-child {
  margin-bottom: 0;
}

.custom-ul li::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: -8px;
  left: 0px;
  background: url("../img/2025/ul.svg") center center/contain no-repeat;
}

.partners {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.partner {
  padding: 32px;
}

.partner img {
  max-height: 64px;
}

.gray-block {
  padding: 48px;
  border-radius: 8px;
  background: rgba(215, 215, 215, 0.05);
}

.faq-open {
  position: relative;  
  cursor: pointer;
}

.faq-open::before {
    content: '';
    display: block;
    width: calc(100% + 96px);
    height: calc(100% + 96px);
    position: absolute;
    top: -48px;
    left: -48px;
}

.faq-open.open .faq__ico {
  transform: rotate(45deg);
}

.faq-list {
  gap: 20px;
}

.faq-hide {
  display: none;
  margin-top: 64px;
}

.faq {
  padding: 20px 48px;
  border-radius: 8px;
  background: var(--black-fon);
  overflow: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.faq::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: -o-radial-gradient(50% 0%, 100% 100%, var(--blue) 0%, rgba(244, 59, 143, 0.4) 50%, rgba(244, 59, 143, 0.01) 100%);
  background: radial-gradient(100% 100% at 50% 0%, var(--blue) 0%, rgba(244, 59, 143, 0.4) 50%, rgba(244, 59, 143, 0.01) 100%);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
}

.faq:hover,
.faq.open {
  -webkit-box-shadow: 0px 0px 20px 0px var(--pink);
          box-shadow: 0px 0px 20px 0px var(--pink);
}

.faq:hover::before,
.faq.open::before {
  opacity: 1;
}

.faq.open .faq__ico {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq__title {
  gap: 32px;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.faq__title::before {
  content: "";
  display: block;
  width: calc(100% + 96px);
  height: calc(100% + 40px);
  position: absolute;
  top: -20px;
  left: -48px;
}

.faq__ico {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.faq__hide {
  display: none;
  position: relative;
  z-index: 1;
}

.faq__content {
  padding-top: 48px;
}

.faq__content b {
  font-weight: 400;
}

.faq__content b {
  font-weight: 600;
}

.faq__content ol {
  padding-left: 10px;
  margin-bottom: 10px;
}

.faq__content ul {
  padding-left: 18px;
  margin-bottom: 10px;
  list-style: disc;
}

.faq__content ol ul {
  margin-top: 10px;
}

.faq__content ol:last-child,
.faq__content ul:last-child {
  margin-bottom: 0;
}

.faq__content li {
  padding-left: 0;
  margin-bottom: 10px;
}

.faq__content li p {
  margin-bottom: 10px;
}

.faq__content li p:last-child {
  margin-bottom: 0px;
}

.faq__content ol li {
  margin-bottom: 10px;
  padding-left: 0;
}

.faq__content li:last-child,
.faq__content ol li:last-child {
  margin-bottom: 0;
}

.tabs__nav {
  gap: 12px;
  margin-bottom: 40px;
}

.tabs__link {
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(167, 167, 167, 0.05);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.tabs__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  background: -o-radial-gradient(50% 0%, 100% 100%, var(--blue) 0%, rgba(244, 59, 143, 0.4) 50%, rgba(244, 59, 143, 0.01) 100%);
  background: radial-gradient(100% 100% at 50% 0%, var(--blue) 0%, rgba(244, 59, 143, 0.4) 50%, rgba(244, 59, 143, 0.01) 100%);
  opacity: 0;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.tabs__link:hover::before,
.tabs__link.active::before {
  opacity: 1;
}

.tabs__item {
  display: none;
}

.tabs__item.active {
  display: block;
}

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

.how-slider__wrapper {
  width: 100%;
  position: relative;
}
.how-slider {
  width: 100%;
  overflow: hidden;
}

.how-slider .swiper-wrapper {
  align-items: unset;
}

.how-slide {
  width: 295px;
  height: auto;
  min-height: 410px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  color: inherit;
  text-decoration: none;
  position: relative;
}

.how-slide--big {
  width: calc(50% - 10px);
}

.how-slide:hover {
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* -webkit-box-shadow: 0px 0px 30px 0px var(--pink);
          box-shadow: 0px 0px 30px 0px var(--pink); */
}

.how-slide__image {
  width: 100%;
  height: 237px;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.how-slide__image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 14, 19, 0)), color-stop(95%, #110E13));
  background: -o-linear-gradient(top, rgba(17, 14, 19, 0) 0%, #110E13 95%);
  background: linear-gradient(180deg, rgba(17, 14, 19, 0) 0%, #110E13 95%);
  pointer-events: none;
}

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

.how-slide__content {
  gap: 24px;
  padding: 0 22px 22px;
}

.how-slide__big-title {
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 120px;
  font-style: normal;
  line-height: 148%;
  pointer-events: none;
  opacity: .3;
}

.how-slide__from {
  opacity: 0.64;
}

.how-navigation {
  position: absolute;
  top: -82px;
  right: 0;
}

.how-slide__arrow {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.self-tab-list {
  gap: 20px;
  position: relative;
}

.self-tab {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--Linear, linear-gradient(91deg, #F43B8F 0%, #5C43FF 100%));
  padding: 40px 36px;
  position: relative;
  cursor: pointer;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  border-radius: 8px;
  min-height: 462px;
  min-width: 208px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.self-tab::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    pointer-events: none;
    z-index: -1;
}
.self-tab:nth-child(1)::before {
    background: url('../img/2025/kakeb-1.png') right bottom  no-repeat;
}
.self-tab:nth-child(2)::before {
    background: url('../img/2025/kakeb-2.png') center bottom  no-repeat;
}
.self-tab:nth-child(3)::before {
    background: url('../img/2025/kakeb-3.png') center bottom   no-repeat;
}
.self-tab:nth-child(4)::before {
    background: url('../img/2025/kakeb-4.png') left bottom  no-repeat;
}

.self-tab--2c:nth-child(1)::before {
    background: url('../img/2025/kakeb-5.png') right bottom  no-repeat;
}
.self-tab--2c:nth-child(2)::before {
    background: url('../img/2025/kakeb-6.png') left bottom  no-repeat;
}

.self-tab:hover {
  -webkit-box-shadow: 0px 0px 30px 0px #F43B8F;
          box-shadow: 0px 0px 30px 0px #F43B8F;
}

.self-tab .self-tab-open {
  display: none;
}

.self-tab__title {
  font-size: 38px;
  margin-bottom: 16px;
}

.self-tab__text {
  font-size: 24px;
}

.self-tab__ico {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.self-tab-open {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  min-height: 100%;
  background: var(--black-fon) -o-radial-gradient(50% 0%, 100% 100%, var(--blue) 0%, rgba(244, 59, 143, 0.4) 50%, rgba(244, 59, 143, 0.01) 100%);
  background: var(--black-fon) radial-gradient(100% 100% at 50% 0%, var(--blue) 0%, rgba(244, 59, 143, 0.4) 50%, rgba(244, 59, 143, 0.01) 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0px 0px 20px 0px #F43B8F;
          box-shadow: 0px 0px 20px 0px #F43B8F;
  padding: 28px 36px;
}

.self-tab-open__title {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.text-3-col {
  font-size: 14px;
  -webkit-columns: 3;
     -moz-columns: 3;
          columns: 3;
  gap: 40px;
}

.pobed-list {
  gap: 12px;
  margin-bottom: 20px;
}

.pobed-list:last-child {
  margin-bottom: 0;
}

.pobed-item {
  width: calc(50% - 6px);
  padding: 10px 14px;
  line-height: 120%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.25);
          box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.25);
}

.pobed-item b {
  opacity: 0.5;
}

.pobed-item br {
  display: none;
}

.pobed-item a {
  color: var(--white);
  text-shadow: 1px 1px 1px #262626;
}

.self-tab-open__text {
  width: calc(100% - 560px);
}

.self-tab-open__content-title {
  margin-bottom: 32px;
}

.self-tab-open__content-title span {
  text-transform: uppercase;
}

.self-tab-open__text_text {
  margin-bottom: 40px;
  line-height: 120%;
}

.self-tab-open__buttons {
  gap: 10px;
}

.self-tab-open__image {
  position: absolute;
  top: 0;
  right: 50px;
  width: 510px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center left;
     object-position: center left;
}

.self-tab .step__num {
    left: 24px;
    right: auto;
    text-align: left;
    opacity: .4;
}

.callback-form {
  padding: 48px;
  gap: 80px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.callback-form__right {
  width: 658px;
}

.callback-form__res {
  display: none;
}

.callback-form__form {
  gap: 32px;
}

.callback-form__row {
  gap: 32px;
}

.callback-form__label {
  position: relative;
}

.callback-form__label label.error {
  display: none !important;
}

.callback-form__input {
  font: inherit;
  padding: 20px 0 12px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  background: none;
  width: 100%;
  outline: none;
  color: var(--white);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.callback-form__input.error {
  border-color: red;
}

.callback-form__input.error ~ .callback-form__placeholder {
  color: red;
}

.callback-form__placeholder {
  position: absolute;
  top: 20px;
  left: 0;
  opacity: 0.64;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  pointer-events: none;
}

.filled .callback-form__placeholder,
.callback-form__input:focus ~ .callback-form__placeholder {
  top: -12px !important;
}

.callback-form__sogl {
  font-size: 14px;
  line-height: 140%;
  font-weight: 700;
  opacity: 0.64;
}

.callback-form__sogl a {
  color: inherit;
  text-decoration: underline;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.callback-form__sogl a:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.contacts-col {
  gap: 64px;
}

.contacts-wrap {
  gap: 110px;
}

.contacts__list {
  gap: 48px;
}

.contacts__item {
  gap: 48px;
}

.contacts__photo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.contacts__photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.contacts__text {
  gap: 16px;
  font-size: 20px;
  line-height: 120%;
}

.contacts__theme {
  font-size: 16px;
  text-transform: uppercase;
  opacity: 0.5;
}

.socials {
  gap: 28px;
}

.social {
  width: 108px;
  height: 108px;
  border-radius: 8px;
  background: #242226;
}

.footer {
  opacity: 0.4;
}

.copyright {
  text-align: center;
  font-size: 14px;
}

.footer__links {
  margin-top: 10px;
  gap: 32px;
}

.footer__links a {
  color: inherit;
  text-decoration: underline;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.footer__links a:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.footer-section {
  overflow: hidden;
  position: relative;
}

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

.hide-link {
  display: none;  
}
.big {
  font-size: 140%;  
}


@media (max-width: 1400px) {
  body {
    font-size: 12px;
  }

  .container {
    max-width: calc(100vw - 140px);
  }

  .first-screen__content {
    padding-bottom: 70px;
    padding-top: 32px;
  }

  .first-screen__content::after {
    width: 577px;
    height: 415px;
    top: 101px;
    left: 456px;
  }

  .first-screen__top {
    margin-bottom: 22px;
  }

  .button {
    font-size: 12px;
    padding: 12px 16px;
    gap: 6px;
  }

  .button i {
    width: 12px;
    height: 12px;
  }

  .button i::before,
  .button i::after {
    background-size: 5px;
  }

  .button--240 {
    min-width: 170px;
  }

  .button--308 {
    min-width: 217px;
  }

  .marquee {
    font-size: 32px;
  }

  .marquee-logo {
    height: 32px;
  }

  .first-screen__title {
    font-size: 70px;
    margin-bottom: 56px;
  }

  .first-screen__subtitle {
    font-size: 16px;
  }

  .first-screen__title_row_gia {
    gap: 16px;
    padding-left: 142px;
  }

  .first-screen__buttons {
    padding-left: 86px;
  }

  .section {
    padding: 32px 0;
  }

  .anons {
    padding-top: 64px;
  }

  .section-circle {
    width: 876px;
    height: 876px;
  }

  .section-circle--1 {
    left: -614px;
    top: -145px;
  }

  .section-circle--2 {
    right: -614px;
    top: -145px;
  }

  .section-circle--3 {
    left: -614px;
    top: -145px;
  }

  .section-circle--4 {
    right: -414px;
    top: -145px;
  }

  .section-circle--5 {
    top: calc(100% - 180px);
  }

  .h2 {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .h3 {
    font-size: 36px;
  }

  .numbers {
    gap: 14px;
  }

  .number {
    padding: 4px 12px 4px 25px;
    border-radius: 8px;
  }

  .number__num {
    font-size: 84px;
    min-width: 170px;
  }

  .number__text {
    font-size: 20px;
  }

  .spoilers {
    gap: 16px;
  }

  .spoilers__column {
    gap: 16px;
    width: calc(50% - 8px);
  }

  .spoilers__grid {
    gap: 16px; 
  }

  .spoilers__column + .spoilers__column {
    padding-top: 78px;
  }

  .spoiler {
    padding: 28px 14px 14px;
    min-height: 140px;
  }

  .spoiler__preview {
    gap: 14px;
    padding-bottom: 16px;
    padding-right: 16px;
  }

  .spoiler__title {
    font-size: 24px;
  }

  .spoiler__title--big {
    font-size: 42px;
  }

  .spoiler__arrow {
    width: 16px;
    height: 16px;
    right: 14px;
    bottom: 14px;
  }

  .spoiler__contnetn {
    margin-bottom: 10px;
  }

  .spoiler__categories {
    margin-top: 32px;
    gap: 6px;
  }

  .spoiler__category {
    padding: 2px 6px;
    border-radius: 6px;
  }

  .spoiler__tag {
    font-size: 12px;
  }

  .naminations .spoilers__column + .spoilers__column {
    padding-top: 90px;
  }

  .naminations .spoiler {
    min-height: 176px;
  }

  .nominations-section::before {
    width: 1220px;
    height: 888px;
  }

  p {
    margin-bottom: 10px;
  }

  .prinych {
    margin-top: 28px;
  }

  .expert {
    width: 198px;
  }

  .expert__photo {
    height: 282px;
  }

  .expert__photo::before {
    height: 176px;
  }

  .expert__photo {
    margin-bottom: 22px;
  }

  .expert__fio {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .expert__position {
    margin-bottom: 12px;
  }

  .expert-navigation {
    top: 16px;
  }

  .slider__navigation {
    gap: 12px;
  }

  .slider__arrow img {
    width: 21px;
    height: 21px;
  }

  .steps {
    gap: 22px;
    margin-bottom: 22px;
  }

  .step {
    gap: 14px;
    padding: 24px;
  }

  .step--big .button {
    margin-right: 112px;
  }

  .step__title {
    font-size: 18px;
  }

  .step__num {
    font-size: 64px;
    right: 14px;
  }

  .uslov {
    margin: 100px 0;
  }

  .uslov::before {
    width: 665px;
    height: 481px;
    top: -90px;
  }

  .custom-ul {
    margin-bottom: 10px;
  }

  .custom-ul li {
    margin-bottom: 14px;
    padding-left: 32px;
  }

  .custom-ul li::before {
    width: 22px;
    height: 22px;
    top: -3px;
  }

  .partners {
    gap: 22px;
  }

  .partner {
    padding: 22px;
  }

  .partner img {
    max-height: 45px;
  }

  .self-tab .step__num {
      left: auto;
      right: 40px;
      bottom: 50%;
      transform: translateY(50%);
  }

  .gray-block {
    padding: 32px;
  }

  .faq-open::before {
      width: calc(100% + 64px);
      height: calc(100% + 64px);
      top: -32px;
      left: -32px;
  }

  .faq-list {
    gap: 14px;
  }

  .faq {
    padding: 14px 32px;
  }

  .faq-hide {
    margin-top: 40px;
  }

  .faq__title {
    gap: 22px;
    font-size: 16px;
  }

  .faq__title::before {
    width: calc(100% + 64px);
    height: calc(100% + 28px);
    top: -14px;
    left: -32px;
  }

  .faq__ico {
    width: 22px;
    height: 22px;
  }

  .faq__content {
    padding-top: 32px;
  }

  .tabs__nav {
    gap: 8px;
    margin-bottom: 28px;
  }

  .tabs__link {
    padding: 9px 12px;
  }

  .how-slide {
    width: 208px;
    min-height: 290px;
  }
    
  .how-slide--big {
    width: calc(50% - 7px);
  }

  .how-slide__image {
    height: 167px;
    margin-bottom: 18px;
  }

  .how-slide__content {
    gap: 16px;
    padding: 0 16px 16px;
  }

  .how-slide__big-title {
    font-size: 64px;
  }

  .how-navigation {
    top: -56px;
  }

  .how-slide__arrow {
    width: 16px;
    height: 16px;
    right: 6px;
    bottom: 6px;
  }

  .self-tab-list {
    gap: 14px;
  }

  .self-tab {
    padding: 20px 18px;
    min-height: 322px;
  }

  .self-tab__title {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .self-tab__text {
    font-size: 14px;
  }

  .self-tab__ico {
    right: 6px;
    bottom: 6px;
    width: 22px;
    height: 22px;
  }

  .self-tab-open {
    padding: 20px 24px;
  }

  .text-3-col {
    font-size: 12px;
    gap: 20px;
  }

  .pobed-list {
    gap: 6px;
    margin-bottom: 10px;
  }

  .pobed-item {
    padding: 4px 8px;
    font-size: 12px;
    width: calc(50% - 3px);
  }

  .self-tab-open__text {
    width: calc(100% - 360px);
  }

  .self-tab-open__content-title {
    margin-bottom: 16px;
  }

  .self-tab-open__text_text {
    margin-bottom: 20px;
  }

  .self-tab-open__buttons {
    gap: 6px;
  }

  .self-tab-open__image {
    right: 0px;
    width: 320px;
  }

  .callback-form {
    padding: 32px;
    gap: 56px;
  }

  .callback-form__right {
    width: 465px;
  }

  .callback-form__form {
    gap: 22px;
  }

  .callback-form__row {
    gap: 22px;
  }

  .contacts-col {
    gap: 40px;
  }

  .contacts__list {
    gap: 32px;
  }

  .contacts__item {
    gap: 32px;
  }

  .contacts__photo {
    width: 84px;
    height: 84px;
  }

  .contacts__text {
    gap: 12px;
    font-size: 14px;
  }

  .contacts__theme {
    font-size: 12px;
  }

  .socials {
    gap: 20px;
  }

  .social {
    width: 76px;
    height: 76px;
  }


  .footer__links {
    gap: 22px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: calc(100vw - 80px);
  }

  .first-screen__content::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .first-screen__top {
    margin-bottom: 16px;
  }

  .button--blue {
    padding: 20px;
  }

  .button--pink {
    padding: 20px;
  }

  .button--transparent {
    padding: 20px;
  }

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

  .first-screen__title_row_gia {
    padding-left: 164px;
  }

  .first-screen__buttons {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }

  .section-circle--1 {
    left: -608px;
    top: -126px;
  }

  .section-circle--2 {
    right: -608px;
    top: -126px;
  }

  .section-circle--3 {
    left: -608px;
    top: -126px;
  }

  .section-circle--4 {
    right: -608px;
    top: -126px;
  }

  .section-circle--5 {
    top: calc(100% - 250px);
  }

  .h2 {
    font-size: 32px;
  }

  .number {
    padding: 12px 24px;
  }

  .number__num {
    font-size: 64px;
    min-width: 130px;
  }

  .spoiler__preview {
    gap: 24px;
    padding-bottom: 8px;
  }
  
  .spoiler__categories:first-child {
    margin-top: 12px;
  }

  .expert-navigation {
    top: 6px;
  }
  
  .self-tab::before {
      background: url('../img/2025/kakeb-2.png') center bottom / 100% auto no-repeat !important;
  }

  .nominations-section::before {
    width: 768px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }

  .step--big .button {
    margin-right: 80px;
  }

  .uslov::before {
    height: 381px;
    top: 0px;
  }

  .callback-form {
    gap: 24px;
  }

  .callback-form__right {
    width: 100%;
  }

  .callback-form__form {
    width: 100%;
  }

  .contacts-wrap {
    gap: 40px;
  }

  .socials {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 700px) {
  .container {
    max-width: calc(100vw - 30px);
  }

  .first-screen__content {
    padding-top: 16px;
    height: 600px;
  }

  .first-screen__content::after {
    width: 490px;
    height: 353px;
    top: 71px;
  }

  .first-screen__title {
    font-size: 36px;
  }

  .first-screen__title_row_gia {
    padding-left: 30px;
    gap: 18px;
  }

  .section-circle--4 {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .numbers {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .spoilers__column {
    width: 100%;
  }

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

  .spoilers__column + .spoilers__column {
    padding-top: 0;
  }

  .spoiler__title--big {
    font-size: 32px;
  }

  .spoiler__categories {
    margin-top: 24px;
  }
  
  .spoiler__categories:first-child {
    margin-top: 24px;
  }

  .naminations .spoilers__column + .spoilers__column {
    padding-top: 0;
  }

  .prinych {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .expert {
    width: 198px;
  }

  .expert-navigation {
    right: -10px;
  }

  .steps {
    gap: 16px;
    margin-bottom: 16px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .step--big .button {
    margin-right: 0;
    width: 100%;
  }

  .step--big .step__num {
    top: 0;
    bottom: auto;
  }

  .uslov {
    margin: 0;
  }

  .partners {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .partner img {
    max-height: unset;
    width: 240px;
  }

  .gray-block {
    padding: 24px;
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0;
  }

  .faq-open::before {
      width: calc(100% + 48px);
      height: calc(100% + 48px);
      top: -24px;
      left: -24px;
  }

  .how-navigation {
    display: none;
  }

  .self-tab {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    min-height: 89px;
  }

  .text-3-col {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
    font-size: 12px;
  }

  .self-tab-open__text {
    width: 100%;
  }

  .self-tab-open__image {
    display: none;
  }

  .pobed-item {
    width: 100%;
  }

  .callback-form__label {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }

  .callback-form__sogl {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }

  .footer__links {
    gap: 16px;
  }
  .naminations .spoiler {
    backdrop-filter: none !important;
  }
}

@media (max-width:  480px){
  .callback-form__input[name="captcha_word"] {
    flex: 100%;
  }
  .how-slide--big {
    width: 208px;
  }
}



.webp .first-screen__content::after{ background: url(../img/2025/top.webp) center center/contain no-repeat; }

.webp .nominations-section::before{ background: url(../img/2025/nominations-back.webp) center center/contain no-repeat; }

.webp .step::after{ background: url(../img/2025/step.webp) center center/cover; }

.webp .uslov::before{ background: url(../img/2025/uslov.webp) center center/contain no-repeat; }