@charset "UTF-8";
/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
/* root */
:root {
  /* text color */
  --primary-text-color: #FFFFFF;
  --secondary-text-color: #797979;
  --tertiary-text-color: #000000;
  /* font-family */
  --primary-font-family: "Unbounded", sans-serif;
  /* font-weight */
  --primary-font-weight: 400;
  --secondary-font-weight: 500;
  --tertiary-font-weight: 600;
  --quaternary-font-weight: 700;
  --fifth-font-weight: 300;
  /* border-color */
  --primary-border-color: #FFFFFF;
  --secondary-border-color: #ECECEC;
  /* btn-color */
  --primary-btn-color: #E6E6E6;
  --secondary-btn-color: #FFFFFF;
  --tertiary-btn-color: #0F0F21;
  --quaternary-btn-color: #242565;
  /* background-color */
  --primary-background-color: #0C0C0C;
  --secondary-background-color: #282828;
  --tertiary-background-color: #FFFFFF;
}

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

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  text-decoration: none;
}

a:focus,
a:hover,
a:active {
  outline: none !important;
}

button {
  margin: 0;
  padding: 0;
  vertical-align: top;
  border: 0;
  background: none;
  border-radius: 0;
}

button:focus,
button:hover,
button:active {
  outline: none !important;
}

img,
svg {
  display: block;
  vertical-align: top;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

input:focus,
input:hover,
input:active,
textarea:focus,
textarea:hover,
textarea:active {
  outline: none !important;
}

iframe {
  vertical-align: top;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* html */
html {
  position: relative;
  min-width: 320px;
  min-height: 100%;
  font-size: 1rem;
  line-height: 1.5;
  background: var(--primary-background-color);
}
html:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg/main-bg.jpg) center top no-repeat;
  background-size: 120rem 875rem;
  content: "";
}

/* body */
body {
  color: var(--primary-text-color);
  font-family: var(--primary-font-family);
  font-weight: var(--primary-font-weight);
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

/* a */
a {
  color: var(--primary-text-color);
  text-decoration: none;
  transition: color 0.5s linear;
}
a:hover {
  color: var(--primary-text-color);
}

/* b, strong */
b, strong {
  font-weight: var(--fifth-font-weight);
}

/* ul, ol */
ul, ol {
  list-style: none;
}

/* label */
label {
  display: block;
  margin: 0 0 0.3125rem;
  font-size: 1rem;
  font-weight: var(--primary-font-weight);
  line-height: 1.5rem;
  cursor: text;
}

/* input */
input[type=tel],
input[type=text],
input[type=email],
input[type=password] {
  margin: 0;
  padding: 0 1.25rem;
  width: 100%;
  height: 3.625rem;
  color: var(--primary-text-color);
  font-size: 1rem;
  font-family: var(--primary-font-family);
  font-weight: var(--primary-font-weight);
  border: 0.0625rem solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgb(12, 13, 15) 0%, rgb(7, 8, 10) 100%);
  border-radius: 0.75rem;
  box-shadow: 0 0.0625rem 0.0625rem 0 rgba(255, 255, 255, 0.1) inset;
  transition: 0.5s all;
}

input[type=tel]:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus {
  outline: none !important;
}

input[type=tel]::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=password]::-moz-placeholder {
  color: var(--secondary-text-color);
}

input[type=tel]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder {
  color: var(--secondary-text-color);
}

/* input-field */
.input-field {
  position: relative;
  padding: 0 0.875rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgb(12, 13, 15) 0%, rgb(7, 8, 10) 100%);
  border-radius: 0.75rem;
  box-shadow: 0 0.0625rem 0.0625rem 0 rgba(255, 255, 255, 0.1) inset;
}
.input-field label {
  position: absolute;
  display: block;
  margin: 0;
  top: 1.125rem;
  left: 1.25rem;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.25rem;
  transition: 0.5s all;
}
.input-field input {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}
.input-field input:focus {
  padding: 1.625rem 0 0.75rem;
}
.input-field input:focus + label {
  top: 0.5625rem;
  left: 0.875rem;
  font-size: 0.75rem;
  line-height: 0.9375rem;
}
.input-field input:valid {
  padding: 1.625rem 0 0.75rem;
}
.input-field input:valid + label {
  top: 0.5625rem;
  left: 0.875rem;
  font-size: 0.75rem;
  line-height: 0.9375rem;
}

/* textarea */
textarea {
  margin: 0;
  padding: 1.25rem 1.25rem;
  width: 100%;
  height: 13.5rem;
  color: var(--primary-text-color);
  font-size: 1rem;
  font-family: var(--primary-font-family);
  font-weight: var(--primary-font-weight);
  line-height: 1.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgb(12, 13, 15) 0%, rgb(7, 8, 10) 100%);
  border-radius: 0.75rem;
  box-shadow: 0 0.0625rem 0.0625rem 0 rgba(255, 255, 255, 0.1) inset;
  transition: 0.5s all;
  overflow: auto;
  resize: none;
}
textarea::-moz-placeholder {
  color: var(--secondary-text-color);
}
textarea::-webkit-input-placeholder {
  color: var(--secondary-text-color);
}
textarea:focus {
  outline: none !important;
}

/* wrapper */
.wrapper {
  position: relative;
}

/* container */
.container {
  margin: 0 auto;
  padding: 0 0.9375rem;
  max-width: 91.875rem;
  width: 100%;
}

