@import "https://use.typekit.net/iql4pfx.css";
.blue-button {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 1.25rem 2rem 1rem;
  color: #fff;
  transition: 0.3s;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  transition-duration: 500ms;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.blue-button::before {
  transition-duration: 800ms;
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  content: "";
  background: #00c0fa;
  background-image: linear-gradient(120deg, #00c0fa 0%, #015eea 100%);
  z-index: -2;
}
.blue-button:hover,
.blue-button:focus {
  background-color: #fff;
  color: #151853;
  box-shadow: inset 0 0 0 2px #151853;
}
.blue-button:hover::before,
.blue-button:focus::before {
  left: 110%;
}
.hollow-pink-button {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 1.25rem 2rem 1rem;
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 2px #ff0090;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}
.hollow-pink-button::before {
  position: absolute;
  content: "";
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: rgba(21, 24, 83, 0.25);
  transition: left 800ms ease;
  z-index: -1;
}
.hollow-pink-button:hover,
.hollow-pink-button:focus {
  color: #fff;
  background-color: #ff0090;
}
.hollow-pink-button:hover::before,
.hollow-pink-button:focus::before {
  left: 110%;
}
.pink-button {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 1.25rem 2rem 1rem;
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}
.pink-button::before {
  position: absolute;
  content: "";
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: #ff0090;
  transition: left 800ms ease;
  z-index: -1;
}
.pink-button:hover,
.pink-button:focus {
  color: #ff0090;
  box-shadow: inset 0 0 0 2px #ff0090;
  background-color: rgba(0, 0, 0, 0);
}
.pink-button:hover::before,
.pink-button:focus::before {
  left: 110%;
}
.button-wrapper {
  display: block;
  text-align: center;
}
.isDisabled {
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
}
.skip-content-link {
  position: absolute;
  transform: translate(-50%, -120%);
  background-color: #ff0090;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 0.25rem 0.25rem;
  transition: 0.3s;
  z-index: 11;
  color: #000;
  left: 50%;
}
.skip-content-link:focus {
  transform: translate(-50%, 0);
}
.skip-content-link:hover {
  background-color: #00c0fa;
}
.screen-reader,
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
#main-header,
#main-content,
#footer {
  overflow: hidden;
}
.wow {
  animation-duration: 2s;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #151853;
}
::-webkit-scrollbar-thumb {
  background: #ff0090;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ff0090;
}
.mobile-registration-links {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  background-color: #ff0090;
  border-top: 5px solid #ff0090;
}
@media only screen and (max-width: 767px) {
  .mobile-registration-links {
    display: flex;
  }
}
.mobile-registration-links ul {
  display: flex;
  width: 100%;
}
.mobile-registration-links ul li {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-evenly;
}
.mobile-registration-links ul li a {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "poppins", sans-serif;
  width: 100%;
  text-wrap: nowrap;
  text-align: center;
}
.mobile-registration-links ul li a#ifbb-btn {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 1.5rem 1.5rem 1.25rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #00c0fa;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 420px) {
  .mobile-registration-links ul li a#ifbb-btn {
    padding: 1rem 1rem 0.75rem;
  }
}
.mobile-registration-links ul li a#ifbb-btn::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-color: #fff;
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.mobile-registration-links ul li a#ifbb-btn:hover,
.mobile-registration-links ul li a#ifbb-btn:focus {
  color: #151853;
}
.mobile-registration-links ul li a#ifbb-btn:hover::before,
.mobile-registration-links ul li a#ifbb-btn:focus::before {
  transform: translateX(0);
}
.mobile-registration-links ul li a#npc-btn {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 1.5rem 1.5rem 1.25rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #151853;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 420px) {
  .mobile-registration-links ul li a#npc-btn {
    padding: 1rem 1rem 0.75rem;
  }
}
.mobile-registration-links ul li a#npc-btn::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-color: #fff;
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.mobile-registration-links ul li a#npc-btn:hover,
.mobile-registration-links ul li a#npc-btn:focus {
  color: #151853;
}
.mobile-registration-links ul li a#npc-btn:hover::before,
.mobile-registration-links ul li a#npc-btn:focus::before {
  transform: translateX(0);
}
body.contact .mobile-booking-links {
  display: none;
}
.pink-line {
  display: block;
  height: 1px;
  background-color: #ff0090;
  width: 100%;
  margin: 2rem 0;
}
.container {
  width: 100%;
  max-width: calc(100% - 0.75rem);
}
@media only screen and (min-width: 421px) {
  .container {
    max-width: 95%;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 90%;
  }
}
@media only screen and (min-width: 993px) {
  .container {
    max-width: 85%;
  }
}
@media only screen and (min-width: 1201px) {
  .container {
    max-width: 80%;
  }
}
@media only screen and (min-width: 1601px) {
  .container {
    max-width: calc(90vw - 8rem);
  }
}
.container-big {
  max-width: calc(100% - 0.75rem);
}
@media only screen and (min-width: 421px) {
  .container-big {
    max-width: 95%;
  }
}
@media only screen and (min-width: 768px) {
  .container-big {
    max-width: 90%;
  }
}
@media only screen and (min-width: 1601px) {
  .container-big {
    max-width: calc(100vw - 8rem);
  }
}
html,
body {
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
  font-family: "poppins", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: rgba(0, 0, 0, 0);
}
abbr[title] {
  border-bottom: 0;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 65%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
ul,
ol {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
a,
a:hover {
  text-decoration: none;
}
*:focus,
*:hover,
* {
  outline: none;
}
.cf::after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: "";
  clear: both;
  height: 0;
}
.no-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.wow {
  visibility: hidden;
}
.flex {
  display: flex;
  flex-direction: column;
}
.center-y {
  justify-content: center;
}
.center-x {
  align-items: center;
}
.center-xy {
  align-items: center;
  justify-content: center;
}
.valign {
  display: flex;
  flex-direction: row;
}
.valign > [class^="col-"],
.valign > [class*=" col-"] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fancybox-slide > * {
  padding: 0;
}
.fancybox-content {
  background-color: rgba(0, 0, 0, 0);
  text-align: center;
}
a {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  outline: none !important;
}
img,
svg {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  max-width: 100%;
}
button {
  outline: none !important;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  padding: 0;
}
textarea,
input {
  -webkit-appearance: none;
}
textarea {
  resize: vertical;
}
form label[for="sendContact"],
form label[for="sendNews"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
body.no-scroll {
  overflow: hidden !important;
}
br {
  line-height: inherit;
}
.block {
  display: inline-block;
}
.rellax {
  display: inline-block;
}
button:focus {
  background-color: rgba(0, 0, 0, 0);
}
section,
main {
  position: relative;
}
svg {
  fill: currentColor;
  width: 100%;
  height: auto;
}
* {
  box-sizing: border-box;
}
.fs-150 {
  font-size: clamp(3.75rem, calc(0.758rem + 9.5745vw), 9.375rem);
  line-height: 1;
}
.fs-120 {
  font-size: clamp(4rem, calc(2.8333rem + 5.1852vw), 7.5rem);
  line-height: 1;
}
.fs-110 {
  font-size: clamp(4rem, calc(3.0417rem + 4.2593vw), 6.875rem);
  line-height: 1;
}
.fs-90 {
  font-size: clamp(3.375rem, calc(2.4565rem + 2.8261vw), 5rem);
  line-height: 1;
}
.fs-80 {
  font-size: clamp(2.9rem, calc(1.9957rem + 2.7826vw), 4.5rem);
  line-height: 1;
}
.fs-70 {
  font-size: clamp(2.75rem, calc(2.0435rem + 2.1739vw), 4rem);
  line-height: 1;
}
.fs-60 {
  font-size: clamp(2.5rem, calc(1.7935rem + 2.1739vw), 3.75rem);
  line-height: 1.2;
}
.fs-50 {
  font-size: clamp(2.25rem, calc(1.9674rem + 0.8696vw), 2.75rem);
  line-height: 1.2;
}
.fs-40 {
  font-size: clamp(1.5rem, calc(0.9348rem + 1.7391vw), 2.5rem);
  line-height: 1.2;
}
.fs-36 {
  font-size: clamp(20px, calc(13.727px + 1.591vw), 36px);
  line-height: 1.2;
}
.fs-30 {
  font-size: clamp(1.3rem, calc(0.975rem + 1vw), 1.875rem);
  line-height: 1.2;
}
.fs-24 {
  font-size: clamp(1.125rem, calc(0.913rem + 0.6522vw), 1.5rem);
  line-height: 1.4;
}
.fs-22 {
  font-size: clamp(1.125rem, calc(0.9837rem + 0.4348vw), 1.375rem);
  line-height: 1.4;
}
.fs-20 {
  font-size: clamp(1rem, calc(0.9583rem + 0.1852vw), 1.125rem);
  line-height: 1.4;
}
.fs-18 {
  font-size: clamp(1rem, calc(0.9583rem + 0.1852vw), 1.125rem);
  line-height: 1.4;
}
.fs-16 {
  font-size: 16px;
  line-height: 1.4;
}
.fs-14 {
  font-size: 14px;
  line-height: 1.4;
}
.fs-150,
.fs-120,
.fs-110,
.fs-90,
.fs-80,
.fs-70,
.fs-60,
.fs-50,
.fs-40,
.fs-36,
.fs-30,
.fs-24,
.fs-22,
.fs-20,
.fs-18,
.fs-16,
.fs-14 {
  font-family: "poppins", sans-serif;
  font-variant: no-common-ligatures;
}
.fs-150 strong,
.fs-150 b,
.fs-120 strong,
.fs-120 b,
.fs-110 strong,
.fs-110 b,
.fs-90 strong,
.fs-90 b,
.fs-80 strong,
.fs-80 b,
.fs-70 strong,
.fs-70 b,
.fs-60 strong,
.fs-60 b,
.fs-50 strong,
.fs-50 b,
.fs-40 strong,
.fs-40 b,
.fs-36 strong,
.fs-36 b,
.fs-30 strong,
.fs-30 b,
.fs-24 strong,
.fs-24 b,
.fs-22 strong,
.fs-22 b,
.fs-20 strong,
.fs-20 b,
.fs-18 strong,
.fs-18 b,
.fs-16 strong,
.fs-16 b,
.fs-14 strong,
.fs-14 b {
  font-weight: 700;
}
.fs-150 *,
.fs-120 *,
.fs-110 *,
.fs-90 *,
.fs-80 *,
.fs-70 *,
.fs-60 *,
.fs-50 *,
.fs-40 *,
.fs-36 *,
.fs-30 *,
.fs-24 *,
.fs-22 *,
.fs-20 *,
.fs-18 *,
.fs-16 *,
.fs-14 * {
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
  color: inherit;
}
#mobile-menu {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}
#mobile-menu::-webkit-scrollbar {
  display: none;
}
#mobile-menu .bg {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.6s;
  opacity: 0;
}
#mobile-menu #mobile-close {
  position: fixed;
  z-index: 9;
  top: 1.25rem;
  right: 1.05rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media only screen and (min-width: 576px) {
  #mobile-menu #mobile-close {
    top: 1.5rem;
    right: 1.5rem;
  }
}
#mobile-menu #mobile-close img,
#mobile-menu #mobile-close svg {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
#mobile-menu #mobile-close img path,
#mobile-menu #mobile-close svg path {
  fill: #fff;
}
#mobile-menu #mobile-close img:hover,
#mobile-menu #mobile-close img:focus,
#mobile-menu #mobile-close svg:hover,
#mobile-menu #mobile-close svg:focus {
  transform: rotate(90deg);
}
#mobile-menu .wrap {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #151853;
  height: 100%;
  transition: 0.6s;
  transform: translateX(120%);
  padding: 4rem 1rem 4rem 2rem;
  width: 97.5%;
  display: flex;
  align-items: flex-start;
  justify-content: start;
  gap: 2rem;
  flex-direction: column;
}
@media only screen and (min-width: 576px) {
  #mobile-menu .wrap {
    padding: 5rem 1.5rem 4rem 2.5rem;
    width: 80%;
  }
}
@media only screen and (min-width: 768px) {
  #mobile-menu .wrap {
    width: 70%;
    padding-left: 2rem;
  }
}
@media only screen and (min-width: 993px) {
  #mobile-menu .wrap {
    padding-left: 3rem;
    width: 50%;
  }
}
#mobile-menu .wrap nav {
  overflow-y: scroll;
  overflow-x: hidden;
  display: block;
  width: 100%;
}
#mobile-menu .wrap nav::-webkit-scrollbar {
  display: none;
}
#mobile-menu .wrap nav ul > li {
  display: block;
  position: relative;
  width: 100%;
  line-height: 1.4;
}
#mobile-menu .wrap nav ul > li:hover > a:before,
#mobile-menu .wrap nav ul > li:hover > span:before,
#mobile-menu .wrap nav ul > li:focus > a:before,
#mobile-menu .wrap nav ul > li:focus > span:before,
#mobile-menu .wrap nav ul > li.open > a:before,
#mobile-menu .wrap nav ul > li.open > span:before {
  transform: none;
}
#mobile-menu .wrap nav ul > li.open > span {
  color: #ff0090;
}
#mobile-menu .wrap nav ul > li.open > span > svg {
  transform: rotate(180deg);
  color: #ff0090;
}
#mobile-menu .wrap nav ul > li.active > a,
#mobile-menu .wrap nav ul > li.active > span {
  font-weight: 700;
  color: #ff0090;
}
#mobile-menu .wrap nav ul > li span {
  font-weight: 700;
  display: block;
  padding: 0.75rem 3rem 0.75rem 0;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  color: #fff;
  text-transform: uppercase;
}
#mobile-menu .wrap nav ul > li span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 2px;
  background-color: #fff;
  z-index: -2;
  opacity: 0.25;
}
#mobile-menu .wrap nav ul > li span::before {
  background: #ff0090;
  height: 2px;
}
#mobile-menu .wrap nav ul > li span:hover {
  color: #ff0090;
}
#mobile-menu .wrap nav ul > li svg {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  color: #fff;
  right: 0;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  transition: 0.3s;
}
#mobile-menu .wrap nav ul > li .sub {
  display: none;
  padding: 0.25rem 0 0.25rem 0.25rem;
}
#mobile-menu .wrap nav ul > li .sub li a {
  width: 100%;
}
#mobile-menu .wrap nav ul > li .sub li:hover > a:before,
#mobile-menu .wrap nav ul > li .sub li:hover > span:before,
#mobile-menu .wrap nav ul > li .sub li.open > a:before,
#mobile-menu .wrap nav ul > li .sub li.open > span:before {
  transform: none;
}
#mobile-menu .wrap nav ul > li .sub li span {
  padding: 0.65rem 0;
  color: #fff;
  font-weight: 400;
}
#mobile-menu .wrap nav ul > li .sub li span::before {
  background: #ff0090;
  height: 2px;
}
#mobile-menu .wrap nav ul > li .sub li span:hover {
  color: #ff0090 !important;
}
#mobile-menu .wrap nav ul > li .sub li span:hover span::before {
  background: #ff0090;
  height: 2px;
}
#mobile-menu .wrap .button-wrapper {
  width: 100%;
}
#mobile-menu .wrap .button-wrapper .btn {
  display: block;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open #mobile-menu {
  margin-top: 0;
  opacity: 1 !important;
  pointer-events: all;
  overflow: scroll;
  visibility: visible !important;
}
body.menu-open #mobile-menu .bg {
  opacity: 1;
}
body.menu-open #mobile-menu #mobile-close {
  transform: none;
}
body.menu-open #mobile-menu .wrap {
  transform: none;
}
#main-header {
  overflow-x: visible;
}
#main-header #top-menu {
  position: absolute;
  width: 100%;
  top: 0;
  padding: 1rem 0;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #main-header #top-menu {
    padding: 0.5rem 0;
  }
}
#main-header #top-menu .container-fluid .col-12 {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
#main-header #top-menu .container-fluid .col-12 .logo {
  display: block;
  width: 100%;
  max-width: 60px;
  position: absolute;
  left: 15px;
  top: -5px;
}
@media only screen and (max-width: 767px) {
  #main-header #top-menu .container-fluid .col-12 .logo {
    max-width: 45px;
  }
}
#main-header #top-menu .container-fluid .col-12 .nav-wrapper {
  display: flex;
  overflow: visible;
}
#main-header #top-menu .container-fluid .col-12 .nav-wrapper .top-nav {
  margin-right: 2rem;
}
@media only screen and (max-width: 992px) {
  #main-header #top-menu .container-fluid .col-12 .nav-wrapper .top-nav {
    display: none;
  }
}
#main-header #top-menu .container-fluid .col-12 .nav-wrapper .top-nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}
@media only screen and (min-width: 1201px) {
  #main-header #top-menu .container-fluid .col-12 .nav-wrapper .top-nav ul {
    gap: 2rem;
  }
}
#main-header #top-menu .container-fluid .col-12 .nav-wrapper .top-nav ul li {
  display: flex;
  position: relative;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li.current-menu-item {
  background-color: #151853;
}
#main-header #top-menu .container-fluid .col-12 .nav-wrapper .top-nav ul li a {
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li
  a::before {
  background: #fff;
  height: 2px;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li
  a.has-sub {
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li
  a.has-sub
  .svg {
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  transition: 0.5s;
  margin-left: 0.1rem;
  display: block;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 25px;
  background: rgba(0, 0, 0, 0);
  pointer-events: auto;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li
  .sub {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 9999;
  display: block;
  list-style: none;
  margin: 0;
  background: #fff;
  box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5);
  min-width: 150px;
  width: max-content;
  transform: translateY(25px);
  transform-origin: 0 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  border-top: 4px solid #ff0090;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li
  .sub
  li {
  display: block;
  width: 100%;
  margin: 0;
  background-color: #fff;
  padding: 0.75rem 1.5rem;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li
  .sub
  li
  a {
  display: block;
  width: 100%;
  color: #151853;
  white-space: nowrap;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li
  .sub
  li
  a
  span::before {
  background: #151853;
  height: 2px;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li:hover
  .sub,
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li:focus-within
  .sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(25px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li:hover
  .has-sub
  .svg,
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li:focus-within
  .has-sub
  .svg {
  transform: rotate(180deg);
}
#main-header #top-menu .container-fluid .col-12 .nav-wrapper #ticket-button {
  display: block;
}
@media only screen and (max-width: 992px) {
  #main-header #top-menu .container-fluid .col-12 .nav-wrapper #ticket-button {
    margin-right: 70px;
    align-self: stretch;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  #main-header #top-menu .container-fluid .col-12 .nav-wrapper #ticket-button {
    padding: 0.75rem 1rem 0.75rem;
    margin-right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #main-header
    #top-menu
    .container-fluid
    .col-12
    .nav-wrapper
    #ticket-button
    span {
    font-size: 12px;
  }
}
#main-header #top-menu .container-fluid .col-12 .nav-wrapper #mobile-open {
  display: none;
  width: 60px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  transition: 0.3s;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 15px;
  transform: translateY(0);
  height: auto;
  align-self: stretch;
}
#main-header #top-menu .container-fluid .col-12 .nav-wrapper #mobile-open path {
  fill: #151853;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  #mobile-open:hover {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 2px #fff;
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  #mobile-open:hover
  path {
  fill: #fff;
}
@media only screen and (max-width: 992px) {
  #main-header #top-menu .container-fluid .col-12 .nav-wrapper #mobile-open {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  #main-header #top-menu .container-fluid .col-12 .nav-wrapper #mobile-open {
    width: 44px;
  }
}
#main-header #top-menu .container-fluid .col-12 .nav-wrapper #mobile-open svg,
#main-header #top-menu .container-fluid .col-12 .nav-wrapper #mobile-open img {
  display: block;
  width: 25px;
  height: 25px;
}
@media only screen and (max-width: 767px) {
  #main-header #top-menu .container-fluid .col-12 .nav-wrapper #mobile-open svg,
  #main-header
    #top-menu
    .container-fluid
    .col-12
    .nav-wrapper
    #mobile-open
    img {
    width: 20px;
    height: 20px;
  }
}
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  #mobile-open
  svg
  path,
#main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  #mobile-open
  img
  path {
  color: #fff;
}
body:not(.home) #main-header {
  overflow-y: visible;
}
body:not(.home) #main-header #top-menu {
  background-color: #fff;
  position: relative;
}
body:not(.home)
  #main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  .top-nav
  ul
  li
  a {
  color: #151853;
}
body:not(.home)
  #main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  #mobile-open {
  background-color: #151853;
}
body:not(.home)
  #main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  #mobile-open
  path {
  fill: #fff;
}
body:not(.home)
  #main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  #mobile-open:hover {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 2px #151853;
}
body:not(.home)
  #main-header
  #top-menu
  .container-fluid
  .col-12
  .nav-wrapper
  #mobile-open:hover
  path {
  fill: #151853;
}
.popup {
  display: none;
  text-align: left;
  background: #000;
  padding: 1px;
  width: 720px;
  margin: 20px auto;
  max-width: calc(100% - 40px);
  padding: 3rem 2rem;
  position: relative;
}
.popup .title {
  font-family: "poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #151853;
  margin-bottom: 2rem;
}
.popup .close-btn {
  background-color: #ff0090;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
}
.popup .input-wrapper {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 1.25rem;
}
.popup .input-wrapper .input,
.popup .input-wrapper input,
.popup .input-wrapper select {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  color: #fff;
  padding: 0.75rem 1rem;
}
.popup .input-wrapper .input::placeholder,
.popup .input-wrapper input::placeholder,
.popup .input-wrapper select::placeholder {
  color: #fff;
}
.popup .input-wrapper .input.textarea,
.popup .input-wrapper input.textarea,
.popup .input-wrapper select.textarea {
  min-height: 200px;
  resize: none;
}
.popup .text {
  color: #fff;
}
.popup .btnSend {
  margin-top: 1rem;
  z-index: 1;
  position: relative;
  font-weight: 700;
  color: #000;
  font-family: "poppins", sans-serif;
  text-align: center;
  text-transform: uppercase;
  padding: 1rem 2rem;
}
.popup .btnSend:hover {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .popup .btnSend {
    width: 100%;
  }
}
.site-footer {
  background-color: #fff;
  border-top: 5px solid #ff0090;
  overflow: hidden;
  padding-top: 6.25rem;
}
@media only screen and (max-width: 992px) {
  .site-footer {
    padding-top: 2.25rem;
  }
}
.site-footer__inner {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 45% 50%;
  gap: 50px;
  align-items: start;
}
@media only screen and (max-width: 992px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.site-footer__bg {
  position: absolute;
  right: 0;
  bottom: -20px;
  font-weight: 700;
  font-style: italic;
  line-height: 0.85;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 2px #ff0090;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  opacity: 1;
}
@media only screen and (max-width: 575px) {
  .site-footer__bg {
    display: none;
  }
}
.site-footer__bottom {
  background: #151853;
  padding: 1.25rem 0;
  text-align: center;
}
.site-footer__bottom p {
  margin: 0;
  color: #fff;
  font-size: 10px;
}
@media only screen and (max-width: 992px) {
  .footer-signup {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer-signup__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.footer-signup__logo img {
  width: 90px;
  height: auto;
  display: block;
}
.footer-signup__title {
  margin: 0 0 1.5rem;
  color: #151853;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
}
.footer-signup .footer-form-signup {
  width: 100%;
  max-width: 100%;
}
.footer-signup .footer-form-signup .wpforms-container {
  margin: 0 !important;
  width: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 992px) {
  .footer-signup .footer-form-signup .wpforms-container {
    display: flex;
    justify-content: center;
  }
}
.footer-signup .footer-form-signup .wpforms-hidden,
.footer-signup .footer-form-signup .wpforms-error-noscript {
  display: none !important;
}
.footer-signup .footer-form-signup form.wpforms-form {
  display: flex !important;
  align-items: stretch !important;
  gap: 0.75rem;
  max-width: 90%;
  margin: 0 0 1.25rem;
}
@media only screen and (max-width: 1200px) {
  .footer-signup .footer-form-signup form.wpforms-form {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 420px;
    justify-content: center;
  }
}
.footer-signup .footer-form-signup .wpforms-field-container {
  flex: 1 1 auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
}
@media only screen and (max-width: 1200px) {
  .footer-signup .footer-form-signup .wpforms-field-container {
    width: 100% !important;
  }
}
.footer-signup .footer-form-signup .wpforms-field {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}
.footer-signup .footer-form-signup .wpforms-field-email {
  width: 100% !important;
}
.footer-signup .footer-form-signup .wpforms-field-email input[type="email"],
.footer-signup .footer-form-signup .wpforms-field-email input[type="text"] {
  box-sizing: border-box;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: 1px solid #151853 !important;
  border-radius: 0 !important;
  padding: 0 1rem !important;
  outline: none;
  font-size: 18px;
  line-height: 1.2;
  min-height: 64px;
}
@media only screen and (max-width: 1200px) {
  .footer-signup .footer-form-signup .wpforms-field-email input[type="email"],
  .footer-signup .footer-form-signup .wpforms-field-email input[type="text"] {
    padding: 1rem !important;
    min-height: 56px;
  }
}
.footer-signup
  .footer-form-signup
  .wpforms-field-email
  input[type="email"]:focus,
.footer-signup
  .footer-form-signup
  .wpforms-field-email
  input[type="text"]:focus {
  box-shadow: 0 0 0 3px rgba(255, 0, 144, 0.18);
}
.footer-signup .footer-form-signup .wpforms-field-medium {
  width: 100% !important;
  max-width: 100% !important;
}
.footer-signup .footer-form-signup .wpforms-field-label {
  display: none !important;
}
.footer-signup .footer-form-signup .wpforms-submit-container {
  flex: 0 0 auto;
  padding: 0 !important;
  margin: 0 !important;
  width: auto;
}
@media only screen and (max-width: 1200px) {
  .footer-signup .footer-form-signup .wpforms-submit-container {
    width: 100% !important;
  }
}
.footer-signup .footer-form-signup button.wpforms-submit {
  padding: 1.25rem 2rem 1rem;
  border: 0;
  background: #00c0fa;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
@media only screen and (max-width: 1200px) {
  .footer-signup .footer-form-signup button.wpforms-submit {
    width: 100%;
  }
}
.footer-signup .footer-form-signup .wpforms-error-container,
.footer-signup .footer-form-signup .wpforms-confirmation-container {
  max-width: 90%;
  margin-top: 0.5rem;
}
.footer-signup__social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .footer-signup__social {
    justify-content: center;
    margin-top: 1rem;
  }
}
.footer-signup__icon {
  color: #ff0090;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ff0090;
  transition: 0.3s;
}
.footer-signup__icon:hover {
  background-color: #ff0090;
}
.footer-signup__icon:hover g {
  fill: #fff;
}
.footer-signup__icon:hover g path {
  fill: #fff;
}
.footer-signup__icon svg {
  display: block;
  padding: 10px;
}
.footer-signup__icon svg g {
  fill: #ff0090;
}
.footer-signup__icon svg g path {
  fill: #ff0090;
}
.footer-signup__icon:hover {
  opacity: 0.8;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 3rem clamp(2rem, 4vw, 5rem);
}
@media only screen and (max-width: 1200px) {
  .footer-links {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}
@media only screen and (max-width: 575px) {
  .footer-links {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 2rem;
  }
}
.footer-links__title {
  margin: 0 0 0.75rem;
  color: #ff0090;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.footer-links__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 575px) {
  .footer-links__list {
    font-size: 14px;
  }
}
.footer-links__list li + li {
  margin-top: 0.4rem;
}
.footer-links__list a {
  color: #151853;
  text-decoration: none;
  font-weight: 600;
}
.footer-links__list a::before {
  background: #151853;
  height: 2px;
}
.sponsors {
  background-color: #151853;
  padding: 4.688rem 0;
  position: relative;
}
.sponsors::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 75px;
  background-color: #ff0090;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sponsors .top {
  text-align: center;
}
.sponsors .top .title {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.sponsors .top .subtitle {
  text-transform: uppercase;
  font-weight: 500;
  color: #ff0090;
}
.sponsors .middle {
  padding: 2rem 0;
}
.sponsors .middle .sponsors__slider {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.sponsors .middle .sponsors__slider .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}
.sponsors .middle .sponsors__slider .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
}
.sponsors .middle .sponsors__slider .swiper-slide img {
  display: block;
  width: auto;
  height: auto;
  max-height: 125px;
  max-width: clamp(110px, 16vw, 190px);
  opacity: 0.95;
}
.sponsors .middle .sponsors__slider.is-static .swiper-wrapper {
  transition-timing-function: ease !important;
  justify-content: center;
}
.sponsors .bottom {
  text-align: center;
}
.sponsors .bottom .text {
  color: #fff;
}
.sponsors .bottom .button-wrapper {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .sponsors .bottom .button-wrapper .btn {
    display: block;
  }
}
.inner-header {
  position: relative;
  min-height: clamp(260px, 29vw, 440px);
  display: flex;
  align-items: flex-end;
  background: top center/cover no-repeat;
  background-color: #151853;
}
.inner-header .title-wrap {
  position: relative;
}
.inner-header .title-wrap::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 75px;
  background-color: #ff0090;
  bottom: -75px;
  left: -15px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.inner-header .title-wrap .title {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 420px) {
  .inner-header .title-wrap .title {
    font-size: 36px;
  }
}
.inner-header .title-wrap .subtitle {
  font-weight: 800;
  text-transform: uppercase;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #00c0fa;
  text-shadow: none;
  position: absolute;
  top: -0.6em;
  left: 0;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .inner-header .title-wrap .subtitle {
    -webkit-text-stroke-width: 1px;
  }
}
.home #hero {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000;
}
.home #hero .video-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}
.home #hero .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.home #hero .hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  margin: 0 auto;
}
.home #hero .hero-content #title-img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .home #hero .hero-content #title-img {
    display: none;
  }
}
.home #hero .hero-content #title-mobile-img {
  display: none;
}
@media only screen and (max-width: 767px) {
  .home #hero .hero-content #title-mobile-img {
    display: block;
  }
}
.home #hero .hero-content #subtitle-img {
  max-width: 100%;
  margin-top: -2rem;
  width: 55%;
}
@media only screen and (max-width: 767px) {
  .home #hero .hero-content #subtitle-img {
    margin-top: -1rem;
    width: 80%;
  }
}
.home #hero .hero-content .title-date {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  margin-top: -0.5rem;
}
.home #timer {
  background-color: #151853;
  padding: 5rem 0 3rem;
}
.home #timer .countdown {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 3rem);
}
@media only screen and (max-width: 767px) {
  .home #timer .countdown {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 350px) {
  .home #timer .countdown {
    flex-direction: column;
  }
}
.home #timer .countdown__unit {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 1rem);
  position: relative;
  white-space: nowrap;
}
.home #timer .countdown__num {
  color: #ff0090;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.home #timer .countdown__label {
  color: #fff;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-20%);
  margin-left: -1.5rem;
}
.home #timer .countdown .countdown__sep {
  color: #ff0090;
  font-weight: 800;
  line-height: 1;
  user-select: none;
  transform: translateY(-2%);
}
@media only screen and (max-width: 350px) {
  .home #timer .countdown .countdown__sep {
    display: none;
  }
}
.home #show-registration {
  background-color: #151853;
}
.home #show-registration .top .left {
  position: relative;
}
@media only screen and (max-width: 992px) {
  .home #show-registration .top .left {
    padding-bottom: 60%;
  }
}
.home #show-registration .top .left::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 75px;
  background-color: #ff0090;
  top: 0;
  left: 5%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home #show-registration .top .left .image {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  overflow: hidden;
  background: none;
}
@media only screen and (max-width: 992px) {
  .home #show-registration .top .left .image {
    right: 0;
    width: 65vw;
  }
}
@media only screen and (max-width: 767px) {
  .home #show-registration .top .left .image {
    left: -20px;
    right: auto;
    width: 105vw;
  }
}
.home #show-registration .top .left .image .image__bg {
  position: absolute;
  inset: -12%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.home #show-registration .top .right .text-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10rem 10% 8rem 8%;
}
@media only screen and (max-width: 767px) {
  .home #show-registration .top .right .text-wrap {
    padding: 6rem 0 4rem;
  }
}
.home #show-registration .top .right .text-wrap .title-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}
.home #show-registration .top .right .text-wrap .title-wrap .title {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.home #show-registration .top .right .text-wrap .title-wrap .subtitle {
  font-weight: 800;
  text-transform: uppercase;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #ff0090;
  text-shadow: none;
  position: absolute;
  top: -0.6em;
  left: 0;
  z-index: 1;
}
.home #show-registration .top .right .text-wrap .text {
  color: #fff;
}
.home #show-registration .top .right .text-wrap .button-wrapper {
  text-align: left;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .home #show-registration .top .right .text-wrap .button-wrapper .btn {
    text-align: center;
    display: block;
  }
}
.home #show-registration .bottom .right {
  position: relative;
}
@media only screen and (max-width: 992px) {
  .home #show-registration .bottom .right {
    padding-bottom: 60%;
  }
}
.home #show-registration .bottom .right::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 75px;
  background-color: #ff0090;
  bottom: -70px;
  right: 5%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home #show-registration .bottom .right .image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  overflow: hidden;
  background: none;
}
@media only screen and (max-width: 992px) {
  .home #show-registration .bottom .right .image {
    left: 0;
    right: auto;
    width: 65vw;
  }
}
@media only screen and (max-width: 767px) {
  .home #show-registration .bottom .right .image {
    right: -20px;
    left: auto;
    width: 105vw;
  }
}
.home #show-registration .bottom .right .image .image__bg {
  position: absolute;
  inset: -12%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.home #show-registration .bottom .left .text-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10rem 1rem 8rem 8%;
}
@media only screen and (max-width: 767px) {
  .home #show-registration .bottom .left .text-wrap {
    padding: 6rem 0 4rem;
  }
}
.home #show-registration .bottom .left .text-wrap .title-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}
.home #show-registration .bottom .left .text-wrap .title-wrap .title {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.home #show-registration .bottom .left .text-wrap .title-wrap .subtitle {
  font-weight: 800;
  text-transform: uppercase;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #ff0090;
  text-shadow: none;
  position: absolute;
  top: -0.6em;
  left: 0;
  z-index: 1;
}
.home #show-registration .bottom .left .text-wrap .text {
  color: #fff;
}
.home #show-registration .bottom .left .text-wrap .button-wrapper {
  text-align: left;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .home #show-registration .bottom .left .text-wrap .button-wrapper .btn {
    text-align: center;
    display: block;
  }
}
.home #about {
  background-color: #fff;
  position: relative;
  min-height: 750px;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 992px) {
  .home #about {
    min-height: auto;
    padding: 4rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .home #about {
    margin-bottom: 0;
    padding: 4rem 0 2rem;
  }
}
.home #about .about-bg {
  position: absolute;
  inset: 0;
  width: 80%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  left: -50px;
  opacity: 0.8;
}
@media only screen and (max-width: 992px) {
  .home #about .about-bg {
    width: 100%;
    object-position: top center;
    left: auto;
  }
}
.home #about .about-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 450px) 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
}
@media only screen and (max-width: 992px) {
  .home #about .about-wrap {
    grid-template-columns: 1fr;
  }
}
.home #about .about-wrap .about-images {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .home #about .about-wrap .about-images {
    min-height: 420px;
  }
}
.home #about .about-wrap .about-images .about-img {
  position: relative;
  z-index: 2;
  width: clamp(260px, 32vw, 420px);
  height: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 0px 5px rgba(0, 0, 0, 0.4));
}
@media only screen and (max-width: 992px) {
  .home #about .about-wrap .about-images .about-img {
    width: clamp(220px, 70vw, 300px);
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .home #about .about-wrap .about-images .about-img {
    width: clamp(220px, 70vw, 230px);
    margin-top: 3rem;
  }
}
.home #about .about-wrap .about-text {
  position: relative;
  z-index: 3;
  max-width: 760px;
  background-color: hsla(0, 0%, 100%, 0.8);
  padding: 1rem;
}
@media only screen and (max-width: 992px) {
  .home #about .about-wrap .about-text {
    text-align: center;
    margin: 0 auto;
  }
}
.home #about .about-wrap .about-text .text {
  color: #151853;
  font-weight: 700;
}
.home #about .about-wrap .about-text .text span {
  color: #ff0090;
}
.home #about .about-wrap .about-text .text .name {
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .home #about .about-wrap .about-text .text .name {
    font-size: 18px;
  }
}
.home .image-grid-section {
  position: relative;
  padding: 10px 0;
  overflow: hidden;
  background: #151853;
}
.home .image-grid {
  position: relative;
  margin: 0 auto;
}
.home .image-grid__stage {
  position: relative;
  height: clamp(520px, 60vw, 760px);
  overflow: hidden;
}
.home .image-grid__offset {
  position: absolute;
  inset: 0;
  translate: 4% -30%;
}
.home .image-grid__grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  transform-style: preserve-3d;
  will-change: transform;
}
.home .image-grid__col {
  display: grid;
  gap: 10px;
  align-content: start;
  will-change: transform;
}
.home .image-grid__img {
  width: 100%;
  display: block;
  border-radius: 18px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.home .image-grid__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
.home .image-grid__content {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 3rem);
  z-index: 5;
  text-align: right;
}
.home .image-grid__title {
  margin: 0;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
.home .image-grid__title span.action-text {
  position: relative;
  display: inline-block;
  background: linear-gradient(to bottom, #00c0fa 0%, #015eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 2px #fff;
  letter-spacing: 0.02em;
  font-weight: 900;
  text-shadow: none;
}
.home .gsap-word {
  display: inline-block;
  overflow: hidden;
}
.home .gsap-word > span {
  display: inline-block;
  will-change: transform;
}
@media only screen and (max-width: 992px) {
  .home .image-grid__stage {
    height: clamp(520px, 90vw, 680px);
  }
  .home .image-grid__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home .image-grid__offset {
    translate: 2% -22%;
  }
}
@media only screen and (max-width: 575px) {
  .home .image-grid__offset {
    width: 145%;
    height: 130%;
    translate: -24% -14%;
  }
  .home .image-grid__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home .image-grid__content {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }
}
.show-info #general-info {
  padding-top: 3rem;
}
.show-info #general-info .title {
  color: #151853;
  font-weight: 900;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.show-info #general-info .text {
  color: #151853;
}
.show-info #general-info .text span {
  color: #ff0090;
  font-weight: 900;
  font-size: 26px;
}
.show-info #general-info .button-wrapper {
  text-align: left;
  margin-top: 2rem;
}
@media only screen and (max-width: 575px) {
  .show-info #general-info .button-wrapper {
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .show-info #general-info .button-wrapper .btn {
    width: 100%;
  }
}
.show-info #general-info .button-wrapper.two-btn {
  display: flex;
  gap: 15px;
}
@media only screen and (max-width: 575px) {
  .show-info #general-info .button-wrapper.two-btn {
    flex-direction: column;
  }
}
.show-info #general-info .top {
  padding-bottom: 2rem;
}
.show-info #general-info .bottom {
  padding-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .show-info #general-info .bottom {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .show-info #general-info .bottom .right {
    margin-top: 3rem;
  }
}
.show-info #general-info .bottom .right .subtext {
  color: #151853;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: -2rem;
  margin-bottom: 2rem;
}
.show-info #general-info .bottom .right .categories .category {
  display: block;
  margin-bottom: 12px;
  background: #00c0fa;
  background-image: linear-gradient(120deg, #00c0fa 0%, #015eea 100%);
  padding: 1rem 1.5rem 0.5rem;
}
.show-info #general-info .bottom .right .categories .category .line {
  position: relative;
  cursor: pointer;
  display: block;
}
.show-info #general-info .bottom .right .categories .category .line.active svg {
  -webkit-transform: translateY(0) rotate(180deg);
  transform: translateY(0) rotate(180deg);
}
.show-info #general-info .bottom .right .categories .category .line .cat-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  padding-right: 30px;
}
.show-info #general-info .bottom .right .categories .category .line svg {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: -4px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
  border: 1px solid #fff;
}
.show-info #general-info .bottom .right .categories .category .line svg path {
  fill: #fff;
}
.show-info #general-info .bottom .right .categories .category .content .text {
  margin-right: 40px;
  border-top: 1px solid #fff;
  padding-top: 0.5rem;
  font-weight: 700;
}
.show-info #schedule .top .title {
  color: #151853;
  font-weight: 900;
  text-transform: uppercase;
}
.show-info #schedule .top .subtext {
  text-transform: uppercase;
  color: #151853;
  margin-bottom: 2rem;
}
.show-info #schedule .bottom .schedule-tabs {
  --tabSize: 92px;
  position: relative;
}
.show-info #schedule .bottom .schedule-tabs__wrap {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.25rem, 2vw, 2.25rem);
}
@media only screen and (max-width: 767px) {
  .show-info #schedule .bottom .schedule-tabs__wrap {
    flex-direction: column;
  }
}
.show-info #schedule .bottom .schedule-tabs__nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .show-info #schedule .bottom .schedule-tabs__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.show-info #schedule .bottom .schedule-tab {
  position: relative;
  width: var(--tabSize);
  height: var(--tabSize);
  border: 1px solid #ff0090;
  background: #fff;
  color: #151853;
  display: grid;
  place-content: center;
  text-align: center;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
  will-change: transform;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.show-info #schedule .bottom .schedule-tab .dow {
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.show-info #schedule .bottom .schedule-tab .date {
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 0.25rem;
}
.show-info #schedule .bottom .schedule-tab:hover,
.show-info #schedule .bottom .schedule-tab:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  outline: none;
}
.show-info #schedule .bottom .schedule-tab.is-active {
  background: #ff0090;
  color: #151853;
  border-color: #ff0090;
}
.show-info #schedule .bottom .schedule-tab.is-active .dow {
  color: #fff;
}
.show-info #schedule .bottom .schedule-tab.is-active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid rgba(0, 0, 0, 0);
  border-bottom: 12px solid rgba(0, 0, 0, 0);
  border-left: 18px solid #ff0090;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.25s ease;
}
@media only screen and (max-width: 767px) {
  .show-info #schedule .bottom .schedule-tab.is-active::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    border-top: 18px solid #ff0090;
    border-left: 12px solid rgba(0, 0, 0, 0);
    border-right: 12px solid rgba(0, 0, 0, 0);
    border-bottom: 0;
  }
}
.show-info #schedule .bottom .schedule-tabs__panels {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.show-info #schedule .bottom .schedule-panel {
  display: block;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.show-info #schedule .bottom .schedule-panel[hidden] {
  display: block !important;
  height: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.show-info #schedule .bottom .schedule-panel:not([hidden]) {
  height: auto;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.show-info #schedule .bottom .schedule-item {
  border: 1px solid rgba(21, 24, 83, 0.55);
  background: #fff;
  display: grid;
  padding: 1.25rem 2rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .show-info #schedule .bottom .schedule-item {
    padding: 1rem;
  }
}
.show-info #schedule .bottom .schedule-item .schedule-item__time {
  color: #ff0090;
  font-weight: 900;
  font-size: clamp(1.6rem, 2vw, 2.25rem);
  line-height: 1.05;
}
.show-info #schedule .bottom .schedule-item .schedule-item__text {
  color: #151853;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
}
@media only screen and (max-width: 767px) {
  .show-info #schedule .bottom .schedule-tab {
    width: 84px;
    height: 84px;
  }
}
#services {
  padding: 2rem 0 3rem;
}
@media only screen and (max-width: 767px) {
  #services {
    padding: 0 0 3rem;
  }
}
#services .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #services .title-wrap {
    flex-direction: column;
  }
}
#services .title-wrap .title {
  color: #151853;
  text-transform: uppercase;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  #services .title-wrap .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  #services .title-wrap .title {
    font-size: 30px;
  }
}
#services .title-wrap img {
  max-width: 150px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #services .title-wrap img {
    max-width: 250px;
  }
}
#services .text {
  margin-top: 1rem;
  color: #151853;
  padding-right: 5%;
}
@media only screen and (max-width: 767px) {
  #services .text {
    padding-right: 0;
  }
}
#services .button-wrapper {
  text-align: left;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  #services .button-wrapper .btn {
    width: 100%;
  }
}
#services .right {
  position: relative;
}
@media only screen and (max-width: 992px) {
  #services .right {
    margin-top: 3rem;
    border-top: 1px solid #ff0090;
    padding-top: 3rem;
  }
}
#services .right::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 100px;
  background-color: #ff0090;
  top: 50%;
  left: -5px;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 992px) {
  #services .right::before {
    display: none;
  }
}
#rules {
  padding: 5rem 0;
  background-image: linear-gradient(120deg, #00c0fa 0%, #015eea 100%);
  position: relative;
}
#rules::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/themes/stpetepro/assets/img/stpete-skyline-img.png);
  top: 0;
  right: 0;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
