@import "normalize.min.css";
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-Light.woff2") format("woff2"), url("../fonts/Onest-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-Thin.woff2") format("woff2"), url("../fonts/Onest-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-Black.woff2") format("woff2"), url("../fonts/Onest-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-Medium.woff2") format("woff2"), url("../fonts/Onest-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-Regular.woff2") format("woff2"), url("../fonts/Onest-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-ExtraBold.woff2") format("woff2"), url("../fonts/Onest-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-Bold.woff2") format("woff2"), url("../fonts/Onest-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Thin.woff2") format("woff2"), url("../fonts/BebasNeue-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeueBold.woff2") format("woff2"), url("../fonts/BebasNeueBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeueLight.woff2") format("woff2"), url("../fonts/BebasNeueLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeueRegular.woff2") format("woff2"), url("../fonts/BebasNeueRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bebas Neue Book";
  src: url("../fonts/BebasNeueBook.woff2") format("woff2"), url("../fonts/BebasNeueBook.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --violet-main: #723FE3;
  --violet-light: #906AE4;
  --violet-darken: #6435cd;
  --rose-main: #E83E8C;
  --orange-main: #ff9e59;
  --bordo-main: #4D0000;
  --yellow-main: #FFD62D;
  --text-color: #3A3A3A;
  --text-font: "Onest", sans-serif;
  --text-font-secondary: "Roboto Flex", sans-serif;
  --main-bg-color: #F3F4F4;
  --light-gray: #F3F4F4;
}

* {
  box-sizing: border-box;
  outline: none;
}

.font-secondary {
  font-family: var(--text-font-secondary);
}

.hidden {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--main-color);
}
a:hover {
  text-decoration: underline;
}
a.underlined {
  text-decoration: underline;
}
a.underlined:hover {
  text-decoration: none;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  font-size: 90px;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 32px;
}

ul, ol {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn {
  display: inline-block;
  text-align: center;
  color: #fff;
  border: 1px solid var(--violet-main);
  background: var(--violet-main);
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  padding: 19px 25px;
  border-radius: 10px;
  transition: all 0.2s linear 0s;
}
.btn:hover {
  background: var(--rose-main);
  border-color: var(--rose-main);
}
.btn:hover {
  text-decoration: none;
}

.btn--arrow span {
  position: relative;
  padding-right: 20px;
}
.btn--arrow span::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  border-right: 2px solid var(--text-color);
  border-bottom: 2px solid var(--text-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s;
}
.btn--arrow.btn--rose span::after {
  border-color: #fff;
}
.btn--arrow.btn--rose:hover span::after {
  border-color: var(--rose-main);
}
.btn--arrow:hover span::after {
  border-color: #fff;
}

.btn--blur {
  background: rgba(49, 13, 127, 0.2);
  backdrop-filter: blur(44px);
  line-height: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  border: none;
}

.btn--icon span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn--icon svg path {
  transition: all 0.3s;
}
.btn--icon:hover svg path {
  stroke: #fff;
}
.btn--icon .svg-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.btn--icon .svg-holder svg {
  transition: opacity 0.3s;
}
.btn--icon .svg-holder svg:nth-child(2) {
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn--icon.opened .svg-holder svg:first-child {
  opacity: 0;
}
.btn--icon.opened .svg-holder svg:nth-child(2) {
  opacity: 1;
}

.btn--outline {
  background: transparent;
  border-color: var(--text-color);
  color: var(--text-color);
}
.btn--outline:hover {
  color: #fff;
  background: var(--rose-main);
  border-color: var(--rose-main);
}

.btn--hover-violet:hover {
  background: transparent;
  border-color: var(--violet-main);
  color: var(--violet-main);
}

.btn--rose {
  border-color: var(--rose-main);
  background: var(--rose-main);
  color: #fff;
}
.btn--rose:hover {
  background: #fff;
  border-color: #fff;
  color: var(--rose-main);
}

.btn--lighten {
  border-color: var(--violet-light);
  background: var(--violet-light);
}

.btn--middle {
  font-size: 14px;
  line-height: 22px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.btn--white {
  border-color: #fff;
  background: #fff;
  color: var(--text-color);
}
.btn--white:hover {
  background: var(--rose-main);
  border-color: var(--rose-main);
  color: #fff;
}

.btn--violet-darken {
  border-color: var(--violet-darken);
  background: var(--violet-darken);
}

.btn--gray {
  background: var(--text-color);
  border-color: var(--text-color);
  color: #fff;
}
.btn--gray:hover {
  background: var(--rose-main);
  border-color: var(--rose-main);
  color: #fff;
}

body {
  min-width: 320px;
  max-width: 100vw;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
  font-family: var(--text-font);
  background: var(--main-bg-color);
}

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

.z3 {
  position: relative;
  z-index: 3;
}

.accent-bg {
  background: var(--violet-main);
}

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

.white-bg {
  background: #fff;
}

.center-wrap {
  width: 100%;
  max-width: 1412px;
  padding: 0 20px;
  margin: 0 auto;
}

/*------------ COMMON ------------*/
input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
  height: 47px;
  background: var(--light-gray);
  border-radius: 30px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #323232;
  padding: 0 33px;
  margin-bottom: 10px;
}

textarea {
  resize: vertical;
  height: 120px;
  border-radius: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
}

input[type=submit] {
  display: inline-block;
  text-align: center;
  color: #fff;
  border: 1px solid var(--violet-main);
  background: var(--violet-main);
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  padding: 19px 25px;
  border-radius: 10px;
  transition: all 0.2s linear 0s;
}
input[type=submit]:hover {
  background: var(--rose-main);
  border-color: var(--rose-main);
}

.dflex {
  display: flex;
}
.dflex-column {
  flex-direction: column;
}

.aic {
  align-items: center;
}

.flex-dir-column {
  flex-direction: column;
}

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

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

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

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

.text-white {
  color: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 0;
  transition: all 0.3s;
}
.header.fixed {
  background: #fff;
}
.header.fixed .header__buttons a:not(.btn) svg path {
  stroke: var(--violet-main);
  transition: all 0.3s;
}
.header.fixed .header__buttons a:not(.btn) svg.filled path {
  fill: var(--violet-main);
  transition: all 0.3s;
}
.header.fixed .header__buttons a:not(.btn):hover svg path {
  stroke: #fff;
}
.header.fixed .header__buttons a:not(.btn):hover svg.filled path {
  fill: #fff;
}
.header.fixed .header__burger::before, .header.fixed .header__burger::after {
  background: var(--text-color);
}
.header-content {
  justify-content: center;
}
.header__logos {
  margin-right: auto;
}
.header__logos svg {
  display: block;
  margin: 0;
}
.header__logos svg path {
  transition: all 0.3s;
}
.header__logos a:last-child {
  margin-left: 10px;
  padding-left: 10px;
  position: relative;
  top: 3px;
}
.header__logos a:last-child::before {
  display: block;
  content: "";
  height: 28px;
  width: 1px;
  background: #fff;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: -7px;
}
.header__buttons {
  flex-shrink: 0;
  column-gap: 8px;
  margin-left: auto;
  justify-content: flex-end;
  position: relative;
}
.header__buttons a:not(.btn) {
  display: flex;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transition: all 0.3s;
}
.header__buttons a:not(.btn):hover {
  background: var(--rose-main);
}
.header__buttons a:not(.btn) img {
  max-height: 18px;
}
.header__buttons-popup {
  background: #fff;
  position: absolute;
  right: 0;
  top: -9999px;
  transform: translateY(15px);
  padding: 10px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  width: 250px;
}
.header__buttons-popup.visible {
  opacity: 1;
  top: 100%;
}
.header__buttons-popup .btn {
  height: 40px;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  padding: 10px;
}
.header__buttons-popup .btn:first-child {
  margin-bottom: 10px;
}
.header__mobile-links {
  display: none;
}
.header__mobile-links .btn {
  width: 100%;
  max-width: 280px;
  font-size: 16px;
  line-height: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.header__burger {
  text-indent: -9999px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: relative;
  margin-left: 25px;
  display: none;
}
.header__burger::before, .header__burger::after {
  display: block;
  content: "";
  width: 24px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s;
}
.header__burger::before {
  transform: translate(-50%, -5px);
}
.header__burger::after {
  transform: translate(-50%, 5px);
}
.header__burger.opened::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__burger.opened::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header.mobile-menu-active.fixed::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 70;
  background: #fff;
}
.header.mobile-menu-active .header__logos,
.header.mobile-menu-active .header__buttons,
.header.mobile-menu-active .header__burger {
  position: relative;
  z-index: 100;
}

.mobile-cabinet-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  color: #fff;
}

.main-menu {
  column-gap: 40px;
  justify-content: center;
  color: #fff;
  font-size: 15px;
}
.main-menu > li > a {
  transition: all 0.3s;
}
.main-menu > li > a:hover {
  color: var(--rose-main);
  text-decoration: none;
}
.main-menu > li.parent {
  position: relative;
  padding-right: 16px;
}
.main-menu > li.parent .opener {
  display: block;
  width: 10px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.main-menu > li.parent .opener svg {
  margin: 0;
  display: block;
}
.main-menu > li.parent .sublist-holder {
  padding-top: 20px;
  position: absolute;
  left: 0;
  top: -9999px;
  opacity: 0;
  z-index: 100;
  transition: opacity 0.2s;
}
.main-menu > li.parent ul {
  background: var(--light-gray);
  min-width: 250px;
  border-radius: 10px;
  padding: 13px 20px 20px;
}
.main-menu > li.parent ul li {
  padding: 7px 0;
  line-height: 1.2;
}
.main-menu > li.parent ul li a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-color);
  transition: all 0.2s;
}
.main-menu > li.parent ul li a:hover {
  color: var(--rose-main);
  text-decoration: none;
}
.main-menu > li.parent:hover .opener {
  transform: translateY(-50%) rotate(180deg);
}
.main-menu > li.parent:hover > .sublist-holder {
  opacity: 1;
  top: 100%;
}

.sublist-holder .btn {
  margin-top: 15px;
  font-size: 14px;
  line-height: 20px;
  padding-top: 9px;
  padding-bottom: 9px;
  width: 100%;
}

.header.fixed .header__logos svg path {
  fill: var(--text-color);
}
.header.fixed .header__logos a:last-child::before {
  background: var(--text-color);
}
.header.fixed:not(.mobile-menu-active) .main-menu {
  color: var(--text-color);
}
.header.fixed:not(.mobile-menu-active) .main-menu > li.parent::after {
  background: url("../img/menu-arrow-gray.svg") right center no-repeat;
}
.header.fixed:not(.mobile-menu-active) .main-menu > li.parent .opener svg path {
  stroke: #000;
}
.header.fixed .main-menu li.parent ul {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.figure-holder {
  overflow: hidden;
}

.first-screen {
  padding: 80px 0 40px;
  max-width: 100%;
  position: relative;
  z-index: 10;
}
.first-screen__title {
  margin-bottom: 30px;
}
.first-screen__title img {
  display: block;
  margin: 0;
}
.first-screen__title h1 {
  font-size: 124px;
  line-height: 1;
  font-family: "Roboto Flex", sans-serif;
  letter-spacing: -0.005em;
}
.first-screen__title.big h1 {
  font-size: 140px;
}
.first-screen__title.small h1 {
  font-size: 90px;
  line-height: 1;
}
.first-screen__text {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  opacity: 0.7;
  margin-bottom: 30px;
}
.first-screen__text--big {
  font-size: 24px;
  line-height: 1.2;
}
.first-screen__dates {
  width: 100%;
  max-width: 906px;
  margin: 0 auto 30px;
  font-weight: 500;
  line-height: 1;
}
.first-screen__dates.w100 {
  max-width: 100%;
}
.first-screen__dates > div {
  flex: 0 0 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  text-align: center;
  height: 85px;
  padding-top: 15px;
}
.first-screen__dates > div:nth-child(2) {
  border-left: none;
}
.first-screen__dates > div.simple {
  border: none;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
  height: auto;
}
.first-screen__dates .title {
  display: block;
  font-size: 20px;
  opacity: 0.6;
  margin-bottom: 10px;
  font-family: "Roboto Flex", sans-serif;
}
.first-screen__dates .title--tt {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0;
}
.first-screen__dates .date {
  font-size: 32px;
}
.first-screen__dates .date.big-font {
  font-size: 64px;
  margin-top: 30px;
}
.first-screen__dates .date.big-font .hours, .first-screen__dates .date.big-font .minutes, .first-screen__dates .date.big-font .seconds {
  width: 80px;
}
.first-screen__buttons {
  gap: 14px;
}
.first-screen__buttons .btn {
  min-width: 350px;
}
.first-screen__buttons .btn--violet-darken {
  background: rgba(49, 13, 127, 0.2);
}
.first-screen__buttons .btn--violet-darken:hover {
  border-color: var(--rose-main);
  background: var(--rose-main);
}
.first-screen-figure {
  position: absolute;
}
.first-screen-figure.one {
  top: 80px;
  left: 100%;
  transform: translateX(-100%);
  max-width: 350px;
}
.first-screen-figure.two {
  top: 400px;
  left: 50%;
  transform: translateX(-870px);
}
.first-screen-figure.three {
  top: 120px;
  left: 0%;
}
.first-screen-figure-left-mobile {
  position: absolute;
  left: 0;
  top: 50px;
  display: none;
}
.first-screen-figure-right-mobile {
  position: absolute;
  right: 0;
  top: 100px;
  display: none;
}

.start-time {
  display: none;
}

.hours, .minutes, .seconds {
  width: 40px;
}

.hours {
  margin-left: 15px;
}

.inner-page .first-screen {
  padding: 70px 0 110px;
}
.inner-page .first-screen__text {
  margin-bottom: 75px;
}

.date-dash {
  display: inline-block;
  width: 45px;
  height: 2px;
  background: #fff;
  margin: 0 10px;
}

.first-screen-partners {
  background: #fff;
  padding: 20px 0;
  z-index: 20;
}

.first-screen-partner {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
}
.first-screen-partner a:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
  margin-bottom: 15px;
}
.first-screen-partner a:last-child {
  display: flex;
  align-items: center;
  height: 60px;
}
.first-screen-partner img {
  max-height: 80px;
  display: block;
  margin: 0;
}

.main-benefits {
  padding: 90px 0;
  z-index: 20;
}
.main-benefits .swiper-wrapper {
  transition-timing-function: linear !important;
}

