@charset "UTF-8";
@import '../css/font.css';
html,
body {
  font-family: "Gilroy";
  font-weight: 500;
  padding: 0;
  margin: 0;
  background: #E3EFF4;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
}

.label_header {
  font-size: 80%;
  display: block;
  margin-bottom: 4px;
  padding-left: 2px;
  opacity: 0.6;
}

.children_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.children_group label {
  position: relative;
  cursor: pointer;
}
.children_group label span {
  font-size: 80%;
  border-radius: 8px;
  display: inline-block;
  padding: 3px 10px;
  color: black;
  background: rgba(90, 73, 234, 0.2);
  left: 0;
  width: 100%;
  height: 24px;
  min-width: 24px;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.children_group label input {
  position: absolute;
  opacity: 0;
}
.children_group label input:hover ~ span {
  background: rgba(90, 73, 234, 0.4);
}
.children_group label input:checked ~ span {
  background: #5A49EA;
  color: white;
}

.langs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1000;
  gap: 2px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  right: 0;
  top: 50%;
}
.langs a {
  opacity: 0.5;
  background: #fff;
  padding: 10px 15px;
}
.langs a.sel {
  opacity: 1;
  color: white;
  background: #FF4E84;
}
.langs a:nth-child(1) {
  border-top-left-radius: 10px;
}
.langs a:nth-child(2) {
  border-bottom-left-radius: 10px;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.header h1 {
  margin-bottom: -30px;
}

.bigtext,
.header h1 {
  will-change: transform;
}

h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
}
h1 span,
h2 span,
h3 span,
h4 span {
  font-weight: normal;
  font-style: italic !important;
}

.menu_opened .hiddenmenu {
  opacity: 1;
  pointer-events: all;
}
.menu_opened .bigtext {
  opacity: 0.3;
}

.blob {
  position: fixed;
  opacity: 0.5;
  mix-blend-mode: hard-light;
  width: 300px;
  height: 300px;
  will-change: transform;
  z-index: 10;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.blob--a,
.blob--c {
  background-image: url("/_assets/images/carpet.svg");
}

.blob--b {
  background-image: url("/_assets/images/carpet2.svg");
}

.fixed_footer {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: 100px;
  border-radius: 10px;
  padding: 20px;
  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;
  background: rgba(255, 255, 255, 0.25);
  /* прозрачный */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 9999;
}
.fixed_footer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fixed_footer a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 20px 45px;
  border-radius: 10px;
  background: #5A49EA;
  color: white;
}
.fixed_footer a:hover {
  background: #FF4E84;
}
.fixed_footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: inherit;
  backdrop-filter: inherit;
  -webkit-backdrop-filter: inherit;
  border-radius: inherit;
}

.days {
  font-weight: bold;
}

