@charset "UTF-8";
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Averta";
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

span {
  display: inline-block;
}

img {
  display: block;
  max-width: 100%;
}

li {
  list-style: none;
}

input, textarea, button, select {
  font-family: inherit;
  border: 0;
  background: none;
  outline: none;
  resize: none;
}

/* Averta */
@font-face {
  font-family: "Averta";
  src: url("../fonts/Averta/Averta-Cyrillic-Light.woff") format("woff"), url("../fonts/Averta/Averta-Cyrillic-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Averta";
  src: url("../fonts/Averta/Averta-Cyrillic-Regular.woff") format("woff"), url("../fonts/Averta/Averta-Cyrillic-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Averta";
  src: url("../fonts/Averta/Averta-Cyrillic-SemiBold.woff") format("woff"), url("../fonts/Averta/Averta-Cyrillic-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Averta";
  src: url("../fonts/Averta/Averta-Cyrillic-Bold.woff") format("woff"), url("../fonts/Averta/Averta-Cyrillic-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Averta";
  src: url("../fonts/Averta/Averta-Cyrillic-ExtraBold.woff") format("woff"), url("../fonts/Averta/Averta-Cyrillic-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  display: swap;
}
.header {
  padding: 15px 0;
  background-color: #fff;
}
.header .burger-icon {
  display: none;
  cursor: pointer;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo h3 {
  text-transform: uppercase;
  font-size: 25px;
}
.header__menu {
  padding-right: 60px;
}
.header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
.header__btns {
  position: relative;
}
.header__btns:hover .header__locales-dropdown {
  opacity: 1;
  visibility: visible;
  z-index: 99999999999;
}
.header__btns span {
  font-weight: 600;
  font-size: 18px;
}
.header__locales {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.header__locales-dropdown {
  position: absolute;
  top: 99%;
  opacity: 0;
  visibility: hidden;
  z-index: -999999999;
  padding-top: 10px;
}
.header__locales-dropdown a img {
  width: 25px;
  height: 25px;
}
.header__lang {
  width: 25px;
  height: 25px;
}

.mob-menu {
  position: fixed;
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: -9999999;
  opacity: 0;
  visibility: hidden;
}
.mob-menu.active {
  z-index: 9999999;
  opacity: 1;
  visibility: visible;
}
.mob-menu .mob__close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.mob-menu .header__menu {
  display: block;
  padding-right: 0;
  margin-bottom: 50px;
}
.mob-menu .header__menu ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.mob-menu .mob-menu__locales {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 45px;
}
.mob-menu .mob-menu__locales a {
  width: 26px;
  height: 26px;
}
.mob-menu .mob__menu-soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.mob-menu .mob__menu-soc a svg {
  width: 25px;
}

.mob-menu .mob-menu__locales {
  gap: 10px;
}
.mob-menu .mob-menu__locales a span {
  font-size: 18px;
  font-weight: 600;
}

.page-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
}

.status__icon {
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.status__icon h1 {
  text-align: center;
}

.hero__mobile {
  display: none;
}
.hero .swiper-button-next,
.hero .swiper-button-prev {
  color: #EC8C01;
}

.exhibition {
  padding: 80px 0;
}
.exhibition h2 {
  margin-bottom: 15px;
}
.exhibition__list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.exhibition__list {
  padding: 10px 20px;
  font-size: 18px;
  text-transform: uppercase;
  background-color: #EC8C01;
}
.exhibition__list.active {
  background-color: #225261;
  color: #fff;
}
.exhibition__descr {
  margin-top: 10px;
  line-height: 156%;
  text-align: justify;
}
.exhibition__videos {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}

.advantages {
  padding-bottom: 60px;
}
.advantages .title {
  margin-bottom: 25px;
}
.advantages .advantages {
  margin-bottom: 60px;
}
.advantages .advantages__card {
  background-color: #f5f4f6;
  height: 100%;
  width: 100%;
  padding: 20px;
}
.advantages .advantages__card-image img {
  width: 100%;
  height: 493px;
}
.advantages .advantages__card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
}
.advantages .advantages__card-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}
.advantages .advantages__card-top span {
  font-weight: 500;
  font-size: 25px;
  line-height: 144%;
}

.program {
  padding: 0 0 100px;
  /* Таблица расписания */
  /* Мобильная версия */
}
.program .title {
  margin-bottom: 25px;
}
.program .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 3px solid #0a6b7a;
  margin-bottom: 30px;
}
.program-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}
.program-btn a {
  background-color: #225261;
  padding: 15px 25px;
  color: #fff;
}
.program .day-number {
  font-size: 120px;
  font-weight: 900;
  color: #000;
  line-height: 0.9;
  margin-top: -10px;
}
.program .day-text {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-top: 35px;
}
.program .header-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.program .date {
  font-size: 24px;
  font-weight: 700;
  color: #0a6b7a;
  margin-bottom: 5px;
}
.program .time {
  font-size: 20px;
  font-weight: 400;
  color: #0a6b7a;
  margin-bottom: 5px;
}
.program .location {
  font-size: 20px;
  font-weight: 700;
  color: #0a6b7a;
  margin-bottom: 15px;
}
.program .important-note {
  margin-top: 10px;
}
.program .important-label {
  font-weight: 700;
  color: #ff6b35;
  font-size: 16px;
}
.program .important-text {
  color: #0a6b7a;
  font-size: 15px;
  line-height: 1.5;
}
.program .schedule-table {
  width: 100%;
  border-collapse: collapse;
}
.program .schedule-row {
  border-bottom: 2px solid #0a6b7a;
}
.program .schedule-row:last-child {
  border-bottom: none;
}
.program .time-cell {
  width: 180px;
  padding: 25px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  vertical-align: top;
  border-right: 2px solid #0a6b7a;
}
.program .event-cell {
  padding: 25px 30px;
  vertical-align: top;
}
.program .event-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
.program .event-description {
  font-size: 17px;
  color: #0a6b7a;
  line-height: 1.6;
  font-weight: 500;
}
.program .ceremony-title {
  color: #ff6b35;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .program {
    /* Мобильная таблица */
  }
  .program .container {
    padding: 20px;
  }
  .program .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .program .day-number {
    font-size: 80px;
  }
  .program .day-text {
    font-size: 22px;
    margin-top: 0;
  }
  .program .date {
    font-size: 20px;
  }
  .program .time,
  .program .location {
    font-size: 18px;
  }
  .program .important-label {
    font-size: 15px;
  }
  .program .important-text {
    font-size: 14px;
  }
  .program .schedule-table {
    display: block;
  }
  .program .schedule-row {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0a6b7a;
  }
  .program .time-cell {
    display: block;
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #0a6b7a;
    padding: 15px 0;
    font-size: 16px;
  }
  .program .event-cell {
    display: block;
    padding: 15px 0;
  }
  .program .event-title {
    font-size: 18px;
  }
  .program .event-description {
    font-size: 15px;
  }
  .program .ceremony-title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .program body {
    padding: 20px 10px;
  }
  .program .container {
    padding: 15px;
  }
  .program .day-number {
    font-size: 60px;
  }
  .program .day-text {
    font-size: 20px;
  }
  .program .date {
    font-size: 18px;
  }
  .program .time,
  .program .location {
    font-size: 16px;
  }
  .program .event-title {
    font-size: 16px;
  }
  .program .event-description {
    font-size: 14px;
  }
}

.title {
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  color: #225261;
}

.sections {
  padding-bottom: 70px;
}
.sections .title {
  margin-bottom: 30px;
}
.sections ul li {
  list-style: disc;
  margin-bottom: 10px;
}
.sections ul {
  padding-left: 15px;
}
.sections__card {
  padding: 25px 20px;
  background-color: #225261;
  cursor: pointer;
}
.sections__card h3 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 140%;
  font-weight: 300;
}
.sections__content {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  margin-top: 30px;
}
.sections__content h2 {
  margin-bottom: 15px;
}
.sections__content p {
  font-size: 17px;
  line-height: 160%;
}

.content-section {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.content-section.active {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.content-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.content-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.content-column {
  background: white;
  padding: 25px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-column h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2c5f5f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.content-column ul {
  list-style: none;
}

.content-column li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
  font-size: 14px;
}

.content-column li::before {
  content: "•";
  color: #4a7c7c;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.reviews {
  padding-bottom: 80px;
}
.reviews .title {
  margin-bottom: 25px;
}
.reviews__card {
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  padding: 20px 15px;
}
.reviews__card-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 17px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.reviews__card-author h3 {
  font-size: 16px;
  font-weight: 600;
}
.reviews__card-author span {
  font-size: 14px;
  color: #225261;
}
.reviews__card p {
  font-size: 14px;
  margin-top: 15px;
}

.participants {
  margin-bottom: 80px;
}
.participants .title {
  margin-bottom: 10px;
}
.participants__subtitle {
  margin-bottom: 35px;
}
.participants h3 {
  font-size: 28px;
  font-weight: 700;
  color: #EC8C01;
}
.participants ul, .participants li {
  list-style: disc;
  margin-bottom: 10px;
}
.participants ul::marker, .participants li::marker {
  color: #EC8C01;
}
.participants__profile mark {
  background-color: #EC8C01;
  color: #fff;
  padding: 6px 15px;
  display: inline-block;
  margin-bottom: 10px;
}
.participants__profile p {
  margin-bottom: 15px;
}

.visitors ul li {
  list-style: square;
}
.visitors ul li a {
  color: #EC8C01;
}
.visitors ul li p {
  margin-top: 10px;
}
.visitors__inner {
  background-color: #EC8C01;
  color: #fff;
  height: 100%;
  display: block;
  padding: 8px 10px;
  font-size: 14px;
  text-transform: uppercase;
}

.contacts {
  padding-bottom: 80px;
}
.contacts .title {
  margin-bottom: 10px;
}
.contacts__cards {
  margin-bottom: 50px;
}
.contacts__cards h3 {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 20px;
}
.contacts__subtitle {
  margin-bottom: 35px;
}
.contacts__card-inner {
  -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  background: #fff;
  padding: 15px 20px;
}
.contacts__card-inner h4 {
  font-weight: 600;
  font-size: 22px;
  color: #225261;
}
.contacts__card-job {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #EC8C01;
  display: block;
  margin-bottom: 20px;
}
.contacts__card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contacts__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
}
.contacts__info-item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #828282;
  max-width: 60px;
  width: 100%;
}
.contacts__info-item a,
.contacts__info-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
}