.benefit-slide-holder {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.benefit-slide-holder.pb {
  padding-top: 0;
  padding-bottom: 45px;
}

.benefit-slide {
  overflow: hidden;
  border-radius: 15px;
}
.benefit-slide img {
  display: block;
  margin: 0;
  max-height: 420px;
}
.benefit-slide__title {
  font-size: 69px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: bold;
  line-height: 1;
}
.benefit-slide__text {
  margin-top: auto;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.benefit-slide--text {
  display: flex;
  flex-direction: column;
  background: var(--rose-main);
  color: #fff;
  position: relative;
  padding: 35px 25px 25px;
  min-height: 383px;
  min-width: 372px;
  line-height: 1.2;
  position: relative;
}
.benefit-slide--text img {
  position: absolute;
  right: 0;
  top: 90px;
}

.autowidth .swiper-slide {
  width: auto;
}

.swiper-wrapper.h100 {
  align-items: stretch;
}

.swiper-wrapper.h100 .swiper-slide {
  height: auto;
}

.page-sections-links {
  padding-top: 20px;
}

.page-sections-links-list {
  display: flex;
  background: var(--violet-main);
  padding: 5px;
  border-radius: 10px;
}
.page-sections-links-list a {
  display: block;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  padding: 14px 20px;
  min-width: 160px;
  transition: all 0.3s;
  text-align: center;
}
.page-sections-links-list a:hover {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}
.page-sections-links-list a.active {
  background: #fff;
  color: var(--text-color);
  opacity: 1;
  cursor: default;
}

.inner-page .page-sections-links {
  padding: 20px 0;
}
.inner-page .page-sections-links-list a {
  min-width: unset;
}

.main-video {
  padding: 60px 0;
}
.main-video .desktop-visible {
  display: block;
}
.main-video .mobile-visible {
  display: none;
}
.main-video video {
  width: 100%;
}

.video-holder {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.play, .pseudo-play {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  max-width: 106px;
  aspect-ratio: 1/1;
}
.play.hide, .pseudo-play.hide {
  opacity: 0;
}
.play svg, .pseudo-play svg {
  max-width: 100%;
  height: auto;
}
.play svg path, .pseudo-play svg path {
  transition: all 0.3s;
}
.play:hover svg path, .pseudo-play:hover svg path {
  fill: #fff;
}
.play:hover svg path.bg, .pseudo-play:hover svg path.bg {
  fill: var(--rose-main);
}

video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.what-wait {
  padding-top: 80px;
  position: relative;
}
.what-wait-figure-right {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-110px);
}
.what-wait-figure-left {
  position: absolute;
  left: 0;
  top: 380px;
}

.section-title {
  text-transform: uppercase;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
}
.section-title h2 {
  font-size: 64px;
  line-height: 75px;
}

.what-wait-accordion {
  margin-top: 60px;
}

.tab-accordion-item {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 25px 25px 40px 35px;
  margin-top: -16px;
}
.tab-accordion-item:first-child {
  margin-top: 0;
}
.tab-accordion-item:last-child {
  border-radius: 16px;
}
.tab-accordion-item.accent {
  background: var(--violet-main);
  color: #fff;
}
.tab-accordion-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.tab-accordion-item__content {
  display: none;
  padding-top: 20px;
}
.tab-accordion-item.opened .tab-accordion-item__head {
  cursor: default;
}
.tab-accordion-item.opened .tab-accordion-item__content {
  display: block;
}

.what-wait-item__title {
  flex-grow: 1;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
}
.what-wait-item__date {
  flex-shrink: 0;
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border: 1px solid var(--text-color);
  font-size: 20px;
  font-weight: 500;
  min-width: 158px;
  border-radius: 32px;
  font-family: var(--text-font);
  padding: 0 23px;
}
.what-wait-item.accent .what-wait-item__date {
  border-color: #fff;
}
.what-wait-item__content {
  display: flex;
  gap: 30px;
}
.what-wait-item__content .btn {
  margin-top: 50px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.what-wait-item__text {
  flex-grow: 1;
  font-size: 20px;
  font-weight: 500;
  padding-right: 110px;
}
.what-wait-item__text .text {
  opacity: 0.8;
}
.what-wait-item__img {
  flex: 0 0 610px;
}
.what-wait-item__img img {
  border-radius: 16px;
  display: block;
  margin: 0;
  width: 100%;
}
.what-wait-item__more {
  display: none;
}

.why-visit {
  position: relative;
  padding: 120px 0 85px;
}
.why-visit-figure-left {
  position: absolute;
  left: 0;
  top: 40px;
}
.why-visit-figure-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
.why-visit .slider-holder {
  margin-top: 45px;
}
.why-visit .swiper-slide {
  padding: 35px 0;
}

.slider-holder {
  position: relative;
  margin-top: 80px;
}
.slider-holder.mt0 {
  margin-top: 0;
}

.slider-navigation {
  position: absolute;
  right: 0;
  top: -144px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.slider-navigation--static {
  position: static;
}

.slider-nav-prev,
.slider-nav-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid var(--text-color);
  transition: all 0.3s;
}
.slider-nav-prev svg path,
.slider-nav-next svg path {
  stroke: var(--text-color);
  transition: all 0.3s;
}
.slider-nav-prev:hover,
.slider-nav-next:hover {
  background: var(--violet-main);
  border-color: var(--violet-main);
}
.slider-nav-prev:hover svg path,
.slider-nav-next:hover svg path {
  stroke: #fff;
}
.slider-nav-prev.white,
.slider-nav-next.white {
  border: 2px solid #fff;
}
.slider-nav-prev.white svg path,
.slider-nav-next.white svg path {
  stroke: #fff;
  transition: all 0.3s;
}
.slider-nav-prev.white:hover,
.slider-nav-next.white:hover {
  background: #fff;
}
.slider-nav-prev.white:hover svg path,
.slider-nav-next.white:hover svg path {
  stroke: var(--violet-main);
}
.slider-nav-prev.swiper-button-disabled,
.slider-nav-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.slider-nav-prev.desktop-hidden,
.slider-nav-next.desktop-hidden {
  display: none;
}

.navigation-center .slider-nav-prev,
.navigation-center .slider-nav-next {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 9px solid #fff;
  background: #fff;
  top: 50%;
  z-index: 100;
}
.navigation-center .slider-nav-prev.gray,
.navigation-center .slider-nav-next.gray {
  border-color: var(--light-gray);
  background: var(--light-gray);
}
.navigation-center .slider-nav-prev.gray::before,
.navigation-center .slider-nav-next.gray::before {
  background: #fff;
}
.navigation-center .slider-nav-prev::before,
.navigation-center .slider-nav-next::before {
  display: block;
  content: "";
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--light-gray);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.3s;
}
.navigation-center .slider-nav-prev:hover::before,
.navigation-center .slider-nav-next:hover::before {
  background: var(--violet-main);
}
.navigation-center .slider-nav-prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.navigation-center .slider-nav-next {
  right: 0;
  transform: translate(50%, -50%);
}

.why-visit-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.why-visit-item .front, .why-visit-item .back {
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s linear, -webkit-transform 0.6s linear;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: perspective(900px) rotateY(180deg);
  position: absolute;
  left: 0;
  top: 0;
}
.why-visit-item .front {
  position: relative;
  transform: perspective(900px) rotateY(0deg);
  display: flex;
  flex-direction: column;
}
.why-visit-item .back {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why-visit-item__text {
  text-align: center;
  text-transform: uppercase;
}
.why-visit-item__num {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 15px;
  font-weight: 500;
}
.why-visit-item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 193px;
  margin-bottom: 20px;
}
.why-visit-item__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  margin-top: auto;
}
.why-visit-item:hover .front {
  transform: perspective(900px) rotateY(-180deg);
}
.why-visit-item:hover .back {
  transform: perspective(900px) rotateY(0deg);
}

.participants {
  padding: 120px 0;
}
.participants-text {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500;
  opacity: 0.8;
}
.participants-button {
  margin-top: 50px;
}
.participants-button .btn {
  width: 100%;
  max-width: 500px;
}
.participants .swiper-wrapper {
  margin-top: 50px;
  transition-timing-function: linear !important;
}
.participants .swiper-slide {
  padding: 15px 0;
}
.participants .slider-holder-mobile {
  display: none;
}
.participants .slider-holder-mobile .swiper-wrapper {
  margin-top: 0;
}
.participants .slider-holder-mobile .swiper-slide {
  padding: 0;
}

.headliners + .participants {
  padding-top: 0;
}

.participant-slide {
  position: relative;
  height: 650px;
  width: 350px;
}
.participant-slide.width-1 {
  width: 350px;
}
.participant-slide.width-2 {
  width: 366px;
}
.participant-slide.width-3 {
  width: 296px;
}
.participant-slide.width-4 {
  width: 272px;
}
.participant-slide.width-5 {
  width: 220px;
}
.participant-slide-company {
  background: #fff;
  border-radius: 16px;
  position: absolute;
  transition: all 0.3s;
}
.participant-slide-company:hover {
  transform: scale(1.1);
}
.participant-slide-company.accent {
  background: var(--violet-main);
}
.participant-slide-company:not(.accent) img {
  filter: invert(1);
}
.participant-slide-company.size-1 {
  width: 150px;
  height: 150px;
}
.participant-slide-company.size-2 {
  width: 174px;
  height: 174px;
}
.participant-slide-company.size-3 {
  width: 214px;
  height: 214px;
}
.participant-slide-company.size-4 {
  width: 220px;
  height: 220px;
}
.participant-slide-company.size-5 {
  width: 272px;
  height: 272px;
}
.participant-slide-company.size-6 {
  width: 280px;
  height: 280px;
}
.participant-slide-company.size-7 {
  width: 296px;
  height: 296px;
}
.participant-slide-company.size-8 {
  width: 366px;
  height: 366px;
}
.participant-slide-company.num-1 {
  top: 0;
  right: -80px;
}
.participant-slide-company.num-2 {
  left: 0;
  top: 77px;
}
.participant-slide-company.num-3 {
  bottom: 0;
  right: 0;
}
.participant-slide-company.num-4 {
  left: 0;
  top: 200px;
}
.participant-slide-company.num-5 {
  left: 0;
  top: 140px;
}
.participant-slide-company.num-6 {
  left: 60px;
  top: 0;
}
.participant-slide-company.num-7 {
  left: 0;
  top: 270px;
}
.participant-slide-company.num-8 {
  left: 15px;
  top: 30px;
}
.participant-slide-company.num-9 {
  left: 0;
  top: 265px;
}
.participant-slide-company a {
  width: 100%;
  height: 100%;
  display: block;
}
.participant-slide-company a img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}

.participant-slide-mobile .participant-slide-company {
  position: relative;
  width: 150px;
  height: 150px;
  background: var(--violet-main);
}
.participant-slide-mobile .participant-slide-company a img {
  filter: grayscale(1) brightness(1000%);
}
.participant-slide-mobile .participant-slide-company:hover {
  transform: none;
}

.recomendations {
  position: relative;
  padding: 120px 0;
}
.recomendations-text {
  margin-top: 50px;
  font-size: 20px;
  font-weight: 500;
  opacity: 0.8;
}
.recomendations-figure-left {
  position: absolute;
  left: 0;
  bottom: 85px;
}
.recomendations-figure-right {
  position: absolute;
  right: 0;
  top: 0;
}
.recomendations-figure-left-mobile {
  position: absolute;
  left: 0;
  top: 5px;
  display: none;
}
.recomendations-figure-right-mobile {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
}

.recomendations-item {
  height: 100%;
}
.recomendations-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 0 20px 20px;
  min-height: 306px;
  transition: all 0.3s;
}
.recomendations-item a:hover {
  background: var(--rose-main);
  color: #fff;
  text-decoration: none;
}
.recomendations-item a:hover .recomendations-item__logo img {
  filter: grayscale(1) brightness(1000%);
}
.recomendations-item a:hover .more {
  border-color: #fff;
}
.recomendations-item a:hover .more svg path {
  stroke: #fff;
}
.recomendations-item__logo {
  height: 130px;
  padding: 15px 0;
  display: flex;
  align-items: center;
}
.recomendations-item__logo img {
  filter: grayscale(1);
  max-height: 100px;
  transition: all 0.3s;
}
.recomendations-item__text {
  font-size: 16px;
}
.recomendations-item__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.more {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  transition: all 0.3s;
}

.moments {
  padding-top: 120px;
}
.moments--ceremony {
  padding-bottom: 120px;
}
.moments__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.moments__head .slider-navigation {
  position: static;
}
.moments-text {
  margin-top: 50px;
  max-width: 860px;
  font-size: 20px;
  font-weight: 500;
  opacity: 0.8;
}
.moments-button {
  margin-top: 50px;
  text-align: center;
}
.moments-button.visible {
  display: block;
  text-align: center;
  margin-top: 80px;
}
.moments-button.visible .btn {
  max-width: 443px;
}
.moments-button .btn {
  width: 100%;
  max-width: 480px;
}
.moments-slider.mt100 {
  margin-top: 100px;
}
.moments .tabs {
  position: relative;
  height: 647px;
}
.moments .tabs .tab {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -100;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.moments .tabs .tab.visible {
  opacity: 1;
  z-index: 1;
  position: static;
}

.participants + .moments {
  padding-top: 0;
}

.gallery-button-next {
  flex: 0 0 100%;
  cursor: pointer;
}

.moments-item {
  display: flex;
  justify-content: center;
}
.moments-item img {
  border-radius: 16px 16px 0 0;
  display: block;
  max-height: 100%;
  margin: 0;
}

.mediapartners {
  padding: 120px 0;
  position: relative;
}
.mediapartners-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mediapartners-text {
  margin: 50px 0 140px;
  max-width: 1025px;
}
.mediapartners-figure-left {
  position: absolute;
  left: 0;
  bottom: 0;
}
.mediapartners-figure-right {
  position: absolute;
  top: -113px;
  right: 0;
}
.mediapartners-figure-right-mobile {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-170px);
  z-index: -1;
}
.mediapartners .slider-holder {
  position: static;
}
.mediapartners .slider-navigation {
  top: 5px;
}

.mediapartners-item {
  text-align: center;
}
.mediapartners-item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  margin-bottom: 15px;
}
.mediapartners-item__icon img {
  max-height: 120px;
  max-width: 90%;
  filter: invert(1);
  opacity: 0.7;
}
.mediapartners-item__title {
  opacity: 0.5;
  color: #363636;
  font-size: 14px;
  line-height: 1.4;
}

.running-string {
  background: var(--rose-main);
  padding: 40px 0;
}
.running-string.violet {
  background: var(--violet-main);
}

.running-string-content {
  overflow: hidden;
}

.running-string-line {
  display: flex;
  align-items: center;
  color: #fff;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.02em;
  animation: marquee 30s linear infinite;
  gap: 40px;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
}
.running-string-line span, .running-string-line img {
  flex-shrink: 0;
}
.running-string-line img {
  display: block;
  margin: 0;
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.tickets {
  padding: 120px 0 60px;
  position: relative;
}
.tickets .slider-navigation {
  display: none;
}
.tickets-figure-left {
  position: absolute;
  left: 0;
  top: 0;
}
.tickets-button {
  margin-top: 50px;
}
.tickets-button .btn {
  width: 100%;
  max-width: 440px;
}

.ticket-item {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  color: #0b0b0b;
  min-height: 358px;
}
.ticket-item__title {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
.ticket-item__title span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  opacity: 0.6;
}
.ticket-item__price {
  padding-bottom: 30px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  margin-top: auto;
}
.ticket-item__price span {
  display: block;
  font-size: 12px;
  opacity: 0.5;
  font-weight: normal;
}
.ticket-item__qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  font-size: 16px;
  min-height: 78px;
}
.ticket-item__qty .num {
  border: 1px solid #0b0b0b;
  line-height: 24px;
  border-radius: 15px;
  padding: 0 15px;
}
.ticket-item__button .btn {
  width: 100%;
  font-size: 18px;
  line-height: 23px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.news {
  position: relative;
  padding-top: 120px;
}
.news-figure-right {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-65px);
}
.news-button {
  display: none;
  margin-top: 20px;
}
.news-button .btn {
  width: 100%;
}

.tickets + .news {
  padding-top: 60px;
}

.news-item__img {
  margin-bottom: 25px;
  display: block;
}
.news-item__img img {
  filter: grayscale(1);
  border-radius: 16px;
  display: block;
  margin: 0;
  transition: all 0.3s;
  width: 100%;
}
.news-item__date {
  font-size: 16px;
  font-weight: 600;
  color: var(--rose-main);
  opacity: 0.6;
  display: block;
}
.news-item__title {
  display: block;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 15px;
  color: var(--text-color);
  transition: all 0.3s;
  height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-item:hover .news-item__img img {
  border-radius: 50%;
  filter: grayscale(0);
}
.news-item:hover .news-item__title {
  text-decoration: none;
  color: var(--rose-main);
}

.advice-banner {
  padding-top: 120px;
}

.works-page .advice-banner {
  padding: 40px 0;
}

.banner {
  height: 480px;
  background: var(--violet-main);
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  padding: 40px;
  position: relative;
}
.banner__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
}
.banner__logo {
  margin-bottom: 40px;
}
.banner__text {
  font-size: 20px;
  opacity: 0.8;
}
.banner .btn {
  margin-top: auto;
  width: 100%;
  max-width: 280px;
}
.banner-figure {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner-figure-mobile {
  display: none;
  bottom: 185px;
  left: 50%;
  height: 60px;
  position: absolute;
  transform: translateX(-50%);
}
.banner-figure-mobile img {
  height: 100%;
  width: auto;
}
.banner-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(130px, -50%);
}

.works-category + .banner {
  margin-bottom: 120px;
}

.blog {
  padding: 120px 0 65px;
  position: relative;
}
.blog-items {
  margin-top: 60px;
}
.blog-button {
  margin-top: 50px;
}
.blog-button .btn {
  width: 100%;
  max-width: 440px;
}
.blog-figure-right {
  position: absolute;
  right: 0;
  bottom: -45px;
}
.blog .slider-holder {
  display: none;
}

.blog-item {
  display: flex;
  border-radius: 16px;
  background: #fff;
  color: var(--text-color);
  padding: 10px;
  flex: 0 0 240px;
  margin-top: 20px;
  transition: all 0.3s;
}
.blog-item:first-child {
  margin-top: 0;
}
.blog-item__img {
  flex: 0 0 240px;
}
.blog-item__img img {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 6px;
}
.blog-item__content {
  padding: 10px 10px 10px 50px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.blog-item__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  max-width: 680px;
}
.blog-item__date {
  margin-top: auto;
  color: var(--rose-main);
  font-size: 16px;
  opacity: 0.6;
  transition: all 0.3s;
}
.blog-item .more {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 46px;
  height: 46px;
  transition: all 0.3s;
}
.blog-item:hover {
  background: var(--rose-main);
  color: #fff;
  text-decoration: none;
}
.blog-item:hover .blog-item__date {
  color: #fff;
}
.blog-item:hover .more {
  background: #fff;
  border-color: #fff;
}
.blog-item:hover .more svg path {
  stroke: var(--rose-main);
}

.swiper-slide .blog-item {
  height: 100%;
  align-items: flex-start;
}

.contacts {
  padding: 135px 0 120px;
}
.contacts-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contacts-slider-anchors {
  flex-chrink: 0;
}
.contacts-persons {
  margin-top: 60px;
}

.blog + .contacts {
  padding-top: 55px;
}

.tab-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tab-selector li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 500;
  padding: 0 30px;
  height: 52px;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-selector li:hover {
  color: #fff;
  border-color: var(--violet-main);
  background: var(--violet-main);
}
.tab-selector li.active {
  color: #fff;
  border-color: var(--violet-main);
  background: var(--violet-main);
}
.tab-selector li.pink:hover {
  color: var(--rose-main);
  border-color: var(--rose-main);
  background: inherit;
}
.tab-selector li.pink.active {
  color: #fff;
  border-color: var(--rose-main);
  background: var(--rose-main);
}
.tab-selector li.violet:hover {
  color: var(--violet-main);
  border-color: var(--violet-main);
  background: inherit;
}
.tab-selector li.violet.active {
  color: #fff;
  border-color: var(--violet-main);
  background: var(--violet-main);
}
.tab-selector li.white:hover {
  color: var(--rose-main);
  border-color: var(--rose-main);
  background: inherit;
}
.tab-selector li.white.active {
  color: var(--rose-main);
  border-color: var(--rose-main);
  background: #fff;
}
.tab-selector li.orange:hover {
  color: var(--orange-main);
  border-color: var(--orange-main);
  background: inherit;
}
.tab-selector li.orange.active {
  color: #fff;
  border-color: var(--orange-main);
  background: var(--orange-main);
}
.tab-selector li.bordo:hover {
  color: var(--bordo-main);
  border-color: var(--bordo-main);
  background: inherit;
}
.tab-selector li.bordo.active {
  color: #fff;
  border-color: var(--bordo-main);
  background: var(--bordo-main);
}
.tab-selector li.yellow:hover {
  color: var(--yellow-main);
  border-color: var(--yellow-main);
  background: inherit;
}
.tab-selector li.yellow.active {
  color: #fff;
  border-color: var(--yellow-main);
  background: var(--yellow-main);
}
.tab-selector--gray li {
  background: var(--light-gray);
  border-color: var(--light-gray);
}
.tab-selector--tt {
  text-transform: uppercase;
}
.tab-selector--active-pink li.active, .tab-selector--active-pink li:hover {
  background: var(--rose-main);
  border-color: var(--rose-main);
}
.tab-selector--invert li {
  background: rgba(49, 13, 127, 0.2);
  border-color: transparent;
  color: #fff;
}
.tab-selector--invert li.active, .tab-selector--invert li:hover {
  background: #fff;
  border-color: #fff;
  color: var(--text-color);
}

.contact-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}
.contact-item--gray {
  background: var(--light-gray);
}
.contact-item__position {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.2;
}
.contact-item__name {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 15px;
}
.contact-item__photo {
  text-align: center;
  margin: auto 0 15px;
}
.contact-item__photo img {
  border-radius: 50%;
  max-width: 180px;
  display: block;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.contact-item__contacts {
  font-size: 18px;
  font-weight: 500;
}
.contact-item:hover .contact-item__photo img {
  filter: grayscale(0);
}

.tabs .tab {
  display: none;
}
.tabs .tab.visible {
  display: block;
}

.faq {
  position: relative;
  padding: 120px 0;
}
.faq-figure-left {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-290px);
}
.faq-figure-left-mobile {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-150px);
  display: none;
}
.faq-button {
  margin-top: 50px;
}
.faq-button .btn {
  width: 100%;
  max-width: 500px;
}

.faq-accordion {
  margin-top: 50px;
}

.accordion-item {
  margin-top: 10px;
  background: rgba(243, 244, 244, 0.2);
  border-radius: 16px;
  color: #fff;
  transition: all 0.3s;
}
.accordion-item:hover {
  background: rgba(243, 244, 244, 0.1);
}
.accordion-item:first-child {
  margin-top: 0;
}
.accordion-item__title {
  cursor: pointer;
  font-family: "Roboto Flex", sans-serif;
  font-size: 24px;
  font-weight: 600;
  padding: 30px;
  line-height: 1.2;
  position: relative;
}
.accordion-item__title .opener {
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.accordion-item__content {
  padding: 0 33px 33px;
  display: none;
  font-size: 20px;
  font-weight: 500;
}
.accordion-item__content p {
  margin-bottom: 30px;
}
.accordion-item__content p:last-child {
  margin-bottom: 0;
}
.accordion-item__content a:not(.btn) {
  text-decoration: underline;
}
.accordion-item__content a:not(.btn):hover {
  text-decoration: none;
}
.accordion-item__content img {
  display: block;
  margin: 20px 0;
}
.accordion-item.opened .accordion-item__content {
  display: block;
}
.accordion-item.opened .accordion-item__title .opener {
  transform: translateY(-50%) rotate(45deg);
}

.accordion--white .accordion-item {
  background: #fff;
  color: var(--text-color);
}

.joy {
  padding: 90px 0;
  position: relative;
}
.joy-text {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500;
  opacity: 0.8;
}
.joy-button {
  margin-top: 50px;
}
.joy-button .btn {
  padding-left: 40px;
  padding-right: 40px;
}
.joy-figure-right {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-200px);
}
.joy-uzor {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(200px, -50%);
  display: none;
}

