*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #111111;
  color: #ffffff;
  overflow-x: hidden;
}

.site-container {
  width: 100%;
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 575.98px) {
  .site-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.text-yellow {
  color: #FDD718;
}

.text-red {
  color: #D30E05;
}

.text-white {
  color: #ffffff;
}

.btn-dark-outline, .btn-outline-white, .wp-element-button, .btn-red, .btn-yellow {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 28px;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  width: fit-content;
}
.btn-dark-outline:active, .btn-outline-white:active, .wp-element-button:active, .btn-red:active, .btn-yellow:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(17, 17, 17, 0.5);
}

.btn-dark-outline:hover, .btn-outline-white:hover, .wp-element-button:hover, .btn-red:hover, .btn-yellow:hover {
  transform: translate(-2px, -2px);
}

.btn {
  width: fit-content;
}
.btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.btn-yellow {
  position: relative;
  overflow: hidden;
  background: #FDD718;
  color: #111111;
  box-shadow: 6px 8px 0 #111111;
}
.btn-yellow img {
  width: 28px;
  height: 28px;
}
.btn-yellow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.btn-yellow:hover {
  background: rgb(244.2849785408, 204.0995708155, 2.1150214592);
  color: #111111;
  box-shadow: 6px 8px 0 #111111;
}
.btn-yellow:hover::before {
  left: 100%;
}

.btn-red {
  background: #D30E05;
  color: #ffffff;
  box-shadow: 6px 6px 0 #111111;
  border: 2px solid #111111;
}
.btn-red:hover {
  background: rgb(171.1444444444, 11.3555555556, 4.0555555556);
  color: #ffffff;
  box-shadow: 8px 10px 0 rgba(17, 17, 17, 0.5);
}

.wp-element-button {
  background: #D30E05;
  color: #ffffff;
  box-shadow: 6px 6px 0 #111111;
  border: 2px solid #111111;
}
.wp-element-button:hover {
  background: rgb(171.1444444444, 11.3555555556, 4.0555555556);
  color: #ffffff;
  box-shadow: 8px 10px 0 rgba(17, 17, 17, 0.5);
}

.btn-outline-white {
  background: #ffffff;
  color: #111111;
  box-shadow: 6px 8px 0 #111111;
}
.btn-outline-white:hover {
  background: #ffffff;
  color: #111111;
}

.btn-dark-outline {
  background: #111111;
  color: #ffffff;
  box-shadow: 4px 6px 0 rgba(17, 17, 17, 0.3);
}
.btn-dark-outline:hover {
  background: #1a1a1a;
  color: #ffffff;
  box-shadow: 8px 10px 0 rgba(17, 17, 17, 0.3);
}

.btn-register {
  background: #FDD718;
  color: #111111;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 24px;
  border: 2px solid #111111;
  border-radius: 0;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 3px 3px 0 rgba(17, 17, 17, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-register:hover {
  background: rgb(234.1725321888, 195.6506437768, 2.0274678112);
  color: #111111;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(17, 17, 17, 0.5);
}

.section-heading {
  font-family: "Anton", sans-serif;
  font-size: 74px;
  line-height: 1;
  font-style: italic;
}
.section-heading .line-white {
  color: #ffffff;
  display: inline-block;
}
.section-heading .line-yellow {
  color: #FDD718;
  display: block;
}

header.show-nav {
  position: fixed;
  height: 100vh;
  top: 0;
  width: 100%;
  right: 0;
  z-index: 100;
}

.site-navbar {
  background: #111111;
  padding: 0.6rem 0;
  border-bottom: 3px solid #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-navbar .site-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .site-navbar .site-container {
    flex-wrap: nowrap;
  }
}
.site-navbar .site-logo img {
  height: 80px;
}
.site-navbar .navbar-nav {
  margin-left: auto;
  margin-right: 0;
}
.site-navbar .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff !important;
  text-transform: uppercase;
  padding: 10px 6px !important;
  position: relative;
  transition: color 0.2s ease;
}
@media (min-width: 1400px) {
  .site-navbar .nav-link {
    padding: 10px 15px !important;
    font-size: 16px;
  }
}
.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: #FDD718;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-navbar .nav-link:hover, .site-navbar .nav-link.active {
  color: #FDD718 !important;
}
.site-navbar .nav-link:hover::after, .site-navbar .nav-link.active::after {
  transform: scaleX(1);
}
@media (min-width: 1200px) {
  .site-navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    align-items: center;
    flex: 1;
    margin-left: 2rem;
  }
}
@media (max-width: 1199px) {
  .site-navbar .navbar-collapse {
    position: fixed;
    top: 76px;
    background: #000;
    width: 100%;
    height: calc(100vh - 76px);
    left: 0px;
    padding: 40px 40px;
  }
}
@media (max-width: 1199px) {
  .site-navbar .navbar-collapse .navbar-nav {
    row-gap: 12px;
    margin-bottom: 24px;
  }
}