/* btn */
.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 1.125rem 1.25rem;
  vertical-align: top;
  color: var(--primary-text-color);
  font-size: 1.125rem;
  font-family: var(--primary-font-family);
  font-weight: var(--tertiary-font-weight);
  line-height: 1.5rem;
  letter-spacing: 0.0125rem;
  border: 0;
  background: rgba(0, 0, 0, 0.33);
  backdrop-filter: blur(5rem);
  border-radius: 2.125rem;
  cursor: pointer;
  transition: 0.5s all;
  box-shadow: none;
}
.btn:hover {
  color: var(--primary-text-color);
  background: rgba(0, 0, 0, 0.66);
}
.btn:before {
  position: absolute;
  inset: 0;
  border-radius: 2.125rem;
  padding: 0.0625rem;
  background: linear-gradient(176deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.3;
  content: "";
}
.btn span {
  position: relative;
  display: block;
  z-index: 5;
}
.btn_style-two:before {
  padding: 0.125rem;
  background: linear-gradient(131.09deg, rgba(250, 21, 147, 0.5) 2.08%, rgba(117, 0, 55, 0.5) 37.27%, rgba(0, 75, 107, 0.5) 67.87%, rgba(149, 222, 255, 0.5) 100%);
  background-size: 300% 300%;
  opacity: 1;
  transition: 0.5s opacity;
  animation: gradient-wave 5s ease-in-out infinite;
}
.btn_style-two:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(131.09deg, rgba(250, 21, 147, 0.9) 2.08%, rgba(117, 0, 55, 0.5) 37.27%, rgba(0, 75, 107, 0.9) 67.87%, rgba(149, 222, 255, 0.9) 100%);
  border-radius: 2.125rem;
  content: "";
  transition: 0.5s opacity;
  opacity: 0;
}
.btn_style-two:hover:before {
  opacity: 0;
}
.btn_style-two:hover:after {
  opacity: 1;
}
.btn_style-two span {
  position: relative;
  display: block;
  z-index: 10;
}
.btn_style-three {
  padding: 0 0.9375rem;
  font-size: 0.875rem;
  line-height: 2rem;
  background: radial-gradient(61.31% 716.58% at 50% 34.17%, #FA1593 0%, #750037 35.94%, #004B6B 67.19%, #95DEFF 100%);
  border-radius: 1.125rem;
  box-shadow: 0.125rem 0.125rem 0.2875rem 0rem rgba(255, 255, 255, 0.75) inset, 0.75rem -0.5rem 2.8rem 0rem #81DCFF inset, 0.0625rem 0.1875rem 0.4875rem 0.3125rem rgba(121, 195, 255, 0.33);
  backdrop-filter: blur(2.1rem);
}
.btn_style-three:before {
  display: none;
}
.btn_style-three:hover {
  background: radial-gradient(61.31% 716.58% at 50% 34.17%, #FA1593 0%, #750037 35.94%, #004B6B 67.19%, #95DEFF 100%);
  opacity: 0.8;
}
.btn_full-size {
  display: flex;
  width: 100%;
}

@keyframes gradient-wave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* title */
.title {
  margin: 0 0 4.6875rem;
  font-size: 2.25rem;
  font-weight: var(--quaternary-font-weight);
  text-align: center;
  line-height: 2.5rem;
}

/* small-title */
.small-title {
  margin: 0 0 4.6875rem;
  font-size: 1.25rem;
  font-weight: var(--quaternary-font-weight);
  text-align: center;
  line-height: 1.5rem;
}

/* btn-panel */
.btn-panel {
  padding: 1.625rem 0 0;
}

/* header */
.header__top-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0 0;
}
.header__social {
  display: flex;
  align-items: center;
  gap: 0 1.875rem;
}
.header__social a {
  transition: 0.5s opacity;
}
.header__social a:hover {
  opacity: 0.8;
}
.header__social img {
  height: 1.5625rem;
}
.header__col {
  display: flex;
  align-items: center;
  gap: 0 1.875rem;
}
.header__bottom-panel {
  display: flex;
  flex-direction: column;
  padding: 3.5625rem 0 0;
  gap: 3.25rem 0;
  align-items: center;
}
.header__mobile-dropdown {
  display: none;
  padding: 20px 15px;
}

/* personal-account-btn */
.personal-account-btn {
  display: inline-flex;
  padding: 0 0.6875rem;
  font-size: 0.875rem;
  line-height: 1.4375rem;
  border: 0.0625rem solid var(--primary-border-color);
  border-radius: 2.5rem;
  opacity: 0.3;
  transition: 0.5s opacity;
}
.personal-account-btn:hover {
  opacity: 0.6;
}

/* language */
.language {
  display: flex;
  align-items: center;
  gap: 0 2.1875rem;
}
.language li {
  font-size: 0.875rem;
  letter-spacing: 7%;
}
.language li.active a {
  color: var(--primary-text-color);
}
.language li.active a:after {
  display: block;
}
.language a {
  position: relative;
  display: block;
  color: var(--secondary-text-color);
}
.language a:hover {
  color: var(--primary-text-color);
}
.language a:after {
  position: absolute;
  display: none;
  width: 1.75rem;
  height: 0.125rem;
  left: 50%;
  bottom: -0.125rem;
  transform: translateX(-50%);
  background: var(--tertiary-background-color);
  content: "";
}

/* main-nav */
.main-nav {
  position: relative;
  padding: 0.0625rem;
  width: 100%;
  border-radius: 2.125rem;
}
.main-nav:before {
  position: absolute;
  inset: 0;
  border-radius: 2.125rem;
  padding: 0.0625rem;
  background: linear-gradient(178deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.3;
  content: "";
}
.main-nav ul {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4.5rem;
  z-index: 3;
}
.main-nav li {
  position: relative;
}
.main-nav a {
  display: block;
  font-size: 1rem;
  line-height: 1.25rem;
}
.main-nav a:hover {
  color: var(--secondary-text-color);
}
.main-nav__sticker {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  padding: 0.0625rem 0 0.1875rem;
  min-width: 3.5rem;
  top: -0.875rem;
  right: -2.8125rem;
  color: var(--tertiary-text-color);
  font-size: 0.625rem;
  font-weight: var(--quaternary-font-weight);
  line-height: 0.6875rem;
  background: var(--tertiary-background-color);
  border-radius: 0.625rem;
}

/* mobile-btn */
.mobile-btn {
  position: relative;
  display: none;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
.mobile-btn:before {
  position: absolute;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  top: 0;
  left: 0;
  background: url(../img/icons/mobile-menu.svg) center no-repeat;
  background-size: 100%;
  cursor: pointer;
  content: "";
  transition: 0.5s opacity;
}
.mobile-btn:after {
  position: absolute;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  top: 0;
  left: 0;
  background: url(../img/icons/mobile-menu-close.svg) center no-repeat;
  background-size: 100%;
  cursor: pointer;
  content: "";
  opacity: 0;
  transition: 0.5s opacity;
}
.mobile-btn.open:before {
  opacity: 0;
}
.mobile-btn.open:after {
  opacity: 1;
}

/* hero-section */
.hero-section {
  padding: 2.25rem 0 0;
}

/* hero */
.hero {
  display: flex;
  align-items: flex-start;
  gap: 0 6.6875rem;
  margin: 0 0 1.0625rem;
}
.hero__description {
  width: 100%;
}
.hero__title {
  margin: 0 0 2.25rem;
  color: transparent;
  font-size: 3rem;
  font-weight: var(--tertiary-font-weight);
  line-height: 4.1875rem;
  background: linear-gradient(to right, #a2a2a2, #dfdfdf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__title span {
  color: transparent;
  background: linear-gradient(to right, #D911CA, #0EDCDC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__poster {
  position: relative;
  flex-shrink: 0;
  padding: 0.0625rem;
  width: 33.25rem;
  height: 39.75rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5rem);
  border-radius: 2.125rem;
  overflow: hidden;
}
.hero__poster:before {
  position: absolute;
  inset: 0;
  border-radius: 2.125rem;
  padding: 0.0625rem;
  background: linear-gradient(130deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.33;
  content: "";
}
.hero__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.0625rem 3.125rem;
}
.hero__btns .btn:first-child {
  grid-column: 1/-1;
}

/* tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.0625rem;
  margin: 0 0 2.25rem;
}

/* tag */
.tag {
  display: inline-flex;
  padding: 0 1.5625rem;
  font-size: 1.375rem;
  line-height: 2.625rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.05);
  background: var(--primary-background-color);
  border-radius: 2.5rem;
}

/* exhibition-panel */
.exhibition-panel {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.875rem;
  background: rgba(0, 0, 0, 0.33);
  backdrop-filter: blur(5rem);
  border-radius: 2.125rem;
  overflow: hidden;
}
.exhibition-panel:before {
  position: absolute;
  inset: 0;
  border-radius: 2.125rem;
  padding: 0.0625rem;
  background: linear-gradient(130deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.33;
  content: "";
}

/* exhibition-info */
.exhibition-info {
  display: flex;
  flex-direction: column;
  gap: 0.875rem 0;
}
.exhibition-info__item {
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
}
.exhibition-info__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
}
.exhibition-info__icon img {
  height: 100%;
}
.exhibition-info__description {
  display: flex;
  flex-direction: column;
}
.exhibition-info__date {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.exhibition-info__text {
  display: block;
  color: var(--secondary-text-color);
  font-size: 0.5rem;
  line-height: 1rem;
}

/* timer */
.timer {
  display: flex;
  align-items: flex-start;
}
.timer__item {
  display: flex;
  flex-direction: column;
  gap: 1.875rem 0;
  width: 7.1875rem;
  text-align: center;
}
.timer__number {
  display: block;
  font-size: 2.25rem;
  line-height: 2.75rem;
}
.timer__text {
  display: block;
  font-size: 0.875rem;
}
.timer__bullet {
  width: 5.375rem;
  font-size: 2.25rem;
  text-align: center;
  line-height: 2.75rem;
}

/* business-info-section */
.business-info-section {
  padding: 6.875rem 0 0;
}

/* advantages */
.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.9375rem 4.0625rem;
  margin: 0 0 7rem;
}
.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.advantages__title {
  display: block;
  margin: 0 0 1.25rem;
  min-height: 3rem;
  font-size: 1rem;
  font-weight: var(--tertiary-font-weight);
  line-height: 1.5rem;
}
.advantages p {
  font-size: 0.75rem;
  line-height: 1.125rem;
}

/* exhibition */
.exhibition {
  display: flex;
  align-items: flex-start;
  gap: 0 1.625rem;
}
.exhibition__description {
  width: 100%;
}
.exhibition__description p {
  font-size: 0.75rem;
  line-height: 1.0625rem;
}
.exhibition__img {
  margin: 0 auto 2.6875rem;
  width: 13rem;
}
.exhibition__img img {
  width: 100%;
}
.exhibition__title {
  display: block;
  margin: 0 0 2.5rem;
  font-size: 0.875rem;
  font-weight: var(--secondary-font-weight);
  line-height: 1.25rem;
}
.exhibition__list {
  margin: 0 0 3rem;
}
.exhibition__list li {
  position: relative;
  padding: 0 0 0 1.25rem;
  font-size: 0.875rem;
  font-weight: var(--fifth-font-weight);
  line-height: 1.125rem;
}
.exhibition__list li:before {
  position: absolute;
  display: block;
  width: 0.1875rem;
  height: 0.1875rem;
  top: 0.5625rem;
  left: 0.5625rem;
  background: var(--tertiary-background-color);
  border-radius: 100%;
  content: "";
}

/* exhibition-widget */
.exhibition-widget {
  position: relative;
  flex-shrink: 0;
  padding: 2.6875rem 2.4375rem 3.875rem;
  width: 22.125rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5rem);
  border-radius: 2.125rem;
  overflow: hidden;
}
.exhibition-widget:before {
  position: absolute;
  inset: 0;
  border-radius: 2.125rem;
  padding: 0.0625rem;
  background: linear-gradient(130deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.33;
  content: "";
}
.exhibition-widget__title {
  margin: 0 0 2.1875rem;
  font-size: 1.5rem;
  font-weight: var(--quaternary-font-weight);
  text-align: center;
  line-height: 1.375rem;
}

/* exhibition-gallery */
.exhibition-gallery {
  display: flex;
  flex-direction: column;
  gap: 2.1875rem 0;
}
.exhibition-gallery__item {
  height: 18.125rem;
  overflow: hidden;
  border-radius: 1.125rem;
}
.exhibition-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* exhibition-areas-section */
.exhibition-areas-section {
  padding: 10.75rem 0 0;
}

/* exhibition-areas */
.exhibition-areas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.75rem 1.75rem;
}
.exhibition-areas__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem 0;
}
.exhibition-areas__dec {
  position: relative;
  flex-shrink: 0;
  padding: 0.0625rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 100%;
}
.exhibition-areas__dec:before {
  position: absolute;
  display: block;
  width: 1.625rem;
  height: 1.625rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-background-color);
  border-radius: 100%;
  content: "";
}
.exhibition-areas__description {
  position: relative;
  flex-shrink: 0;
  flex-grow: 1;
  padding: 1.25rem 0.375rem 1.625rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5rem);
  border-radius: 2.125rem;
  overflow: hidden;
}
.exhibition-areas__description:before {
  position: absolute;
  inset: 0;
  border-radius: 2.125rem;
  padding: 0.0625rem;
  background: linear-gradient(130deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.33;
  content: "";
}
.exhibition-areas__description p {
  margin: 0 0 1.125rem;
  min-height: 3.75rem;
  font-size: 0.75rem;
  text-align: center;
  line-height: 0.9375rem;
}
.exhibition-areas__title {
  margin: 0 0 1.25rem;
  min-height: 3.75rem;
  font-size: 1rem;
  font-weight: var(--quaternary-font-weight);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25rem;
  background: linear-gradient(90deg, #A1A1A1 0%, #E8E8E8 51.44%, #A1A1A1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.exhibition-areas__list li {
  position: relative;
  padding: 0 0 0 1.625rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.exhibition-areas__list li:before {
  position: absolute;
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  top: 0.5rem;
  left: 0.75rem;
  background: var(--tertiary-background-color);
  border-radius: 100%;
  content: "";
}

/* participation-formats-section */
.participation-formats-section {
  padding: 7.375rem 0 0;
}

/* participation-formats */
.participation-formats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.5rem;
}
.participation-formats__item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1.0625rem 1.1875rem 1.1875rem;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5rem);
  border-radius: 2.125rem;
  overflow: hidden;
}
.participation-formats__item:before {
  position: absolute;
  inset: 0;
  border-radius: 2.125rem;
  padding: 0.0625rem;
  background: linear-gradient(130deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.33;
  content: "";
}
.participation-formats__title {
  font-size: 1.5rem;
  font-weight: var(--quaternary-font-weight);
  line-height: 1.875rem;
}
.participation-formats__img {
  margin: 0 0 0.3125rem;
}
.participation-formats__img img {
  width: 100%;
}
.participation-formats__description {
  margin-top: auto;
}
.participation-formats__info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  margin: 0 0 1rem;
}
.participation-formats__info-list:last-child {
  margin: 0;
}
.participation-formats__info-list li {
  padding: 0 0.9375rem;
  color: var(--tertiary-text-color);
  font-size: 0.875rem;
  font-weight: var(--secondary-font-weight);
  line-height: 2rem;
  background: linear-gradient(86.73deg, rgba(255, 255, 255, 0.6) -12.71%, rgba(255, 255, 255, 0.75) 72.71%);
  border-radius: 1.125rem;
}
.participation-formats__info-list li.selected {
  background: url(../img/bg/list-bg.png) center no-repeat;
}
.participation-formats p {
  margin: 0 0 0.875rem;
  font-size: 0.75rem;
  line-height: 1.0625rem;
}
.participation-formats__info {
  margin: 0 0 2.5rem;
}
.participation-formats__info dt {
  font-size: 0.75rem;
  font-weight: var(--quaternary-font-weight);
  line-height: 1.0625rem;
}
.participation-formats__info ul li {
  position: relative;
  padding: 0 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: var(--fifth-font-weight);
  line-height: 1.0625rem;
  text-shadow: 0rem 0.125rem 0.125rem rgba(0, 0, 0, 0.25);
}
.participation-formats__info ul li:before {
  position: absolute;
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  top: 0.5rem;
  left: 0.4375rem;
  background: var(--tertiary-background-color);
  border-radius: 100%;
  box-shadow: 0rem 0.125rem 0.125rem 0rem rgba(0, 0, 0, 0.25);
  content: "";
}