.speakers-page .speakers {
  padding-top: 80px;
}

.speakers {
  padding-bottom: 100px;
}
.speakers__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.speakers-btn {
  margin-top: 40px;
}
.speakers-btn a {
  background-color: #225261;
  padding: 15px 25px;
  color: #fff;
}
.speakers__inner img {
  width: 180px;
}
.speakers__info {
  max-width: 350px;
}
.speakers__info h3 {
  margin-bottom: 10px;
  font-size: 17px;
}
.speakers__info p {
  font-size: 14px;
}
.speakers__info p b {
  display: block;
  margin-top: 4px;
}
.speakers__info p span {
  color: #EC8C01;
}

.organizers {
  padding-bottom: 80px;
}
.organizers .title {
  margin-bottom: 20px;
}
.organizers .logos__card {
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 137px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.popup-wrapper {
  display: none;
}
.popup-wrapper.active {
  display: block;
}
.popup__inner {
  max-width: 550px;
  background-color: #fff;
  padding: 80px 0;
  width: 100%;
  position: relative;
}
.popup__inner h3 {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 151%;
  margin-bottom: 32px;
}
.popup__inner form {
  width: 66%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.popup__inner form input {
  width: 100%;
  border: 1px solid #686d71;
  padding: 12px 18px;
}
.popup__inner form button {
  background-color: #225261;
  padding: 12px 18px;
  display: block;
  width: 100%;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.popup__inner form button:hover {
  background-color: #EC8C01;
}
.popup__close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.footer {
  background-color: #225261;
  color: #fff;
}
.footer__wrapper {
  padding: 70px 0;
}
.footer__logo {
  margin-bottom: 25px;
  display: block;
}
.footer__logo img {
  height: 90px;
}
.footer__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 127%;
  margin-bottom: 25px;
}
.footer__customer-btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  background-color: #fff;
  border-radius: 100px;
  padding: 10px 30px;
  color: #225261;
}
.footer__heading {
  font-weight: 700;
  font-size: 22px;
  line-height: 150%;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.footer__inner ul li {
  margin-bottom: 15px;
}
.footer__inner ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
}
.footer__contacts p {
  margin-bottom: 15px;
}
.footer__contacts .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.footer__contacts .socials a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__phone {
  margin-bottom: 25px;
}
.footer__copyright {
  background-color: #3c6571;
  padding: 20px 0;
}
.footer__copyright-inner {
  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;
  font-weight: 400;
  font-size: 16px;
  line-height: 107%;
}
.footer__copyright-inner .footer__company {
  margin-left: 45px;
}
.footer__copyright-inner a {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .header__menu {
    display: none;
  }
  .header__btns {
    display: none;
  }
  .header .burger-icon {
    display: block;
  }
}
@media (max-width: 992px) {
  .participants h3 {
    margin-bottom: 25px;
  }
  .participants ul {
    padding-left: 15px;
  }
}
@media (max-width: 768px) {
  .exhibition__list-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 6px;
  }
  .title {
    font-size: 35px;
  }
  .exhibition__videos iframe {
    height: 350px;
  }
  .exhibition__list {
    width: 100%;
    margin-bottom: 10px;
  }
  .footer__customer-btn {
    margin-bottom: 20px;
    display: inline-block;
  }
}
@media (max-width: 576px) {
  .participants h3 {
    font-size: 23px;
    margin-bottom: 15px;
  }
  .speakers .title {
    margin-bottom: 40px;
  }
  .organizers .logos__card {
    height: 110px;
    padding: 25px;
  }
  .contacts__cards h3 {
    font-size: 20px;
  }
  .speakers__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .speakers__card .speakers__info {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 100%;
  }
  .popup__inner form {
    width: 100%;
  }
  .popup__inner {
    padding: 70px 20px;
  }
  .popup__inner h3 br {
    display: none;
  }
  .popup {
    padding: 0 10px;
  }
  .popup__inner form input {
    font-size: 16px;
  }
  .popup__inner form input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .popup__inner form input::-moz-placeholder {
    font-size: 16px;
  }
  .popup__inner form input:-ms-input-placeholder {
    font-size: 16px;
  }
  .popup__inner form input::-ms-input-placeholder {
    font-size: 16px;
  }
  .popup__inner form input::placeholder {
    font-size: 16px;
  }
  .popup__inner form button {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .hero__desktop {
    display: none;
  }
  .hero__mobile {
    display: block;
  }
  .exhibition__videos iframe {
    height: 250px;
  }
}


.event-highlights {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    color: #666;
    font-weight: 400;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-card {
    background: #225261;
    padding: 30px 20px;
    border-radius: 16px;
    color: white;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
}

.tabs::-webkit-scrollbar {
    height: 4px;
}

.tabs::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

.tab {
    padding: 12px 24px;
    border: none;
    background: #f5f5f5;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.tab:hover {
    background: #e8e8e8;
}

.tab.active {
    background: #225261;
    color: white;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.day-content {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.day-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.day-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #225261;
    font-weight: 600;
    margin-bottom: 8px;
}

.day-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.insights-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.insight-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #225261;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.insight-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.insight-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.speaker-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.speaker-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.speaker-title {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.media-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f9fa;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 16/10;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-card:hover::after {
    opacity: 1;
}

.media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.media-card:hover .media-caption {
    opacity: 1;
    transform: translateY(0);
}

.key-insights {
    background: #225261;
    border-radius: 20px;
    padding: 40px;
    color: white;
    margin-top: 40px;
}

.key-insights h3 {
    font-size: clamp(22px, 4vw, 28px);
    margin-bottom: 25px;
    text-align: center;
}

.key-insights ul {
    list-style: none;
    display: grid;
    gap: 15px;
}

.key-insights li {
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
    font-size: 15px;
}

.key-insights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 18px;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    overflow: hidden;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .event-highlights {
        padding: 40px 15px;
    }

    .day-content {
        padding: 25px 20px;
    }

    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .tabs {
        gap: 8px;
    }

    .tab {
        padding: 10px 18px;
        font-size: 14px;
    }

    .key-insights {
        padding: 30px 20px;
    }
}


@media (max-width: 576px) {
    .media-grid{
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}