.hero-section {
  position: relative;
  min-height: calc(91vh - 70px);
  background-image: url("/app/uploads/2026/05/hero-bg.png");
  background-size: cover;
  background-position: center -60px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}
.hero-section::after {
  content: "";
  width: 48vw;
  z-index: 0;
  background-image: url("/app/uploads/2026/05/hero-banner.png");
  background-size: cover;
  background-position: center;
  aspect-ratio: 1.3/1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}
.hero-section.contact {
  background-image: url("/app/uploads/2026/05/red-banner-bg.png");
  background-position: center bottom;
  border-bottom: 10px solid #111111;
  min-height: calc(48vh - 70px) !important;
}
.hero-section.contact::after {
  display: none;
}
.hero-section.contact .hero-headline {
  text-align: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.2) 45%, transparent 65%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 3rem 0;
}

.hero-left {
  padding-right: 2rem;
}

.hero-headline {
  font-family: "Anton", sans-serif;
  font-size: 106px;
  line-height: 1.01;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  transform: rotate(-3.5deg);
  word-spacing: -8px;
  letter-spacing: 1px;
}
.hero-headline .line-white {
  color: #ffffff;
  text-shadow: -12px 10px 0 #111111;
}
.hero-headline .line-yellow {
  color: #FDD718;
  font-size: 136px;
  text-shadow: -12px 10px 0 #111111;
}

.hero-subtext {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  max-width: 70%;
  transform: rotate(-3.5deg);
  margin-left: 40px;
  max-width: 500px;
}

.hero-btns {
  margin-top: 36px !important;
  margin-left: 30px;
}

.hero-section.hero-parallax-ready {
  background-image: none;
}
.hero-section.hero-parallax-ready::after {
  display: none;
}
.hero-section.hero-parallax-ready::before {
  z-index: 1;
}
.hero-section.hero-parallax-ready .hero-parallax-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  perspective: 1400px;
  perspective-origin: 50% 40%;
  pointer-events: none;
}
.hero-section.hero-parallax-ready .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 100%;
  will-change: transform;
}
@media (max-width: 991.98px) {
  .hero-section.hero-parallax-ready .hero-parallax-banner {
    width: 38vw;
    right: 12px;
    top: 48%;
  }
}
@media (max-width: 767.98px) {
  .hero-section.hero-parallax-ready {
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-section.hero-parallax-ready .hero-parallax-banner {
    width: 100%;
    height: 68vw;
    max-width: 100%;
    left: 50%;
    right: auto;
    top: 5vh;
    aspect-ratio: auto;
    transform: translate3d(calc(-50% + var(--hero-banner-x)), var(--hero-banner-y), 0);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
  }
  .hero-section.hero-parallax-ready .hero-inner {
    margin-top: auto;
    padding: 1rem 0 1.5rem;
  }
}
@media (max-width: 767.98px) and (max-height: 667px) {
  .hero-section.hero-parallax-ready .hero-parallax-banner {
    width: 100%;
    height: 44vw;
    max-width: 100%;
    left: 50%;
    right: auto;
    top: 1vh;
    transform: translate3d(calc(-50% + var(--hero-banner-x)), var(--hero-banner-y), 0);
  }
}

.hero-parallax-bg {
  position: absolute;
  top: -25%;
  left: 0;
  right: 0;
  bottom: -25%;
  width: 100%;
  z-index: 0;
  background-image: url("/app/uploads/2026/05/hero-bg.png");
  background-size: cover;
  background-position: center -60px;
  background-repeat: no-repeat;
  will-change: transform;
  transform-origin: center center;
  pointer-events: none;
  backface-visibility: hidden;
}

.hero-parallax-banner {
  position: absolute;
  width: 48vw;
  aspect-ratio: 1.3/1;
  top: 50%;
  right: 30px;
  left: auto;
  z-index: 2;
  background-image: url("/app/uploads/2026/05/hero-banner.png");
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform-origin: center center;
  pointer-events: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  --hero-banner-x: 0px;
  --hero-banner-y: 0px;
  transform: translate3d(var(--hero-banner-x), calc(-50% + var(--hero-banner-y)), 120px);
}

.hero-section.contact.hero-parallax-ready {
  overflow: hidden;
}
.hero-section.contact.hero-parallax-ready .hero-parallax-scene {
  perspective: none;
}
.hero-section.contact.hero-parallax-ready .hero-parallax-bg--contact {
  background-image: url("/app/uploads/2026/05/red-banner-bg.png");
  background-position: center bottom;
  background-size: cover;
}

.content-wrap .about-heading-wrap.content-heading-parallax-ready,
.contact-section .about-heading-wrap.content-heading-parallax-ready {
  will-change: transform;
  transform-origin: left center;
  transform: rotate(-2deg) translate3d(0, var(--content-heading-parallax-y, 0px), 0);
}

.parallax-section {
  position: relative;
  overflow: hidden;
  will-change: background-position;
  background-attachment: scroll !important;
}

.about-section,
.expect-section {
  --section-bg-y: 0px;
  background-position: center calc(50% + var(--section-bg-y, 0px));
}

.about-section.about-parallax-ready {
  background-image: none;
}
.about-section.about-parallax-ready .about-parallax-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: #2257d6;
}
.about-section.about-parallax-ready .site-container {
  position: relative;
  z-index: 2;
}
.about-section.about-parallax-ready .about-left {
  position: relative;
}
.about-section.about-parallax-ready .about-heading-wrap {
  will-change: transform;
  transform: rotate(-2deg) translate3d(0, var(--about-parallax-heading-y, 0px), 0);
}
.about-section.about-parallax-ready .about-body {
  will-change: transform;
  transform: translate3d(0, var(--about-parallax-body-y, 0px), 0);
}
.about-section.about-parallax-ready .about-left .btn {
  will-change: transform;
  transform: translate3d(0, var(--about-parallax-btn-y, 0px), 0);
}
.about-section.about-parallax-ready .about-img-wrap {
  transform: perspective(900px) rotateX(4deg) rotateY(-6deg) rotate(1.5deg) translate3d(0, var(--about-parallax-img-y, 0px), 0);
}
.about-section.about-parallax-ready .about-img-wrap:hover {
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) rotate(0deg) scale(1.02) translate3d(0, var(--about-parallax-img-y, 0px), 0);
}