/* participation-formats-section */
.participation-formats-section {
  padding: 8.875rem 0 0;
}

/* days-section */
.days-section {
  padding: 8.875rem 0 0;
}

/* days */
.days {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.625rem 1.625rem;
}
.days__item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1.25rem 1.875rem 1.875rem;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5rem);
  border-radius: 2.125rem;
  overflow: hidden;
}
.days__item:before {
  position: absolute;
  inset: 0;
  border-radius: 2.125rem;
  padding: 0.0625rem;
  background: linear-gradient(130deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.33;
  content: "";
}
.days__item p {
  margin: 0 0 3.125rem;
  min-height: 2.75rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.days__title {
  margin: 0 0 1.75rem;
  min-height: 3.125rem;
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.5625rem;
  background: linear-gradient(90deg, #A1A1A1 0%, #E8E8E8 51.44%, #A1A1A1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.days__list {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem 0;
}
.days__list li {
  display: flex;
  align-items: flex-start;
  gap: 0 0.5rem;
}
.days__time {
  display: block;
  flex-shrink: 0;
  width: 7.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.days__text {
  display: block;
  font-size: 0.875rem;
  line-height: 1.375rem;
}

/* speakers-section */
.speakers-section {
  padding: 7.6875rem 0 0;
}

/* speakers */
.speakers {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem 3rem;
}
.speakers__item {
  display: flex;
  flex-direction: column;
}
.speakers__img {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 12.5rem;
  border: 0.125rem solid var(--primary-border-color);
  background: var(--primary-background-color);
  border-radius: 100%;
  overflow: hidden;
  z-index: 5;
}
.speakers__img:after {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.875rem;
  font-weight: var(--quaternary-font-weight);
  line-height: 1.375rem;
  content: "Скоро";
  z-index: 2;
}
.speakers__img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
}
.speakers__description {
  position: relative;
  flex-grow: 1;
  margin: -6.25rem 0 0;
  padding: 7.1875rem 1.25rem 1.5rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5rem);
  overflow: hidden;
  border-radius: 0 0 2.5rem 2.5rem;
}
.speakers__description:before {
  position: absolute;
  inset: 0;
  padding: 0.0625rem;
  background: linear-gradient(230deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.33;
  border-radius: 0 0 2.5rem 2.5rem;
  content: "";
}
.speakers__name {
  display: block;
  margin: 0 0 1rem;
  min-height: 2.75rem;
  font-size: 0.875rem;
  font-weight: var(--quaternary-font-weight);
  line-height: 1.375rem;
}
.speakers__post {
  display: block;
  min-height: 2.75rem;
  color: transparent;
  font-size: 0.875rem;
  font-weight: var(--quaternary-font-weight);
  line-height: 1.375rem;
  background: linear-gradient(to right, #D911CA, #0EDCDC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* experience-section */
.experience-section {
  padding: 9.1875rem 0 0;
}

/* experience-col */
.experience-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.625rem;
}
.experience-col__item {
  display: flex;
  flex-direction: column;
  gap: 1.625rem 0;
}

/* brands */
.brands {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9375rem 1.875rem;
  padding: 1.875rem 1.25rem 1.25rem;
  background: rgba(0, 0, 0, 0.67);
  backdrop-filter: blur(5rem);
  border-radius: 2.125rem;
  overflow: hidden;
}
.brands:before {
  position: absolute;
  inset: 0;
  padding: 0.0625rem;
  background: linear-gradient(130deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.33;
  content: "";
  border-radius: 2.125rem;
}

/* people */
.people {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1.4375rem;
  padding: 2.125rem 1.0625rem;
  background: rgba(0, 0, 0, 0.33);
  backdrop-filter: blur(5rem);
  border-radius: 2.125rem;
  overflow: hidden;
}
.people:before {
  position: absolute;
  inset: 0;
  padding: 0.0625rem;
  background: linear-gradient(130deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.33;
  content: "";
  border-radius: 2.125rem;
}
.people__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.people__img {
  width: 4.75rem;
  height: 4.75rem;
  border: 0.125rem solid var(--primary-border-color);
  border-radius: 100%;
  overflow: hidden;
}
.people__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.people__name {
  margin: -1.125rem 0 0.625rem;
  font-size: 0.5rem;
  line-height: 0.625rem;
}
.people__logo {
  width: 3.125rem;
}
.people__logo img {
  width: 100%;
}

/* statistics */
.statistics {
  display: flex;
  flex-direction: column;
  gap: 1.625rem 0;
}
.statistics__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 3.75rem;
  padding: 4.125rem 2.3125rem 4.125rem 2.75rem;
  background: rgba(0, 0, 0, 0.67);
  backdrop-filter: blur(5rem);
  border-radius: 2.125rem;
  overflow: hidden;
}
.statistics__item:before {
  position: absolute;
  inset: 0;
  padding: 0.0625rem;
  background: linear-gradient(130deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.33;
  content: "";
  border-radius: 2.125rem;
}
.statistics__img {
  flex-shrink: 0;
  width: 9.375rem;
}
.statistics__img img {
  width: 100%;
}
.statistics__description {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 2.5rem 0;
}
.statistics__title {
  display: block;
  font-size: 1.5rem;
  font-weight: var(--secondary-font-weight);
  line-height: 1.875rem;
}
.statistics__number {
  display: block;
  font-size: 4rem;
  font-weight: var(--secondary-font-weight);
  line-height: 4.375rem;
}

/* gallery-section */
.gallery-section {
  padding: 7.6875rem 0 0;
}

/* gallery-slider */
.gallery-slider__img {
  position: relative;
  height: 16.25rem;
  background: rgba(0, 0, 0, 0.67);
  backdrop-filter: blur(5rem);
  border-radius: 1.25rem;
  overflow: hidden;
}
.gallery-slider__img:before {
  position: absolute;
  inset: 0;
  padding: 0.0625rem;
  background: linear-gradient(130deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.33;
  content: "";
  border-radius: 1.25rem;
  z-index: 3;
}
.gallery-slider__img a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-slider__img a:hover img {
  transform: scale(1.1);
}
.gallery-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s transform;
}

/* organizer-section */
.organizer-section {
  padding: 9.125rem 0 0;
}

/* organizer */
.organizer {
  display: flex;
  flex-direction: column;
  gap: 2.8125rem 0;
}
.organizer__top-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 1.875rem;
}
.organizer__widget {
  flex-shrink: 0;
  padding: 1rem 1.625rem;
  max-width: 26.125rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.67);
  backdrop-filter: blur(5rem);
  overflow: hidden;
  border-radius: 2.125rem;
}
.organizer__widget:before {
  position: absolute;
  inset: 0;
  padding: 0.0625rem;
  background: linear-gradient(130deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.33;
  content: "";
  border-radius: 2.125rem;
  z-index: 3;
}
.organizer__widget p {
  font-size: 0.875rem;
  line-height: 1.0625rem;
}
.organizer__logo {
  flex-shrink: 0;
  width: 12.375rem;
}
.organizer__logo img {
  width: 100%;
}
.organizer__text {
  font-size: 0.875rem;
  font-weight: var(--tertiary-font-weight);
  text-align: center;
  line-height: 1.0625rem;
  opacity: 0.7;
}

/* sponsor-section */
.sponsor-section {
  padding: 9.125rem 0 1.5625rem;
}

/* sponsor-logo */
.sponsor-logo {
  margin: 0 auto 9.0625rem;
  padding: 2.25rem 2.8125rem 2.8125rem;
  max-width: 29.0625rem;
  background: var(--tertiary-background-color);
  border-radius: 2.125rem;
  box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, 0.25);
}
.sponsor-logo img {
  width: 100%;
}

/* brands-list */
.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.25rem 1.875rem;
  margin: 0 0 5.75rem;
}
.brands-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.6875rem;
  width: 16.5rem;
  height: 16.5rem;
  background: var(--primary-background-color);
  border-radius: 100%;
  box-shadow: 0.125rem 0.125rem 0.2875rem 0rem rgba(255, 255, 255, 0.3) inset, 0.75rem -0.5rem 2.8rem 0rem #00A8E8 inset, 0.0625rem 0.1875rem 0.4875rem 0.3125rem rgba(121, 195, 255, 0.2), -0.3125rem 0.5rem 0.9375rem -0.3125rem #FA1593 inset;
  backdrop-filter: blur(2.1rem);
}
.brands-list_green-color .brands-list__item {
  box-shadow: 0.125rem 0.125rem 0.2875rem 0rem rgba(255, 255, 255, 0.3) inset, 0.75rem -0.5rem 2.8rem 0rem #81FF9C inset, 0.0625rem 0.1875rem 0.4875rem 0.3125rem rgba(129, 255, 156, 0.2);
}
.brands-list_white-color .brands-list__item {
  box-shadow: 0.125rem 0.125rem 0.2875rem 0rem rgba(255, 255, 255, 0.3) inset, 0.75rem -0.5rem 2.8rem 0rem rgba(200, 240, 255, 0.75) inset, 0.0625rem 0.1875rem 0.4875rem 0.3125rem rgba(121, 195, 255, 0.15);
}

/* brands-sm-list */
.brands-sm-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5.25rem 5.3125rem;
  margin: 0 0 5.75rem;
}
.brands-sm-list__item a {
  transition: 0.5s opacity;
}
.brands-sm-list__item a:hover {
  opacity: 0.6;
}

/* footer */
.footer {
  padding: 0 0 6.25rem;
}
.footer__in {
  position: relative;
  padding: 2.0625rem 2.625rem 0.8125rem;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5rem);
  border-radius: 2.125rem;
}
.footer__in:before {
  position: absolute;
  inset: 0;
  border-radius: 2.125rem;
  padding: 0.0625rem;
  background: linear-gradient(165deg, rgb(255, 255, 255) 0%, rgba(204, 204, 204, 0) 50%, rgb(255, 255, 255) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.3;
  content: "";
}
.footer__top-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  margin: 0 0 1.3125rem;
  padding: 0 0 0.625rem;
  border-bottom: 0.0625rem solid var(--secondary-border-color);
}
.footer__col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 1.875rem;
}
.footer__logo {
  width: 32.125rem;
}
.footer__logo img {
  width: 100%;
}
.footer__phones {
  display: flex;
  flex-direction: column;
}
.footer__phone-number {
  display: inline-flex;
  color: var(--primary-text-color);
  font-size: 2rem;
  line-height: 3.75rem;
}
.footer__text {
  display: block;
  font-size: 1.375rem;
  font-weight: var(--secondary-font-weight);
  line-height: 1.625rem;
  opacity: 0.7;
}
.footer__md-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 1.5rem;
  padding: 0 0 1.375rem;
  gap: 0 1.875rem;
  border-bottom: 0.0625rem solid var(--secondary-border-color);
}
.footer__mail {
  display: inline-flex;
  color: var(--primary-text-color);
  font-size: 2rem;
  line-height: 5rem;
}
.footer__social {
  display: flex;
  gap: 0 1.25rem;
}
.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border: 0.0625rem solid var(--primary-border-color);
  border-radius: 1.25rem;
  transition: 0.5s opacity;
}
.footer__social a:hover {
  opacity: 0.6;
}
.footer__social img {
  height: 3.125rem;
}
.footer__bottom-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  display: block;
  font-size: 0.75rem;
  line-height: 2.25rem;
}
.footer__nav ul {
  display: flex;
  align-items: center;
  gap: 0 1.5625rem;
}
.footer__nav li {
  font-size: 0.75rem;
  line-height: 2.25rem;
}
.footer__nav a:hover {
  color: var(--secondary-text-color);
}

