:root {
  --swiper-theme-color: #ffffff !important;
  --swiper-pagination-bullet-inactive-color: #ffffff80;
}

body,
button,
a {
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 0;
}

* {
  color: #000000;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0;
  -webkit-tap-highlight-color: transparent;
  transition-delay: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1px solid #000000;
}

button,
a {
  background-color: transparent;
  border: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body.lock-scroll {
  overflow: hidden;
}
body * {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 15px */
}
@media (min-width: 1024px) {
  body * {
    font-size: 16px;
    line-height: 122%; /* 19.52px */
  }
}

#wpadminbar * {
  color: unset !important;
}

.btn {
  height: 42px;
  min-width: 42px;
  background-color: #000000;
  border-radius: 10px;
  color: #ffffff;
  padding: 14px;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.capsule {
  background-color: #000000;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .capsule {
    position: relative;
    transition: padding 0.3s;
  }
  .capsule:before {
    content: "";
    opacity: 0;
    transition: opacity 0.3s;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #ffffff;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  .capsule:hover {
    padding-left: 30px !important;
  }
  .capsule:hover:before {
    opacity: 1;
  }
}

.page {
  padding: 8px;
}

a {
  text-decoration: none;
}

body {
  max-width: 3840px;
  margin: auto;
}

.tile {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 8px;
}
@media (min-width: 1024px) {
  .tile {
    padding: 20px;
  }
}

button {
  transition: color 0.3s;
  cursor: pointer;
}

.yellow {
  background-color: #ffe262;
}

.blue {
  background-color: #b3daf5;
}

.green {
  background-color: #b4e4d8;
}

.pink {
  background-color: #ffade4;
}

@media (min-width: 1024px) {
  *:has(> .gradient-blur):hover .gradient-blur > div,
  *:has(> .gradient-blur):hover .gradient-blur::before,
  *:has(> .gradient-blur):hover .gradient-blur::after {
    opacity: 0;
  }
}

.gradient-blur {
  position: absolute;
  z-index: -1;
  inset: -16px -20px 0;
  pointer-events: none;
  opacity: 1;
}
@media (min-width: 1024px) {
  .gradient-blur {
    inset: -19px -19px 0;
  }
}

.gradient-blur > div,
.gradient-blur::before,
.gradient-blur::after {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity 300ms ease;
}

.gradient-blur::before {
  content: "";
  z-index: 1;
  backdrop-filter: blur(3px);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 16%, rgb(0, 0, 0) 33.5%, rgba(0, 0, 0, 0) 50%);
}

.gradient-blur > div:nth-of-type(1) {
  z-index: 2;
  backdrop-filter: blur(4px);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0) 16%, rgb(0, 0, 0) 33.5%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 64%);
}

.gradient-blur > div:nth-of-type(2) {
  z-index: 3;
  backdrop-filter: blur(5px);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0) 33.5%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 64%, rgba(0, 0, 0, 0) 80%);
}

.gradient-blur > div:nth-of-type(3) {
  z-index: 4;
  backdrop-filter: blur(6px);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 64%, rgb(0, 0, 0) 80%, rgb(0, 0, 0) 93%);
}

.gsap-loaded .fade-in,
.gsap-loaded .fade-in-up {
  opacity: 0;
  will-change: opacity;
}
.gsap-loaded .fade-in-up {
  transform: translateY(30px);
  will-change: opacity, transform;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: calc(50svh - 136px);
}
.hero .marquee {
  padding: 8px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 31px;
  padding-bottom: calc(50svh - 80px);
}
@media (min-width: 730px) {
  .hero .marquee {
    height: 36px;
  }
}
.hero .marquee .gradient {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(90deg, #ffffff 0%, rgba(0, 0, 0, 0) 50%, #ffffff 100%);
}
.hero .marquee .marquee-inner {
  display: flex;
  gap: 4px;
  width: max-content;
  will-change: transform;
}
.hero .marquee .marquee-inner div {
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}
@media (min-width: 730px) {
  .hero .marquee {
    width: 470px;
  }
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.hero .hero-content .hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero .hero-content .hero-text {
    gap: 8px;
  }
}
.hero .hero-content h1,
.hero .hero-content h1 * {
  max-width: 290px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
}
@media (min-width: 1024px) {
  .hero .hero-content h1,
  .hero .hero-content h1 * {
    font-size: 32px;
  }
}
.hero .hero-content h1 span,
.hero .hero-content h1 * span {
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .hero .hero-content h1,
  .hero .hero-content h1 * {
    max-width: 100%;
  }
}

.hero-img-container {
  width: 183px;
  height: 392px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 730px) {
  .hero-img-container {
    width: 470px;
    min-width: 470px;
    height: 710px;
  }
}
.hero-img-container img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.hero-img-container img.desktop-hero-img {
  display: none;
}
@media (min-width: 1024px) {
  .hero-img-container img.desktop-hero-img {
    display: block;
  }
  .hero-img-container img.mobile-hero-img {
    display: none;
  }
}

.hero-img-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.hero-img-text .location a {
  display: flex;
  padding: 8px 12px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 2em;
}
.hero-img-text .location a:before {
  background-color: #000000;
}
.hero-img-text h2 {
  color: #ffffff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
}
@media (min-width: 1024px) {
  .hero-img-text h2 {
    font-size: 32px;
  }
}

.clock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 8px;
  gap: 8px;
}
@media (min-width: 1024px) {
  .clock {
    grid-template-columns: repeat(4, 1fr);
  }
}