.about-parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  width: 100%;
  background-image: url("/app/uploads/2026/05/about-section-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform-origin: center center;
  pointer-events: none;
  backface-visibility: hidden;
}

.expect-section.expect-parallax-ready {
  position: relative;
  overflow: hidden;
  background-image: none;
}
.expect-section.expect-parallax-ready .expect-parallax-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.expect-section.expect-parallax-ready .site-container {
  position: relative;
  z-index: 2;
}
.expect-section.expect-parallax-ready .expect-header {
  overflow: visible;
  position: relative;
  z-index: 2;
  padding-bottom: 12px;
}
.expect-section.expect-parallax-ready .expect-title {
  will-change: transform;
  transform-origin: left center;
  transform: rotate(-3deg) translate3d(0, var(--expect-parallax-title-y, 0px), 0);
}
.expect-section.expect-parallax-ready .expect-card {
  will-change: transform;
  transform: translate3d(0, var(--expect-parallax-card-y, 0px), 0);
}

.expect-parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  width: 100%;
  background-image: url("/app/uploads/2026/05/expect-section-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  will-change: transform;
  transform-origin: center center;
  pointer-events: none;
  backface-visibility: hidden;
}

.expect-section {
  background-position: center calc(0% + var(--section-bg-y, 0px));
}

.three-cols-section.three-cols-parallax-ready {
  overflow: hidden;
}

.tcol.tcol-parallax-ready {
  overflow: hidden;
  background-image: none;
}
.tcol.tcol-parallax-ready .tcol-parallax-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.tcol.tcol-parallax-ready.tcol--yellow .tcol-parallax-scene {
  background-color: #fdcd02;
}
.tcol.tcol-parallax-ready.tcol--blue .tcol-parallax-scene {
  background-color: #06389c;
}
.tcol.tcol-parallax-ready.tcol--red .tcol-parallax-scene {
  background-color: #e80000;
}
.tcol.tcol-parallax-ready .tcol__inner {
  position: relative;
  z-index: 2;
}
.tcol.tcol-parallax-ready.tcol--yellow .tcol__heading {
  will-change: transform;
  transform: rotate(-3deg) translate3d(0, var(--tcol-parallax-y, 0px), 0);
}
.tcol.tcol-parallax-ready.tcol--blue .tcol__heading, .tcol.tcol-parallax-ready.tcol--red .tcol__heading {
  will-change: transform;
  transform: translate3d(0, var(--tcol-parallax-y, 0px), 0);
}
.tcol.tcol-parallax-ready .tcol__inner > * {
  will-change: transform;
  transform: translate3d(0, var(--tcol-parallax-y, 0px), 0);
}