/* to-top */
.to-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem 0;
  cursor: pointer;
  transition: 0.5s opacity;
}
.to-top:hover {
  opacity: 0.8;
}
.to-top__icon {
  width: 1.125rem;
}
.to-top__icon img {
  width: 100%;
}
.to-top__text {
  display: block;
  font-size: 1rem;
  font-weight: var(--tertiary-font-weight);
}

/* hystmodal */
.hystmodal__wrap {
  padding: 3.125rem 2.8125rem;
}
.hystmodal button.hystmodal__close {
  width: 2.75rem;
  height: 2.75rem;
  top: -2.5rem;
  right: -3.125rem;
  border: 0.0625rem solid var(--tertiary-border-color);
  background: linear-gradient(131.09deg, rgb(250, 21, 147) 2.08%, rgba(117, 0, 55, 0.5) 37.27%, rgb(0, 75, 107) 67.87%, rgb(149, 222, 255) 100%);
  border-radius: 100%;
  box-shadow: 0rem 0rem 1.25rem rgba(245, 48, 107, 0.1);
  transition: 0.5s opacity;
}
.hystmodal button.hystmodal__close:hover {
  opacity: 0.8;
}
.hystmodal button.hystmodal__close:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/icons/modal-close.svg) center no-repeat;
  background-size: 1.125rem;
  content: "";
}
.hystmodal div.hystmodal__window {
  max-width: 30.625rem;
  width: 100%;
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  background: var(--primary-background-color);
  border-radius: 1.5rem;
  box-shadow: 0 0.25rem 3.75rem 0 rgba(0, 0, 0, 0.05);
}
.hystmodal__styled {
  padding: 1.875rem;
}
.hystmodal__title {
  margin: 0 0 0.875rem;
  font-size: 1.75rem;
  font-weight: var(--quaternary-font-weight);
  line-height: 2rem;
}
.hystmodal__sub-title {
  margin: 0 0 1.5rem;
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.25rem;
}
.hystmodal__sub-title_indent-bt-none {
  margin: 0;
}
.hystmodal__form fieldset {
  margin: 0 0 0.9375rem;
}
.hystmodal__form fieldset:last-child {
  margin: 0;
  padding: 0.625rem 0 0;
}
.hystmodal__sm-title {
  margin: 0 0 0.625rem;
  font-size: 1.25rem;
  line-height: 1.4375rem;
}

