/*  
    => INTERPRETATION BY MIXIN ( for width )
    
    phone - below medium
    tab - small to medium
    desktop - medium and beyond

*/
.vertical-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.horizontal-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.center-main {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.center-cross {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.center-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.center-transform {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.support-height {
  height: 100svh;
}
.fill-width {
  width: 100%;
}
.fill-height {
  height: 100%;
}
.fill-viewport {
  height: 100svh;
  width: 100vw;
}
/* || BREAKPOINTS
Usage: .breakpoint( size[small, medium, large], {  CSS RULES  });

 -> Can be nested within layouts ( doesn't have to be a top level rule )
*/
* {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-margin-top: 60px;
}
h1,
h2,
h3,
h4,
h5,
p,
i,
span,
pre,
a {
  color: white;
}
@media only screen and (min-width: 1200px) {
  p,
  span,
  pre {
    font-weight: 400;
  }
}
sup {
  font-size: 0.5em;
}
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100svh;
  width: 100vw;
  height: 100%;
  background: #6b4eff;
}
.button {
  background-color: white;
  position: relative;
  height: 40px;
  border-radius: 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  width: 100%;
}
.button:hover,
.button:focus {
  border: 1px solid white;
  background-color: #5340b4;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.button:hover p,
.button:focus p,
.button:hover span,
.button:focus span,
.button:hover i,
.button:focus i {
  color: white;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.button:active {
  background-color: #2600e7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.button:focus-visible {
  border: solid 4px #ffd900;
}
.button p,
.button span,
.button i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: black;
  font-size: 1em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.text-bold {
  font-weight: 600 !important;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.separator-medium {
  width: 40%;
  height: 8px;
  border-radius: 8px;
  background: white;
}
.space-medium {
  height: 24px;
  widtH: 24px;
}
.scrollbar {
  scrollbar-width: 4px;
  scrollbar-color: white transparent;
}
.link {
  cursor: pointer;
  text-decoration: none;
}
.link:focus-visible {
  outline-width: 2px;
  outline-style: solid;
  outline-color: Highlight;
}
.link:hover {
  opacity: 80%;
}
.text-link {
  cursor: pointer;
  text-decoration: none;
  text-decoration: underline;
}
.text-link:focus-visible {
  outline-width: 2px;
  outline-style: solid;
  outline-color: Highlight;
}
.text-link:hover {
  opacity: 80%;
}
.text-icon-link {
  cursor: pointer;
  text-decoration: none;
  text-decoration: underline;
}
.text-icon-link:focus-visible {
  outline-width: 2px;
  outline-style: solid;
  outline-color: Highlight;
}
.text-icon-link:hover {
  opacity: 80%;
}
.text-icon-link:hover i {
  -webkit-transition: 0.15s;
  transition: 0.15s;
  margin-right: 1em;
}
.text-icon-link i {
  -webkit-transition: 0.15s;
  transition: 0.15s;
  margin-left: 1em;
}
.highlight {
  color: #ccae00;
  font-weight: 500;
}
.color-black {
  color: black;
}
.color-white {
  color: white;
}
.spaced-header {
  text-transform: uppercase;
}
h1.spaced-header {
  letter-spacing: 0.4em;
  line-height: 1.5em;
  margin-right: -0.4em;
  font-weight: 400;
  font-size: calc(0.5vw + 1.5em);
}
h2.spaced-header {
  letter-spacing: 0.4em;
  line-height: 1.5em;
  margin-right: -0.4em;
  font-weight: 400;
  font-size: calc(0.5vw + 1em);
}
h3.spaced-header {
  letter-spacing: 0.35em;
  line-height: 1.35em;
  margin-right: -0.45em;
  font-weight: 500;
  font-size: calc(0.2vw + 1em);
}
.parallax-float {
  --float-index: 1;
  translate: 0 calc(var(--scroll-factor) * -60px * var(--float-index)) !important;
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUE.ttf) format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUE.ttf) format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUE.ttf) format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUE.ttf) format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUE.ttf) format('truetype');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUE.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-.ttf) format('truetype');
}
.montserrat-norm {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
:root {
  --scroll-percentage: 0%;
}
.font-bold {
  font-family: "Oswald", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-variant: normal;
  font-stretch: normal;
}
.font-bold-skew {
  font-family: "Oswald", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-variant: normal;
  font-stretch: normal;
  font-synthesis: weight style;
  -webkit-font-feature-settings: "ital" on;
  font-feature-settings: "ital" on;
  /* Ensures the use of italic-specific adjustments */
  text-rendering: optimizeLegibility;
  font-style: italic;
  /* Normalize Italics and Stretch */
}
h1,
h2 {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
h3,
h4 {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
span {
  max-width: 40ch;
}
.gsap-button {
  --accent-color: #ffd900;
  --primary-color: #6b4eff;
  display: grid;
  place-items: center;
  position: relative;
  border: 2px solid var(--accent-color);
  border-radius: 2.5rem;
  background-color: var(--primary-color);
  height: auto;
  width: 100%;
  padding-inline: 2.5rem;
  padding-block: 1rem;
  overflow: hidden;
  cursor: pointer;
}
.gsap-button:hover .gsap-circle {
  scale: 1;
  -webkit-transition: scale 0.5s ease-in-out;
  transition: scale 0.5s ease-in-out;
}
.gsap-button:hover span,
.gsap-button:hover i {
  color: var(--primary-color);
  text-align: center;
}
.gsap-button .gsap-circle {
  position: absolute;
  width: 175%;
  aspect-ratio: 1;
  background-color: var(--accent-color);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  scale: 0;
  -webkit-transition: scale 0.4s ease-in-out, top 1s ease;
  transition: scale 0.4s ease-in-out, top 1s ease;
  pointer-events: none;
}
.gsap-button span,
.gsap-button i {
  position: relative;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 600;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.background {
  height: 100svh;
  width: 100vw;
  height: 100%;
  position: absolute;
  overflow: hidden;
  background-color: #6b4eff;
}
.whatsapp-fab {
  position: absolute;
  bottom: 0%;
  right: 0%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: white;
  height: 52px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  z-index: 99;
  cursor: pointer;
  -webkit-transition: 0.75s;
  transition: 0.75s;
}
.whatsapp-fab:hover,
.whatsapp-fab:active {
  background-color: #ffd900;
}
.whatsapp-fab:hover img,
.whatsapp-fab:active img {
  -webkit-filter: saturate(0%) brightness(200%);
  filter: saturate(0%) brightness(200%);
}
.whatsapp-fab img {
  height: 36px;
  aspect-ratio: 1;
  pointer-events: none;
  -webkit-transition: 0.75s;
  transition: 0.75s;
}
.content {
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100svh;
  width: 100vw;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  scrollbar-width: 4px;
  scrollbar-color: white transparent;
  z-index: 2;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: black;
}
.content > * {
  z-index: 1;
}
.hero-section {
  height: 100svh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100vh;
  height: auto;
  width: 100%;
  position: relative;
  border-radius: 0 0 32px 32px;
  overflow: hidden;
}
.hero-section__bg {
  position: absolute;
  z-index: -1;
}
.hero-section h1 {
  font-size: 4rem;
}
.hero-section video {
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
}
.partner-flex {
  gap: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media only screen and (max-width: 1200px) {
  .partner-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.partner-flex .siif {
  border-radius: 50%;
  background-color: white;
  padding: 4px;
}
.partner-flex img:nth-child(1) {
  border-radius: 4px;
}
.register-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 32px;
  width: 100%;
  padding: 16px;
  background: black;
  height: auto;
  max-height: auto;
}
@media only screen and (max-width: 1200px) {
  .register-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
}
.register-section__description {
  padding: 32px;
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  background: white;
  border-radius: 48px;
}
.register-section__description:nth-child(1) h1,
.register-section__description:nth-child(1) h2,
.register-section__description:nth-child(1) h3 {
  color: #5340b4;
  margin-block: 8px;
}
.register-section__description:nth-child(1) span,
.register-section__description:nth-child(1) p {
  color: black;
}
.register-section__description:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.register-section__description:nth-child(2) p {
  color: rgba(255, 255, 255, 0.8);
}
.register-section__description:nth-child(2) img {
  height: 80%;
}
.text-glow {
  color: #fff;
  text-shadow: 0 0 5px #6b4eff, 0 0 10px #6b4eff, 0 0 15px #6b4eff, 0 0 20px #6b4eff, 0 0 25px #6b4eff;
}
.text-glow:hover {
  text-shadow: 0 0 10px #6b4eff, 0 0 20px #6b4eff, 0 0 30px #6b4eff, 0 0 40px #6b4eff, 0 0 50px #6b4eff;
}
html,
body {
  height: 100%;
}
.grad-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding-block: 64px;
  max-height: auto;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(black), to(#5340b4));
  background-image: linear-gradient(to bottom, black, #5340b4);
}
.grad-section p {
  height: auto;
  width: 80%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  font-size: 1.5rem;
  word-wrap: break-word;
  font-variant: normal;
  font-stretch: normal;
  font-synthesis: weight style;
  -webkit-font-feature-settings: "ital" on;
  font-feature-settings: "ital" on;
  /* Ensures the use of italic-specific adjustments */
  text-rendering: optimizeLegibility;
  font-style: italic;
  /* Normalize Italics and Stretch */
}
@media only screen and (max-width: 1200px) {
  .grad-section p {
    width: 90%;
    font-size: 0.75rem;
  }
}
.grad-section_fill {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 8rem;
  width: 100%;
}
.grad-section_fill h2 {
  font-size: 3rem;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.grad-section_fill h2:hover {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}
.grad-section_fill a {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 10px);
  flex: 1 1 calc(50% - 10px);
  margin: 5px;
}
@media only screen and (min-width: 1200px) {
  .grad-section_fill a {
    margin-top: 48px;
  }
}
@media only screen and (max-width: 1200px) {
  .grad-section_fill {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: unset;
    flex-wrap: unset;
  }
  .grad-section_fill a {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.ghost-card {
  margin-top: 48px;
  height: auto;
  width: calc(100% - 48px);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.ghost-card__bg {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.ghost-card__bg video {
  width: 100%;
}
.ghost-card__content {
  height: 30vh;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  top: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  -webkit-transform: translate(0%, -100%);
  -ms-transform: translate(0%, -100%);
  transform: translate(0%, -100%);
}
.location-section {
  background-color: white;
  width: 100%;
  min-height: 40vh;
}
.awards-name-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 96px;
  height: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-inline: 64px;
  width: 100%;
}
.awards-name-section ul {
  list-style-image: url("../icons/badge.png");
}
.awards-name-section li {
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  white-space: nowrap;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1200px) {
  .awards-name-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.awards-section {
  height: auto;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding-block: 32px;
  gap: 8px;
  background-color: #5340b4;
}
.awards-section h1 {
  font-size: 2.5rem;
}
.awards-section p {
  text-align: center;
}
.awards-section p,
.awards-section li,
.awards-section span {
  width: max(200px, 70%);
  color: rgba(255, 255, 255, 0.9);
}
@media only screen and (max-width: 1200px) {
  .awards-section {
    gap: 8px;
  }
}
.awards-stats-section {
  width: 100%;
  min-height: 100vh;
  padding: 32px;
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: black;
}
.awards-stats-section h1 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 5vw;
  white-space: nowrap;
}
@media only screen and (max-width: 1200px) {
  .awards-stats-section h1 {
    font-size: 3rem;
  }
}
.awards-stats-section h1:nth-last-of-type(even) {
  -webkit-animation: float-1 12s ease-in-out infinite;
  animation: float-1 12s ease-in-out infinite;
  -webkit-transform: translate(-25%, 0%);
  -ms-transform: translate(-25%, 0%);
  transform: translate(-25%, 0%);
}
.awards-stats-section h1:nth-last-of-type(odd) {
  -webkit-transform: translate(25%, 0%);
  -ms-transform: translate(25%, 0%);
  transform: translate(25%, 0%);
  -webkit-animation: float-2 12s ease-in-out infinite;
  animation: float-2 12s ease-in-out infinite;
}
@-webkit-keyframes float-1 {
  50% {
    -webkit-transform: translate(10%, -10%);
    transform: translate(10%, -10%);
  }
}
@keyframes float-1 {
  50% {
    -webkit-transform: translate(10%, -10%);
    transform: translate(10%, -10%);
  }
}
@-webkit-keyframes float-2 {
  50% {
    -webkit-transform: translate(-10%, 10%);
    transform: translate(-10%, 10%);
  }
}
@keyframes float-2 {
  50% {
    -webkit-transform: translate(-10%, 10%);
    transform: translate(-10%, 10%);
  }
}
.gallery-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  /* Make the images bigger */
  gap: 20px;
  padding: 20px;
}
.gallery-section_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Use flexbox to center content */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* Horizontally center the image */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* Vertically center the image */
  overflow: hidden;
  border-radius: 10px;
  /* Slightly rounded corners */
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.gallery-section_item img {
  width: 100%;
  /* Make the image take up full width of its container */
  height: 100%;
  /* Make the image take up full height of its container */
  -o-object-fit: cover;
  object-fit: cover;
  /* Ensures images fill the container without distortion */
  border-radius: 10px;
  /* Slightly rounded corners */
}
.gallery-section_item:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  /* Slight zoom effect on hover */
}
.gallery-section-main {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f2f2f2;
  padding-top: 32px;
}
.gallery-section-main h1,
.gallery-section-main h2,
.gallery-section-main h3 {
  color: #1a1a1a;
}
.sponsors-section {
  height: auto;
  background-color: #f2f2f2;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 32px;
}
.sponsors-section h1,
.sponsors-section h2,
.sponsors-section h3 {
  color: #1a1a1a;
}
.sponsors-section_grid {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  /* Smaller and more horizontal tiles */
  gap: 15px;
  /* Reduced spacing between tiles */
  padding: 15px;
  /* Reduced padding for a tighter layout */
  overflow: auto;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1200px) {
  .sponsors-section_grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    /* Smaller and more horizontal tiles */
  }
}
.sponsors-section_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  /* Maintain rounded corners */
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  aspect-ratio: 16 / 7;
  /* More horizontal aspect ratio */
}
.sponsors-section_item img {
  width: 100%;
  /* Fully occupy the width of the container */
  height: 100%;
  /* Fully occupy the height of the container */
  -o-object-fit: cover;
  object-fit: cover;
  /* Ensures images fit the grid cell */
  border-radius: 10px;
  /* Match container's rounded corners */
}
.wide_img {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}
.location-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding-inline: 32px;
  padding-top: 60px;
  padding-block: 16px;
  background-color: #6b4eff;
  gap: 32px;
}
@media only screen and (max-width: 1200px) {
  .location-section {
    min-height: 500px;
  }
}
.location-section .location-section_content {
  gap: 16px;
  height: 100%;
}
.location-section .highlight {
  font-weight: 800;
  color: white;
}
.location-section span,
.location-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}
@media only screen and (max-width: 1200px) {
  .location-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 0px;
  }
}
.location-section iframe {
  z-index: 10;
  max-height: 300px;
  height: 100%;
  border-radius: 12px;
}
@media only screen and (max-width: 1200px) {
  .location-section iframe {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.bg__awards {
  background-color: linear-gradient(to bottom, black, #5340b4);
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding-block: 15vh;
  padding-inline: 32px;
}
.bg__awards h1,
.bg__awards h2,
.bg__awards h3,
.bg__awards h4 {
  color: white;
}
.bg__awards ul {
  padding-left: 10%;
}
@media only screen and (max-width: 1200px) {
  .bg__awards ul {
    margin-left: 8px;
  }
}
.bg__awards > ul > li {
  margin-bottom: 32px;
  font-size: 1.1rem;
  font-weight: 600;
}
.bg__awards ul li ul {
  margin-left: 32px;
  padding: unset;
}
.bg__awards ul li ul li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 400;
}
.bg__awards span,
.bg__awards p,
.bg__awards li {
  color: rgba(255, 255, 255, 0.8);
}
.bg__awards-main {
  max-width: 70%;
}
@media only screen and (max-width: 1200px) {
  .bg__awards-main {
    max-width: 90%;
  }
}
.bg__awards-sub,
.bg__awards ul,
.bg__awards li {
  width: 100%;
  text-align: left;
}
.bg_register_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
}
.bg_register_group > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.bg_register_group_sam {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.bg_register form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 15px;
}
.bg_register label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}
.bg_register input[type="text"],
.bg_register input[type="email"],
.bg_register input[type="tel"],
.bg_register input[type="url"],
.bg_register textarea {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}
.bg_register textarea {
  resize: vertical;
}
.bg_register input[type="radio"],
.bg_register input[type="checkbox"] {
  margin-right: 10px;
}
.bg_register .checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.bg_register button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #444;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
}
.bg_register button:hover {
  background-color: #333;
}
.content label {
  color: white;
}
.bg__terms,
.bg_register {
  background-color: linear-gradient(to bottom, black, #5340b4);
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding-block: 15vh;
  padding-inline: 32px;
}
.bg__terms h1,
.bg_register h1,
.bg__terms h2,
.bg_register h2,
.bg__terms h3,
.bg_register h3,
.bg__terms h4,
.bg_register h4 {
  color: white;
  text-align: left;
  margin-top: 8px;
}
.bg__terms ul,
.bg_register ul {
  padding-left: 7%;
}
@media only screen and (max-width: 1200px) {
  .bg__terms ul,
  .bg_register ul {
    margin-left: 8px;
  }
}
.bg__terms ul,
.bg_register ul,
.bg__terms li,
.bg_register li {
  width: 100%;
  text-align: left;
}
.bg__terms span,
.bg_register span,
.bg__terms p,
.bg_register p,
.bg__terms li,
.bg_register li {
  color: rgba(255, 255, 255, 0.8);
}
.bg__terms h2,
.bg_register h2 {
  width: 100%;
  text-align: left;
}
.bg_register_info-card {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  padding: 16px;
  margin-bottom: 48px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-align: center;
}
.bg_register-fee-disclaimer {
  width: 50%;
  margin-bottom: 56px;
  text-align: center;
}
form {
  min-width: 80%;
}
.content_business .hero-section {
  height: 80vh;
}
.content_business .hero-section h1 {
  font-size: 3rem;
}
.content_business video {
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, black), color-stop(80%, transparent));
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 80%);
  mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, black), color-stop(80%, transparent));
  mask-image: linear-gradient(to bottom, black 50%, transparent 80%);
}
.content-section {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.content-section p {
  width: 70%;
  color: rgba(255, 255, 255, 0.8);
}
.content-section h2 {
  font-size: 3rem;
  cursor: pointer;
  text-transform: uppercase;
}
.content-section div {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 10px);
  flex: 1 1 calc(50% - 10px);
  margin: 5px;
}
@media only screen and (min-width: 1200px) {
  .content-section div {
    margin-top: 48px;
  }
}
@media only screen and (max-width: 1200px) {
  .content-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: unset;
    flex-wrap: unset;
  }
  .content-section div {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.header__active {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.75s ease-in-out;
  transition: 0.75s ease-in-out;
}
.full-screen-nav__active > .header__active {
  height: 90svh;
}
.full-screen-nav__active {
  -webkit-transition: 0.75s ease-in-out !important;
  transition: 0.75s ease-in-out !important;
}
@media only screen and (max-width: 1200px) {
  .full-screen-nav__active {
    height: 90svh !important;
    -webkit-transition: 0.75s ease-in-out !important;
    transition: 0.75s ease-in-out !important;
  }
}
.full-screen-nav__active .link {
  opacity: 0%;
  -webkit-animation: slide-in 0.5s forwards !important;
  animation: slide-in 0.5s forwards !important;
}
.full-screen-nav__active .link:nth-child(1) {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}
.full-screen-nav__active .link:nth-child(2) {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}
.full-screen-nav__active .link:nth-child(3) {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}
.full-screen-nav__active .link:nth-child(4) {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}
.full-screen-nav__active .link:nth-child(5) {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}
.full-screen-nav__active .link:nth-child(6) {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}
.full-screen-nav__active .link:nth-child(7) {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}
.full-screen-nav__active .link:nth-child(8) {
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important;
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0%;
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0%;
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
  }
  100% {
    opacity: 100%;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.full-screen-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 0svh;
  overflow: hidden;
  -webkit-transition: 0.75s ease-in-out;
  transition: 0.75s ease-in-out;
}
.full-screen-nav .donate {
  background-color: white !important;
}
.full-screen-nav .donate h3 {
  color: black;
}
.full-screen-nav .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  text-align: center;
  -ms-flex-preferred-size: 15%;
  flex-basis: 15%;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  background-color: #e6c300;
  -webkit-animation: slide-out 0.5s ease forwards;
  animation: slide-out 0.5s ease forwards;
  -webkit-transition: background-color 0.5s, -webkit-flex-basis 0.5s;
  transition: background-color 0.5s, -webkit-flex-basis 0.5s;
  transition: flex-basis 0.5s, background-color 0.5s;
  transition: flex-basis 0.5s, background-color 0.5s, -webkit-flex-basis 0.5s, -ms-flex-preferred-size 0.5s;
}
.full-screen-nav .link h3 {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.full-screen-nav .link:hover {
  background-color: #6b4eff;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.full-screen-nav .link:hover h3 {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@-webkit-keyframes slide-out {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
  }
}
@keyframes slide-out {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
  }
}
.full-screen-nav .link:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.full-screen-nav .link:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.full-screen-nav .link:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.full-screen-nav .link:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.full-screen-nav .link:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.full-screen-nav .link:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.full-screen-nav .link:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.full-screen-nav .link:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
header {
  width: 100%;
  position: absolute;
  z-index: 3;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  background: rgba(107, 78, 255, 0.1);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  overflow: hidden;
}
header #expand-menu {
  display: none;
  position: absolute;
  left: 100%;
  -webkit-transform: translateX(calc(-100% - 20px));
  -ms-transform: translateX(calc(-100% - 20px));
  transform: translateX(calc(-100% - 20px));
  width: 60px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 1.5em;
}
@media only screen and (max-width: 1200px) {
  header #expand-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
header nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 64px;
  gap: 32px;
  padding: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.28);
  -webkit-transition: 0.75s ease-in-out;
  transition: 0.75s ease-in-out;
  position: relative;
}
header nav .logo-flex {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(32px, -50%);
  -ms-transform: translate(32px, -50%);
  transform: translate(32px, -50%);
}
header nav .logo-flex img {
  border-radius: 50%;
}
@media only screen and (max-width: 1200px) {
  header nav {
    -webkit-transition: 0.75s ease-in-out;
    transition: 0.75s ease-in-out;
  }
}
header nav svg {
  width: 50px;
  height: 25px;
  fill: white;
}
header nav .donate {
  font-size: 0.9em;
  padding: 8px;
  padding-inline: 16px;
  border-radius: 48px;
  border: 1px #ffd900 solid;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
header nav .donate:hover {
  background-color: white;
  color: black;
  border: 1px transparent solid;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media only screen and (max-width: 1200px) {
  header nav .link,
  header nav .donate {
    display: none;
  }
  header nav .link:nth-child(1),
  header nav .donate:nth-child(1) {
    display: block;
  }
}