.tcol-parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  width: 100%;
  background-repeat: no-repeat;
  will-change: transform;
  transform-origin: center center;
  pointer-events: none;
  backface-visibility: hidden;
}
.tcol-parallax-bg--yellow {
  background-image: url("/app/uploads/2026/05/yellow-col-bg.png");
  background-size: contain;
  background-position: bottom;
}
.tcol-parallax-bg--blue {
  background-image: url("/app/uploads/2026/05/blue-col-bg.png");
  background-size: cover;
  background-position: right bottom;
}
.tcol-parallax-bg--red {
  background-image: url("/app/uploads/2026/05/red-col-bg.png");
  background-size: contain;
  background-position: right bottom;
}

@keyframes scrollRevealUp {
  from {
    opacity: 0;
    transform: translateY(48px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollRevealLeft {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scrollRevealRight {
  from {
    opacity: 0;
    transform: translateX(48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scrollRevealScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.scroll-reveal {
  opacity: 0;
  will-change: transform, opacity;
}
.scroll-reveal.is-visible {
  animation: scrollRevealUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}
.scroll-reveal--left.is-visible {
  animation-name: scrollRevealLeft;
}
.scroll-reveal--right.is-visible {
  animation-name: scrollRevealRight;
}
.scroll-reveal--scale.is-visible {
  animation-name: scrollRevealScale;
}
.scroll-reveal--rotate.is-visible {
  animation-name: scrollRevealLeftRotate;
}

@keyframes scrollRevealLeftRotate {
  from {
    opacity: 0;
    transform: translateX(-48px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(-2deg);
  }
}
.hero-headline.scroll-reveal.is-visible {
  animation-name: scrollRevealHeroHeadline;
}

@keyframes scrollRevealHeroHeadline {
  from {
    opacity: 0;
    transform: translateY(40px) rotate(-3.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-3.5deg);
  }
}
.hero-subtext.scroll-reveal.is-visible {
  animation-name: scrollRevealHeroSubtext;
}

@keyframes scrollRevealHeroSubtext {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(-3.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-3.5deg);
  }
}
.about-heading-wrap.scroll-reveal.is-visible {
  animation-name: scrollRevealLeftRotate;
}

.about-img-wrap.scroll-reveal.is-visible {
  animation-name: scrollRevealScaleTilt;
}

@keyframes scrollRevealScaleTilt {
  from {
    opacity: 0;
    transform: perspective(900px) rotateX(12deg) rotateY(-12deg) rotate(1.5deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: perspective(900px) rotateX(4deg) rotateY(-6deg) rotate(1.5deg) scale(1);
  }
}
.expect-title.scroll-reveal.is-visible {
  animation-name: scrollRevealExpectTitle;
}

@keyframes scrollRevealExpectTitle {
  from {
    opacity: 0;
    transform: translateY(40px) rotate(-3deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-3deg);
  }
}
.expect-section .expect-header,
.expect-section .expect-title,
.expect-section .expect-title .text-red {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
  }
  .scroll-reveal.is-visible {
    animation: none;
  }
  .hero-parallax-bg,
  .hero-parallax-banner,
  .hero-parallax-ready .hero-inner,
  .about-parallax-bg,
  .about-parallax-ready .about-heading-wrap,
  .about-parallax-ready .about-body,
  .about-parallax-ready .about-left .btn,
  .about-parallax-ready .about-img-wrap,
  .expect-parallax-bg,
  .expect-parallax-ready .expect-title,
  .expect-parallax-ready .expect-card,
  .hero-parallax-bg--contact,
  .hero-section.contact.hero-parallax-ready .hero-inner,
  .content-heading-parallax-ready,
  .tcol-parallax-bg,
  .tcol-parallax-ready .tcol__heading,
  .tcol-parallax-ready .tcol__inner > * {
    transform: none !important;
  }
}
.stats-bar {
  background: #0f0f0f;
  padding: 1.4rem 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-right: 1px solid #5c5c5c;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item .stat-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}
.stat-item .stat-text {
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}
.stat-item .stat-text p {
  margin-bottom: 4px;
}

.about-section {
  position: relative;
  background-image: url("/app/uploads/2026/05/about-section-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 24px 0;
  overflow: hidden;
  border-bottom: 7px solid #111111;
}

.about-left {
  padding-right: 40px;
}

.about-heading-wrap {
  display: inline-block;
  transform: rotate(-2deg);
  transform-origin: left center;
  margin-bottom: 32px;
}
.about-heading-wrap span,
.about-heading-wrap .section-heading span {
  width: fit-content;
  padding: 4px 24px 4px 6px;
  background: #111111;
  box-shadow: -8px 10px 0 #111111;
}
.about-heading-wrap span.line-white,
.about-heading-wrap .section-heading span.line-white {
  margin-left: -8px;
  background: #ffffff;
  color: #111111;
}
.about-heading-wrap .section-heading {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.about-body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  max-width: 530px;
}

.about-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img-wrap {
  transform: perspective(900px) rotateX(4deg) rotateY(-6deg) rotate(1.5deg);
  transform-origin: center bottom;
  border: 10px solid #111111;
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.6);
  line-height: 0;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.about-img-wrap:hover {
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) rotate(0deg) scale(1.02);
}

.about-img {
  border: 10px solid #ffffff;
  width: 100%;
  aspect-ratio: 3/1.9;
  display: block;
  object-fit: cover;
}

.expect-section {
  background-image: url("/app/uploads/2026/05/expect-section-bg.png");
  background-size: cover;
  background-position: center top;
  background-attachment: scroll;
  padding: 62px 0;
}

.expect-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  overflow: visible;
}

.expect-title {
  font-style: italic;
  line-height: 1.1;
  white-space: nowrap;
  color: #111111;
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: nowrap;
  transform: rotate(-3deg);
  transform-origin: left center;
  padding: 4px 16px 12px 4px;
}
.expect-title .text-red {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-bottom: 2px;
}
.expect-title .expect-underline {
  position: absolute;
  bottom: 4px;
  right: 4px;
  z-index: 0;
  width: 210px;
  height: 14px;
  background: #FDD718;
  transform: rotate(-3deg);
  pointer-events: none;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.expect-card {
  background: #ffffff;
  border: 2px solid rgba(17, 17, 17, 0.6);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.expect-card:last-child {
  box-shadow: 4px 2px 0 #111111;
}
.expect-card:hover {
  box-shadow: 6px 6px 0 #111111;
}
.expect-card--tilt-left {
  transform: rotate(-1deg);
}
.expect-card--tilt-left:hover {
  transform: rotate(-0.5deg);
}
.expect-card--tilt-right {
  transform: rotate(1deg);
}
.expect-card--tilt-right:hover {
  transform: rotate(0.5deg);
}
.expect-card__icon {
  width: 100px;
  height: 100px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.expect-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.expect-card__title {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  width: min-content;
  color: #111111;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}
.expect-card__body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

.three-cols-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 560px;
}

.tcol {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
}
.tcol--yellow {
  background-image: url("/app/uploads/2026/05/yellow-col-bg.png");
}
.tcol--yellow .tcol__inner {
  padding-left: 100px;
}
.tcol--yellow .tcol__heading {
  color: #111111;
  transform: rotate(-3deg);
}
.tcol--blue {
  background-image: url("/app/uploads/2026/05/blue-col-bg.png");
  background-position: right bottom;
  background-size: cover;
}
.tcol--blue .tcol__inner {
  align-items: center;
}
.tcol--blue .tcol__heading {
  text-align: center;
}
.tcol--red {
  background-image: url("/app/uploads/2026/05/red-col-bg.png");
  background-position: right bottom;
}
.tcol--red .tcol__inner {
  padding-right: 100px;
  gap: 4px;
}
.tcol__inner {
  width: 100%;
  padding: 40px 48px 50px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.tcol__heading {
  font-size: 52px;
  line-height: 1.05;
  font-style: italic;
}

.agenda-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.agenda-list li {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}
.agenda-list li img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.attends-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 12px;
  width: 100%;
}

.attends-divider {
  grid-column: 1/-1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.attends-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.attends-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.attends-item span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  text-transform: uppercase;
}
.attends-item--centered {
  grid-column: 1/-1;
  justify-self: center;
}

.sponsor-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sponsor-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #111111;
  padding: 10px 16px;
}
.sponsor-item__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sponsor-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sponsor-item__text strong {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}
.sponsor-item__text p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.site-footer {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  background-image: url("/app/uploads/2026/05/footer-section-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.footer-cta {
  padding: 72px 0 20px;
}
.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-cta__left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}
.footer-cta__heading {
  font-size: 52px;
  font-style: italic;
  line-height: 1.02;
  color: #ffffff;
  white-space: nowrap;
  transform: rotate(-3deg);
}
.footer-cta__heading .text-yellow {
  font-size: 68px;
  margin-left: -24px;
}
.footer-cta__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1;
}
.footer-cta__right {
  flex-shrink: 0;
}

.star-icon {
  display: flex;
  align-items: flex-start;
}
.star-icon img {
  object-fit: contain;
  width: 24px;
  height: 24px;
}
.star-icon--sm img {
  margin-top: 20px;
  transform: rotate(-10deg);
}
.star-icon--lg img {
  margin-top: 80px;
  transform: rotate(10deg);
}

.footer-burst {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.footer-meta {
  display: flex;
  align-items: center;
  width: 100%;
}
.footer-meta__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
}
.footer-meta__item:first-child {
  padding-left: 0;
}
.footer-meta__item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-meta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.footer-meta__text strong {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-meta__text span {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-meta__divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.footer-nav__inner {
  display: flex;
  border-top: 1px solid #333;
  padding: 16px 0;
  align-items: center;
  gap: 32px;
}
.footer-nav__logo {
  flex-shrink: 0;
}
.footer-nav__logo img {
  width: 100px;
}
.footer-nav__links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.footer-nav__links li a {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 15px;
  transition: color 0.2s ease;
}
.footer-nav__links li a:hover {
  color: #FDD718;
}
.footer-nav__social {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.footer-nav__social a {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.15s ease;
}
.footer-nav__social a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.footer-nav__social a:hover {
  transform: translateY(-2px);
}

.contact-section {
  background-image: url("/app/uploads/2026/05/contact-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 64px 0 80px;
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-title {
  color: #111111;
  font-style: italic;
  display: inline-flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 16px;
  transform: rotate(-2deg);
  position: relative;
  margin-bottom: 16px;
}
.contact-title .text-red {
  position: relative;
  z-index: 1;
}
.contact-title .contact-underline {
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 180px;
  height: 14px;
  background: #FDD718;
  transform: rotate(-2deg);
  z-index: 0;
}

.contact-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #444;
  margin-top: 8px;
}

.contact-form-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 3px solid #111111;
  box-shadow: 10px 12px 0 #111111;
  padding: 48px 52px;
  transform: rotate(-0.5deg);
}

.contact-form-wrap .ff-el-group {
  margin-bottom: 24px;
}
.contact-form-wrap .ff-el-input--label label,
.contact-form-wrap .ff-el-input--label .ff-el-is-required {
  font-family: "Anton", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: #111111;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-form-wrap .ff-el-is-required.asterisk-right::after,
.contact-form-wrap .ff-el-is-required.asterisk-left::before {
  color: #D30E05;
}
.contact-form-wrap input[type=text],
.contact-form-wrap input[type=email],
.contact-form-wrap input[type=tel],
.contact-form-wrap input[type=number],
.contact-form-wrap textarea,
.contact-form-wrap select {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #111111;
  background: #f7f7f5;
  border: 2.5px solid #111111 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}
.contact-form-wrap input[type=text]::placeholder,
.contact-form-wrap input[type=email]::placeholder,
.contact-form-wrap input[type=tel]::placeholder,
.contact-form-wrap input[type=number]::placeholder,
.contact-form-wrap textarea::placeholder,
.contact-form-wrap select::placeholder {
  color: #aaa;
}
.contact-form-wrap input[type=text]:focus,
.contact-form-wrap input[type=email]:focus,
.contact-form-wrap input[type=tel]:focus,
.contact-form-wrap input[type=number]:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus {
  border-color: #D30E05 !important;
  box-shadow: 4px 4px 0 #111111 !important;
  background: #ffffff;
  outline: none;
}
.contact-form-wrap textarea {
  resize: vertical;
  min-height: 130px;
}
.contact-form-wrap .ff-t-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form-wrap .ff-t-container .ff-t-cell {
  padding: 0 !important;
  width: 100% !important;
}
.contact-form-wrap .error.text-danger {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #D30E05;
  margin-top: 4px;
}
.contact-form-wrap .ff_submit_btn_container {
  margin-top: 8px;
}
.contact-form-wrap button[type=submit],
.contact-form-wrap input[type=submit],
.contact-form-wrap .ff-btn-submit {
  font-family: "Anton", sans-serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  font-style: italic !important;
  letter-spacing: 0.5px !important;
  background: #D30E05 !important;
  color: #ffffff !important;
  border: 2px solid #111111 !important;
  border-radius: 0 !important;
  padding: 14px 36px !important;
  text-transform: uppercase !important;
  box-shadow: 6px 6px 0 #111111 !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto !important;
}
.contact-form-wrap button[type=submit]:hover,
.contact-form-wrap input[type=submit]:hover,
.contact-form-wrap .ff-btn-submit:hover {
  background: rgb(171.1444444444, 11.3555555556, 4.0555555556) !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 8px 10px 0 rgba(17, 17, 17, 0.5) !important;
}
.contact-form-wrap button[type=submit]:active,
.contact-form-wrap input[type=submit]:active,
.contact-form-wrap .ff-btn-submit:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 2px 2px 0 rgba(17, 17, 17, 0.5) !important;
}
.contact-form-wrap .ff-message-success {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background: #FDD718;
  color: #111111;
  border: 2px solid #111111;
  box-shadow: 4px 4px 0 #111111;
  border-radius: 0;
  padding: 16px 20px;
  font-weight: 600;
}

.content-wrap {
  color: #000;
}
.content-wrap .wp-block-woocommerce-cart * {
  font-size: 1.2rem;
}
.content-wrap .wc-block-cart-items__row .wc-block-components-product-name {
  font-size: 1.5rem !important;
  color: #D30E05;
}
.content-wrap .wc-block-cart-items__row .wc-block-cart-item__prices .wc-block-components-product-price__value {
  font-size: 1.5rem;
  color: #111111;
  font-weight: 600;
}
.content-wrap .about-heading-wrap span.line-white {
  background: #d30706;
  color: #ffffff;
}

.ticket-image img {
  max-width: 60%;
  margin: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 2px 3px 20px #ab9c9c;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  filter: brightness(0.9);
}

.ticket-image a img:hover {
  transform: scale(1.1);
  box-shadow: 2px 3px 20px #ab9c9c;
  filter: brightness(1.1);
}

@media (max-width: 1680px) {
  .stat-item {
    min-width: unset;
  }
}
@media (max-width: 1360px) {
  .hero-section {
    min-height: calc(82vh - 70px);
    background-position: center;
  }
  .footer-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 14px;
  }
  .footer-meta__item {
    padding: 0 12px;
  }
  .footer-meta__item:first-child {
    padding-left: 12px;
  }
  .footer-meta .footer-meta__divider {
    display: none;
  }
  .tcol--yellow .tcol__inner {
    padding-left: 40px;
  }
  .tcol--red {
    background-image: url("/app/uploads/2026/05/red-col-bg.png");
    background-position: right bottom;
  }
  .tcol--red .tcol__inner {
    padding-right: 40px;
  }
  .tcol__inner {
    padding: 40px;
  }
  .attends-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .attends-grid .attends-item--centered {
    grid-column: unset;
  }
}
@media (max-width: 1199.98px) {
  .stats-bar .row {
    row-gap: 14px;
  }
  .expect-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .three-cols-section {
    grid-template-columns: 1fr;
  }
  .tcol--yellow .tcol__inner {
    padding-left: 48px;
  }
  .tcol--red .tcol__inner {
    padding-right: 48px;
  }
  .site-navbar .site-container {
    justify-content: space-between;
  }
  .stat-item {
    justify-content: center;
  }
  .stat-item:nth-child(3) {
    border: none;
  }
  .hero-headline {
    font-size: 80px;
  }
  .hero-headline .line-yellow {
    font-size: 108px;
  }
  .section-heading {
    font-size: 56px;
  }
  .section-heading.contact-title .contact-underline {
    width: 140px;
  }
  .tcol__heading {
    font-size: 48px;
  }
  .btn {
    font-size: 20px;
  }
  .expect-title .expect-underline {
    width: 140px;
  }
  .expect-card__title {
    font-size: 24px;
  }
  .three-cols-section {
    display: flex;
    flex-wrap: wrap;
  }
  .three-cols-section .tcol--yellow,
  .three-cols-section .tcol--red {
    width: 50%;
    background-size: cover;
  }
  .three-cols-section .tcol--blue {
    width: 100%;
    order: 1;
  }
  .three-cols-section .tcol--yellow {
    order: -1;
  }
  .three-cols-section .tcol--red {
    order: 0;
  }
  .tcol-parallax-bg--yellow,
  .tcol-parallax-bg--red {
    background-size: cover;
  }
  .attends-grid {
    max-width: 560px;
  }
  .footer-cta__right {
    display: none;
  }
  .footer-cta__mid {
    align-items: flex-start;
  }
  .footer-meta__item {
    padding-left: 0 !important;
  }
}
@media (max-width: 991.98px) {
  .hero-left {
    padding-right: 0;
  }
  .hero-btns {
    margin-left: 0;
  }
  .about-section {
    padding: 40px 0;
  }
  .about-left {
    padding-right: 0;
  }
  .about-body {
    max-width: 100%;
  }
  .expect-title {
    white-space: normal;
  }
  .footer-cta__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-cta__left {
    justify-content: center;
    width: 100%;
  }
  .footer-cta__right {
    display: none;
  }
  .footer-meta {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .footer-meta__divider {
    display: none;
  }
  .footer-meta__item {
    padding: 0 12px;
  }
  .footer-nav__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-nav__links {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
  }
  .footer-cta__mid {
    align-items: center;
  }
  .stat-item .stat-text {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .contact-form-wrap .ff-t-container {
    gap: 14px;
  }
  .expect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .attends-item--centered {
    grid-column: auto;
    justify-self: auto;
  }
  .hero-section {
    min-height: calc(72vh - 70px);
  }
  .hero-section.contact {
    min-height: calc(48vh - 70px) !important;
  }
  img.ticket-image,
  .ticket-image img {
    max-width: 100%;
  }
  .hero-headline {
    font-size: 48px;
    margin-bottom: 18px;
  }
  .hero-headline .line-yellow {
    font-size: 58px;
  }
  .hero-subtext {
    font-size: 16px;
    margin-left: 10px;
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 380px;
  }
  .hero-btns {
    margin-top: 24px !important;
    gap: 16px !important;
    flex-direction: column;
  }
  .btn {
    padding: 8px 20px;
    font-size: 17px;
  }
  .btn img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 575.98px) {
  .site-navbar {
    padding: 0px;
    border-bottom: none;
    background-color: #000;
  }
  .site-navbar .site-logo img {
    height: 70px;
  }
  .hero-section {
    min-height: calc(100vh - 60px);
    align-items: flex-end;
  }
  .hero-section.contact {
    align-items: center;
  }
  .hero-section::after {
    width: 65vw;
    max-width: 200px;
    left: 50%;
    right: auto;
    top: 2vh;
    transform: translateX(-50%);
  }
  .hero-parallax-banner {
    height: 68vw;
    max-width: 100%;
    width: auto;
    top: 5vh;
  }
  .hero-inner {
    padding: 1rem 0 1.5rem;
  }
  .stats-bar .row {
    row-gap: 6px;
  }
  .stat-item {
    border: none;
    padding: 8px;
    gap: 8px;
    flex-direction: column;
  }
  .stat-item .stat-icon {
    width: 40px;
  }
  .stat-item .stat-text {
    text-align: center;
  }
  .site-navbar .navbar-collapse {
    padding: 28px 20px;
  }
  .site-navbar .btn-register {
    font-size: 16px;
  }
  .section-heading {
    font-size: 36px;
  }
  .section-heading.contact-title .contact-underline {
    width: 90px;
    height: 7px;
  }
  .about-heading-wrap {
    margin-bottom: 24px;
  }
  .about-body {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .about-img {
    border-width: 6px;
  }
  .expect-title .expect-underline {
    width: 90px;
    height: 10px;
  }
  .three-cols-section .tcol {
    width: 100%;
  }
  .three-cols-section .tcol .tcol__inner {
    padding: 28px 20px;
    gap: 18px;
  }
  .three-cols-section .tcol--red {
    order: 1;
  }
  .three-cols-section .tcol--red .tcol__inner {
    gap: 8px;
    padding-bottom: 50px;
  }
  .site-footer {
    margin-top: -24px;
    background-size: contain;
  }
  .agenda-list {
    gap: 10px;
  }
  .agenda-list li {
    font-size: 16px;
    gap: 10px;
  }
  .agenda-list li img {
    width: 28px;
  }
  .attends-grid {
    margin-bottom: 12px;
  }
  .attends-item span {
    font-size: 14px;
  }
  .sponsor-item {
    padding: 12px 14px;
    gap: 12px;
  }
  .sponsor-item__icon {
    width: 36px;
  }
  .sponsor-item__text strong {
    font-size: 18px;
  }
  .expect-grid {
    grid-template-columns: 1fr;
  }
  .tcol__inner {
    padding: 36px 20px;
  }
  .footer-cta__heading {
    font-size: 40px;
  }
  .footer-cta__heading .text-yellow {
    font-size: 52px;
  }
}