.map {
  height: 500px;
  position: relative;
}
.map-overlay {
  max-width: 500px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.footer {
  color: #fff;
}
.footer-content {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-column {
  flex: 1 0 calc((100% - 350px) / 2);
  padding: 30px 65px;
}
.footer-column:first-child {
  padding-left: 0;
}
.footer-column:last-child {
  padding-right: 0;
}
.footer-column:nth-child(2) {
  flex: 0 0 350px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  height: 67px;
  width: auto;
}
.footer-description {
  margin-bottom: 60px;
}
.footer-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer-feedback__links li {
  margin-bottom: 12px;
}
.footer-feedback__links .btn {
  border-radius: 30px;
  font-size: 15px;
  line-height: 19px;
  padding: 14px 25px;
}
.footer-menu li {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}
.footer-menu li.divider {
  height: 1px;
  background: #fff;
  opacity: 0.2;
}
.footer-menu li.parent {
  position: relative;
}
.footer-menu li.parent .opener {
  position: absolute;
  right: 0;
  cursor: pointer;
  top: 0;
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.footer-menu li.parent .opener.opened {
  transform: rotate(180deg);
}
.footer-menu li ul {
  padding-top: 15px;
  display: none;
}
.footer-menu li ul li {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}
.footer-cabinet-link.desktop-hidden {
  display: none;
}
.footer-cabinet-link .btn {
  color: var(--violet-main);
  width: 100%;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: normal;
  padding-top: 18px;
  padding-bottom: 18px;
  line-height: 20px;
}
.footer-cabinet-link .btn:hover {
  border-color: var(--rose-main);
  color: #fff;
}
.footer-cabinet-link .btn:hover svg path {
  stroke: #fff;
}
.footer-subscribe {
  margin-top: 65px;
}
.footer-subscribe:first-child {
  margin-top: 0;
}
.footer-subscribe__title {
  display: block;
  font-family: "Roboto Flex", sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.footer-subscribe input[type=email],
.footer-subscribe input[type=text] {
  font-size: 16px;
  line-height: 21px;
  padding: 13px 25px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  width: 100%;
  height: auto;
  color: #fff;
}
.footer-subscribe .dflex {
  margin-top: 20px;
  gap: 20px;
}
.footer-subscribe input[type=submit],
.footer-subscribe button[type=submit] {
  flex: 0 0 139px;
  height: 47px;
  color: var(--violet-main);
  border-radius: 10px;
  font-size: 18px;
  line-height: 23px;
  padding: 12px 15px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #fff;
  transition: all 0.3s;
}
.footer-subscribe input[type=submit] svg path,
.footer-subscribe button[type=submit] svg path {
  transition: all 0.3s;
}
.footer-subscribe input[type=submit]:hover,
.footer-subscribe button[type=submit]:hover {
  border-color: var(--rose-main);
  background: var(--rose-main);
  color: #fff;
}
.footer-subscribe input[type=submit]:hover svg path,
.footer-subscribe button[type=submit]:hover svg path {
  stroke: #fff;
}
.footer-subscribe .personal-agree {
  flex-grow: 1;
  font-size: 9px;
}
.footer-subscribe .personal-agree a {
  text-decoration: underline;
}
.footer-subscribe .personal-agree a:hover {
  text-decoration: none;
}
.footer-subscribe ::-webkit-input-placeholder {
  color: var(--light-gray);
}
.footer-subscribe :-moz-placeholder {
  color: var(--light-gray);
  opacity: 1;
}
.footer-subscribe ::-moz-placeholder {
  color: var(--light-gray);
  opacity: 1;
}
.footer-subscribe :-ms-input-placeholder {
  color: var(--light-gray);
}
.footer-subscribe ::-ms-input-placeholder {
  color: var(--light-gray);
}
.footer-subscribe ::placeholder {
  color: var(--light-gray);
}
.footer-socials {
  margin-top: auto;
}
.footer-socials.desktop-hidden {
  display: none;
}
.footer-socials a:hover {
  opacity: 0.7;
}
.footer-socials a img {
  display: block;
  margin: 0;
  max-height: 36px;
}
.footer-socials__title {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}
.footer-socials__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer-bottom {
  height: 70px;
  font-size: 15px;
  font-weight: normal;
  gap: 40px;
}
.footer-bottom .developer {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.footer-bottom .developer a {
  margin-left: 10px;
}
.footer-bottom .developer img {
  height: 20px;
  width: auto;
  display: block;
  margin: 0;
}

.ambassadors {
  padding: 120px 0;
  overflow: hidden;
}
.ambassadors-figure {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  transform: translate(141px, -127px);
}
.ambassadors-holder {
  margin-top: 80px;
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.ambassadors-names {
  flex: 0 0 calc((100% - 20px) / 2);
  background: var(--violet-main);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ambassadors-names .tab-accordion {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}
.ambassadors-videos {
  flex: 0 0 calc((100% - 20px) / 2);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 43px;
}
.ambassadors-videos::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  z-index: -1;
}

.ambassador-video {
  width: 100%;
  max-width: 526px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  display: none;
  position: relative;
}
.ambassador-video.visible {
  display: block;
}
.ambassador-video__poster {
  height: 100%;
}
.ambassador-video__poster .responsive-video {
  height: 100%;
}
.ambassador-video__poster .responsive-video video {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
  width: auto;
  max-width: unset;
}
.ambassador-video__poster img {
  display: block;
  width: 100%;
  margin: 0;
}
.ambassador-video .play, .ambassador-video .pseudo-play {
  transform: translate(-50%, 50%);
}

.ambassador-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ambassador-item.opened {
  flex-grow: 1;
}
.ambassador-item__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-transform: uppercase;
  font-family: "Roboto Flex", sans-serif;
  transition: all 0.3s;
}
.ambassador-item__title.opened {
  font-size: 36px;
  transition: all 0.3s linear 0s;
}
.ambassador-item__content {
  opacity: 0.6;
  flex-grow: 1;
}
.ambassador-item__content .ambassador-video {
  display: none;
  margin-top: 30px;
}

/*.pseudo-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  background: none;
  border: none;
  border-radius: 50%;
  svg {
    max-width: 100%;
    height: auto;
    path {
      transition: all 0.3s;
    }
  }
  &:hover {
    svg {
      path {
        fill: #fff;
        &.bg {
          fill: var(--rose-main);
        }
      }
    }
  }
}*/
.headliners {
  padding: 120px 0;
}
.headliners-slider {
  margin-right: calc((1372px - (100vw - 15px)) / 2);
}
.headliners-all-speakers {
  text-align: center;
  margin-top: 30px;
  display: none;
}
.headliners-all-speakers .btn {
  width: 100%;
  max-width: 280px;
}
.headliners-button {
  margin-top: 70px;
  text-align: center;
}
.headliners-button .btn {
  width: 100%;
  max-width: 443px;
}

.ambassadors + .headliners {
  padding-top: 0;
}

.headliner-item {
  max-width: 328px;
}
.headliner-item--big {
  max-width: 444px;
}
.headliner-item__img {
  margin-bottom: 40px;
}
.headliner-item__img img {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 16px;
}
.headliner-item__name {
  display: block;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  font-family: "Roboto Flex", sans-serif;
  margin-bottom: 15px;
  line-height: 1.2;
}
.headliner-item__position {
  font-size: 16px;
  opacity: 0.6;
  display: block;
  line-height: 1.2;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  opacity: 0.6;
  margin-bottom: 55px;
}
.breadcrumbs li {
  padding-left: 26px;
  position: relative;
}
.breadcrumbs li::before {
  display: block;
  content: ">";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumbs li:first-child {
  padding-left: 0;
}
.breadcrumbs li:first-child::before {
  display: none;
}

.program-page .first-screen-figure.one {
  bottom: 0;
  top: auto;
}
.program-page .first-screen-figure.two {
  left: 50%;
  transform: translateX(-688px);
  bottom: -55px;
  top: auto;
}
.program-page .first-screen-figure.three {
  top: 60px;
}

.section-program {
  padding: 50px 0 80px;
}
.section-program--active {
  padding-bottom: 120px;
}

.typography-enabled h1, .typography-enabled h2, .typography-enabled h3, .typography-enabled h4, .typography-enabled h5, .typography-enabled h6 {
  font-weight: 600;
  font-family: "Roboto Flex", sans-serif;
  line-height: 1.2;
}
.typography-enabled > *:last-child {
  margin-bottom: 0;
}
.typography-enabled p {
  margin-bottom: 30px;
}
.typography-enabled ul li {
  padding-left: 20px;
  position: relative;
}
.typography-enabled ul li::before {
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  left: 6px;
  top: 12px;
  background: var(--text-color);
}
.typography-enabled .text-title {
  font-size: 36px;
  font-family: "Roboto Flex", sans-serif;
  font-weight: 600;
  margin: 0 0 20px;
}

.program-info {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--light-gray);
  padding: 50px 60px;
  font-size: 20px;
}
.program-info__partner {
  position: absolute;
  display: flex;
  align-items: center;
  right: 20px;
  top: 37px;
  column-gap: 20px;
  font-weight: 500;
}
.program-info__partner-logo {
  flex-shrink: 0;
}
.program-info__partner-logo img {
  max-height: 100px;
  display: block;
  margin: 0;
}
.program-info__text {
  max-width: 1000px;
}
.program-info h2 {
  font-size: 64px;
  margin-bottom: 70px;
}
.program-info h3 {
  font-size: 36px;
  margin-bottom: 40px;
}
.program-info-figure-top {
  position: absolute;
  top: 0;
  right: 50px;
}
.program-info-figure-bottom {
  position: absolute;
  bottom: 20px;
  right: 0;
}
.program-info-figure-bottom-active {
  position: absolute;
  bottom: 0;
  right: 0;
}
.program-info .text-title {
  margin-top: 50px;
}
.program-info--active .program-info__text {
  max-width: 800px;
}
.program-info--active h2 {
  margin-bottom: 40px;
}

.info-block {
  padding: 40px;
  border-radius: 16px;
  margin-top: 20px;
  font-size: 24px;
  line-height: 1.2;
}

.look-program {
  margin-top: 20px;
}
.look-program__title {
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  font-family: "Roboto Flex", sans-serif;
  font-size: 36px;
  font-weight: 600;
  background: var(--light-gray);
  padding: 30px 70px 30px 40px;
  transition: all 0.3s;
}
.look-program__title .opener {
  text-indent: -9999px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.look-program__title .opener::before, .look-program__title .opener::after {
  display: block;
  content: "";
  width: 20px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: all 0.3s;
}
.look-program__title .opener::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.look-program__title:hover {
  background: var(--rose-main);
  color: #fff;
}
.look-program__title:hover .opener::before, .look-program__title:hover .opener::after {
  background: #fff;
}
.look-program__title.opened .opener::after {
  opacity: 0;
}
.look-program__content {
  padding-top: 20px;
  display: none;
}

.program-schedule {
  margin-top: 20px;
}
.program-schedule__day-anchors {
  display: flex;
  border-radius: 16px;
  background: var(--light-gray);
  gap: 0;
}
.program-schedule .program-schedule-day-anchor {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  padding: 30px 20px;
  border-radius: 16px;
  flex: 1 0 calc(33.333333% - 35px);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s;
  height: auto;
  border: none;
}
.program-schedule .program-schedule-day-anchor__date {
  font-size: 32px;
  font-weight: 500;
  flex: 0 0 100%;
  text-align: center;
  transition: all 0.5s;
}
.program-schedule .program-schedule-day-anchor__description {
  border-left: 1px solid var(--text-color);
  font-size: 15px;
  line-height: 1;
  font-weight: normal;
  opacity: 0;
  flex: 0 0 calc(100% - 200px);
  transition: all 0.5s;
  height: 70px;
  display: flex;
  align-items: center;
}
.program-schedule .program-schedule-day-anchor:hover {
  background: inherit;
  color: inherit;
}
.program-schedule .program-schedule-day-anchor.active {
  background: var(--violet-main);
  color: #fff;
  flex: 1 0 calc(33.333333% + 70px);
  cursor: default;
}
.program-schedule .program-schedule-day-anchor.active .program-schedule-day-anchor__date {
  flex: 0 0 200px;
  text-align: left;
}
.program-schedule .program-schedule-day-anchor.active .program-schedule-day-anchor__description {
  border-color: #fff;
  opacity: 0.6;
  padding-left: 20px;
}
.program-schedule__content {
  padding-top: 100px;
}
.program-schedule__content .tab-selector li {
  font-size: 16px;
}
.program-schedule__content .tab-selector li span {
  margin-left: 7px;
  opacity: 0.6;
}
.program-schedule__halls {
  padding-top: 70px;
}
.program-schedule__notice {
  font-weight: 500;
  font-size: 24px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  min-height: 100px;
  margin-top: 30px;
  padding: 20px 20px 20px 90px;
  position: relative;
}
.program-schedule__notice::before {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background: url("../img/notice-sign.svg") center center no-repeat;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.program-day {
  padding-left: 57px;
}

.program-section {
  position: relative;
  border-top: 2px solid rgba(82, 82, 82, 0.2);
  padding: 30px 0 30px 60px;
  line-height: 1.2;
}
.program-section__time {
  position: absolute;
  left: -57px;
  top: -15px;
  font-size: 18px;
  font-weight: 500;
}
.program-section__time-period {
  font-size: 24px;
  font-weight: normal;
  display: block;
  color: #525252;
  margin-bottom: 20px;
}
.program-section__title {
  font-size: 32px;
  font-weight: 600;
}
.program-section__text {
  font-weight: 500;
  font-size: 16px;
  margin: 30px 0 20px;
}
.program-section__partner {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.program-section__partner-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  margin-right: 20px;
}
.program-section__partner img {
  max-height: 35px;
  width: auto;
}
.program-section__actions {
  position: absolute;
  right: 0;
  top: 25px;
  display: flex;
  align-items: center;
}
.program-section__favorite-icon {
  cursor: pointer;
}
.program-section__favorite-icon svg {
  display: block;
  margin: 0;
  fill: transparent;
  transition: all 0.3s;
}
.program-section__favorite-icon:hover svg path {
  stroke: var(--rose-main);
}
.program-section__favorite.selected .program-section__favorite-icon svg {
  fill: var(--rose-main);
}
.program-section__favorite.selected .program-section__favorite-icon svg path {
  stroke: var(--rose-main);
}
.program-section__favorite-popup {
  position: absolute;
  z-index: 10;
  top: 100%;
  right: 0;
  transform: translateY(-10px);
  width: 444px;
  padding-top: 10px;
  color: #fff;
  transition: opacity 0.6s;
  opacity: 0;
}
.program-section__favorite-popup.visible {
  opacity: 1;
}
.program-section__favorite-popup-wrapper {
  background: var(--violet-main);
  border-radius: 10px;
  padding: 20px 10px 10px;
}
.program-section__favorite-popup .title {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}
.program-section__favorite-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.program-section__favorite-buttons .btn {
  flex: 1 0 auto;
  font-size: 15px;
  line-height: 19px;
  padding: 13px 15px;
}
.program-section__favorite-buttons .btn span {
  justify-content: center;
}
.program-section__tag {
  font-size: 18px;
  background: var(--light-gray);
  line-height: 23px;
  padding: 8px 20px;
  border-radius: 20px;
  margin-left: 20px;
}
.program-section__authors {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 136px;
  row-gap: 40px;
}
.program-section__authors.with-borders {
  border-top: 1px solid rgba(82, 82, 82, 0.2);
  padding: 30px 0 20px;
  position: relative;
  margin-bottom: -30px;
}
.program-section__authors.with-borders::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background: rgba(82, 82, 82, 0.2);
}
.program-section.with-partner .program-section__time-period {
  margin-bottom: 40px;
}

.person-popup {
  padding: 16px;
}
.person-popup__head {
  display: flex;
  flex-direction: column;
}
.person-popup__photo {
  margin-bottom: 40px;
}
.person-popup__photo img {
  display: block;
  border-radius: 16px;
  max-height: 268px;
}
.person-popup__name {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.person-popup__role {
  font-weight: 500;
  font-size: 16px;
  opacity: 0.6;
}
.person-popup__theme {
  background: #fff;
  margin-top: 30px;
  border-radius: 16px;
  display: flex;
  padding: 25px;
}
.person-popup__theme-date {
  flex: 0 0 140px;
}
.person-popup__theme-date .date {
  font-size: 16px;
  margin-bottom: 15px;
}
.person-popup__theme-date .time {
  font-size: 24px;
}
.person-popup__theme-place {
  flex-grow: 1;
}
.person-popup__theme-place .zal {
  font-size: 16px;
  margin-bottom: 15px;
}
.person-popup__theme-place .title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
}
.person-popup__awards {
  margin-top: 30px;
}
.person-popup__awards-title {
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.person-popup__awards .company-award-items {
  margin: 20px 0 30px;
}
.person-popup__awards .company-award-item {
  flex: 0 0 calc((100% - 60px) / 4);
}
.person-popup__awards .company-award-item__nomination {
  font-weight: normal;
  font-size: 14px;
}
.person-popup__contacts {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}
.person-popup__contacts > div {
  display: flex;
  align-items: center;
}
.person-popup__contacts svg {
  margin-right: 5px;
}

.company-award-items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 30px;
  margin-bottom: 60px;
}

.company-award-item {
  text-align: center;
}
.company-award-item__img {
  margin-bottom: 15px;
}

.calendar-links {
  position: absolute;
  left: 10px;
  top: -9999px;
  transform: translateY(-5px);
  background: #fff;
  width: 223px;
  color: #000;
  z-index: 100;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.calendar-links.visible {
  opacity: 1;
  top: 100%;
}
.calendar-links li {
  margin-bottom: 10px;
}
.calendar-links li:last-child {
  margin-bottom: 0;
}
.calendar-links li.desktop-hidden {
  display: none;
}

.add-to-calendar-link.opened {
  background: #000;
  border-color: #000;
  color: #fff;
}

.program-section-author {
  flex: 1 0 calc((100% - 136px) / 2);
}
.program-section-author__wrapper {
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 0;
  border-radius: 16px;
  transition: all 0.3s;
}
.program-section-author__wrapper:hover {
  padding-left: 20px;
  background: var(--rose-main);
  color: #fff;
  cursor: pointer;
}
.program-section-author__wrapper.violet:hover {
  background: var(--violet-main);
}
.program-section-author__wrapper.white:hover {
  background: var(--light-gray);
  color: var(--text-color);
}
.program-section-author__wrapper.orange:hover {
  background: var(--orange-main);
}
.program-section-author__wrapper.bordo:hover {
  background: var(--bordo-main);
}
.program-section-author__wrapper.yellow:hover {
  background: var(--yellow-main);
}
.program-section-author__theme {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 5px;
}
.program-section-author__photo {
  flex: 0 0 80px;
}
.program-section-author__photo img {
  border-radius: 50%;
  display: block;
  margin: 0;
}
.program-section-author__info {
  flex-grow: 1;
}
.program-section-author__photo + .program-section-author__info {
  padding-left: 15px;
}
.program-section-author__name {
  font-size: 20px;
  font-weight: 600;
}
.program-section-author__name span {
  font-weight: 400;
  opacity: 0.65;
  margin-left: 10px;
}
.program-section-author__position {
  font-weight: 400;
  opacity: 0.65;
  font-size: 16px;
  margin-top: 10px;
  max-width: 400px;
}

.program-section__authors.with-borders .program-section-author {
  flex-grow: 0;
}

.favorite-popup-holder {
  display: none;
}

.simple-popup {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.fancybox-bg {
  background: rgba(0, 0, 0, 0.67);
}

.gallery-popup__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery-popup__links a {
  flex: 0 0 calc((100% - 20px) / 3);
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  background: #E83E8C;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 40px;
  font-size: 14px;
  line-height: 1.1;
}
.gallery-popup__links + .gallery-popup-title {
  margin-top: 20px;
}
.gallery-popup-title {
  margin: 40px 0 20px;
  margin-top: 40px;
}
.gallery-popup-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-popup-item {
  flex: 0 0 calc((100% - 100px) / 6);
}
.gallery-popup-item img {
  display: block;
  margin: 0;
  width: 100%;
}

.popup {
  background: #fff;
  border-radius: 30px;
  width: 100%;
  max-width: 676px;
  margin: 0 auto;
}
.popup.bg-gray {
  background: var(--light-gray);
}
.popup--fullwidth {
  max-width: 1472px;
}
.popup-title {
  font-size: 40px;
  font-weight: 600;
  font-family: "Roboto Flex", sans-serif;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.2;
}
.popup-title--big {
  font-size: 64px;
}
.popup-text {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  opacity: 0.8;
  margin-bottom: 20px;
}
.popup .form {
  max-width: 556px;
  margin: 0 auto;
}
.popup input[type=text], .popup input[type=tel], .popup input[type=email], .popup input[type=password], .popup textarea {
  width: 100%;
}
.popup .personal-agree {
  font-size: 12px;
  opacity: 0.8;
  margin: 30px auto 0;
  max-width: 504px;
}
.popup input[type=submit], .popup button[type=submit] {
  font-size: 18px;
  line-height: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.popup[id^=work-item-popup] {
  max-width: 1372px;
}

.popup[id^=person-popup] {
  max-width: 825px;
}

#nominations-popup {
  max-width: 1260px;
}

div[id^=gallery-popup] .fancybox-close-small {
  padding: 0;
}

div[id^=gallery-popup] .fancybox-close-small svg {
  background: #fff;
  border-radius: 50%;
}

div[id^=gallery-popup] .fancybox-close-small svg path {
  fill: #723FE3;
  stroke: #723FE3;
}

.popup--middle {
  max-width: 900px;
}

.popup-closer {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto 20px;
  cursor: pointer;
}

.popup-content {
  background: #fff;
}

.popup-content--transparent {
  background: none;
}

.popup-content--white-border {
  border: 3px solid #fff;
}

.popup-content--nopadd {
  padding: 0;
}

.popup-content--rose {
  background: #E83E8C;
}

.popup-content.half-pad {
  padding: 32px;
}

.popup-content.little-pad {
  padding: 30px 40px;
}

.popup--fw {
  width: 100vw;
  max-width: 100vw;
}

.popup--sticky {
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  background: #F3F3F3;
  position: fixed;
  top: 64px;
  padding: 80px;
  z-index: -100;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear 0s;
  -o-transition: opacity 0.3s linear 0s;
  transition: opacity 0.3s linear 0s;
}

.popup--sticky.visible {
  z-index: 1000;
  opacity: 1;
}

.news-popup {
  padding: 55px 0px 120px;
}
.news-popup__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 134px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.news-popup__closer {
  cursor: pointer;
}
.news-popup__closer svg {
  display: block;
  margin: 0;
}
.news-popup__closer svg path {
  stroke: #000;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.news-popup__closer:hover svg path {
  stroke: #E83E8C;
}

.prev-new, .next-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  cursor: pointer;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.2;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.prev-new.disabled, .next-new.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.prev-new svg, .next-new svg {
  display: block;
}
.prev-new svg path, .next-new svg path {
  stroke: #000;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.prev-new:not(.disabled):hover, .next-new:not(.disabled):hover {
  color: #E83E8C;
}

.prev-new:not(.disabled):hover svg path, .next-new:not(.disabled):hover svg path {
  stroke: #E83E8C;
}

.prev-new {
  margin-right: auto;
}
.prev-new svg {
  margin-right: 8px;
}

.next-new {
  margin-left: auto;
}
.next-new svg {
  margin-left: 8px;
}

.single-new .single-new__title {
  font-weight: 500;
  font-size: 100px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 80px;
}
.single-new__content {
  display: flex;
  column-gap: 16px;
}
.single-new .single-new__date {
  font-weight: 400;
  color: #E83E8C;
  font-size: 14px;
  line-height: 1.3;
  flex: 1 0 calc((100% - 16px) / 2);
  margin-bottom: 32px;
}
.single-new__info {
  flex: 1 0 calc((100% - 16px) / 2);
  max-width: calc((100% - 16px) / 2);
}
.single-new__same-news {
  margin-top: 184px;
}
.single-new__same-news > p {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.2;
}
.single-new__all-news {
  margin-top: 80px;
}

.same-news {
  display: flex;
  column-gap: 16px;
  margin-top: 32px;
}
.same-news .news-item {
  flex: 0 0 calc((100% - 48px) / 4);
}

.fancybox-close-small {
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  padding: 6px;
  right: 10px;
  top: 10px;
}

.galka {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: var(--rose-main) url("../img/package-galka.svg") center center no-repeat;
  background-size: 11px auto;
}

.packages-table {
  margin-top: 50px;
}
.packages-table--mobile {
  display: none;
  margin-top: 20px;
}
.packages-table--mobile .full-summ {
  font-size: 32px;
  font-weight: 500;
}
.packages-table--mobile .full-summ > span:first-child {
  font-size: 24px;
  font-weight: 400;
  display: block;
}
.packages-table__titles {
  display: flex;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  justify-content: flex-end;
  padding: 0 40px;
  margin-bottom: 30px;
}
.packages-table__titles span {
  flex: 0 0 13%;
  text-align: center;
}
.packages-table__titles span:first-child {
  flex: 0 0 22%;
}
.packages-table__bg {
  background: var(--light-gray);
  border-radius: 30px;
  padding: 40px;
}
.packages-table__summary {
  display: flex;
  align-items: center;
  padding: 20px 30px 0;
  justify-content: space-between;
}
.packages-table__summary .full-summ {
  font-size: 32px;
}
.packages-table__summary .full-summ .value, .packages-table__summary .full-summ .rub {
  font-weight: 500;
}
.packages-table table {
  font-weight: 500;
  font-size: 16px;
}
.packages-table table tr {
  border-bottom: 1px solid rgba(82, 82, 82, 0.1);
}
.packages-table table td {
  text-align: center;
  width: 13%;
  padding: 20px 5px;
}
.packages-table table td:first-child {
  width: 22%;
  text-align: left;
  padding-left: 0;
}
.packages-table table .price {
  display: block;
  font-size: 20px;
}
.packages-table table .next-price {
  font-size: 14px;
}
.packages-table table .next-price span {
  display: block;
}

.package-order__notice {
  margin-bottom: 15px;
  font-size: 14px;
}

.packages-order .btn {
  width: 100%;
  max-width: 280px;
}

.packages-quantity {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.packages-quantity__selector {
  flex: 0 0 13%;
}
.packages-quantity__title {
  flex: 0 0 22%;
}

.package-sum {
  text-align: center;
  display: none;
  margin-top: 10px;
}

.custom-number {
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-number input {
  width: 40px;
  height: 36px;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0;
  text-align: center;
  border: none;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}
.custom-number input[type=number]::-webkit-inner-spin-button,
.custom-number input[type=number]::-webkit-outer-spin-button {
  appearance: none;
}
.custom-number .minus, .custom-number .plus {
  flex: 0 0 36px;
  height: 36px;
  border: 1px solid #000;
  border-radius: 5px;
  cursor: pointer;
  text-indent: -9999px;
  position: relative;
}
.custom-number .minus::before, .custom-number .minus::after, .custom-number .plus::before, .custom-number .plus::after {
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.custom-number .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.package-item {
  background: var(--light-gray);
  padding: 20px 15px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
.package-item__title {
  font-weight: 700;
  font-size: 24px;
  color: var(--rose-main);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.package-item__content ul li {
  padding-left: 27px;
  position: relative;
  margin-bottom: 12px;
}
.package-item__content ul li::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  box-sizing: border-box;
  background: var(--rose-main) url("../img/package-galka.svg") center center no-repeat;
  background-size: 10px auto;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 3px;
}
.package-item__price {
  font-weight: 500;
  font-size: 42px;
  text-align: center;
}
.package-item .new-price {
  display: block;
  font-size: 12px;
  text-align: center;
}
.package-item__quantity {
  text-align: center;
  border-top: 1px solid rgba(82, 82, 82, 0.1);
  font-size: 16px;
  padding-top: 10px;
  margin-top: 15px;
}
.package-item__quantity-title {
  margin-bottom: 10px;
}
.package-item .custom-number .minus, .package-item .custom-number .plus {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

#packages-order textarea {
  display: none;
}

.personal-agree a {
  text-decoration: underline;
}
.personal-agree a:hover {
  text-decoration: none;
}

.iti {
  width: 100%;
  margin-bottom: 10px;
}

.popup-nominations-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.popup-nominations, .popup-nominations-order {
  border-radius: 23px;
  background: var(--light-gray);
  flex: 0 0 calc((100% - 20px) / 2);
  overflow: hidden;
}

.popup-nomination {
  border-bottom: 1px solid #d9d9d9;
}
.popup-nomination:last-child {
  border: none;
}
.popup-nomination__title {
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  padding: 23px 30px 23px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-nomination__title .num {
  font-size: 15px;
  opacity: 0.3;
}
.popup-nomination__content {
  display: none;
  background: #eaeaea;
  padding: 23px 30px 23px 40px;
}
.popup-nomination__list {
  max-height: 125px;
  overflow-y: auto;
  padding-right: 15px;
}
.popup-nomination__list li {
  cursor: pointer;
  padding-left: 26px;
  position: relative;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-nomination__list li:last-child {
  margin-bottom: 0;
}
.popup-nomination__list li .price {
  font-weight: 600;
}
.popup-nomination__list li::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 4px;
  cursor: pointer;
}
.popup-nomination__list li.active::before {
  background: #fff url("../img/check.svg") center center no-repeat;
}

.popup-nominations-order {
  padding: 30px 30px 20px 30px;
  display: flex;
  flex-direction: column;
}
.popup-nominations-order__message {
  margin-top: auto;
  font-weight: 500;
  font-size: 16px;
  opacity: 0.8;
  padding-bottom: 15px;
}
.popup-nominations-order__summary {
  padding: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d9d9d9;
}
.popup-nominations-order__summary .btn {
  font-size: 18px;
  line-height: 20px;
  padding: 14px;
}
.popup-nominations-order__sum {
  font-size: 20px;
  font-weight: 400;
}
.popup-nominations-order__sum span {
  font-weight: 500;
}

.popup-selected-nomination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #fff;
  border-radius: 25px;
  padding: 9px 20px;
  margin-bottom: 10px;
}
.popup-selected-nomination .title {
  flex-grow: 1;
}
.popup-selected-nomination .custom-number {
  flex: 0 0 80px;
}
.popup-selected-nomination .custom-number .minus, .popup-selected-nomination .custom-number .plus {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}
.popup-selected-nomination .custom-number input {
  flex: 0 0 28px;
  width: 28px;
  height: 26px;
}
.popup-selected-nomination .price {
  flex: 0 0 95px;
  font-size: 16px;
  font-weight: 600;
  margin-left: 20px;
}
.popup-selected-nomination .delete {
  cursor: pointer;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  text-indent: -9999px;
  position: relative;
}
.popup-selected-nomination .delete::before, .popup-selected-nomination .delete::after {
  display: block;
  content: "";
  width: 16px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup-selected-nomination .delete::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#participant-order textarea {
  display: none;
}

.download-loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: -1000;
  color: var(--rose-main);
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.2s;
  font-size: 20px;
}
.download-loader svg {
  height: 100px;
}
.download-loader.visible {
  opacity: 1;
  z-index: 1000;
}

.wowawards .first-screen-figure.one {
  bottom: 0;
  top: auto;
}
.wowawards .first-screen-figure.two {
  left: 0;
  bottom: 0;
  top: auto;
  transform: none;
}
.wowawards .first-screen-figure.two img {
  display: block;
}
.wowawards .first-screen-figure.three {
  bottom: 0;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}
.wowawards .first-screen-figure.four {
  bottom: 170px;
  left: 50%;
  transform: translateX(60%);
}

.effective-creative {
  margin-top: 120px;
  padding-bottom: 120px;
}
.effective-creative-items-bg {
  position: relative;
}
.effective-creative-items-wrapper {
  margin-top: 90px;
  position: relative;
}
.effective-creative-items {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  padding: 0 55px;
}
.effective-creative-bg {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: -1;
}

.effective-creative-item {
  min-height: 220px;
  flex: 0 0 240px;
  background: var(--violet-main);
  border-radius: 16px;
  text-align: center;
  color: #fff;
  padding: 30px 10px;
  font-size: 18px;
}
.effective-creative-item:nth-child(2n) {
  margin-top: 135px;
}
.effective-creative-item:nth-child(2) {
  margin-right: auto;
}
.effective-creative-item:nth-child(3) {
  margin-left: auto;
}
.effective-creative-item__icon {
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
}
.effective-creative-item__text {
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.wowawards-video {
  padding-bottom: 120px;
}

.wowawards-stages {
  padding: 120px 0 80px;
}

.wowawards-stage-items {
  margin-top: 40px;
}

.wowawards-stage-item {
  position: relative;
  padding: 40px 20px 35px;
  background: #fff;
}
.wowawards-stage-item.active {
  background: var(--violet-main);
  color: #fff;
}
.wowawards-stage-item:first-child {
  border-radius: 16px 16px 0 0;
}
.wowawards-stage-item:first-child::before {
  display: none;
}
.wowawards-stage-item.active + .wowawards-stage-item::before {
  display: none;
}
.wowawards-stage-item:last-child {
  border-radius: 0 0 16px 16px;
}
.wowawards-stage-item::before {
  display: block;
  content: "";
  height: 1px;
  background: var(--text-color);
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
}
.wowawards-stage-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.wowawards-stage-item__title {
  flex-grow: 1;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Roboto Flex", sans-serif;
}
.wowawards-stage-item__date {
  text-transform: uppercase;
  flex: 0 0 200px;
  text-align: right;
  font-size: 20px;
  font-weight: 700;
}
.wowawards-stage-item__text {
  flex: 0 0 100%;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
  opacity: 0.8;
  max-width: 820px;
}
.wowawards-stage-item .btn {
  margin-top: 15px;
}

.wowawards-categories {
  padding: 120px 0;
  position: relative;
}
.wowawards-categories-anchors {
  margin-top: 60px;
}
.wowawards-categories-anchors .tab-selector {
  justify-content: space-between;
}
.wowawards-categories-anchors .tab-selector li {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
}
.wowawards-categories-tabs {
  margin-top: 60px;
}
.wowawards-categories-bg {
  position: absolute;
  right: 0;
  top: -103px;
}

.wowawards-category {
  margin-top: 20px;
}
.wowawards-category__text {
  font-size: 20px;
  font-weight: 500;
  max-width: 1020px;
  padding-top: 10px;
}
.wowawards-category__characteristics {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}
.wowawards-category__characteristic {
  flex: 0 0 308px;
  background: var(--violet-main);
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  min-height: 337px;
  line-height: 1.2;
}
.wowawards-category__characteristic-title {
  font-size: 20px;
  margin-bottom: 20px;
}
.wowawards-category__characteristic-title .opener {
  display: none;
}
.wowawards-category__characteristic-text {
  margin-top: auto;
}
.wowawards-category__characteristic:first-child {
  flex-grow: 1;
}
.wowawards-category__buttons {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 10px;
}
.wowawards-category__buttons .btn {
  font-size: 18px;
  line-height: 23px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.wowawards-help {
  padding: 120px 0;
  position: relative;
}
.wowawards-help-items {
  margin-top: 80px;
  display: flex;
  gap: 20px;
}
.wowawards-help-item {
  flex: 0 0 560px;
  background: #fff;
  padding: 30px 20px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wowawards-help-item:first-child {
  flex-grow: 1;
}
.wowawards-help-item__icon {
  height: 95px;
  margin-bottom: 30px;
}
.wowawards-help-item__icon img {
  display: block;
  margin: 0;
}
.wowawards-help-item__title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.wowawards-help-item__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.8;
  margin-bottom: 40px;
}
.wowawards-help-item .btn {
  margin-top: auto;
  font-size: 18px;
  line-height: 22px;
  padding-top: 13px;
  padding-bottom: 13px;
}
.wowawards-help-bg-left {
  position: absolute;
  left: 0;
  top: -180px;
}
.wowawards-help-bg-right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.wowawards-conditions {
  padding: 120px 0;
  position: relative;
}
.wowawards-conditions-anchors {
  margin-top: 50px;
  justify-content: space-between;
}
.wowawards-conditions-anchors li {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
}
.wowawards-conditions-tabs {
  margin-top: 70px;
}
.wowawards-conditions-buttons {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.wowawards-conditions-buttons .btn {
  width: 100%;
  max-width: 350px;
}
.wowawards-conditions-buttons .btn:first-child {
  max-width: 280px;
}
.wowawards-conditions-bg-left {
  position: absolute;
  left: 0;
  top: 10px;
}
.wowawards-conditions-bg-right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.wowawards-nomination-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.wowawards-nomination-item {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 186px;
  line-height: 1.2;
}
.wowawards-nomination-item__label {
  font-size: 16px;
  opacity: 0.6;
  margin-bottom: 5px;
}
.wowawards-nomination-item__title {
  font-size: 24px;
  font-weight: 500;
}
.wowawards-nomination-item__price {
  margin-top: auto;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1;
}
.wowawards-nomination-item__next-price {
  font-size: 12px;
  opacity: 0.5;
}

.archive-section {
  padding: 120px 0;
}
.archive-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.archive-section__head .slider-navigation {
  position: static;
}
.archive-section__text {
  margin-bottom: 80px;
  font-weight: 500;
  font-size: 20px;
  opacity: 0.8;
}

.custom-select {
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
}
.custom-select__text {
  cursor: pointer;
  background: var(--violet-main);
  border-radius: 10px;
  padding: 20px 27px;
}
.custom-select__text span {
  position: relative;
  padding-right: 20px;
}
.custom-select__text span::after {
  display: block;
  content: "";
  width: 12px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/arrow-opener.svg") center center no-repeat;
  background-size: 11px auto;
  cursor: pointer;
  transition: all 0.3s;
}
.custom-select__list {
  position: absolute;
  left: 0;
  top: -9999px;
  background: var(--violet-main);
  color: #fff;
  z-index: 100;
  min-width: 100%;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  overflow: hidden;
}
.custom-select__list.autowidth {
  min-width: 250px;
}
.custom-select__list li {
  cursor: pointer;
  padding: 10px 20px;
  transition: all 0.1s;
}
.custom-select__list li:hover, .custom-select__list li.active {
  background: rgba(255, 255, 255, 0.1);
}
.custom-select__list.with-links li {
  padding: 0;
}
.custom-select__list.with-links li a {
  display: block;
  padding: 10px 20px;
}
.custom-select.opened .custom-select__list {
  opacity: 1;
  top: 100%;
}
.custom-select.opened .custom-select__text span::after {
  transform: translateY(-50%) rotate(180deg);
}
.custom-select.dark .custom-select__text {
  background: var(--text-color);
}
.custom-select.dark .custom-select__list {
  background: var(--text-color);
}
.custom-select.dark .custom-select__list li:hover, .custom-select.dark .custom-select__list li.active {
  color: var(--rose-main);
}
.custom-select.white {
  color: var(--text-color);
}
.custom-select.white .custom-select__text {
  background: #fff;
}
.custom-select.white .custom-select__text span::after {
  background: url("../img/arrow-opener-dark.svg") center center no-repeat;
}
.custom-select.white .custom-select__list {
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  color: var(--text-color);
}
.custom-select.white .custom-select__list li:hover, .custom-select.white .custom-select__list li.active {
  color: var(--rose-main);
}

.archive-slider {
  margin-right: calc((1372px - 100vw) / 2);
}
.archive-item {
  max-width: 444px;
}
.archive-item__img {
  position: relative;
  margin-bottom: 35px;
}
.archive-item__img img {
  display: block;
  width: 100%;
  border-radius: 16px;
}
.archive-item__category {
  font-size: 16px;
  opacity: 0.6;
  display: block;
  margin-bottom: 15px;
}
.archive-item__title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
  font-family: "Roboto Flex", sans-serif;
  line-height: 1.2;
}
.archive-item__company {
  font-size: 16px;
  opacity: 0.6;
  display: block;
}
.archive__button {
  text-align: center;
  margin-top: 80px;
}
.archive__button .btn {
  width: 100%;
  max-width: 443px;
}

.finalist-label {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  color: #000;
  font-size: 18px;
  line-height: 21px;
  padding: 15px 30px;
  font-weight: 500;
  background: #fff;
  border-radius: 30px;
}
.finalist-label.gold {
  color: #fff;
  background: var(--rose-main);
}
.finalist-label.finalist, .finalist-label.longlist {
  color: #fff;
  background: #7059a4;
}

.works-page .first-screen {
  padding-bottom: 80px;
}
.works-page .first-screen-figure.one {
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  transform: none;
}
.works-page .first-screen-figure.two {
  left: 0;
  bottom: 0;
  top: auto;
  transform: none;
}

.works-page__head {
  margin-top: 30px;
}
.works-page__head-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.works-page__head.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 62px;
  width: 100vw;
  padding: 10px 0;
  background: var(--rose-main);
  margin-top: 0;
}
.works-page__head.fixed .works-page__head-content {
  padding: 0 20px;
  max-width: 1402px;
  margin: 0 auto;
}
.works-page__head.fixed .btn {
  padding-top: 10px;
  padding-bottom: 10px;
}
.works-page__head.fixed .custom-select__text {
  padding-top: 10px;
  padding-bottom: 10px;
}

.works-categories-anchors {
  position: absolute;
  top: -9999px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  background: #fff;
  padding: 30px 0;
  display: flex;
  color: var(--text-color);
  opacity: 0;
  transition: opacity 0.3s;
  line-height: 1.2;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.works-categories-anchors.visible {
  top: 100%;
  opacity: 1;
}

.works-category-column {
  flex: 1 0 11.1111111111%;
  padding: 0 10px;
  border-left: 1px solid var(--light-gray);
}
.works-category-column:first-child {
  border: none;
}
.works-category-column__title {
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 13px;
}
.works-category-column a {
  transition: all 0.2s;
  text-decoration: none;
}
.works-category-column a:hover {
  text-decoration: none;
  color: var(--rose-main);
}

.works-categories-anchors-links {
  font-size: 14px;
}
.works-categories-anchors-links li {
  margin-bottom: 15px;
}

.works-filter {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  margin-right: 30px;
}

.works-breadcrumbs {
  display: flex;
  align-items: center;
  color: #fff;
  flex: 1 0 auto;
  font-size: 20px;
  font-weight: 500;
}
.works-breadcrumbs li {
  margin-left: 7px;
  padding-left: 8px;
  position: relative;
}
.works-breadcrumbs li::before {
  display: block;
  content: "";
  width: 1px;
  height: 20px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 5px;
}
.works-breadcrumbs li:first-child {
  padding-left: 0;
  margin-left: 0;
}
.works-breadcrumbs li:first-child::before {
  display: none;
}

.works-categories-navigation {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex: 0 0 auto;
  gap: 10px;
  margin-left: 20px;
}

.page-content {
  padding: 120px 0;
}

.advice-banner + .page-content {
  padding-top: 80px;
}

.works-category__title {
  margin-bottom: 80px;
}
.works-category:last-child .works-nomination:last-child {
  margin-bottom: 0;
}

.works-nomination {
  margin-bottom: 120px;
}
.works-nomination__title {
  margin-bottom: 50px;
}

.work-items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 60px;
}

.work-item {
  color: var(--text-color);
  transition: all 0.3s;
}
.work-item-wrapper {
  flex: 0 0 calc((100% - 40px) / 3);
}
.work-item-wrapper a:hover {
  text-decoration: none;
}
.work-item__img {
  position: relative;
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
}
.work-item__img img {
  display: block;
  width: 100%;
  margin: 0;
  transition: all 0.7s;
}
.work-item__title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Roboto Flex", sans-serif;
  line-height: 1.2;
}
.work-item__company {
  font-size: 16px;
  opacity: 0.6;
}
.work-item:hover {
  color: var(--rose-main);
}
.work-item:hover .work-item__img img {
  transform: scale(1.2);
}

.work-item-popup {
  padding-left: 16px;
  padding-right: 16px;
}
.work-item-popup__nomination {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  align-items: center;
  margin-bottom: 30px;
}
.work-item-popup__nomination li {
  position: relative;
  padding-left: 7px;
  margin-left: 6px;
}
.work-item-popup__nomination li::before {
  display: block;
  content: "";
  height: 15px;
  width: 1px;
  background: var(--text-color);
  position: absolute;
  left: 0;
  top: 5px;
}
.work-item-popup__nomination li:first-child {
  margin-left: 0;
  padding-left: 0;
}
.work-item-popup__nomination li:first-child::before {
  display: none;
}
.work-item-popup__title {
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
}
.work-item-popup__video {
  margin-top: 50px;
}
.work-item-popup__characteristics {
  margin-top: 60px;
}
.work-item-popup__characteristics-row {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}
.work-item-popup__characteristics-row:first-child {
  margin-top: 0;
}
.work-item-popup__characteristics-row.mt-big {
  margin-top: 50px;
}
.work-item-popup__characteristics-title {
  flex: 0 0 285px;
  padding-right: 20px;
  color: #757575;
}
.work-item-popup__characteristics-text {
  flex-grow: 1;
  font-weight: 500;
  max-width: calc(100% - 285px);
}
.work-item-popup__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  gap: 8px;
}
.work-item-popup__navigation .btn {
  font-size: 15px;
}

.work-item-popup-slide img {
  border-radius: 16px;
}

.judges-page .first-screen {
  padding-bottom: 80px;
}
.judges-page .first-screen-figure.one {
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  transform: none;
}
.judges-page .first-screen-figure.two {
  left: 50%;
  bottom: 0;
  top: auto;
  transform: translateX(-60%);
}
.judges-page .first-screen-figure.three {
  left: 50%;
  top: 80px;
  transform: translateX(20%);
}

.judges-category {
  margin-top: 80px;
}
.judges-category:first-child {
  margin-top: 0;
}
.judges-category__title {
  margin-bottom: 80px;
}

.judge-items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 60px;
}

.judge-item {
  flex: 0 0 calc((100% - 40px) / 3);
  cursor: pointer;
}
.judge-item__img {
  margin-bottom: 40px;
  position: relative;
}
.judge-item__img img {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 16px;
}
.judge-item__label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  background: var(--violet-main);
  font-size: 18px;
  line-height: 23px;
  padding: 14px 25px;
  border-radius: 30px;
}
.judge-item__name {
  display: block;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  font-family: "Roboto Flex", sans-serif;
  margin-bottom: 15px;
  line-height: 1.2;
}
.judge-item__position {
  font-size: 16px;
  opacity: 0.6;
  display: block;
}

.judges-page__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
}

.judges-filter {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  margin-right: 30px;
}

.judges-current-category {
  color: #fff;
  flex: 1 0 auto;
  font-size: 20px;
  font-weight: 500;
}

.judges-categories-navigation {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex: 0 0 auto;
  gap: 10px;
  margin-left: 20px;
}

.iti__selected-country-primary:hover {
  background: transparent !important;
}

.project-popup {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-height: 616px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.project-popup .slider-holder {
  width: 100%;
  margin-top: 0;
}

.slider-head {
  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: 20px;
}
.slider-head .slider-nav-prev, .slider-head .slider-nav-next {
  width: 40px;
  height: 40px;
}
.slider-head.desktop-hidden {
  display: none;
}

.swiper.h100 .swiper-slide {
  height: unset;
}

.swiper-slide .project-popup__card {
  height: 100%;
}

.project-popup__overlay-video {
  position: absolute;
  top: -32px;
  left: -32px;
  right: -32px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 0.3s linear 0s;
  -o-transition: opacity 0.3s linear 0s;
  transition: opacity 0.3s linear 0s;
}

.project-popup__overlay-video.visible {
  opacity: 1;
  z-index: 10;
}

.project-popup__overlay-video video {
  width: 100%;
  display: block;
  margin: 0;
}

.project-popup__date {
  font-size: 20px;
  line-height: 1.2;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.project-popup__title {
  font-weight: 500;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.project-popup__subtitle {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.2;
  color: #E83E8C;
  margin-bottom: 8px;
}

.project-popup__video-holder {
  display: inline-block;
  position: relative;
  margin-top: 16px;
  margin-bottom: 40px;
}

.project-popup__video-holder-text {
  color: #E83E8C;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 600;
}

.project-popup__video-holder img {
  display: block;
  margin: 0;
  max-width: 290px;
  height: auto;
}

.project-popup__video-holder:before {
  display: block;
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
}

.project-popup__video-holder.pattern-1:before {
  left: -84px;
  bottom: -20px;
  background: url("../img/shape-5.svg") center center no-repeat;
  background-size: 100%;
}

.project-popup__video-holder.pattern-2:before {
  right: -91px;
  top: 40px;
  background: url("../img/shape-2.svg") center center no-repeat;
  background-size: 100%;
}

.project-popup__video-holder.pattern-3:before {
  left: -95px;
  bottom: 20px;
  background: url("../img/shape-3-pink.svg") center center no-repeat;
  background-size: 100%;
}

.project-popup__video-holder.pattern-4:before {
  right: -100px;
  top: 100px;
  background: url("../img/shape-1-pink.svg") center center no-repeat;
  background-size: 100%;
}

.project-popup__video-holder.pattern-5:before {
  left: -84px;
  bottom: -20px;
  background: url("../img/shape-5.svg") center center no-repeat;
  background-size: 100%;
}

.project-popup__video-holder.pattern-6:before {
  right: -130px;
  top: 40px;
  background: url("../img/shape-2.svg") center center no-repeat;
  background-size: 100%;
}

.project-popup__buttons {
  width: 220px;
  margin: auto auto 0px auto;
}
.project-popup__buttons .btn {
  width: 100%;
  max-width: 220px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
}

.project-popup__buttons .btn:first-of-type {
  margin-bottom: 8px;
}

.project-popup__text {
  font-size: 16px;
  line-height: 23px;
  text-align: justify;
  opacity: 0.6;
  margin-bottom: 25px;
}

.project-popup__cards_title {
  font-size: 50px;
  color: #FF047D;
  padding-top: 20px;
  padding-bottom: 32px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}

.project-popup__cards {
  display: flex;
  justify-content: space-between;
  width: 100%;
  grid-gap: 16px;
}

.project-popup__card {
  padding: 24px;
  background-color: #F3F3F3;
  flex-basis: 0;
  flex-grow: 1;
}

.project-popup__card_title {
  padding-bottom: 20px;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  height: 100px;
}

.project-popup__card_description {
  font-size: 16px;
  text-align: justify;
  opacity: 0.6;
}

.project-popup__navigators_title {
  font-size: 50px;
  color: #FF047D;
  padding-top: 64px;
  padding-bottom: 32px;
  text-transform: uppercase;
  font-weight: 500;
}

.project-popup__navigator {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}

.project-popup__navigators :last-child {
  border: none;
}

.project-popup__navigator_title {
  font-size: 20px;
  text-transform: uppercase;
  padding-bottom: 12px;
  font-weight: 500;
}

.project-popup__navigator_description {
  font-size: 16px;
  text-transform: uppercase;
  padding-bottom: 20px;
  opacity: 0.6;
}

@media (max-width: 1599px) {
  .home .first-screen-figure.one {
    transform: translateX(-70%);
  }
  .wowawards .first-screen-figure.one {
    max-width: 300px;
  }
  .works-category-column__title {
    font-size: 12px;
  }
}
@media (max-width: 1499px) {
  .first-screen__title h1, .first-screen__title.big h1 {
    font-size: 110px;
  }
  .navigation-center .slider-nav-prev {
    left: 20px;
  }
  .navigation-center .slider-nav-next {
    right: 20px;
  }
  .recomendations-text {
    opacity: 1;
  }
  .works-category-column__title {
    font-size: 10px;
  }
  .works-categories-anchors-links {
    font-size: 12px;
  }
}
@media (max-width: 1401px) {
  .home .first-screen-figure.one {
    max-width: 250px;
    transform: translateX(-70%);
    bottom: -150px;
  }
  .first-screen__title {
    padding-left: 15px;
    padding-right: 15px;
  }
  .inner-page .first-screen__title {
    padding: 0;
  }
  .headliners-slider {
    margin-right: 0;
  }
  .archive-slider {
    margin-right: 0;
  }
  .main-menu {
    column-gap: 25px;
  }
  .what-wait-item__img {
    flex: calc((100% - 30px) / 2);
  }
  .what-wait-item__text {
    flex: calc((100% - 30px) / 2);
    padding-right: 0;
  }
  .wowawards-categories-anchors .tab-selector li {
    font-size: 15px;
  }
  .wowawards-conditions-anchors li {
    font-size: 15px;
  }
}
@media (max-width: 1399px) {
  .works-page__head .custom-select__text {
    padding: 15px;
  }
  .works-filter {
    margin-right: 20px;
  }
  .works-categories-navigation .btn {
    padding: 15px;
    font-size: 18px;
  }
  .works-breadcrumbs {
    font-size: 18px;
  }
  .judges-page__head .custom-select__text {
    padding: 15px;
  }
  .judges-categories-navigation .btn {
    padding: 15px;
    font-size: 18px;
  }
  .ticket-item__title {
    font-size: 20px;
  }
  .ticket-item__qty {
    font-size: 14px;
  }
  .program-schedule__content .tab-selector li {
    font-size: 14px;
    padding: 0 15px;
  }
}
@media (max-width: 1299px) {
  .wowawards .first-screen-figure.four {
    display: none;
  }
  .first-screen__title h1, .first-screen__title.big h1 {
    font-size: 100px;
  }
  .tickets .slider-navigation {
    display: flex;
  }
  .ambassadors + .headliners {
    padding-top: 0;
  }
  .program-schedule .program-schedule-day-anchor__description {
    line-height: 1.2;
    font-size: 14px;
  }
  .program-schedule .program-schedule-day-anchor.active .program-schedule-day-anchor__description {
    padding-left: 25px;
  }
  .program-schedule__content .tab-selector li {
    font-size: 15px;
  }
  .program-section {
    padding-left: 30px;
  }
  .program-section__authors {
    column-gap: 60px;
  }
  .program-section-author {
    flex: 1 0 calc((100% - 60px) / 2);
  }
  .program-section-author__theme {
    font-size: 20px;
  }
  .wowawards-categories-anchors .tab-selector li {
    font-size: 13px;
  }
  .wowawards-conditions-anchors li {
    font-size: 13px;
  }
  .page-sections-links-list a {
    font-size: 18px;
  }
  .judges-page .first-screen-figure.three {
    display: none;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 24px;
  }
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #422483 0%, #723fe3 100%);
    z-index: -100;
    padding: 78px 0 40px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.2s;
    display: none;
  }
  .header-nav.visible {
    z-index: 50;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .header__burger {
    display: block;
  }
  .main-menu {
    flex-wrap: wrap;
    font-size: 18px;
  }
  .main-menu > li {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    flex-wrap: wrap;
  }
  .main-menu > li.parent {
    padding-right: 0;
  }
  .main-menu > li.parent .opener {
    position: relative;
    top: 1px;
    transform: none;
    cursor: pointer;
    margin-left: 10px;
    display: flex;
    width: 14px;
    height: 14px;
    justify-content: center;
    align-items: center;
  }
  .main-menu > li.parent .opener.opened {
    transform: rotate(180deg);
  }
  .main-menu > li.parent .opener svg {
    width: 14px;
    height: auto;
  }
  .main-menu > li.parent .sublist-holder {
    position: static;
    opacity: 1;
    flex: 0 0 100%;
    display: none;
    text-align: center;
  }
  .main-menu > li.parent ul {
    max-width: 278px;
    width: 100%;
    display: inline-block;
    text-align: left;
  }
  .main-menu > li.parent:hover .opener {
    transform: none;
  }
  .main-menu > li.parent:hover .opener.opened {
    transform: rotate(180deg);
  }
  .main-menu > li.parent:hover .sublist-opener {
    text-align: center;
  }
  .first-screen__title h1, .first-screen__title.big h1, .first-screen__title.small h1 {
    font-size: 85px;
  }
  .inner-page .first-screen {
    padding-bottom: 70px;
  }
  .inner-page .first-screen__text {
    margin-bottom: 40px;
  }
  .inner-page .first-screen__dates {
    margin-bottom: 40px;
  }
  .section-title h2 {
    font-size: 50px;
    line-height: 1.2;
  }
  .headliners + .participants {
    padding-top: 0;
  }
  .contacts-head {
    flex-wrap: wrap;
  }
  .contacts-slider-anchors {
    flex: 0 0 100%;
    margin-top: 30px;
  }
  .footer-column {
    padding-left: 30px;
    padding-right: 30px;
  }
  .footer-cabinet-link .btn {
    padding: 15px;
    gap: 15px;
  }
  .footer-subscribe form .dflex {
    flex-wrap: wrap;
  }
  .footer-subscribe form .dflex button[type=submit],
  .footer-subscribe form .dflex input[type=submit] {
    flex: 0 0 100%;
  }
  .blog-item__img {
    flex: 0 0 200px;
  }
  .blog-item__content {
    padding-left: 30px;
    padding-right: 45px;
  }
  .blog-item .more {
    width: 30px;
    height: 30px;
  }
  .program-schedule__content {
    padding-top: 70px;
  }
  .program-schedule__content .tab-selector li {
    font-size: 14px;
    padding: 0 15px;
  }
  .program-schedule__notice {
    font-size: 20px;
  }
  .program-section-author__wrapper {
    padding: 15px 15px 15px 0;
  }
  .program-section-author__wrapper:hover {
    padding-left: 15px;
  }
  .program-section-author__name {
    font-size: 16px;
  }
  .program-section-author__position {
    font-size: 14px;
  }
  .slider-nav-prev.desktop-hidden, .slider-nav-next.desktop-hidden {
    display: flex;
  }
  .slider-nav-prev.fablet-hidden, .slider-nav-next.fablet-hidden {
    display: none;
  }
  .packages-table {
    margin-top: 30px;
  }
  .packages-table__titles {
    font-size: 14px;
    margin-bottom: 15px;
    padding: 0 15px;
  }
  .packages-table__bg {
    padding: 25px 15px;
  }
  .packages-table table {
    font-size: 14px;
  }
  .packages-table table td {
    padding: 10px 5px;
  }
  .packages-table table .price {
    font-size: 18px;
  }
  .packages-table table .next-price {
    font-size: 12px;
  }
  .packages-table table .next-price span {
    display: block;
  }
  .effective-creative-items {
    gap: 20px;
    padding: 0;
  }
  .effective-creative-item {
    flex: 0 0 calc((100% - 60px) / 4);
  }
  .wowawards-help-item {
    flex: 0 0 calc(50% - 10px);
  }
  .wowawards-categories-anchors .tab-selector {
    flex-wrap: wrap;
  }
  .wowawards-categories-anchors .tab-selector li {
    flex: 1 0 calc((100% - 40px) / 5);
    justify-content: center;
    font-size: 16px;
  }
  .wowawards-conditions-anchors {
    flex-wrap: wrap;
  }
  .wowawards-conditions-anchors li {
    flex: 1 0 calc((100% - 40px) / 5);
    justify-content: center;
    font-size: 16px;
  }
  .page-sections-links-list a {
    font-size: 16px;
    padding: 14px 10px;
  }
  .wowawards-category__characteristic {
    flex: 0 0 calc((100% - 40px) / 3);
  }
  .wowawards-stages + .wowawards-categories {
    padding-top: 40px;
  }
  .archive-section + .contacts {
    padding-top: 0;
  }
  .works-page__head {
    flex-wrap: wrap;
  }
  .works-breadcrumbs {
    flex: 0 0 100%;
    order: 2;
    margin-top: 20px;
  }
  .works-filter {
    order: 1;
  }
  .works-categories-navigation {
    order: 1;
    margin-left: auto;
  }
  .page-content {
    padding: 80px 0;
  }
  .works-category__title {
    margin-bottom: 30px;
  }
  .works-nomination {
    margin-bottom: 60px;
  }
  .works-nomination__title {
    margin-bottom: 30px;
  }
  .works-category + .banner {
    margin-bottom: 60px;
  }
  .work-items {
    row-gap: 40px;
  }
  .work-item__img {
    margin-bottom: 20px;
  }
  .work-item__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .work-item-popup {
    padding-left: 0;
    padding-right: 0;
  }
  .judges-category__title {
    margin-bottom: 30px;
  }
  .judge-items {
    row-gap: 40px;
  }
  .judge-item__img {
    margin-bottom: 20px;
  }
  .judge-item__name {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .judges-page .first-screen-figure.two {
    display: none;
  }
}
@media (max-width: 1023px) {
  .play, .pseudo-play {
    max-width: 60px;
  }
  .page-sections-links {
    display: none;
  }
  .home .first-screen-figure.one {
    max-width: 250px;
    bottom: -150px;
    top: auto;
  }
  .wowawards .first-screen-figure.three {
    display: none;
  }
  .what-wait {
    padding-top: 80px;
  }
  .why-visit {
    padding: 80px 0 45px;
  }
  .why-visit .slider-holder {
    margin-top: 25px;
  }
  .ambassadors {
    padding: 80px 0;
  }
  .ambassadors-holder {
    margin-top: 40px;
  }
  .slider-holder {
    margin-top: 60px;
  }
  .slider-navigation {
    top: -134px;
  }
  .headliners {
    padding: 80px 0;
  }
  .recomendations {
    padding: 80px 0;
  }
  .moments {
    padding-top: 80px;
  }
  .moments__head .btn {
    padding: 19px 15px;
    font-size: 16px;
  }
  .mediapartners {
    padding: 80px 0;
  }
  .mediapartners-text {
    margin-bottom: 60px;
  }
  .tickets {
    padding: 80px 0;
  }
  .news {
    padding-top: 0;
  }
  .tickets + .news {
    padding-top: 0;
  }
  .blog {
    padding: 80px 0;
  }
  .blog-items {
    margin-top: 40px;
  }
  .contacts {
    padding: 0 0 80px 0;
  }
  .blog + .contacts {
    padding-top: 0;
  }
  .inner-page .contacts {
    padding-top: 80px;
  }
  .archive-section + .contacts {
    padding-top: 0;
  }
  .faq {
    padding: 80px 0;
  }
  .joy {
    padding: 80px 0;
  }
  .advice-banner {
    padding-top: 80px;
  }
  .program-info {
    padding: 30px;
    font-size: 16px;
  }
  .program-info-figure-top, .program-info-figure-bottom {
    display: none;
  }
  .program-info h2 {
    font-size: 50px;
    margin-bottom: 30px;
  }
  .program-info h3 {
    margin-bottom: 25px;
  }
  .program-info .text-title {
    margin-top: 30px;
  }
  .program-info__partner {
    top: 20px;
  }
  .program-info__partner-logo img {
    max-height: 80px;
  }
  .program-info-figure-bottom-active {
    max-width: 250px;
  }
  .info-block {
    padding: 30px;
  }
  .program-schedule__day-anchors {
    flex-wrap: wrap;
    gap: 10px;
    background: transparent;
  }
  .program-schedule .program-schedule-day-anchor {
    flex: 0 0 100%;
    padding: 15px 20px;
  }
  .program-schedule__content {
    padding-top: 30px;
  }
  .program-schedule__content .tab-selector {
    flex-wrap: wrap;
  }
  .program-schedule__content .tab-selector li {
    flex: 0 0 calc((100% - 10px) / 2);
  }
  .program-section {
    padding: 20px;
  }
  .program-section.with-partner {
    padding-top: 60px;
  }
  .program-section__time-period {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .program-section__title {
    font-size: 24px;
  }
  .program-section__actions {
    top: 11px;
  }
  .program-section__authors {
    border: none;
    margin: 0;
    flex-wrap: wrap;
    gap: 20px;
  }
  .program-section__authors.moderators {
    padding-bottom: 10px;
  }
  .program-section__authors.with-borders::before {
    display: none;
  }
  .program-section-author {
    flex: 0 0 100%;
  }
  .main-video .desktop-visible {
    display: none;
  }
  .main-video .mobile-visible {
    display: block;
  }
  .gallery-popup-items {
    gap: 10px;
  }
  .gallery-popup-item {
    flex: 0 0 calc((100% - 30px) / 4);
  }
  .fancybox-content {
    padding: 30px 20px;
  }
  .popup-title {
    margin-bottom: 20px;
  }
  .popup-title--big {
    font-size: 50px;
    line-height: 1;
  }
  .popup-text {
    font-size: 16px;
  }
  .packages-table__titles {
    font-size: 12px;
  }
  .packages-table table {
    font-size: 12px;
  }
  .packages-table table td {
    padding: 5px;
  }
  .packages-table table .price {
    font-size: 16px;
  }
  .packages-table table .next-price {
    font-size: 10px;
  }
  .custom-number .minus, .custom-number .plus {
    flex: 0 0 30px;
    height: 30px;
  }
  .packages-quantity__title {
    font-size: 12px;
  }
  .packages-quantity__selector {
    padding: 0 5px;
  }
  .popup-nominations, .popup-nominations-order {
    flex: 0 0 100%;
  }
  .calendar-links li.desktop-hidden {
    display: block;
  }
  .calendar-links li.mobile-hidden {
    display: none;
  }
  .work-item-popup__nomination {
    margin-bottom: 20px;
  }
  .work-item-popup__title {
    font-size: 40px;
  }
  .work-item-popup__video {
    margin-top: 30px;
  }
  .work-item-popup__characteristics {
    margin-top: 40px;
  }
  .work-item-popup__characteristics-row.mt-big {
    margin-top: 40px;
  }
  .work-item-popup__navigation {
    flex-wrap: wrap;
  }
  .work-item-popup__navigation .btn {
    flex: 0 0 100%;
  }
  .work-item-popup__navigation .btn span {
    justify-content: center;
  }
  .work-item-popup__navigation-prev {
    order: 1;
  }
  .judges-page__head {
    flex-wrap: wrap;
  }
  .judges-filter {
    order: 1;
  }
  .judges-current-category {
    flex: 0 0 100%;
    order: 2;
    margin-top: 20px;
  }
  .judges-categories-navigation {
    order: 1;
    margin-left: auto;
  }
  .judge-item__label {
    font-size: 14px;
    line-height: 18px;
    padding: 7px 25px;
    left: 10px;
    bottom: 10px;
  }
}
@media (max-width: 992px) {
  .page-sections-links-list {
    flex-wrap: wrap;
  }
  .page-sections-links-list li {
    flex: 0 0 100%;
  }
  .first-screen__title.small h1 {
    font-size: 70px;
  }
  .first-screen__text--big {
    font-size: 20px;
  }
  .program-page .first-screen-figure.one {
    max-width: 300px;
  }
  .program-page .first-screen-figure.two {
    display: none;
  }
  .program-page .first-screen-figure.three {
    max-width: 300px;
  }
  .page-sections-links-list a {
    min-width: unset;
    padding: 10px;
  }
  .moments .moments__head-mobile {
    position: relative;
    padding-bottom: 85px;
  }
  .moments .moments__head-mobile .moments-text {
    margin-top: 0;
    text-align: center;
  }
  .moments .moments__head-mobile .slider-navigation {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    justify-content: center;
  }
  .moments-text {
    margin-top: 20px;
  }
  .moments .slider-holder {
    margin-top: 120px;
  }
  .moments .slider-navigation {
    top: -90px;
  }
  .moments__head {
    flex-wrap: wrap;
    justify-content: center;
  }
  .moments__head .section-title {
    flex: 0 0 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  .moments__head .btn {
    font-size: 20px;
  }
  .moments-slider.mt100 {
    margin-top: 50px;
  }
  .news-item__title {
    font-size: 15px;
  }
  .banner__text {
    opacity: 1;
  }
  .blog-item__title {
    font-size: 20px;
  }
  .tab-selector li {
    font-size: 16px;
  }
  .joy {
    overflow-x: hidden;
  }
  .joy-figure-right {
    display: none;
  }
  .footer-content {
    flex-wrap: wrap;
  }
  .footer-description {
    margin-bottom: 30px;
  }
  .footer-description br {
    display: none;
  }
  .footer-feedback {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
  }
  .footer-column {
    flex: 0 0 50%;
  }
  .footer-column:nth-child(2) {
    flex: 0 0 50%;
    border-right: 0;
    padding-right: 0;
  }
  .footer-column:last-child {
    padding-left: 0;
    flex: 0 0 100%;
  }
  .footer-cabinet-link.mobile-hidden {
    display: none;
  }
  .footer-cabinet-link.mobile-visible {
    display: block;
  }
  .footer-subscribe {
    margin-top: 0;
  }
  .footer-socials {
    margin-top: 30px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    padding: 15px 0;
    row-gap: 15px;
    column-gap: 40px;
  }
  .footer-bottom .copyright {
    flex: 0 0 calc(50% - 20px);
    order: 1;
  }
  .footer-bottom .developer {
    flex: 0 0 calc(50% - 20px);
    text-align: right;
    order: 1;
  }
  .slider-nav-prev.fablet-hidden, .slider-nav-next.fablet-hidden {
    display: flex;
  }
  .slider-nav-prev.mobile-hidden, .slider-nav-next.mobile-hidden {
    display: none;
  }
  .effective-creative {
    margin-top: 80px;
    padding-bottom: 80px;
  }
  .effective-creative-items {
    flex-wrap: wrap;
    align-items: stretch;
  }
  .effective-creative-items-wrapper {
    margin-top: 40px;
  }
  .effective-creative-item {
    flex: 0 0 calc(50% - 10px);
  }
  .effective-creative-item:nth-child(2n) {
    margin-top: 0;
  }
  .wowawards-video {
    padding-bottom: 80px;
  }
  .wowawards-stages {
    padding: 80px 0;
  }
  .wowawards-stages + .wowawards-categories {
    padding-top: 0;
  }
  .wowawards-help {
    padding: 80px 0;
  }
  .wowawards-help-items {
    margin-top: 40px;
  }
  .wowawards-conditions {
    padding: 80px 0;
  }
  .wowawards-nomination-items {
    flex-wrap: wrap;
  }
  .wowawards-nomination-item {
    flex: 0 0 100%;
  }
  .archive-section {
    padding: 80px 0;
  }
  .wowawards-category__characteristics {
    flex-wrap: wrap;
    gap: 10px;
  }
  .wowawards-category__characteristic {
    flex: 0 0 100%;
    min-height: unset;
  }
  .wowawards-category__characteristic-title {
    margin-bottom: 0;
    padding-right: 30px;
    position: relative;
  }
  .wowawards-category__characteristic-title .opener {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: url("../img/arrow-opener.svg") center center no-repeat;
    transition: all 0.3s;
  }
  .wowawards-category__characteristic-title .opener.opened {
    transform: translateY(-50%) rotate(180deg);
  }
  .wowawards-category__characteristic-text {
    padding-top: 15px;
    display: none;
    font-size: 14px;
    line-height: 1.4;
  }
  .works-page__head {
    margin-top: 0;
  }
  .works-filter {
    flex: 0 0 100%;
    margin: 0;
    justify-content: center;
    order: 0;
  }
  .works-breadcrumbs {
    justify-content: center;
    order: 1;
    margin: 25px 0 0;
  }
  .works-categories-navigation {
    flex: 0 0 100%;
    margin: 25px 0 0;
    justify-content: center;
  }
  .work-item-wrapper {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .work-item-popup__title {
    font-size: 30px;
  }
  .work-item-popup__characteristics {
    margin-top: 40px;
  }
  .work-item-popup__characteristics-row.mt-big {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .first-screen__buttons {
    width: 100%;
  }
  .first-screen__buttons .btn {
    min-width: unset;
    flex: 0 0 calc(50% - 7px);
    font-size: 14px;
  }
  .first-screen__title, .first-screen__title.big {
    margin-bottom: 30px;
  }
  .first-screen__title h1, .first-screen__title.big h1 {
    font-size: 70px;
  }
  .first-screen__title.small h1 {
    font-size: 55px;
  }
  .first-screen__text--big {
    font-size: 16px;
  }
  .first-screen__dates .date {
    font-size: 22px;
  }
  .inner-page .first-screen {
    padding: 70px 0;
  }
  .inner-page .first-screen__text {
    margin-bottom: 30px;
  }
  .breadcrumbs {
    margin-bottom: 30px;
  }
  .contacts-slider-anchors {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  .contacts-slider-anchors::-webkit-scrollbar {
    display: none;
  }
  .contacts-slider-anchors .tab-selector li {
    white-space: nowrap;
  }
  .page-sections-links-list a {
    font-size: 15px;
  }
  .section-title {
    text-align: center;
    width: 100%;
  }
  .section-title h2 {
    font-size: 40px;
  }
  .what-wait {
    padding: 50px 0;
  }
  .what-wait-accordion {
    margin: 30px -20px 0;
  }
  .tab-accordion-item {
    padding: 20px 20px 35px;
  }
  .tab-accordion-item:last-child {
    border-radius: 16px;
    padding-bottom: 20px;
  }
  .tab-accordion-item__head {
    flex-wrap: wrap;
  }
  .tab-accordion-item__content {
    padding-top: 10px;
  }
  .what-wait-item__title {
    order: 1;
    flex: 0 0 100%;
    font-size: 18px;
  }
  .what-wait-item__date {
    font-size: 12px;
    line-height: 14px;
    padding: 6px 15px;
    margin-left: 0;
    height: 28px;
    min-width: 90px;
    margin-bottom: 10px;
  }
  .what-wait-item__content {
    flex-wrap: wrap;
    gap: 20px;
  }
  .what-wait-item__text {
    flex: 0 0 100%;
    font-size: 16px;
    opacity: 0.8;
  }
  .what-wait-item__text .btn {
    display: none;
  }
  .what-wait-item__img {
    flex: 0 0 100%;
  }
  .main-benefits {
    padding: 50px 0;
  }
  .main-video {
    padding: 50px 0;
  }
  .why-visit {
    padding: 50px 0 15px;
  }
  .why-visit-figure-left {
    display: none;
  }
  .why-visit-figure-right {
    opacity: 1;
    max-width: 160px;
  }
  .why-visit .slider-holder {
    margin-top: 65px;
  }
  .why-visit-item__text {
    font-size: 14px;
  }
  .slider-holder {
    margin-top: 100px;
  }
  .slider-navigation {
    gap: 10px;
    justify-content: center;
    width: 100%;
    top: -65px;
  }
  .slider-nav-prev, .slider-nav-next {
    width: 40px;
    height: 40px;
    border-width: 1px;
    border-radius: 6px;
  }
  .slider-nav-prev.white, .slider-nav-next.white {
    border: 1px solid #fff;
  }
  .why-visit .slider-navigation {
    top: -40px;
  }
  .why-visit-item__title {
    font-size: 16px;
  }
  .all-speakers-link {
    display: none;
  }
  .headliners-all-speakers {
    display: block;
  }
  .headliner-item {
    max-width: 250px;
  }
  .headliner-item__img {
    margin-bottom: 15px;
  }
  .headliner-item__name {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .headliner-item__position {
    font-size: 14px;
    line-height: 1.4;
  }
  .what-wait-item__more {
    display: block;
    width: 100%;
  }
  .what-wait-item__more .btn {
    margin-top: 0;
    width: 100%;
  }
  .participants {
    padding-bottom: 80px;
  }
  .participants .slider-holder-mobile {
    display: block;
  }
  .participants-button {
    margin-top: 25px;
  }
  .participants-slider {
    display: none;
  }
  .all-photos-link {
    display: none;
  }
  .mediapartners-text {
    text-align: center;
    margin: 20px 0 30px;
    line-height: 1.3;
  }
  .mediapartners .slider-holder {
    position: relative;
    margin-top: 90px;
  }
  .mediapartners .slider-navigation {
    top: -60px;
  }
  .moments .moments__head-mobile {
    padding-bottom: 65px;
  }
  .moments-text {
    text-align: center;
  }
  .moments .slider-holder {
    margin-top: 100px;
  }
  .moments .slider-navigation {
    top: -65px;
  }
  .recomendations-text {
    text-align: center;
    margin-top: 30px;
  }
  .all-news-link {
    display: none;
  }
  .navigation-center .slider-nav-prev,
  .navigation-center .slider-nav-next {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-color);
    background: transparent;
    top: -65px;
    left: 50%;
    transform: translate(5px, 0);
  }
  .navigation-center .slider-nav-prev::before,
  .navigation-center .slider-nav-next::before {
    display: none;
  }
  .navigation-center .slider-nav-prev {
    right: 50%;
    left: auto;
    transform: translate(-5px, 0);
  }
  .joy-text {
    text-align: center;
  }
  .joy-button {
    text-align: center;
    margin-top: 190px;
  }
  .joy-uzor {
    height: 80px;
    bottom: 200px;
    top: auto;
    left: 50%;
    transform: translateX(-100%);
  }
  .ambassadors-names {
    flex-grow: 1;
  }
  .ambassadors-videos {
    display: none;
  }
  .ambassadors-figure {
    opacity: 1;
    top: 80px;
  }
  .ambassador-item__content {
    opacity: 1;
    padding-bottom: 10px;
  }
  .ambassador-item__content .ambassador-video {
    display: block;
    margin: 30px auto 0;
    max-width: 246px;
  }
  .pseudo-play, .play {
    width: 42px;
    height: 42px;
  }
  .blog-items {
    display: none;
  }
  .blog .slider-holder {
    display: block;
  }
  .blog-item {
    flex-wrap: wrap;
  }
  .blog-item__img {
    display: flex;
    justify-content: center;
    flex: 0 0 100%;
  }
  .blog-item__content {
    flex: 0 0 100%;
    padding: 15px 0 10px;
  }
  .blog-item__content .more {
    display: none;
  }
  .blog-item__title {
    text-align: center;
    font-size: 18px;
    order: 1;
  }
  .blog-item__date {
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .footer-feedback__links .btn {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer-cabinet-link .btn {
    font-size: 14px;
    line-height: 21px;
  }
  .program-info h2 {
    font-size: 30px;
    margin-bottom: 100px;
  }
  .program-info h3 {
    font-size: 24px;
  }
  .program-info .text-title {
    font-size: 20px;
  }
  .program-info__partner {
    left: 30px;
    right: auto;
    top: 70px;
  }
  .info-block {
    font-size: 18px;
  }
  .typography-enabled .text-title {
    font-size: 24px;
  }
  .look-program__title {
    font-size: 24px;
  }
  .program-day {
    padding-left: 0;
  }
  .program-section {
    padding: 20px 0;
  }
  .program-section__time {
    display: none;
  }
  .program-section-author__wrapper:hover, .program-section-author__wrapper.pink:hover, .program-section-author__wrapper.violet:hover, .program-section-author__wrapper.white:hover, .program-section-author__wrapper.orange:hover, .program-section-author__wrapper.bordo:hover, .program-section-author__wrapper.yellow:hover {
    background: transparent;
    padding-left: 0;
    color: inherit;
  }
  .section-program--active {
    padding-bottom: 80px;
  }
  .gallery-popup-item {
    flex: 0 0 calc((100% - 20px) / 3);
  }
  .fancybox-slide--html {
    padding: 0;
  }
  .fancybox-content {
    background: #fff;
    padding-top: 24px;
    min-height: 100vh;
  }
  .gallery-popup-title {
    color: #000;
  }
  .fancybox-image {
    height: auto;
    max-height: 100%;
  }
  .packages-table {
    display: none;
  }
  #packages-and-orders-popup .packages-table--mobile.visible {
    display: block;
  }
  .popup {
    border-radius: 0;
  }
  .popup-title {
    font-size: 30px;
  }
  .popup-title--big {
    font-size: 40px;
  }
  .popup-nominations-content {
    margin-left: -20px;
    margin-right: -20px;
  }
  .popup-nominations-order {
    padding: 20px;
  }
  .popup-selected-nominations {
    margin-left: -20px;
    margin-right: -20px;
  }
  .popup-selected-nomination {
    border-radius: 0px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px;
  }
  .popup-selected-nomination .title {
    flex: 0 0 100%;
    margin-bottom: 10px;
  }
  .popup-selected-nomination .delete {
    position: absolute;
    right: 20px;
    top: 20px;
  }
  .popup-selected-nomination .price {
    flex: 0 0 auto;
    text-align: right;
  }
  .popup-nominations-order__message {
    padding-top: 10px;
  }
  .popup-nominations-order__summary {
    flex-wrap: wrap;
  }
  .popup-nominations-order__sum {
    flex: 0 0 100%;
    margin-bottom: 10px;
  }
  .wowawards-help-items {
    flex-wrap: wrap;
  }
  .wowawards-help-item {
    flex: 0 0 100%;
  }
  .wowawards-categories-anchors {
    overflow-x: auto;
    margin-right: -20px;
  }
  .wowawards-categories-anchors .tab-selector {
    flex-wrap: nowrap;
  }
  .wowawards-categories-anchors .tab-selector li {
    white-space: nowrap;
  }
  .wowawards-conditions .tab-selector-wrapper {
    overflow-x: auto;
    margin-right: -20px;
  }
  .wowawards-conditions .tab-selector-wrapper .tab-selector {
    flex-wrap: nowrap;
  }
  .wowawards-conditions .tab-selector-wrapper .tab-selector li {
    white-space: nowrap;
  }
  .wowawards-conditions-buttons .btn {
    font-size: 18px;
  }
  .archive-section__head-mobile {
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 30px;
  }
  .archive-section__head-mobile .slider-navigation {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
  }
  .archive-section__head {
    margin-bottom: 20px;
  }
  .archive-section__text {
    margin-bottom: 0;
    text-align: center;
  }
  .custom-select__text {
    padding-top: 9px;
    padding-bottom: 9px;
    line-height: 22px;
  }
  .page-content {
    padding: 50px 0;
  }
  .advice-banner + .page-content {
    padding-top: 10px;
  }
  .works-category__title {
    margin-bottom: 20px;
  }
  .works-nomination__title {
    margin-bottom: 20px;
  }
  .work-item-popup__characteristics-row {
    flex-wrap: wrap;
    line-height: 1.3;
  }
  .work-item-popup__characteristics-title {
    flex: 0 0 100%;
    padding: 0;
    margin-bottom: 5px;
  }
  .work-item-popup__characteristics-text {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .work-item-popup__characteristics-text .slider-holder.mt0 {
    margin-top: 65px;
  }
  .work-item-popup__characteristics-text .slider-holder .slider-nav-prev.gray,
  .work-item-popup__characteristics-text .slider-holder .slider-nav-next.gray {
    border-color: var(--text-color);
  }
  .work-item-popup__navigation {
    margin-top: 15px;
  }
  .judge-item {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .judges-filter {
    flex: 0 0 100%;
    justify-content: center;
    margin: 0;
  }
  .judges-current-category {
    flex: 0 0 100%;
    order: 1;
    text-align: center;
  }
  .judges-categories-navigation {
    flex: 0 0 100%;
    justify-content: center;
    order: 2;
    margin-top: 20px;
  }
  .slider-head.desktop-hidden {
    display: flex;
  }
}
@media (max-width: 649px) {
  .gallery-popup__links a {
    flex: 0 0 calc((100% - 10px) / 2);
  }
}
@media (max-width: 599px) {
  body {
    overflow-x: hidden;
  }
  .btn {
    font-size: 15px;
    padding: 10px 15px;
  }
  .header {
    padding: 5px 0;
  }
  .header-nav.visible {
    justify-content: flex-start;
  }
  .header__buttons a:not(.btn) {
    height: 34px;
    width: 34px;
  }
  .header__buttons a.cabinet-link {
    display: none;
  }
  .header__buttons .btn {
    display: none;
  }
  .header__mobile-links {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .first-screen {
    padding: 70px 0 50px;
  }
  .first-screen__title {
    max-width: 80%;
    margin: 0 auto 20px;
  }
  .first-screen__text {
    font-size: 16px;
    max-width: 280px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .first-screen__text br {
    display: none;
  }
  .first-screen__text span {
    display: block;
  }
  .first-screen__dates {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .first-screen__dates > div {
    flex: 0 0 100%;
    border: none;
    height: auto;
  }
  .first-screen__dates > div.simple {
    text-align: center;
  }
  .first-screen__dates > div:last-child {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .first-screen__dates > div:first-child {
    border: none;
  }
  .first-screen__dates .title {
    font-size: 18px;
  }
  .first-screen__dates .date {
    justify-content: center;
  }
  .first-screen__dates .date.big-font {
    font-size: 32px;
    margin-top: 15px;
  }
  .first-screen__dates .date.big-font .hours, .first-screen__dates .date.big-font .minutes, .first-screen__dates .date.big-font .seconds {
    width: 40px;
  }
  .first-screen-figure.one {
    max-width: 150px;
    bottom: 0;
    transform: translate(-120px, 130px);
    top: auto;
    opacity: 1;
  }
  .first-screen-figure.three {
    display: none;
  }
  .first-screen-figure-left-mobile {
    display: block;
  }
  .first-screen-figure-right-mobile {
    display: block;
  }
  .first-screen__buttons {
    flex-wrap: wrap;
  }
  .first-screen__buttons .btn {
    flex: 0 0 100%;
    font-size: 16px;
    line-height: 1.25;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .first-screen-partners {
    padding: 15px 0;
  }
  .home .first-screen-figure.one {
    max-width: 150px;
    bottom: 0;
    transform: translate(-120px, 130px);
    top: auto;
  }
  .main-menu {
    margin-bottom: 40px;
  }
  .inner-page .first-screen {
    padding: 50px 0;
  }
  .inner-page .first-screen__title, .inner-page .first-screen__title.big, .inner-page .first-screen__title.small {
    max-width: 100%;
    margin-bottom: 25px;
  }
  .inner-page .first-screen__title h1, .inner-page .first-screen__title.big h1, .inner-page .first-screen__title.small h1 {
    font-size: 38px;
  }
  .inner-page .first-screen__text {
    margin: 0 auto;
    text-align: center;
  }
  .inner-page .first-screen__dates {
    margin-bottom: 20px;
  }
  .inner-page .first-screen__dates > div {
    padding: 20px 0;
    height: auto;
  }
  .inner-page .first-screen__dates > div:last-child {
    margin-top: 0;
  }
  .inner-page .first-screen__dates .title--tt {
    font-size: 16px;
  }
  .inner-page .page-sections-links {
    padding-top: 50px;
  }
  .wowawards .first-screen {
    padding-bottom: 90px;
  }
  .wowawards .first-screen__dates {
    margin: 35px 0 65px;
  }
  .wowawards .first-screen-figure.one {
    max-width: 200px;
    transform: translate(30px, 100px);
    right: 0;
    left: auto;
  }
  .wowawards .first-screen-figure.two {
    max-width: 108px;
    top: 50px;
    bottom: auto;
  }
  .wowawards .first-screen-figure.three, .wowawards .first-screen-figure.four {
    display: none;
  }
  .program-page .first-screen-figure.three {
    display: block;
    max-width: 250px;
    opacity: 1;
    left: -70px;
  }
  .program-page .first-screen-figure.one {
    max-width: 250px;
    transform: translate(-100%, 30px);
  }
  .judges-page .first-screen-figure.one {
    max-width: 245px;
    transform: translateX(50px);
  }
  .breadcrumbs {
    font-size: 14px;
  }
  .benefit-slide {
    height: 290px;
  }
  .benefit-slide-holder {
    padding: 0;
  }
  .benefit-slide-holder.pb {
    padding: 0;
  }
  .benefit-slide--text {
    padding: 20px;
    min-height: unset;
    height: 100%;
    min-width: 280px;
  }
  .benefit-slide--text img {
    top: 50%;
    transform: translateY(-50%);
    max-height: 150px;
  }
  .benefit-slide__title {
    font-size: 52px;
  }
  .benefit-slide__text {
    font-size: 14px;
  }
  .page-sections-links {
    padding-top: 50px;
  }
  .page-sections-links-list {
    padding: 10px;
    flex-wrap: wrap;
  }
  .page-sections-links-list li {
    flex: 0 0 100%;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .what-wait-figure-right {
    opacity: 1;
    max-width: 120px;
    transform: translate(40px, -150px);
  }
  .what-wait-item__more .btn {
    font-size: 15px;
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .why-visit-item__icon {
    max-height: 76px;
  }
  .why-visit-item__icon img {
    max-height: 100%;
  }
  .ambassadors {
    padding: 50px 0;
  }
  .ambassador-item__title {
    font-size: 18px;
  }
  .ambassador-item__content {
    font-size: 14px;
    padding-top: 0;
  }
  .headliners {
    padding: 50px 0;
  }
  .headliners-button {
    margin-top: 30px;
  }
  .participants {
    padding-bottom: 50px;
  }
  .participants-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
  }
  .participants-text br {
    display: none;
  }
  .participants-button .btn {
    line-height: 20px;
    padding: 10px 5px;
  }
  .recomendations {
    padding: 50px 0;
  }
  .recomendations-text {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.8;
  }
  .recomendations-figure-left, .recomendations-figure-right {
    display: none;
  }
  .recomendations-figure-left-mobile, .recomendations-figure-right-mobile {
    display: block;
  }
  .moments {
    padding: 50px 15px;
  }
  .moments-slider.mt100 {
    margin-top: 30px;
  }
  .moments-button {
    display: block;
    margin-top: 20px;
  }
  .moments-button.visible {
    margin-top: 20px;
  }
  .moments-item {
    border-radius: 16px;
    overflow: hidden;
    height: 360px;
    display: flex;
    justify-content: center;
  }
  .moments-item a {
    height: 100%;
  }
  .moments-item img {
    height: 100%;
    width: auto;
  }
  .moments-text {
    font-size: 16px;
  }
  .moments .tabs {
    height: 425px;
  }
  .mediapartners {
    padding: 50px 0;
  }
  .mediapartners-figure-left {
    max-width: 60px;
    opacity: 1;
  }
  .mediapartners-figure-right {
    display: none;
  }
  .mediapartners-figure-right-mobile {
    display: block;
  }
  .mediapartners-item__title {
    font-size: 12px;
  }
  .moments + .mediapartners {
    padding-top: 0;
  }
  .mediapartners-item__icon {
    height: 90px;
  }
  .mediapartners-item__icon img {
    max-height: 90px;
  }
  .running-string {
    padding: 10px 0;
  }
  .running-string-line {
    font-size: 18px;
    gap: 30px;
  }
  .running-string-line img {
    max-height: 37px;
  }
  .tickets {
    padding: 50px 0;
  }
  .tickets-figure-left {
    max-width: 80px;
    opacity: 1;
  }
  .tickets-button {
    margin-top: 30px;
  }
  .ticket-item {
    min-height: 326px;
  }
  .ticket-item__price {
    margin-top: 25px;
    padding-bottom: 15px;
  }
  .ticket-item__qty {
    padding: 20px 0 15px;
    min-height: 63px;
    margin-top: auto;
  }
  .ticket-item__button .btn {
    font-size: 16px;
    line-height: 20px;
    padding: 10px;
  }
  .news-figure-right {
    max-width: 70px;
    opacity: 1;
    transform: translateY(-40px);
  }
  .news-button {
    display: block;
  }
  .news-item__img {
    margin-bottom: 15px;
  }
  .news-item__date {
    text-align: center;
    font-weight: normal;
  }
  .news-item__title {
    text-align: center;
    font-size: 18px;
  }
  .advice-banner {
    padding-top: 50px;
  }
  .banner {
    height: auto;
    padding: 20px;
    text-align: center;
    background: var(--violet-main) url("../img/banner-bg-mobile.png") center bottom no-repeat;
    background-size: 100% auto;
  }
  .banner__content {
    display: block;
    padding-bottom: 260px;
  }
  .banner__logo {
    margin-bottom: 10px;
  }
  .banner__logo img {
    max-height: 55px;
  }
  .banner__text {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  .banner__text br {
    display: none;
  }
  .banner-bg {
    display: none;
  }
  .banner-figure {
    display: none;
  }
  .banner-figure-mobile {
    display: block;
  }
  .blog {
    padding: 50px 0;
  }
  .blog-button {
    margin-top: 20px;
  }
  .blog-figure-right {
    display: none;
  }
  .blog-item {
    padding: 0;
  }
  .blog-item__img img {
    width: 100%;
  }
  .blog-item__content {
    padding: 10px 20px 20px;
  }
  .tab-selector li {
    font-weight: normal;
    height: 36px;
  }
  .accordion-item__title {
    padding: 10px 40px 10px 10px;
    font-size: 16px;
  }
  .accordion-item__title .opener {
    right: 10px;
  }
  .accordion-item__content {
    padding: 0 10px 10px;
    font-size: 14px;
    font-weight: normal;
  }
  .accordion-item__content p {
    margin-bottom: 15px;
  }
  .faq {
    padding: 50px 0;
  }
  .faq-accordion {
    margin-top: 30px;
  }
  .faq-button {
    margin-top: 30px;
  }
  .faq-figure-left {
    display: none;
  }
  .faq-figure-left-mobile {
    display: block;
  }
  .joy {
    padding: 50px 0;
  }
  .joy-text {
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.3;
  }
  .joy-uzor {
    bottom: 155px;
  }
  .joy-figure-right {
    display: block;
    max-height: 185px;
    transform: none;
    bottom: 100px;
    top: auto;
  }
  .running-string-bottom {
    display: none;
  }
  .contacts-persons .swiper {
    margin-right: -20px;
  }
  .inner-page .contacts {
    padding: 50px 0;
  }
  .inner-page .headliners + .contacts {
    padding-top: 0;
  }
  .contact-item {
    text-align: center;
    width: 200px;
    padding: 15px;
  }
  .contact-item__position {
    font-size: 14px;
  }
  .contact-item__name {
    font-size: 14px;
  }
  .contact-item__photo {
    margin: 10px 0;
  }
  .contact-item__photo img {
    max-width: 117px;
  }
  .contact-item__contacts {
    font-size: 14px;
  }
  .footer {
    padding: 30px 0;
  }
  .footer-content {
    border: none;
  }
  .footer-column {
    flex: 0 0 100%;
    padding: 0;
  }
  .footer-column:first-child, .footer-column:nth-child(2), .footer-column:last-child {
    flex: 0 0 100%;
    border: none;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }
  .footer-logo img {
    max-width: 223px;
    display: block;
    margin: 0;
  }
  .footer-description {
    font-size: 14px;
    text-align: center;
  }
  .footer-feedback {
    text-align: center;
  }
  .footer-feedback__links .btn {
    width: 100%;
  }
  .footer-menu li {
    margin-bottom: 10px;
  }
  .footer-menu a {
    font-weight: 400;
    font-size: 15px;
  }
  .footer-socials {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    margin-bottom: 15px;
  }
  .footer-socials.mobile-hidden {
    display: none;
  }
  .footer-socials.desktop-hidden {
    display: block;
  }
  .footer-socials__title {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
  }
  .footer-socials__links {
    justify-content: center;
  }
  .footer-subscribe {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer-subscribe__title {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .footer-subscribe form .dflex {
    margin-top: 10px;
    gap: 15px;
  }
  .footer-subscribe input[type=submit],
  .footer-subscribe button[type=submit] {
    font-size: 14px;
  }
  .footer-bottom {
    padding: 0;
    opacity: 0.6;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    row-gap: 10px;
    justify-content: center;
    font-size: 14px;
  }
  .footer-bottom span {
    flex: 100%;
    text-align: center;
  }
  .footer-bottom .copyright, .footer-bottom .developer {
    order: 0;
    flex: 0 0 100%;
    text-align: center;
  }
  .autowidth--mobile .swiper-slide {
    width: auto;
  }
  .section-program {
    padding: 50px 0;
  }
  .program-info {
    padding: 20px;
  }
  .program-info__partner {
    left: 20px;
    top: 60px;
  }
  .info-block {
    padding: 20px;
  }
  .look-program__title {
    padding: 20px 40px 20px 20px;
  }
  .look-program__title .opener {
    right: 15px;
  }
  .program-schedule__content .tab-selector li {
    font-size: 13px;
  }
  .program-schedule__content .tab-selector li span {
    font-size: 10px;
  }
  .program-schedule .program-schedule-day-anchor {
    flex: 0 0 100%;
    flex-wrap: wrap;
    padding: 15px;
  }
  .program-schedule .program-schedule-day-anchor__date {
    flex: 0 0 100%;
    text-align: center;
    font-size: 24px;
  }
  .program-schedule .program-schedule-day-anchor__description {
    display: none;
    flex: 0 0 100%;
    text-align: center;
  }
  .program-schedule .program-schedule-day-anchor.active {
    flex: 0 0 100%;
  }
  .program-schedule .program-schedule-day-anchor.active .program-schedule-day-anchor__date,
  .program-schedule .program-schedule-day-anchor.active .program-schedule-day-anchor__description {
    display: block;
    flex: 0 0 100%;
    text-align: center;
    padding: 0;
    border: none;
  }
  .program-schedule__halls {
    padding-top: 30px;
  }
  .effective-creative {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .effective-creative-items-bg {
    margin-top: 70px;
    max-height: 320px;
  }
  .effective-creative-items {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
  }
  .effective-creative-items-wrapper {
    overflow-x: auto;
    margin-right: -20px;
  }
  .effective-creative-item {
    flex: 0 0 240px;
  }
  .effective-creative-bg {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
  }
  .wowawards-video {
    padding-bottom: 30px;
  }
  .wowawards-stages {
    padding: 50px 0;
  }
  .wowawards-stage-items {
    margin: 30px -20px 0;
  }
  .wowawards-stage-item {
    padding: 20px;
  }
  .wowawards-stage-item__head {
    flex-wrap: wrap;
  }
  .wowawards-stage-item__title {
    font-size: 18px;
    font-weight: 600;
    flex: 0 0 100%;
    margin-bottom: 5px;
  }
  .wowawards-stage-item__date {
    text-align: left;
    flex: 0 0 100%;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
  }
  .wowawards-stage-item__text {
    font-size: 16px;
    max-width: 100%;
    margin-top: 15px;
    font-weight: 400;
    line-height: 1.3;
  }
  .wowawards-categories {
    padding-bottom: 50px;
  }
  .wowawards-categories-bg {
    display: none;
  }
  .wowawards-categories-anchors {
    margin-top: 20px;
  }
  .wowawards-categories-tabs {
    margin-top: 30px;
  }
  .wowawards-category {
    margin-top: 10px;
    border-radius: 12px;
  }
  .wowawards-category .accordion-item__title {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .wowawards-category__text {
    font-size: 14px;
    opacity: 0.8;
  }
  .wowawards-category__characteristics {
    margin-top: 15px;
  }
  .wowawards-category__characteristic {
    border-radius: 6px;
    padding: 10px 0 10px 10px;
  }
  .wowawards-category__characteristic-title {
    font-size: 16px;
    padding-right: 27px;
    letter-spacing: -0.02em;
  }
  .wowawards-category__buttons {
    margin-top: 20px;
  }
  .wowawards-category__buttons .btn {
    flex: 0 0 calc(50% - 5px);
  }
  .wowawards-help {
    padding: 50px 0;
  }
  .wowawards-help-bg-left {
    max-width: 70px;
    top: -35px;
  }
  .wowawards-help-bg-right {
    display: none;
  }
  .wowawards-help-items {
    margin-top: 25px;
    gap: 10px;
  }
  .wowawards-help-item {
    padding: 20px 15px;
  }
  .wowawards-help-item__icon {
    height: auto;
    max-width: 65px;
    margin-bottom: 15px;
  }
  .wowawards-help-item__text {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .wowawards-conditions {
    padding: 50px 0;
  }
  .wowawards-conditions-bg-left {
    max-width: 90px;
    top: 0;
  }
  .wowawards-conditions-bg-right {
    max-width: 90px;
  }
  .wowawards-conditions-anchors {
    margin-top: 20px;
  }
  .wowawards-conditions-tabs {
    margin-top: 40px;
  }
  .wowawards-conditions-buttons {
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .wowawards-conditions-buttons .btn, .wowawards-conditions-buttons .btn:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .wowawards-nomination-items {
    gap: 10px;
  }
  .wowawards-nomination-item {
    min-height: 172px;
  }
  .wowawards-nomination-item__title {
    font-size: 18px;
  }
  .wowawards-nomination-item__next-price {
    font-size: 14px;
  }
  .archive-section {
    padding: 50px 0;
  }
  .archive-section__head-mobile {
    padding-bottom: 120px;
  }
  .archive-section__head {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .archive-section__head .section-title {
    flex: 0 0 100%;
  }
  .archive-section .slider-navigation {
    margin-top: 20px;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 20px;
  }
  .archive-section .slider-navigation .custom-select {
    flex: 0 0 100%;
  }
  .archive-section__text {
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .custom-select__text {
    padding: 10px;
  }
  .custom-select__text span {
    display: block;
  }
  .archive-item__category {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .archive-item__img {
    margin-bottom: 15px;
  }
  .archive-item__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .archive__button {
    margin-top: 20px;
  }
  .archive-section + .contacts {
    padding-top: 0;
  }
  .work-items {
    column-gap: 10px;
    row-gap: 30px;
  }
  .work-item-wrapper {
    flex: 0 0 calc(50% - 5px);
  }
  .work-item__img {
    margin-bottom: 15px;
  }
  .work-item__title {
    font-size: 18px;
  }
  .finalist-label {
    left: 10px;
    top: 10px;
    font-size: 14px;
    line-height: 18px;
    padding: 7px 25px;
    font-weight: normal;
  }
  .works-page .first-screen-figure.one {
    max-width: 230px;
  }
  .works-page .first-screen-figure.two {
    display: none;
  }
  .works-filter {
    flex-wrap: wrap;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .works-filter .custom-select {
    flex: 0 0 100%;
  }
  .works-filter .custom-select__text {
    text-align: center;
  }
  .works-filter .custom-select__text span {
    display: inline-block;
  }
  .works-breadcrumbs {
    flex-wrap: wrap;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
  }
  .works-breadcrumbs li {
    flex: 0 0 100%;
    text-transform: uppercase;
    padding: 9px 0 0;
    margin: 7px 0 0;
  }
  .works-breadcrumbs li::before {
    width: 45px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .works-breadcrumbs li:first-child {
    margin-top: 0;
    padding-top: 0;
  }
  .works-categories-navigation {
    max-width: 280px;
    margin: 25px auto 0;
    flex-wrap: wrap;
  }
  .works-categories-navigation .btn {
    flex: 0 0 100%;
  }
  .works-categories-navigation .btn span {
    justify-content: center;
  }
  .work-item-popup__nomination {
    font-size: 14px;
  }
  .work-item-popup__title {
    font-size: 28px;
  }
  .work-item-popup__characteristics {
    margin-top: 30px;
  }
  .judges-filter {
    flex-wrap: wrap;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .judges-filter .custom-select {
    flex: 0 0 100%;
  }
  .judges-filter .custom-select__text {
    text-align: center;
  }
  .judges-filter .custom-select__text span {
    display: inline-block;
  }
  .judges-current-category {
    text-transform: uppercase;
  }
  .judges-categories-navigation {
    flex-wrap: wrap;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .judges-categories-navigation .btn {
    flex: 0 0 100%;
  }
  .judges-categories-navigation .btn span {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .btn--blur-mobile {
    background: rgba(49, 13, 127, 0.2);
    backdrop-filter: blur(44px);
    line-height: 24px;
    padding-top: 20px;
    padding-bottom: 20px;
    border: none;
  }
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
  .program-info {
    padding: 0;
    margin-bottom: 30px;
  }
  .program-info--active {
    padding: 20px 20px 120px;
    margin-bottom: 0;
  }
  .program-info-figure-bottom-active {
    max-width: 160px;
  }
  .program-info__text {
    line-height: 1.3;
  }
  .program-info__text > * {
    opacity: 0.8;
  }
  .program-info__text h2, .program-info__text h3 {
    opacity: 1;
  }
  .program-info__text .btn {
    opacity: 1;
    margin-top: 15px;
  }
  .program-info h2 {
    font-size: 28px;
    text-align: center;
  }
  .program-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .program-info__partner {
    left: 20px;
    right: 20px;
    justify-content: center;
  }
  .program-info__partner-logo {
    order: -1;
    margin-right: 15px;
  }
  .works-page .first-screen__title {
    text-align: center;
  }
  .look-program {
    margin-top: 10px;
  }
  .look-program__title {
    background: #fff;
    font-size: 18px;
  }
  .typography-enabled p {
    margin-bottom: 15px;
  }
  .typography-enabled .text-title {
    font-size: 18px;
  }
  .info-block {
    font-size: 16px;
  }
  .section-program + .headliners {
    padding-top: 0;
  }
  .section-program--active + .headliners {
    padding-top: 50px;
  }
  .headliner-item {
    max-width: 200px;
  }
  .mobile-bg-gray {
    background: var(--light-gray);
  }
  .mobile-bg-gray .tab-selector li {
    background: #fff;
  }
  .mobile-bg-gray .tab-selector li:hover {
    background: var(--violet-main);
  }
  .mobile-bg-gray .tab-selector li.active {
    background: var(--violet-main);
  }
  .mobile-bg-gray .tab-selector li.pink:hover {
    color: var(--rose-main);
    border-color: var(--rose-main);
    background: inherit;
  }
  .mobile-bg-gray .tab-selector li.pink.active {
    color: #fff;
    border-color: var(--rose-main);
    background: var(--rose-main);
  }
  .mobile-bg-gray .tab-selector li.violet:hover {
    color: var(--violet-main);
    border-color: var(--violet-main);
    background: inherit;
  }
  .mobile-bg-gray .tab-selector li.violet.active {
    color: #fff;
    border-color: var(--violet-main);
    background: var(--violet-main);
  }
  .mobile-bg-gray .tab-selector li.white:hover {
    color: var(--rose-main);
    border-color: var(--rose-main);
    background: inherit;
  }
  .mobile-bg-gray .tab-selector li.white.active {
    color: var(--rose-main);
    border-color: var(--rose-main);
    background: #fff;
  }
  .mobile-bg-gray .tab-selector li.orange:hover {
    color: var(--orange-main);
    border-color: var(--orange-main);
    background: inherit;
  }
  .mobile-bg-gray .tab-selector li.orange.active {
    color: #fff;
    border-color: var(--orange-main);
    background: var(--orange-main);
  }
  .mobile-bg-gray .tab-selector li.bordo:hover {
    color: var(--bordo-main);
    border-color: var(--bordo-main);
    background: inherit;
  }
  .mobile-bg-gray .tab-selector li.bordo.active {
    color: #fff;
    border-color: var(--bordo-main);
    background: var(--bordo-main);
  }
  .mobile-bg-gray .tab-selector li.yellow:hover {
    color: var(--yellow-main);
    border-color: var(--yellow-main);
    background: inherit;
  }
  .mobile-bg-gray .tab-selector li.yellow.active {
    color: #fff;
    border-color: var(--yellow-main);
    background: var(--yellow-main);
  }
  .mobile-bg-gray .contact-item {
    background: #fff;
  }
  .program-schedule {
    margin-top: 10px;
  }
  .program-schedule__content {
    padding-top: 20px;
  }
  .program-schedule__content .tab-selector li {
    flex: 0 0 100%;
    font-size: 16px;
    justify-content: center;
    height: 48px;
  }
  .program-schedule__content .tab-selector li span {
    font-size: 16px;
  }
  .program-schedule__halls {
    padding-top: 20px;
  }
  .program-schedule .program-schedule-day-anchor__date {
    font-size: 18px;
  }
  .program-schedule .program-schedule-day-anchor__description {
    margin-top: 10px;
  }
  .program-schedule__notice {
    margin-left: -20px;
    margin-right: -20px;
    font-size: 18px;
    padding: 20px 20px 20px 80px;
    line-height: 1.2;
  }
  .program-schedule__notice::before {
    left: 20px;
    top: 20px;
    transform: none;
  }
  .program-section:first-child {
    border: none;
  }
  .program-section.with-partner {
    padding-top: 20px;
  }
  .program-section__actions {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .program-section__actions .role {
    font-size: 14px;
    color: #525252;
    opacity: 0.65;
  }
  .program-section__partner {
    order: 2;
    flex: 0 0 100%;
    justify-content: center;
    margin-top: 15px;
  }
  .program-section__title + .program-section__actions {
    margin-top: 20px;
  }
  .program-section__actions + .program-section__authors {
    margin-top: 20px;
  }
  .program-section__authors.with-borders {
    padding-top: 20px;
  }
  .program-section__favorite {
    order: 1;
    margin-left: auto;
  }
  .program-section__favorite-popup {
    max-width: calc(100vw - 40px);
    padding: 10px;
  }
  .program-section__favorite-popup .title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .program-section__favorite-buttons {
    flex-wrap: wrap;
  }
  .program-section__favorite-buttons .btn {
    flex: 0 0 100%;
  }
  .program-section__tag {
    margin: 0 10px 0 0;
    font-size: 13px;
    line-height: 15px;
    padding: 5px 10px;
  }
  .program-section__time-period {
    font-size: 16px;
    text-align: center;
  }
  .program-section__title {
    font-size: 18px;
    text-align: center;
  }
  .program-section-author__wrapper {
    align-items: flex-start;
  }
  .program-section-author__info {
    padding-bottom: 30px;
    position: relative;
  }
  .program-section-author__name .role {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .program-section-author__photo + .program-section-author__info {
    padding-left: 8px;
  }
  .program-section-author__theme {
    text-align: center;
    font-size: 18px;
  }
  .program-section__title + .program-section__authors .program-section-author:first-child .program-section-author__info {
    padding-bottom: 0;
  }
  .program-section__title + .program-section__authors .program-section-author:first-child .program-section-author__name .role {
    display: none;
  }
  .program-page--active .first-screen {
    padding-bottom: 110px;
  }
  .program-page--active .first-screen__dates {
    margin-bottom: 70px;
  }
  .program-page--active .first-screen__dates > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .contacts + .joy {
    padding-top: 0;
  }
  .contacts-head {
    margin-left: -20px;
    margin-right: -20px;
  }
  .contacts-slider-anchors {
    margin-left: 20px;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
  .tab-selector li {
    padding-left: 20px;
    padding-right: 20px;
  }
  .gallery-popup__links {
    gap: 5px;
  }
  .gallery-popup__links a {
    flex: 0 0 calc((100% - 5px) / 2);
    font-size: 11px;
  }
  .fancybox-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .slider-nav-prev.mobile-hidden, .slider-nav-next.mobile-hidden {
    display: flex;
  }
  .popup-title {
    font-size: 28px;
  }
  .popup-title--big {
    font-size: 28px;
  }
  .popup-nominations-content {
    margin-top: 25px;
  }
  .popup-nominations, .popup-nominations-order {
    border-radius: 12px;
  }
  .popup-nominations-order__summary {
    border: none;
    padding-top: 10px;
  }
  .popup-nominations-order__summary .btn {
    width: 100%;
  }
  .popup-nominations-order__message {
    font-size: 14px;
  }
  .popup-selected-nomination .title {
    padding-right: 25px;
  }
  .popup-nomination__title {
    padding: 20px;
    font-size: 16px;
  }
  .popup-nomination__content {
    padding: 20px;
  }
  .popup-nomination__list li {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .popup-nomination__list li .title {
    flex: 0 0 100%;
    line-height: 1.2;
  }
  .popup input[type=submit], .popup button[type=submit] {
    width: 100%;
    max-width: 280px;
  }
  input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
    padding: 0 15px;
  }
  .fancybox-content {
    padding-top: 70px;
  }
  .fancybox-slide--html .fancybox-close-small {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    top: 0;
  }
  .wowawards-category__buttons {
    flex-wrap: wrap;
  }
  .wowawards-category__buttons .btn {
    flex: 0 0 100%;
    font-size: 15px;
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .accordion-item__title .opener svg {
    width: 16px;
    height: auto;
  }
  .wowawards-help-item {
    padding: 20px 10px;
  }
  .wowawards-help-item__title {
    font-size: 18px;
  }
  .wowawards-help-item .btn {
    font-size: 15px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .moments .center-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .moments-text {
    line-height: 1.3;
  }
  .moments .tabs {
    height: 365px;
  }
  .moments-item {
    height: 300px;
    max-width: unset;
  }
  .archive-item {
    max-width: 280px;
  }
  .footer-feedback__links li {
    margin-bottom: 7px;
  }
  .footer-feedback__links .btn {
    font-size: 14px;
    line-height: 18px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .footer-socials {
    margin-top: 25px;
  }
  .works-category__title {
    text-align: center;
  }
  .works-nomination {
    margin-bottom: 30px;
  }
  .works-nomination__title {
    text-align: center;
  }
  .works-category + .banner {
    margin-bottom: 30px;
  }
  .work-item-wrapper {
    flex: 0 0 100%;
  }
  .work-items {
    row-gap: 20px;
  }
  .work-item__title {
    margin-bottom: 10px;
  }
  .work-item-popup__nomination {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
  }
  .work-item-popup__title {
    text-align: center;
  }
  .work-item-popup__characteristics-row.mt-big {
    margin-top: 20px;
  }
  .works-page__head {
    margin-top: 10px;
  }
  .works-breadcrumbs {
    margin-top: 40px;
  }
  .works-categories-navigation {
    margin-top: 40px;
  }
  .judges-page__head {
    margin-top: 10px;
  }
  .judges-filter .custom-select {
    flex: 0 0 100%;
  }
  .judges-filter .custom-select__text {
    text-align: center;
  }
  .judges-filter .custom-select__text span {
    display: inline-block;
  }
  .judges-current-category {
    margin-top: 40px;
  }
  .judges-categories-navigation {
    margin-top: 40px;
  }
  .judges-category__title {
    text-align: center;
  }
  .judge-items {
    row-gap: 25px;
  }
  .judge-item {
    flex: 0 0 100%;
  }
  .judge-item__img {
    margin-bottom: 10px;
  }
  .judge-item__name {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .judge-item__position {
    font-size: 14px;
  }
  .why-visit-item__text {
    font-size: 12px;
    line-height: 1.4;
  }
  .participant-slide-mobile .participant-slide-company {
    width: auto;
    height: auto;
    aspect-ratio: 1/1;
  }
}