.hiddenmenu {
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  pointer-events: none;
  padding-right: 0;
  position: fixed;
  right: 170px;
  top: 47px;
}
.hiddenmenu .has_sub ul {
  margin-top: 40px;
  gap: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.hiddenmenu .has_sub ul a {
  font-size: 90%;
}
.hiddenmenu a {
  font-size: 130%;
  color: white;
  font-weight: 600;
}

.group_logos {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.group_logos img {
  height: auto !important;
  width: 50px !important;
}

.myqrticket {
  margin: auto;
  background: #fff;
  max-width: 300px;
  padding: 30px;
  border-radius: 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.reggrid {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
}
.reggrid > div input {
  outline: none;
  width: 100%;
  padding: 20px;
  background: rgba(90, 73, 234, 0.1882352941);
  border: none;
  border-radius: 10px;
  margin-bottom: 20px;
  max-width: 300px;
}
.reggrid > div input[type=submit] {
  color: white;
  font-size: 150%;
  background: #ff4e85 !important;
}
.reggrid > div input[type=submit]:disabled {
  opacity: 0.2;
}
.reggrid > div label {
  display: block;
}

.text {
  width: 400px;
}

.login {
  padding: 4px 14px;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  margin-left: -10px;
  border-radius: 10px;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(90, 73, 234, 0.1882352941);
}

.userzone {
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(90, 73, 234, 0.1882352941);
  padding: 4px 14px;
  border-radius: 10px;
}
.userzone .logout_link a {
  font-weight: 400 !important;
  font-size: 90%;
}

.navholder {
  z-index: 10;
  position: sticky;
  top: 100px;
}

nav {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  right: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  gap: 25px;
}
nav ul li:hover a, nav ul li.selected a {
  color: #FF4E84;
}
nav ul li.has_sub {
  position: relative;
  /* добавляем — чтобы absolute submenu позиционировалось относительно li */
  width: 70px !important;
}
nav ul li.has_sub:hover .submenu {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  height: auto;
  pointer-events: all;
}
nav ul li.has_sub a:hover {
  color: black !important;
}
nav ul li.has_sub .submenu {
  position: absolute;
  /* важно */
  top: 100%;
  /* появляется сразу под ссылкой */
  left: 0;
  z-index: 100;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  height: 0;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  opacity: 0;
  pointer-events: none;
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  gap: 10px;
  padding: 20px 0;
  /* добавь, если нужно отступ внутри */
}
nav ul a {
  display: block;
  color: black;
  font-weight: bold;
}

.mainfly {
  width: 100% !important;
  margin-top: 15px;
}

n p {
  max-width: 400px;
  font-weight: 300;
}

.grid_2 {
  margin-bottom: 60px !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.grid_2 h4 {
  font-weight: 200;
  font-size: 230%;
  font-style: italic;
  color: #5A49EA;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.grid_2 > a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: black;
  font-size: 120%;
  font-weight: normal;
  padding: 30px 50px;
  background: #ffffff;
}
.grid_2 > a:hover {
  background: rgba(255, 255, 255, 0.3137254902);
}
.grid_2 > a:hover h4 {
  color: #FF4E84;
}
.grid_2 > a:nth-child(1) {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.grid_2 > a:nth-child(2) {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

footer {
  margin-top: 100px !important;
}
footer .copy {
  font-weight: bold;
  color: #5A49EA;
  font-size: 150%;
}
footer .line {
  width: 100%;
  height: 4px;
  background: #FF4E84;
  margin-bottom: 30px;
}
footer .flex_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .flex_footer .links img {
  width: 50px;
}

.program h4 {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 100px;
  font-weight: 200 !important;
  font-size: 230% !important;
  font-style: italic;
  color: #5A49EA;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.video {
  margin-top: 50px !important;
  width: 100%;
  background: #FF4E84;
  border-radius: 30px !important;
  margin-bottom: 20px !important;
}
.video video {
  width: 100%;
  border-radius: 30px !important;
  height: auto;
}

.cta.btn {
  background: #FF4E84 url("../images/arrow_right.svg") no-repeat right 20px center;
  display: inline-block;
  font-weight: 400;
  padding: 15px 100px 15px 25px;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta.btn:hover {
  padding: 15px 120px 15px 25px;
}

.textblockmessage {
  text-align: center;
  background: rgba(255, 78, 132, 0.2509803922);
  border: 1px solid #ff4e84;
  padding: 20px;
  margin: 40px 0;
  border-radius: 20px;
}

.page {
  position: relative;
  z-index: 2;
  padding: 40px;
}
.page .status {
  color: #FF4E84;
  font-size: 3vw;
}
.page .header h1 {
  color: #5A49EA;
  font-size: 9vw;
}
.page .header h2 {
  color: #5A49EA;
  font-size: 5vw;
}
.page .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-bottom: 130px;
}
.page .scrollline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  overflow: hidden;
}
.page .scrollline .type1 {
  height: 400px;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  width: 100%;
  background: url("../images/type1.svg") no-repeat center;
  background-size: contain;
  padding-top: 300px;
  padding-left: 60px;
}
.page .scrollline .type1 img {
  opacity: 0.7;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.page .scrollline .type2 {
  height: 400px;
  width: 100%;
  padding-top: 300px;
  padding-left: 60px;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  background: url("../images/type2.svg") no-repeat center;
  background-size: contain;
}
.page .scrollline .type2 img {
  opacity: 0.7;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.page .scrollline h2 {
  margin-bottom: 50px;
  color: white;
  font-size: 3vw;
}
.page .scrollline > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  margin-right: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.page input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.page input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.page input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.page input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.page input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.page input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.page .emailgrid {
  margin-bottom: 10px;
  -ms-grid-columns: 1fr 200px;
  grid-template-columns: 1fr 200px;
}
.page .emailgrid input {
  padding: 20px 40px;
  background: #5A49EA;
  font-size: 4vw !important;
  font-weight: bold;
  color: white;
  border: none;
  font-family: "EuropaNuova";
}
.page .emailgrid button {
  padding: 20px;
  background: #4532e7;
  color: white;
  border: none;
  font-family: "EuropaNuova";
}
.page .text {
  max-width: 500px;
  font-weight: 500;
  font-size: 130%;
}
.page:before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 70vh !important;
  z-index: -1;
  background: linear-gradient(332deg, rgb(227, 239, 244) 50%, rgb(255, 255, 255) 100%);
}
.page .wsize {
  max-width: 1200px;
  margin: auto;
}
.page .logo_m {
  display: none;
}
.page header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1vw !important;
}
.page header img {
  height: 58px;
  max-width: 60px;
}
.page header img.s5_az {
  width: 76px !important;
  max-width: 100px !important;
}
.page header img.s5_en {
  width: 90px !important;
  max-width: 100px !important;
}
.page header img.s3_az {
  width: 90px !important;
  max-width: 100px !important;
}
.page header img.s3_en {
  width: 120px !important;
  max-width: 120px !important;
}
.page header .logo img,
.page header .logo video {
  height: 140px;
}
.page section h4 {
  color: #5A49EA;
  font-size: 300%;
  font-weight: normal;
}
.page section .bigtext {
  color: #5A49EA;
}
.page .hero .dates {
  margin-top: 90px !important;
  color: #FF4E84;
  font-size: 200%;
}

.grid_events {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
  /* ======== Общая настройка блока ======== */
  /* ======== TYPE 1 ======== */
  /* ======== TYPE 2 ======== */
  /* ======== Hover эффекты ======== */
}
.grid_events a {
  text-decoration: none;
  color: inherit;
  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-transition: 0.4s;
  transition: 0.4s;
}
.grid_events a h2 {
  font-size: 150%;
  font-weight: 500;
  color: #5A49EA;
  margin-top: 18px;
  line-height: 1.3;
  max-width: 90%;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.grid_events a:hover h2 {
  color: #FF4E84;
}
.grid_events .imgwrap {
  width: 100%;
  aspect-ratio: 4/3; /* адаптивная высота */
  overflow: hidden;
  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;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.grid_events .imgwrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  mix-blend-mode: overlay;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.grid_events .type1 .imgwrap {
  background-image: url("../images/type2.svg"); /* SVG виден */
  background-color: #fff; /* фон под SVG */
  -webkit-mask: url("../images/type2.svg") no-repeat center/contain;
  mask: url("../images/type2.svg") no-repeat center/contain;
}
.grid_events .type2 .imgwrap {
  background-image: url("../images/type1.svg");
  background-color: #fff;
  -webkit-mask: url("../images/type1.svg") no-repeat center/contain;
  mask: url("../images/type1.svg") no-repeat center/contain;
}
.grid_events a:hover .imgwrap {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
}
.grid_events a:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
@media (max-width: 900px) {
  .grid_events {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

a {
  color: #5A49EA;
  text-decoration: none;
  font-weight: bold;
}

/* ========== ADAPTIVE BREAKPOINTS ========== */
/* --- Large screens (до 1200px) --- */
@media screen and (max-width: 1200px) {
  .page {
    padding: 20px;
  }
  .page .header h1 {
    font-size: 7vw;
  }
  .page section.mainpage .grid_events {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  nav {
    padding-right: 60px;
  }
  .fixed_footer {
    height: 90px !important;
  }
  .fixed_footer a {
    padding: 15px 35px;
  }
}
/* --- Tablets (до 768px) --- */
@media screen and (max-width: 768px) {
  .show_menu .langs {
    display: -ms-grid;
    display: grid;
    bottom: 0;
    top: auto;
    width: 100%;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .show_menu .langs a {
    text-align: center;
    padding: 20px;
    border-radius: 0 !important;
  }
  .langs {
    display: none;
  }
  .langs a {
    padding: 5px 10px;
  }
  .page section.mainpage .grid_events .type1 img {
    height: 250px !important;
  }
  .page section.mainpage .grid_events .type2 img {
    height: 260px !important;
  }
  footer {
    font-size: 80%;
    padding: 0 20px;
  }
  footer .copy {
    font-size: 100%;
  }
  footer .links {
    margin-bottom: 40px !important;
  }
  footer .links a img {
    width: 30px !important;
  }
  .event_alone {
    border: none !important;
    background: none !important;
  }
  .page section {
    padding-bottom: 20px;
  }
  .page .hero {
    margin-bottom: 20px !important;
  }
  .page .event-block {
    display: -ms-grid;
    display: grid;
    gap: 20px;
  }
  .fixed_footer {
    display: none !important;
  }
  .textblock,
  .header {
    padding: 0 20px;
  }
  .grid_events {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .grid_events h2 {
    font-weight: 400;
    color: #5A49EA !important;
  }
  .grid_events img {
    height: 280px !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .mainpage .grid_events img {
    height: 260px !important;
  }
  .text {
    width: 100%;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    font-weight: 200 !important;
    padding: 20px;
  }
  #map {
    height: calc(100vh - 100px) !important;
    width: 100% !important;
    margin: auto !important;
  }
  .hero {
    overflow-x: hidden !important;
  }
  .textblock {
    position: relative;
    overflow: visible !important;
    z-index: 1;
  }
  .textblock .date-block {
    position: relative;
    overflow: visible !important;
    margin-bottom: 60px;
  }
  .textblock .date-block .date-title {
    /* для Safari */
    position: sticky;
    top: 10px;
    /* отступ от верха — под твой header */
    background: #E3EFF4;
    /* фон под текст */
    z-index: 20;
    padding: 12px 16px;
    border-left: 4px solid #FF4E84;
    color: #5A49EA;
    font-weight: 700;
    font-size: 1.4em;
  }
  .page section.mainpage {
    font-size: 120% !important;
  }
  .date-title {
    position: sticky !important;
    top: 10px !important;
  }
  .inside_content {
    width: 100% !important;
    max-width: 1000px;
    margin: 90px auto !important;
    line-height: 1.4 !important;
  }
  .inside_content .grid {
    margin: 0 !important;
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .inside_content .grid p {
    font-size: 100% !important;
  }
  .inside_content p {
    font-size: 100% !important;
  }
  .burger {
    width: 30px;
    pointer-events: all;
    height: 22px;
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }
  .burger div {
    height: 3px;
    background: #5A49EA;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .burger.active div:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
            transform: translateY(9px) rotate(45deg);
  }
  .burger.active div:nth-child(2) {
    opacity: 0;
  }
  .burger.active div:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
            transform: translateY(-9px) rotate(-45deg);
  }
  .grid_2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .group_logos {
    margin: 20px 0;
    gap: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: none;
            transform: none;
    width: 100vw !important;
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .group_logos img {
    max-height: 40px;
    width: 40px !important;
  }
  .logo {
    display: none;
  }
  .burger_holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: sticky;
    top: 10px;
    height: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1000;
    padding-right: 30px;
    pointer-events: none;
  }
  .logo_m {
    position: absolute;
    padding: 0 20px;
    z-index: 900;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .logo_m img {
    width: 160px;
  }
  nav {
    display: none;
  }
  .show_menu nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    background: #fff;
    z-index: 10001;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    height: 110dvh !important;
    top: 0px;
  }
  .show_menu nav .submenu {
    display: none !important;
  }
  .show_menu nav ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  .show_menu nav ul li {
    width: 100% !important;
    text-align: center;
  }
  .show_menu nav ul li.has_sub {
    width: 100% !important;
  }
  .show_menu nav ul li a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 200%;
  }
  .page {
    padding: 20px;
  }
  .page:before {
    content: none !important;
    display: none !important;
  }
  .page .header h1 {
    font-size: 10vw;
  }
  .page section.mainpage .grid_events {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page .text {
    font-size: 110%;
  }
  .page .fixed_footer {
    -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: flex-start;
    height: auto !important;
    padding: 15px;
  }
  .page .fixed_footer a {
    width: 100%;
    text-align: center;
  }
  .event-card {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .event-card .event-right {
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
  .grid_events {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .event_alone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
/* --- Mobile (до 500px) --- */
@media screen and (max-width: 500px) {
  .has_img {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .event-card .profileimg {
    bottom: auto;
    -webkit-filter: grayscale(0) !important;
            filter: grayscale(0) !important;
    top: 0px;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .reggrid {
    padding: 20px;
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .reggrid input {
    max-width: 100% !important;
  }
  .textblock.contactsblock {
    margin: 0 !important;
  }
  .textblock.contactsblock .contact_flex {
    gap: 0 !important;
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    width: 100%;
  }
  .textblock.contactsblock .contact_flex .links {
    margin-bottom: 20px !important;
  }
  .textblock.contactsblock .contact_flex .links img {
    width: 100px;
  }
  body .la {
    padding-bottom: 0px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
  }
  body .la .grid {
    padding: 20px;
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .open_prgm {
    width: 100%;
  }
  .open_prgm a {
    display: block;
    text-align: center;
    width: 100% !important;
  }
  .program_container {
    border-radius: 0 !important;
  }
  .flybutton {
    left: 20px;
    right: 20px !important;
    text-align: center;
    bottom: 10px !important;
  }
  .page {
    padding: 0;
  }
  .page .logo {
    padding: 20px;
  }
  .page .logo img {
    width: 90vw;
  }
  .page header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1vw !important;
  }
  .page header img {
    width: 70vw;
    margin: auto;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page header .logo img {
    height: auto;
    width: 70vw;
    margin: auto;
  }
  .page .emailgrid {
    -ms-grid-columns: 1fr 100px !important;
    grid-template-columns: 1fr 100px !important;
  }
  .page .hero {
    margin-bottom: 100px;
  }
  .page .hero .days .text_days {
    font-size: 13vw;
  }
  .page .hero .mainfly {
    margin-top: 20px;
    margin-bottom: -10px;
    width: calc(100% - 20px) !important;
    padding-left: 20px;
  }
  .page .hero .dates {
    padding: 0 20px;
    font-size: 120%;
    text-align: left;
  }
  .page .scrollline {
    gap: 10px !important;
  }
  .page .scrollline h2 {
    font-size: 9vw;
    margin-bottom: 40px;
  }
  .page .scrollline > div {
    margin: 0;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 90% !important;
            flex: 0 0 90% !important;
  }
  .page .scrollline > div.type1 {
    padding-top: 260px;
    padding-left: 30px;
  }
  .page .scrollline > div.type1 img {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  .page .scrollline > div.type2 {
    padding-top: 285px;
    padding-left: 30px;
  }
  .page .scrollline > div.type2 img {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  .page .bigtext {
    height: 600px !important;
    padding-top: 28px !important;
    left: 0;
  }
  .page .bigtext span {
    text-align: center;
  }
  .page .bigtext span.fly {
    font-size: 61vw;
  }
  .page .bigtext span.to {
    display: block;
    line-height: 0;
    margin: 40px 0 70px 0;
    font-size: 69vw;
  }
  .page .bigtext span.baku {
    font-size: 39.5vw;
  }
  .program h4 {
    margin: 0 !important;
    margin-bottom: 50px !important;
  }
  .grid_2 {
    margin-bottom: 0 !important;
  }
  .grid_2 a {
    border-radius: 0 !important;
    padding: 20px;
    font-size: 90%;
  }
  .video {
    border-radius: 0 !important;
    background: none !important;
    margin: 0 !important;
  }
  .video video {
    border-radius: 0 !important;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .cta.btn {
    width: 100% !important;
  }
  section.wsize {
    padding: 30px !important;
  }
  .header h1,
  .header h2 {
    font-size: 14vw !important;
  }
  .blob {
    width: 100px;
    height: 100px;
  }
  .flybutton {
    right: 40px;
    bottom: 40px;
    padding: 14px 28px;
    font-size: 120%;
  }
}
.event-card {
  position: relative;
}
.event-card .profileimg {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 90px;
  border-radius: 10px;
  width: 100px;
  -o-object-position: top center;
     object-position: top center;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.event-card:hover .profileimg {
  bottom: 10px;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.has_img {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240px 40px 1fr;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}
.has_img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  height: 250px;
  width: 100%;
  border-radius: 20px;
}

.inside_content {
  width: calc(100% - 100px);
  max-width: 1000px;
  margin: 150px auto;
  line-height: 1.6;
}
.inside_content .forgot {
  margin-bottom: 20px;
}
.inside_content p {
  font-size: 130%;
}
.inside_content b {
  font-weight: inherit;
  color: #5A49EA;
}
.inside_content .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 50px 0;
}
.inside_content .grid p {
  font-size: 120%;
}
.inside_content .grid h4 {
  font-weight: normal;
  font-style: italic;
  color: #FF4E84;
  font-size: 200%;
}

.la .grid {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 300px 1fr !important;
  grid-template-columns: 300px 1fr !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Усиленное свечение */
}
.la .grid h3 {
  padding: 0;
  margin: 0 0 40px 0;
  color: #FF4E84;
  font-size: 160%;
}
.la .grid .imgwrap {
  position: relative;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.la .grid .imgwrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.la .grid .imgwrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  -webkit-box-shadow: inset 12px 12px 28px rgba(90, 73, 234, 0.6), inset -12px -12px 28px rgba(255, 78, 132, 0.6);
          box-shadow: inset 12px 12px 28px rgba(90, 73, 234, 0.6), inset -12px -12px 28px rgba(255, 78, 132, 0.6);
  /* насыщенная розовая снизу-справа */
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.open_prgm {
  margin-bottom: 50px;
}
.open_prgm a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 20px 45px;
  border-radius: 10px;
  background: #5A49EA;
  color: white;
}
.open_prgm a:hover {
  background: #FF4E84;
}

@media print {
  hmtl,
  body {
    padding: 0;
    margin: 0;
    background: #fff !important;
  }
  body * {
    visibility: hidden !important;
  }
  .inside_content,
  .pdfdownload,
  .pdfdownload * {
    max-width: 100% !important;
    width: 100% !important;
    visibility: visible !important;
  }
  .page .wsize {
    display: none;
  }
  .header {
    display: none;
  }
  .page,
  .inside_content {
    margin: 0;
    padding: 0;
  }
  .flybutton {
    display: none !important;
  }
}
/* запрет разрыва строк таблицы при постраничной генерации */
.pdfdownload tr {
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}

/* чтобы таблицы переносились корректно */
.pdfdownload table {
  page-break-inside: auto;
  -webkit-column-break-inside: auto;
     -moz-column-break-inside: auto;
          break-inside: auto;
}

/* дополнительный буфер для безопасности */
@media print {
  .pdfdownload tr {
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
  }
}
.art_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.date-block {
  margin-bottom: 40px;
}
.date-block .date-title {
  font-size: 1.6em;
  font-weight: 700;
  color: #5A49EA;
  margin-bottom: 20px;
  border-left: 4px solid #FF4E84;
  padding-left: 10px;
  letter-spacing: 0.5px;
}
.date-block .events-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.date-block .events-list .event-card {
  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;
  background: rgba(90, 73, 234, 0.05);
  border: 1px solid rgba(90, 73, 234, 0.2);
  border-radius: 14px;
  padding: 16px 22px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: fadeUp 0.5s ease both;
          animation: fadeUp 0.5s ease both;
}
.date-block .events-list .event-card:hover {
  background: rgba(255, 78, 132, 0.08);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 15px rgba(90, 73, 234, 0.1);
          box-shadow: 0 6px 15px rgba(90, 73, 234, 0.1);
}
.date-block .events-list .event-card .event-left {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.date-block .events-list .event-card .event-left .event-time {
  font-weight: 600;
  color: #FF4E84;
  font-size: 1.1em;
}
.date-block .events-list .event-card .event-left .event-number {
  color: #999;
  font-size: 0.9em;
}
.date-block .events-list .event-card .event-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}
.date-block .events-list .event-card .event-right .event-title {
  padding-right: 100px;
  display: block;
  font-weight: 700;
  color: #5A49EA;
  font-size: 1.1em;
  text-decoration: none;
  margin-bottom: 6px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.date-block .events-list .event-card .event-right .event-title:hover {
  color: #FF4E84;
}
.date-block .events-list .event-card .event-right .event-location {
  color: #666;
  font-size: 0.95em;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 600px) {
  .event-card {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .event-card .event-right {
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
}
.art {
  cursor: pointer;
  text-align: center;
  /* фоновые SVG */
}
.art .name {
  font-size: 200%;
  font-weight: normal;
  color: #FF4E84;
  margin-top: 15px;
}
.art .info {
  display: none;
}
.art .img {
  width: 100%;
  aspect-ratio: 417/347;
  overflow: hidden;
  position: relative;
  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;
}
.art .img img {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.art .img:hover img {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.art .img_1 {
  background: url("../images/artists/bg_path_img_1.svg") no-repeat center;
  background-size: contain;
}
.art .img_1 img {
  clip-path: url(#mask1);
}
.art .img_2 {
  background: url("../images/artists/bg_path_img_2.svg") no-repeat center;
  background-size: contain;
}
.art .img_2 img {
  clip-path: url(#mask2);
}

.artist_popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  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;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 999;
}

.artist_popup.active {
  opacity: 1;
  pointer-events: all;
}

.popup_inner {
  background: #fff;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  -webkit-animation: showPopup 0.4s ease forwards;
          animation: showPopup 0.4s ease forwards;
}

@-webkit-keyframes showPopup {
  from {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes showPopup {
  from {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.close_popup {
  position: absolute;
  right: -16px;
  top: -6px;
  font-size: 30px;
  color: #999;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.close_popup:hover {
  color: #000;
}

.popup_img img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}

.popup_name {
  font-size: 200%;
  color: #FF4E84;
  font-weight: 600;
  margin-bottom: 15px;
}

.popup_info p {
  font-size: 100%;
  color: #5A49EA;
  line-height: 1.6;
  margin-bottom: 10px;
}

#map,
#map * {
  -webkit-filter: none !important;
          filter: none !important;
  mix-blend-mode: normal !important;
}

.info-panel {
  position: fixed;
  right: -300px;
  top: 100px;
  width: 300px;
  height: 100%;
  border-top-left-radius: 30px;
  background: #fff;
  -webkit-transition: right 0.4s ease;
  transition: right 0.4s ease;
  z-index: 10;
}

.info-panel.active {
  right: 0;
}

.info-content {
  padding: 24px;
  font-size: 14px;
  color: #333;
}

.info-content h3 {
  font-size: 200%;
  font-weight: 600;
  color: #5A49EA;
  margin-bottom: 10px;
}

.more-btn {
  display: inline-block;
  margin-top: 10px;
  color: white;
  background: #FF4E84;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.more-btn:hover {
  opacity: 0.8;
}

#map {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-top: -100px;
  height: 80vh;
}

.event-block {
  background: #fff;
  border-radius: 14px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-left: 5px solid var(--rose);
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
}

.event-block:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.date {
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}

.time {
  color: #444;
  font-size: 15px;
  margin-top: 4px;
}

button {
  background: -webkit-gradient(linear, left top, right top, from(#ff1b61), to(#FF4E84));
  background: linear-gradient(90deg, #ff1b61, #FF4E84);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.22s ease, -webkit-box-shadow 0.22s ease;
  transition: -webkit-transform 0.22s ease, -webkit-box-shadow 0.22s ease;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  transition: transform 0.22s ease, box-shadow 0.22s ease, -webkit-transform 0.22s ease, -webkit-box-shadow 0.22s ease;
}

button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.date-title {
  font-size: 200%;
  color: #FF4E84;
  margin-top: 40px !important;
}

table.prgmtable {
  width: 100% !important;
  border-collapse: collapse;
}

.event_alone {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(90, 73, 234, 0.05);
  border: 1px solid rgba(90, 73, 234, 0.2);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 20px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: fadeUp 0.5s ease both;
          animation: fadeUp 0.5s ease both;
}
.event_alone h3 {
  font-size: 200%;
  margin-bottom: 30px;
}
.event_alone .event-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.event_alone .event-info .event-date {
  font-weight: 700;
  color: #5A49EA;
  font-size: 1.2em;
}
.event_alone .event-info .event-time {
  font-weight: 600;
  color: #FF4E84;
  font-size: 1em;
}
.event_alone .event-info .event-location {
  color: #666;
  font-size: 0.95em;
  margin-top: 4px;
}
.event_alone .event-btn {
  background: #FF4E84;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.event_alone .event-btn:hover {
  background: #ff1b61;
  -webkit-box-shadow: 0 0 10px rgba(255, 78, 132, 0.4);
          box-shadow: 0 0 10px rgba(255, 78, 132, 0.4);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
thead {
  background: -webkit-gradient(linear, left top, right top, from(var(--blue)), to(var(--rose)));
  background: linear-gradient(90deg, var(--blue), var(--rose));
  color: #fff;
}

th,
td {
  padding: 14px 20px;
  text-align: left;
  font-size: 15px;
}

th {
  background: #FF4E84;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

tbody tr:nth-child(even) {
  background: rgba(90, 73, 234, 0.04);
}

tbody tr:hover {
  background: rgba(255, 78, 132, 0.08);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

td:first-child {
  color: var(--blue);
  font-weight: 600;
}

.textblock.contactsblock {
  max-width: 1000px;
  margin: 120px auto;
  padding: 40px 20px;
  background: transparent;
  border-radius: 20px;
  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;
  gap: 50px;
}
.textblock.contactsblock .contact_flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.textblock.contactsblock .contact_flex section.wsize {
  padding: 0;
}
.textblock.contactsblock .contact_flex section.wsize .text {
  font-size: 1.2em;
  line-height: 1.6;
  color: #5A49EA;
}
.textblock.contactsblock .contact_flex section.wsize .text a {
  color: #FF4E84;
  font-weight: 700;
  text-decoration: none;
}
.textblock.contactsblock .contact_flex form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.textblock.contactsblock .contact_flex form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 600;
  color: #5A49EA;
  font-size: 1em;
}
.textblock.contactsblock .contact_flex form label span {
  margin-bottom: 8px;
}
.textblock.contactsblock .contact_flex form label input,
.textblock.contactsblock .contact_flex form label textarea {
  border: 2px solid rgba(90, 73, 234, 0.4);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: "Gilroy";
  font-size: 1em;
  background: rgba(90, 73, 234, 0.05);
  color: #5A49EA;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  resize: none;
}
.textblock.contactsblock .contact_flex form label input:focus,
.textblock.contactsblock .contact_flex form label textarea:focus {
  outline: none;
  border-color: #FF4E84;
  background: rgba(255, 78, 132, 0.05);
  -webkit-box-shadow: 0 0 10px rgba(255, 78, 132, 0.3);
          box-shadow: 0 0 10px rgba(255, 78, 132, 0.3);
}
.textblock.contactsblock .contact_flex form label textarea {
  min-height: 120px;
}
.textblock.contactsblock .contact_flex form button {
  background: -webkit-gradient(linear, left top, right top, from(#5A49EA), to(#FF4E84));
  background: linear-gradient(90deg, #5A49EA, #FF4E84);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.textblock.contactsblock .contact_flex form button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 25px rgba(90, 73, 234, 0.2);
          box-shadow: 0 10px 25px rgba(90, 73, 234, 0.2);
}

.textblock2 {
  margin-top: 30px;
}

.flybutton {
  position: fixed;
  right: 100px;
  bottom: 100px;
  background: #5A49EA;
  color: white;
  font-size: 140%;
  font-weight: bold;
  padding: 20px 40px;
  border-radius: 100px;
  cursor: pointer;
}
.flybutton:hover {
  background: #8377ef;
}

.program_container {
  border-radius: 30px;
  overflow: auto;
  max-width: 1000px !important;
}

.prgm {
  width: 1000px;
  margin: auto;
  background: url("../images/pdf/bg.jpg") #fff no-repeat;
  background-size: 100%;
}
.prgm.vip .pdf_header {
  color: #574ce5;
}
.prgm.vip .f {
  background: url("../images/pdf/time_bg_2vip.png") no-repeat top right;
  background-size: contain;
  height: 55px;
}
.prgm.vip .time {
  font-size: 120%;
  background: url("../images/pdf/time_bgvip.png") no-repeat top right;
  background-size: 140% !important;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: white;
  height: 55px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prgm img {
  width: 100% !important;
}
.prgm table tr {
  background: none !important;
  margin-bottom: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 190px 70px 1fr 70px 2fr 70px 100px;
  grid-template-columns: 190px 1fr 2fr 100px;
}
.prgm table tr .type,
.prgm table tr .name_loc {
  font-size: 120%;
}
.prgm table tr .name {
  font-weight: bold;
}
.prgm table tr .f {
  background: url("../images/pdf/time_bg_2.png") no-repeat top right;
  background-size: contain;
  height: 55px;
}
.prgm table tr .time {
  font-size: 120%;
  background: url("../images/pdf/time_bg.png") no-repeat top right;
  background-size: 140% !important;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: white;
  height: 55px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prgm .pdf_header {
  text-align: center;
  font-size: 290%;
  font-weight: bold;
  text-align: center;
  margin: 30px 0 0 0;
  color: #A47ECD;
}
.prgm .day {
  margin-bottom: 100px;
}
.prgm .flex {
  font-size: 150%;
  width: 818px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FF4F81;
  margin: 0 auto 10px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "EuropaNuova";
  font-weight: lighter;
  font-style: italic;
}