/* 1470 */
@media (max-width: 1470px) {
  html {
    font-size: 1.1vw;
  }
  .brands {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .brands-sm-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
}
/* 1279 */
@media (max-width: 1279px) {
  .people {
    justify-content: center;
  }
  .people__img {
    margin: 0 0 5px;
  }
  .people__name {
    margin: 0 0 5px;
  }
}
/* 767 */
@media (max-width: 767px) {
  html {
    font-size: 4.27vw;
  }
  .wrapper {
    padding: 5.3125rem 0 0;
  }
  .container {
    padding: 0 0.9375rem;
    max-width: 100%;
  }
  .header {
    position: absolute;
    padding: 1.25rem 0;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.2);
    background: var(--primary-background-color);
    z-index: 60;
    transition: 0.5s transform;
  }
  .header.no-fixed {
    transform: translateY(-100%);
  }
  .header.fixed {
    position: fixed;
    transform: translateY(0);
  }
  .header__top-panel {
    display: none;
  }
  .header__social {
    justify-content: center;
  }
  .header__col {
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem 0;
  }
  .header__bottom-panel {
    flex-direction: inherit;
    justify-content: space-between;
    padding: 0;
  }
  .logo {
    width: 9.375rem;
  }
  .main-nav {
    padding: 0;
    border-radius: 0;
  }
  .main-nav:before {
    display: none;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.875rem 0;
    padding: 0;
  }
  .main-nav li {
    width: 100%;
  }
  .main-nav a {
    display: block;
  }
  .main-nav__sticker {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .mobile-btn {
    display: block;
  }
  .mobile-dropdown {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1.5625rem 0;
    padding: 1.25rem 0.9375rem 1.875rem;
    width: 100%;
    top: 5.3125rem;
    left: 0;
    background: var(--primary-background-color);
    box-shadow: 0 0 0.3125rem 0.0625rem rgba(0, 0, 0, 0.6);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
  }
  .mobile-dropdown.show {
    opacity: 1;
    visibility: visible;
  }
  .mobile-dropdown__line {
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
  }
  .hero {
    flex-direction: column;
    gap: 1.875rem 0;
  }
  .hero__title {
    margin: 0 0 1.25rem;
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
  .hero__poster {
    width: 100%;
    height: 15.625rem;
    border-radius: 1.25rem;
    order: -1;
  }
  .hero__poster:before {
    border-radius: 1.25rem;
  }
  .tags {
    gap: 0.3125rem 0.3125rem;
    margin: 0 0 1.25rem;
  }
  .tag {
    padding: 0.3125rem 0.9375rem 0.375rem;
    font-size: 0.625rem;
    line-height: 1.125rem;
  }
  .hero__btns {
    grid-template-columns: 1fr;
    gap: 0.625rem 0;
  }
  .btn {
    padding: 0.75rem 0.9375rem;
    font-size: 0.75rem;
    line-height: 1.125rem;
    border-radius: 1.875rem;
  }
  .exhibition-panel {
    flex-direction: column;
    gap: 1.875rem 0;
    padding: 1.875rem 0.9375rem;
    border-radius: 0.9375rem;
  }
  .exhibition-panel:before {
    border-radius: 0.9375rem;
  }
  .exhibition-info__item {
    flex-direction: column;
    gap: 1.25rem 0;
    text-align: center;
  }
  .timer__item {
    gap: 0.3125rem 0;
    width: 3.75rem;
  }
  .timer__number {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .timer__text {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
  .timer__bullet {
    width: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .business-info-section {
    padding: 5rem 0 0;
  }
  .title {
    margin: 0 0 1.875rem;
    font-size: 1.625rem;
    line-height: 2.25rem;
  }
  .advantages {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem 0;
    margin: 0 0 3.125rem;
  }
  .advantages__title {
    margin: 0 0 0.9375rem;
    min-height: inherit;
  }
  .exhibition {
    flex-direction: column;
    gap: 1.875rem 0;
  }
  .exhibition__img {
    width: 6.25rem;
  }
  .exhibition__title {
    margin: 0 0 1.25rem;
  }
  .exhibition__list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem 0;
  }
  .exhibition__list li {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .exhibition__list li:before {
    top: 0.1875rem;
  }
  .exhibition-widget {
    padding: 1.875rem 1.25rem;
    width: 100%;
    border-radius: 1.25rem;
  }
  .exhibition-widget:before {
    border-radius: 1.25rem;
  }
  .exhibition-widget__title {
    margin: 0 0 1.875rem;
  }
  .exhibition-gallery {
    gap: 1.25rem 0;
  }
  .exhibition-gallery__item {
    border-radius: 0.625rem;
  }
  .exhibition-areas-section {
    padding: 3.75rem 0 0;
  }
  .exhibition-areas {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem 0;
  }
  .exhibition-areas__description {
    padding: 1.25rem 0.9375rem;
    border-radius: 1.25rem;
  }
  .exhibition-areas__description:before {
    border-radius: 1.25rem;
  }
  .exhibition-areas__description p {
    min-height: inherit;
  }
  .exhibition-areas__title {
    min-height: inherit;
  }
  .exhibition-areas__list {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem 0;
  }
  .exhibition-areas__list li {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .exhibition-areas__list li:before {
    top: 0.3125rem;
  }
  .participation-formats-section {
    padding: 3.75rem 0 0;
  }
  .participation-formats {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem 0;
  }
  .participation-formats__item {
    border-radius: 0.9375rem;
  }
  .participation-formats__item:before {
    border-radius: 0.9375rem;
  }
  .participation-formats__info {
    margin: 0 0 1.25rem;
  }
  .days-section {
    padding: 3.75rem 0 0;
  }
  .days {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem 0;
  }
  .days__item {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
  .days__item:before {
    border-radius: 1.25rem;
  }
  .days__item p {
    margin: 0 0 1.25rem;
    min-height: inherit;
  }
  .days__title {
    margin: 0 0 1.25rem;
  }
  .days__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem 0;
  }
  .days__list li {
    flex-direction: column;
    gap: 0.3125rem 0;
  }
  .speakers-section {
    padding: 3.75rem 0 0;
  }
  .speakers {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.25rem;
  }
  .speakers__img {
    margin: 0 auto;
    width: 10.125rem;
    height: 10.125rem;
  }
  .speakers__description {
    padding: 7.5rem 0.625rem 0.9375rem;
    border-radius: 0.9375rem;
  }
  .speakers__description:before {
    border-radius: 0.9375rem;
  }
  .speakers__post {
    font-size: 0.8125rem;
    line-height: 1.125rem;
  }
  .experience-section {
    padding: 3.75rem 0 0;
  }
  .experience-col {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem 0;
  }
  .experience-col__item {
    gap: 1.875rem 0;
  }
  .brands {
    padding: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 1.25rem;
  }
  .brands:before {
    border-radius: 1.25rem;
  }
  .people {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
  .people:before {
    border-radius: 1.25rem;
  }
  .statistics__item {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem 0;
    padding: 1.25rem;
    text-align: center;
    border-radius: 1.25rem;
  }
  .statistics__item:before {
    border-radius: 1.25rem;
  }
  .statistics__img {
    width: 6.25rem;
  }
  .statistics__description {
    gap: 1.25rem 0;
  }
  .statistics__title {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
  .statistics__number {
    font-size: 2.125rem;
    line-height: 2.5rem;
  }
  .gallery-section {
    padding: 3.75rem 0 0;
  }
  .gallery-slider__img {
    height: 9.375rem;
    border-radius: 1.25rem;
  }
  .gallery-slider__img:before {
    border-radius: 1.25rem;
  }
  .organizer-section {
    padding: 3.75rem 0 0;
  }
  .organizer {
    gap: 1.875rem 0;
  }
  .organizer__top-col {
    flex-direction: column;
    gap: 1.875rem 0;
  }
  .organizer__widget {
    padding: 0.9375rem;
    max-width: 100%;
    border-radius: 1.25rem;
  }
  .organizer__widget:before {
    border-radius: 1.25rem;
  }
  .organizer__widget p {
    font-size: 0.75rem;
  }
  .organizer__logo {
    width: 6.25rem;
  }
  .sponsor-section {
    padding: 3.75rem 0 2.5rem;
  }
  .small-title {
    margin: 0 0 2.5rem;
  }
  .sponsor-logo {
    margin: 0 auto 3.75rem;
    padding: 0.9375rem 0.9375rem 1.125rem;
    max-width: 12.5rem;
    border-radius: 0.9375rem;
  }
  .brands-list {
    gap: 1.875rem 1.875rem;
    margin: 0 0 3.75rem;
  }
  .brands-list__item {
    width: 8.75rem;
    height: 8.75rem;
  }
  .brands-sm-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem 1.875rem;
    margin: 0 0 3.125rem;
  }
  .footer {
    padding: 0 0 1.875rem;
  }
  .footer__in {
    padding: 1.875rem 0.9375rem;
    border-radius: 0.9375rem;
  }
  .footer__in:before {
    border-radius: 0.9375rem;
  }
  .footer__top-panel {
    gap: 1.25rem 0;
    margin: 0 0 1.875rem;
    padding: 0 0 1.875rem;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.4);
  }
  .footer__col {
    flex-direction: column;
    gap: 1.875rem 0;
    align-items: center;
  }
  .footer__logo {
    width: 9.375rem;
  }
  .footer__phones {
    gap: 0.3125rem 0;
  }
  .footer__phone-number {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
  .footer__text {
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.25rem;
  }
  .footer__md-panel {
    display: flex;
    flex-direction: column;
    gap: 1.875rem 0;
    margin: 0 0 1.875rem;
    padding: 0 0 1.875rem;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.4);
  }
  .footer__mail {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
  .footer__social {
    gap: 0 0.625rem;
  }
  .footer__social a {
    width: 1.875rem;
    height: 1.875rem;
    border-width: 0.0625rem;
    border-radius: 0.3125rem;
  }
  .footer__social img {
    height: 1rem;
  }
  .footer__bottom-panel {
    flex-direction: column;
    gap: 1.875rem 0;
  }
  .footer__copy {
    font-size: 12px;
    line-height: 14px;
  }
  .footer__nav ul {
    gap: 0 0.625rem;
  }
  .footer__nav li {
    font-size: 0.75rem;
    line-height: 0.875rem;
  }
  .to-top__icon {
    width: 0.875rem;
  }
  .to-top__text {
    font-size: 0.75rem;
    line-height: 0.875rem;
  }
  .hystmodal__wrap {
    padding: 1.25rem 0.9375rem;
  }
  .hystmodal__styled {
    padding: 1.25rem;
  }
  .hystmodal div.hystmodal__window {
    border-radius: 1.25rem;
  }
  .hystmodal button.hystmodal__close {
    width: 2.25rem;
    height: 2.25rem;
    top: -0.75rem;
    right: -0.75rem;
  }
  .hystmodal__title {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .hystmodal__sub-title {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
  .input-field label {
    font-size: 0.875rem;
  }
  input[type=tel],
  input[type=text],
  input[type=email],
  input[type=password] {
    font-size: 0.875rem;
  }
  textarea {
    height: 9.375rem;
    font-size: 0.875rem;
  }
}