#rules .left {
  position: relative;
  z-index: 1;
}
#rules .left .title-wrap {
  position: relative;
}
#rules .left .title-wrap .subtitle {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  top: -15px;
}
#rules .left .title-wrap .title {
  text-transform: uppercase;
  font-weight: 900;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #ff0090;
  text-shadow: none;
}
#rules .left .text {
  color: #fff;
}
#rules .left ul.rules-list {
  margin-left: 1rem;
  margin-top: 1rem;
}
#rules .left ul.rules-list li {
  list-style-type: decimal;
  color: #fff;
}
#rules .right {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #rules .right {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  #rules .right .hollow-pink-button {
    padding: 1.25rem 2rem 1rem;
    width: 100%;
  }
}
.contact #contact-info {
  background-color: #151853;
  padding-top: 6rem;
  padding-bottom: 5rem;
}
.contact #contact-info .top {
  text-align: center;
}
.contact #contact-info .top .title {
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
}
.contact #contact-info .bottom .contact-form {
  margin-top: 3rem;
}
.contact #contact-info .bottom .contact-form br {
  display: none;
}
.contact #contact-info .bottom .contact-form p {
  margin: 0;
  padding: 0;
}
.contact #contact-info .bottom .contact-form .row {
  align-items: flex-end;
}
.contact #contact-info .bottom .contact-form .form-wrap {
  position: relative;
  padding: 2.75rem 0 1rem;
  margin-bottom: 2rem;
}
.contact #contact-info .bottom .contact-form .form-wrap .input {
  width: 100%;
  background: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  color: #fff;
  padding: 0.5rem 0;
}
.contact #contact-info .bottom .contact-form .form-wrap textarea.input,
.contact #contact-info .bottom .contact-form .form-wrap textarea {
  height: 300px;
}
.contact #contact-info .bottom .contact-form .form-wrap label {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  pointer-events: none;
  transform-origin: left top;
  text-transform: uppercase;
  transition: transform 0.35s ease, color 0.3s ease;
}
.contact #contact-info .bottom .contact-form .form-wrap .line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ff0090;
  transition: background 0.3s ease;
}
.contact #contact-info .bottom .contact-form .form-wrap:focus-within label {
  transform: scale(0.45);
  color: #ff0090;
}
.contact #contact-info .bottom .contact-form .form-wrap label {
  transform: scale(1);
}
.contact #contact-info .bottom .contact-form .form-wrap.has-value label {
  transform: scale(0.45);
  color: #ff0090;
}
.contact #contact-info .bottom .contact-form .form-wrap:focus-within .line {
  background: #ff0090;
}
.contact #contact-info .bottom .contact-form .button-wrapper {
  text-align: left;
}
.contact #contact-info .bottom .contact-form .button-wrapper .btn {
  width: 100%;
}
.contact #contact-info .bottom .contact-form .wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  color: #ff0090;
  font-size: 0.95rem;
  font-weight: 600;
}
.contact #contact-info .bottom .contact-form .form-wrap:focus-within label,
.contact
  #contact-info
  .bottom
  .contact-form
  .form-wrap
  .wpcf7-form-control-wrap:focus-within
  ~ label {
  transform: scale(0.45);
  color: #ff0090;
}
.contact .wpcf7 form.invalid .wpcf7-response-output,
.contact .wpcf7 form.unaccepted .wpcf7-response-output,
.contact .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ff0090 !important;
  color: #fff !important;
}
.contact .wpcf7 form.sent .wpcf7-response-output {
  border-color: #00c0fa !important;
  color: #fff !important;
}
.sponsorship #sponsor-info {
  background-color: #151853;
  padding-top: 3rem;
}
.sponsorship #sponsor-info .title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
}
.sponsorship #sponsor-info .text {
  color: #fff;
  margin-top: 2rem;
}
.sponsorship #sponsor-info .text el {
  font-style: italic;
  font-weight: 700;
}
.sponsorship .sponsor-rail {
  background: #151853;
  color: #fff;
  padding: 4rem 0 2rem;
  overflow: hidden;
}
.sponsorship .sponsor-rail__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: clamp(1.25rem, 3vw, 2.25rem);
}
.sponsorship .sponsor-rail__title .title {
  margin: 0;
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}
.sponsorship .sponsor-rail__title .subtitle {
  color: #00c0fa;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.sponsorship .sponsor-rail__ui {
  display: grid;
  gap: 0.9rem;
}
.sponsorship .sponsor-rail__progress {
  height: 2px;
  background: hsla(0, 0%, 100%, 0.18);
  border-radius: 999px;
  overflow: hidden;
}
.sponsorship .sponsor-rail__progress .bar {
  display: block;
  height: 100%;
  width: 0%;
  background: #ff0090;
  transition: width 0.18s linear;
}
.sponsorship .sponsor-rail__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.sponsorship .sponsor-rail__chips .chip {
  cursor: pointer;
  border: 1px solid #ff0090;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  padding: 0.55rem 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: 0.2s;
}
.sponsorship .sponsor-rail__chips .chip:hover,
.sponsorship .sponsor-rail__chips .chip:focus-visible {
  transform: translateY(-1px);
  border-color: #ff0090;
  outline: none;
  background: #ff0090;
}
.sponsorship .sponsor-rail__chips .chip.is-active {
  background: #ff0090;
  border-color: #ff0090;
  color: #fff;
}
.sponsorship .sponsor-rail__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 66vw;
  gap: clamp(1rem, 2vw, 1.75rem);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: clamp(1rem, 4vw, 2rem);
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0 1.25rem;
  scrollbar-width: none;
}
.sponsorship .sponsor-rail__track::-webkit-scrollbar {
  display: none;
}
.sponsorship .sponsor-rail__track {
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 2%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 2%,
    #000 94%,
    transparent 100%
  );
}
.sponsorship .sponsor-card {
  scroll-snap-align: start;
  width: 100%;
  min-height: clamp(360px, 42vw, 520px);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid hsla(0, 0%, 100%, 0.18);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  backdrop-filter: blur(8px);
}
.sponsorship .sponsor-card .sponsor-card__top {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.sponsorship .sponsor-card h3 {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}
.sponsorship .sponsor-card .price {
  margin: 0.5rem 0;
  color: #ff0090;
  font-weight: 900;
}
.sponsorship .sponsor-card .desc {
  margin: 0.85rem 0 2.5rem;
  opacity: 0.95;
}
.sponsorship .sponsor-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.sponsorship .sponsor-card li {
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.4;
}
.sponsorship .sponsor-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background-color: #ff0090;
}
.sponsorship .sponsor-rail__hint {
  margin-top: 0.75rem;
  opacity: 0.75;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}