.clock-digit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  .clock-digit {
    padding: 70px 12px;
  }
}
.clock-digit span {
  font-size: 72px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%; /* 180px */
}
@media (min-width: 1024px) {
  .clock-digit span {
    font-size: 180px;
  }
}

.roll-out-down {
  animation: rollOutBlur 0.38s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.roll-in-down {
  position: absolute;
  animation: rollInBlur 0.38s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes rollOutBlur {
  0% {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
  50% {
    filter: blur(2.5px);
    opacity: 0.6;
  }
  100% {
    transform: translateY(120%);
    filter: blur(4px);
    opacity: 0;
  }
}
@keyframes rollInBlur {
  0% {
    transform: translateY(-120%);
    filter: blur(4px);
    opacity: 0;
  }
  50% {
    filter: blur(2.5px);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}
.about {
  padding-top: 8px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 120px;
  }
}
.about-content h2,
.about-content p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
}
@media (min-width: 1024px) {
  .about-content h2,
  .about-content p {
    font-size: 22px;
  }
}
.about-content .half {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.about-content .more-btn {
  color: rgba(0, 0, 0, 0.5019607843);
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .about-content .more-btn:hover {
    color: #000000;
  }
}

.filter-active .event,
.filter-active .break {
  filter: blur(10px) grayscale(1);
  pointer-events: none;
}
.filter-active .event.filtered,
.filter-active .break.filtered {
  filter: blur(0) grayscale(0);
  pointer-events: all;
}

.event {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.3s, filter 0.5s;
  overflow: hidden;
}
.event.big-hall {
  grid-column: 1;
}
.event.small-hall {
  grid-column: 2;
}
.event .gradient-blur .gradient-blur > div,
.event .gradient-blur .gradient-blur::before,
.event .gradient-blur .gradient-blur::after {
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .event:hover {
    background-color: #ebebeb;
  }
  .event:hover .gradient-blur > div,
  .event:hover .gradient-blur::before,
  .event:hover .gradient-blur::after {
    opacity: 0 !important;
  }
  .event:hover svg {
    transform: rotate(90deg);
  }
  .event:hover svg path {
    stroke: #000000 !important;
  }
}
.event .event-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event .event-inner .event-time {
  display: flex;
  align-items: center;
  gap: 8px;
}
.event .event-inner .event-time .event-color {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.event .event-inner .event-time .event-color span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  line-height: 0.8em;
}
.event .event-inner .event-time .event-color .gradient-blur {
  inset: -20px -20px 0;
  opacity: 1;
  transition: opacity 0.3s;
  z-index: 1;
}
.event .event-inner .event-time .time,
.event .event-inner .event-time .time * {
  z-index: 3;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
}
@media (min-width: 1024px) {
  .event .event-inner .event-time .time,
  .event .event-inner .event-time .time * {
    font-size: 22px;
  }
}
.event .event-inner .event-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.event .event-inner .event-content h3 {
  hyphens: auto;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
}
@media (min-width: 1024px) {
  .event .event-inner .event-content h3 {
    font-size: 32px;
  }
}
.event .event-inner .event-content p {
  color: rgba(0, 0, 0, 0.5019607843);
}
.event .bottom-container {
  display: flex;
  justify-content: flex-end;
  justify-self: flex-end;
}
.event .bottom-container svg {
  height: 36px;
  width: 36px;
  transition: transform 0.3s;
}
@media (min-width: 1024px) {
  .event .bottom-container svg {
    height: 48px;
    width: 48px;
  }
}
.event .bottom-container svg path {
  stroke: rgba(0, 0, 0, 0.5019607843);
  transition: stroke 0.3s;
}

.break {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5019607843);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  transition: background-color 0.3s, filter 0.5s;
}
@media (min-width: 1024px) {
  .break {
    font-size: 22px;
  }
}

.organization,
.organization-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  border-radius: 2em;
}

.timeline {
  padding-top: 8px;
  position: relative;
}

.timeline-header {
  position: sticky;
  margin: -8px -8px 0;
  padding: 0 8px 0;
  top: 87px;
  z-index: 90;
}
@media (min-width: 1024px) {
  .timeline-header {
    top: 96px;
  }
}
.timeline-header .program {
  padding-top: 8px;
  background-color: #ffffff;
  display: flex;
}
.timeline-header .program-inner {
  flex-grow: 1;
}
.timeline-header-inner {
  gap: 0;
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
}
@media (min-width: 1024px) {
  .timeline-header-inner {
    padding-bottom: 0;
    gap: 0 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.timeline-header .tile {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.timeline-header h2 {
  text-align: center;
}
.timeline-header h3 {
  color: rgba(0, 0, 0, 0.5019607843);
}
.timeline-header .filters {
  padding-top: 8px;
  background-color: #ffffff;
  z-index: 10;
}
.timeline-header .filters-inner {
  align-items: flex-start;
  overflow: hidden;
  gap: 16px;
}
.timeline-header .filter-btns {
  display: flex;
  gap: 12px;
  width: 100%;
}
.timeline-header .filter-btns button {
  border-radius: 2em;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: filter 0.5s;
}
.timeline-header .filter-btns button span {
  z-index: 2 !important;
}
.timeline-header .filter-btns button .gradient-blur {
  inset: -20px -8px 0;
  z-index: 1;
}
.timeline-header .filter-btns button.active .gradient-blur > div,
.timeline-header .filter-btns button.active .gradient-blur::before,
.timeline-header .filter-btns button.active .gradient-blur::after {
  opacity: 0 !important;
}
.timeline-header .filter-btns .filter-all {
  z-index: 2 !important;
  background-color: #ffffff;
  width: 28px;
  flex-grow: 0 !important;
}
.timeline-header .filter-btns .color-filter {
  flex-grow: 1;
}
.timeline-header .hall {
  align-items: flex-start;
}

.halls {
  padding-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  box-shadow: 0 -15px 0px #ffffff;
  background: #ffffff;
  background: linear-gradient(180deg, rgb(255, 255, 255) 50%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 1024px) {
  .halls {
    grid-column: 2;
  }
}

.hall {
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: 0 12px 12px #ffffff, 0 -8px 4px #ffffff;
  gap: 8px;
}
.hall span {
  color: rgba(0, 0, 0, 0.5019607843);
}

.day {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.0784313725);
}
.day:first-of-type {
  padding-top: 0 !important;
}
.day:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .day {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: relative;
  }
}

.day-title {
  display: flex;
  height: min-content;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .day-title {
    position: sticky;
    top: 196px;
  }
}
.day-title h4,
.day-title .date {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
}
@media (min-width: 1024px) {
  .day-title h4,
  .day-title .date {
    font-size: 32px;
  }
}
.day-title .date,
.day-title .date * {
  color: rgba(0, 0, 0, 0.5019607843);
}

.day-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.full-width-logo-section {
  width: 100%;
  border-radius: 10px;
  height: 380px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .full-width-logo-section {
    height: 460px;
  }
}
.full-width-logo-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.full-width-logo-section svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 260px;
  width: 260px;
}
.full-width-logo-section svg path {
  fill: #ffffff;
}
@media (min-width: 1024px) {
  .full-width-logo-section svg {
    height: 360px;
    width: 360px;
  }
}

.popup {
  position: fixed;
  inset: 0;
  display: none;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  z-index: 200;
}
.popup.active {
  display: block;
}
@media (min-width: 1024px) {
  .popup[data-popup-color=white] .popup-bg {
    background: rgba(255, 255, 255, 0.5) !important;
  }
}
.popup[data-popup-color=yellow] .popup-header {
  background: linear-gradient(180deg, #ffe262 0%, #fff 100%);
}
@media (min-width: 1024px) {
  .popup[data-popup-color=yellow] .popup-bg {
    background: rgba(255, 226, 98, 0.5) !important;
  }
}
.popup[data-popup-color=blue] .popup-header {
  background: linear-gradient(180deg, #b3daf5 0%, #fff 100%);
}
@media (min-width: 1024px) {
  .popup[data-popup-color=blue] .popup-bg {
    background: rgba(179, 218, 245, 0.5) !important;
  }
}
.popup[data-popup-color=green] .popup-header {
  background: linear-gradient(180deg, #b4e4d8 0%, #fff 100%);
}
@media (min-width: 1024px) {
  .popup[data-popup-color=green] .popup-bg {
    background: rgba(180, 228, 216, 0.5) !important;
  }
}
.popup[data-popup-color=pink] .popup-header {
  background: linear-gradient(180deg, #ffade4 0%, #fff 100%);
}
@media (min-width: 1024px) {
  .popup[data-popup-color=pink] .popup-bg {
    background: rgba(255, 173, 228, 0.5) !important;
  }
}

.popup-bg {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(70px);
  background-color: rgba(255, 255, 255, 0.5);
}

.popup-inner {
  position: absolute;
  inset: 0;
  height: 100dvh;
  display: flex;
  justify-content: center;
  overflow-y: auto;
  will-change: opacity, filter, transition;
}

.popup-content {
  position: relative;
  width: 100%;
  height: fit-content;
  min-height: 100dvh;
  background-color: #ffffff;
}
@media (min-width: 730px) {
  .popup-content {
    width: 470px;
    margin: 200px 0;
    border-radius: 10px;
  }
}
.popup-content-inner {
  overflow: hidden;
  display: none;
}
.popup-content-inner.active {
  display: block;
}
.popup-content-inner .img-container {
  padding: 8px;
}
.popup-content-inner .img-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-popup-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 730px) {
  .close-popup-btn {
    top: 20px;
    right: 20px;
  }
}
@media (min-width: 1024px) {
  .close-popup-btn:hover svg path {
    stroke: #000000;
  }
}
.close-popup-btn svg {
  transform: rotate(45deg);
  height: 36px;
  width: 36px;
}
@media (min-width: 730px) {
  .close-popup-btn svg {
    height: 48px;
    width: 48px;
  }
}
.close-popup-btn svg path {
  stroke: rgba(0, 0, 0, 0.5019607843);
  transition: stroke 0.3s;
}

.popup-header.blue {
  background: linear-gradient(180deg, #b3daf5 0%, #fff 100%);
}
.popup-header.green {
  background: linear-gradient(180deg, #b4e4d8 0%, #fff 100%);
}
.popup-header.pink {
  background: linear-gradient(180deg, #ffade4 0%, #fff 100%);
}
@media (min-width: 730px) {
  .popup-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
.popup-header .event-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 16px 16px 56px;
}
@media (min-width: 730px) {
  .popup-header .event-header {
    padding: 20px 20px 140px;
  }
}
.popup-header .event-header h2 {
  max-width: calc(100% - 36px);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
}
@media (min-width: 1024px) {
  .popup-header .event-header h2 {
    font-size: 32px;
  }
}
@media (min-width: 730px) {
  .popup-header .event-header h2 {
    max-width: calc(100% - 48px);
  }
}
.popup-header .date-container {
  display: flex;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
.popup-header .date-container .date-half {
  display: flex;
  flex-direction: column;
  padding: 16px;
  width: 100%;
}
.popup-header .date-container .date-half:first-of-type {
  border-right: 1px solid #000000;
  justify-content: center;
  align-items: center;
}
.popup-header .date-container .date-half span {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
}
@media (min-width: 1024px) {
  .popup-header .date-container .date-half span {
    font-size: 32px;
  }
}

.popup-text-box {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 40px;
}
@media (min-width: 730px) {
  .popup-text-box {
    padding: 40px;
  }
}
.popup-text-box h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
}
@media (min-width: 1024px) {
  .popup-text-box h2 {
    font-size: 32px;
  }
}
.popup-text-box .social-icons {
  list-style-type: none;
  display: flex;
}
.popup-text-box .social-icons a svg {
  height: 36px;
  width: 36px;
}

.popup-gallery {
  padding: 8px;
}
.popup-gallery .swiper-slide {
  border-radius: 10px;
}
.popup-gallery p {
  text-align: center;
  color: rgba(0, 0, 0, 0.5019607843);
  padding: 8px;
}
@media (min-width: 730px) {
  .popup-gallery p {
    padding: 20px 16px 16px;
  }
}

.btn-conteiner {
  padding: 8px;
}
.btn-conteiner a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 80px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
}
@media (min-width: 1024px) {
  .btn-conteiner a {
    font-size: 22px;
  }
}
@media (min-width: 730px) {
  .btn-conteiner a {
    height: 106px;
  }
}
.btn-conteiner a .gradient-blur {
  inset: -20px -8px 0;
}

.category-events {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.popup-header .logo-container {
  padding: 92px 16px 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-header .logo-container svg {
  height: 200px;
  width: 200px;
}

.about-popup-p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
}
@media (min-width: 1024px) {
  .about-popup-p {
    font-size: 22px;
  }
}

.site {
  position: relative;
  padding-top: 96px;
}
@media (min-width: 1024px) {
  .site {
    padding-top: 120px;
  }
}

header {
  position: fixed;
  top: 8px;
  left: 8px;
  right: 8px;
  padding: 8px;
  border-radius: 10px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  height: 80px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 -16px 0 #ffffff;
  z-index: 100;
  transition: background-color 0.3s;
}
@media (min-width: 1024px) {
  header {
    height: 88px;
    padding: 8px 16px;
  }
}
header .col {
  display: flex;
  z-index: 105;
}
header .col:nth-last-of-type(2) {
  justify-content: center;
}
header .col:last-of-type {
  justify-content: flex-end;
}
header .logo {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) {
  header .logo {
    height: 72px;
  }
}
header .logo .circle {
  position: relative;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  height: 40px;
  width: 40px;
  pointer-events: none;
  transition: transform 0.3s ease-out, background-color 0.3s;
  will-change: transform;
}
@media (min-width: 1024px) {
  header .logo .circle {
    height: 45px;
    width: 45px;
    font-size: 20px;
  }
}
header .logo .circle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  z-index: 105;
  transition: opacity 0.3s, filter 0.3s;
  will-change: opacity, filter;
}
header .logo .circle .number {
  filter: blur(5px);
  opacity: 0;
}
header .logo .circle:first-of-type {
  transform: translate(36px, 10px);
}
header .logo .circle:nth-of-type(2) {
  transform: translate(0, -10px);
}
header .logo .circle:last-of-type {
  transform: translate(-36px, 10px);
}
@media (min-width: 1024px) {
  header .logo .circle:first-of-type {
    transform: translate(40px, 12px);
  }
  header .logo .circle:nth-of-type(2) {
    transform: translate(0, -12px);
  }
  header .logo .circle:last-of-type {
    transform: translate(-40px, 12px);
  }
}
header.scrolled {
  background-color: #f5f5f5;
}
header.scrolled .circle {
  pointer-events: all;
}
@media (min-width: 1024px) {
  header.scrolled .circle:hover {
    background-color: rgba(0, 0, 0, 0.5019607843);
  }
}
header.scrolled .circle .letter {
  filter: blur(5px);
  opacity: 0;
}
header.scrolled .circle .number {
  filter: blur(0);
  opacity: 1;
}
header.scrolled .circle:first-of-type {
  transform: translate(0, 0);
}
header.scrolled .circle:nth-of-type(2) {
  transform: translate(0, 0);
}
header.scrolled .circle:last-of-type {
  transform: translate(0, 0);
}

.home-btn {
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (min-width: 1024px) {
  .home-btn {
    height: 48px;
    width: 48px;
    transition: background-color 0.3s;
  }
  .home-btn:hover {
    background-color: rgba(0, 0, 0, 0.5019607843);
  }
}

.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.register-btn span {
  display: none;
  color: inherit;
}
@media (min-width: 1024px) {
  .register-btn {
    height: 48px;
  }
  .register-btn span {
    display: block !important;
  }
}

footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}
footer .footer-content {
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  footer .footer-content {
    grid-template-columns: repeat(8, 1fr);
  }
}
footer .footer-content .mini-logo-col svg {
  fill: rgba(0, 0, 0, 0.5019607843);
}
footer .footer-content .register-col {
  padding: 0 8px 20px;
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  footer .footer-content .register-col {
    grid-column: 5;
  }
}
footer .footer-content .contact-col {
  padding: 0 8px 40px;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .footer-content .contact-col * {
  color: rgba(0, 0, 0, 0.5019607843);
}
@media (min-width: 1024px) {
  footer .footer-content .contact-col {
    gap: 40px;
    grid-column: 2/5;
    grid-row: 1;
    padding: 0 20px;
  }
}
footer .footer-content .contact-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .footer-content .contact-box a {
  text-decoration: underline;
  transition: color 0.3s;
}
@media (min-width: 1024px) {
  footer .footer-content .contact-box a:hover {
    color: #000000;
  }
}
@media (min-width: 1024px) {
  footer .footer-content .contact-box {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
  footer .footer-content .contact-box .contact-elem {
    grid-column: 2;
  }
}
footer .footer-bottom * {
  color: rgba(0, 0, 0, 0.5019607843);
}

/*# sourceMappingURL=style.css.map */