.sponsorship .sponsor-rail__hint span {
  color: #ff0090;
}
@media only screen and (max-width: 767px) {
  .sponsorship .sponsor-rail__track {
    grid-auto-columns: minmax(82vw, 92vw);
  }
}
@media only screen and (max-width: 575px) {
  .sponsorship .sponsor-rail__chips {
    gap: 0.5rem;
  }
  .sponsorship .sponsor-rail__chips .chip {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
  }
}
.sponsorship #sponsorship-form {
  background-color: #151853;
  padding-bottom: 3rem;
}
.sponsorship #sponsorship-form .top {
  text-align: center;
}
.sponsorship #sponsorship-form .top .title {
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
}
.sponsorship #sponsorship-form .bottom .sponsor-form {
  margin-top: 3rem;
}
.sponsorship #sponsorship-form .bottom .sponsor-form br {
  display: none;
}
.sponsorship #sponsorship-form .bottom .sponsor-form p {
  margin: 0;
  padding: 0;
}
.sponsorship #sponsorship-form .bottom .sponsor-form .row {
  align-items: flex-end;
}
.sponsorship #sponsorship-form .bottom .sponsor-form .form-wrap {
  position: relative;
  padding: 2.75rem 0 1rem;
  margin-bottom: 2rem;
}
.sponsorship #sponsorship-form .bottom .sponsor-form .form-wrap .input {
  width: 100%;
  background: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  color: #fff;
  padding: 0.5rem 0;
}
.sponsorship #sponsorship-form .bottom .sponsor-form .form-wrap textarea.input,
.sponsorship #sponsorship-form .bottom .sponsor-form .form-wrap textarea {
  height: 300px;
}
.sponsorship #sponsorship-form .bottom .sponsor-form .form-wrap label {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  pointer-events: none;
  transform-origin: left top;
  text-transform: uppercase;
  transition: transform 0.35s ease, color 0.3s ease;
}
.sponsorship #sponsorship-form .bottom .sponsor-form .form-wrap .line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ff0090;
  transition: background 0.3s ease;
}
.sponsorship
  #sponsorship-form
  .bottom
  .sponsor-form
  .form-wrap:focus-within
  label {
  transform: scale(0.45);
  color: #ff0090;
}
.sponsorship #sponsorship-form .bottom .sponsor-form .form-wrap label {
  transform: scale(1);
}
.sponsorship
  #sponsorship-form
  .bottom
  .sponsor-form
  .form-wrap.has-value
  label {
  transform: scale(0.45);
  color: #ff0090;
}
.sponsorship
  #sponsorship-form
  .bottom
  .sponsor-form
  .form-wrap:focus-within
  .line {
  background: #ff0090;
}
.sponsorship #sponsorship-form .bottom .sponsor-form .button-wrapper {
  text-align: left;
}
.sponsorship #sponsorship-form .bottom .sponsor-form .button-wrapper .btn {
  width: 100%;
}
.sponsorship #sponsorship-form .bottom .sponsor-form .wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  color: #ff0090;
  font-size: 0.95rem;
  font-weight: 600;
}
.sponsorship
  #sponsorship-form
  .bottom
  .sponsor-form
  .form-wrap:focus-within
  label,
.sponsorship
  #sponsorship-form
  .bottom
  .sponsor-form
  .form-wrap
  .wpcf7-form-control-wrap:focus-within
  ~ label {
  transform: scale(0.45);
  color: #ff0090;
}
.sponsorship .wpcf7 form.invalid .wpcf7-response-output,
.sponsorship .wpcf7 form.unaccepted .wpcf7-response-output,
.sponsorship .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ff0090 !important;
  color: #fff !important;
}
.sponsorship .wpcf7 form.sent .wpcf7-response-output {
  border-color: #00c0fa !important;
  color: #fff !important;
}
.policy {
  background-color: #151853;
}
.policy #policy-info {
  padding: 3rem 0;
}
.policy #policy-info .title {
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.policy #policy-info .text {
  color: #fff;
}
.policy #policy-info ul {
  margin: 1.5rem 0;
}
.policy #policy-info ul li {
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.4;
  color: #fff;
  margin-left: 1rem;
}
.policy #policy-info ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  background-color: #ff0090;
  background-color: #ff0090;
}
