@charset "UTF-8";
/*!
 Theme Name:   clupik-theme Wordpress Theme
 Theme URI:    http://nichromatic.com
 Description:  Basic theme implementing the clupik-theme elements
 Author:       Clupik
 Author URI:   http://nichromatic.com
 Version:      1.0.0
 License:      All rights reserved
 Tags:         custom-menu, custom-logo
 Text Domain:  clupik-theme
*/
/*
 * SCSS variables
 *

 * 1. Font import
 * 2. Color map
 * 3. Font size maps (desktop & mobile)
 * 4. Breakpoints
 * 5. Content width & margins
 * 
 */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@600;700&display=swap");
:root {
  --primary-color: #000;
  --primary-color-dark: #000;
  --primary-color-light: #161616;
  --secondary-color: #FF4407;
  --secondary-color-transparent: #ff45070f;
  --secondary-color-dark: #8D1D16;
  --secondary-color-light: #FF430B;
  --primary-text-color: #FFF;
  --secondary-text-color: #FFF;
  --text-color: #FFF;
  --text-color-light: #FFF;
  --text-color-grey: #929da1;
  --link-color: var(--secondary-color);
  --link-color-hover: var(--secondary-color-dark);
}

/*
 * Mixin functions
 *

 * 1. Media queries
 * 2. Font Awesome
 * 
 */
* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

button {
  border: none;
}

*:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: var(--secondary-color);
  outline-offset: 2px;
}

img, video {
  max-width: 100%;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
ul.menu, ul.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
 * Typography styling
 *

 * 1. Main body text
 * 2. Headings
 * 3. Text formatting (small, bold)
 * 4. Responsive sizes
 * 
 */
button, label, input, select, textarea, body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: var(--text-color);
}

body {
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.12em;
  color: var(--text-color-light);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
}

h1, .h1 {
  font-size: 42px;
  font-weight: 800;
}

h2, .h2 {
  font-size: 32px;
  font-weight: 700;
}

h3, .h3 {
  font-size: 28px;
  font-weight: 700;
}

h4, .h4, h5, .h5, h6, .h6 {
  font-size: 1.1rem;
}

h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-bottom: 0;
}

p {
  line-height: 1.7em;
  margin: 0 0 1rem;
}

.subtitle {
  font-size: 18px;
  color: var(--text-color-grey);
}

.small {
  font-size: 14px;
}
@media (max-width: 768px) {
  .small {
    font-size: 12px;
  }
}

.bold, b {
  font-weight: 600;
}

@media (max-width: 768px) {
  body, button, label, input {
    font-size: 14px;
  }
  h1, .h1 {
    font-size: 28px;
  }
  h2, .h2 {
    font-size: 24px;
  }
  h3, .h3 {
    font-size: 20px;
  }
  .subtitle {
    font-size: 16px;
  }
}
/*
 * Utility classes
 *

 * 1. Backgrounds & text-colors
 * 
 */
.bg-primary {
  background-color: var(--primary-color);
}

.color-primary {
  color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.color-secondary {
  color: var(--secondary-color);
}

.bg-light-partners {
  background-color: #f8f8f8;
  --text-color-light: #131313;
  --text-color: #131313;
}

.bg-white-partners {
  background-color: #ffffff;
  --text-color-light: #131313;
  --text-color: #131313;
}

.bg-secondary-partners {
  background-color: var(--secondary-color);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/*
 * CSS classes and styles related to general page layout
 *

 * 1. HTML Body
 * 2. Container & content sections
 * 3. Page layout & page w/ sidebar
 * 4. Pagination
 * 5. Breakpoints (mobile)
 * 
 */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--primary-color);
}
body > footer {
  flex-grow: 1;
}
body.admin-bar {
  min-height: calc(100vh - 32px);
}

/* Afecta al menú desplegable */
select option, input, textarea {
  color: #111 !important; /* texto oscuro */
  background-color: #fff; /* fondo claro */
}

/* Opciones deshabilitadas */
select option:disabled {
  color: #9ca3af;
}

.container {
  max-width: min(90%, 80rem);
  width: 100%;
  margin: auto;
}

.post-container {
  max-width: min(90%, 60rem);
  width: 100%;
  margin: auto;
}

.content-section .section-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
}
.content-section .section-header h2 {
  margin: 0;
}
.content-section.bg-primary {
  color: var(--primary-text-color);
}
.content-section.bg-primary h1, .content-section.bg-primary h2, .content-section.bg-primary h3, .content-section.bg-primary h4, .content-section.bg-primary h5, .content-section.bg-primary h6, .content-section.bg-primary a:not(.btn), .content-section.bg-primary p {
  color: var(--primary-text-color);
}
.content-section.bg-primary .btn-primary {
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
}
.content-section.bg-primary .btn-primary:hover {
  background-color: var(--secondary-color-dark);
}
.content-section.bg-primary .btn-primary-outline {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.content-section.bg-primary .btn-primary-outline:hover {
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
}
.content-section.bg-secondary {
  color: var(--secondary-text-color);
}
.content-section.bg-secondary h1, .content-section.bg-secondary h2, .content-section.bg-secondary h3, .content-section.bg-secondary h4, .content-section.bg-secondary h5, .content-section.bg-secondary h6, .content-section.bg-secondary a:not(.btn), .content-section.bg-secondary p {
  color: var(--secondary-text-color);
}
.content-section.bg-secondary a:not(.btn):hover {
  color: var(--secondary-text-color);
}
.content-section.bg-secondary .btn-secondary {
  background-color: var(--primary-color);
  color: var(--primary-text-color);
}
.content-section.bg-secondary .btn-secondary:hover {
  background-color: var(--primary-color-dark);
}
.content-section.bg-secondary .btn-secondary-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.content-section.bg-secondary .btn-secondary-outline:hover {
  background-color: var(--primary-color);
  color: var(--primary-text-color);
}

.new-section .container {
  position: relative;
}
.new-section .block-title {
  position: absolute;
  font-family: "Rajdhani";
  top: 6px;
  left: 6px;
  z-index: 10;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  font-weight: 500;
  font-size: 2rem;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.page-content {
  width: 100%;
}

.post-content {
  width: 100%;
  margin-bottom: 4rem;
}

.page-with-sidebar {
  display: flex;
  gap: 6em;
  margin-bottom: 2rem;
}
.page-with-sidebar .page-sidebar {
  flex-shrink: 0;
  width: 20%;
}
.page-with-sidebar #main-content {
  flex-grow: 1;
  max-width: 100%;
}

.page-with-sidebar.sidebar-opposite {
  flex-direction: row-reverse;
}

.post-container header#post-header {
  width: 100%;
  flex-direction: column;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.0823529412);
}
.post-container header#post-header h1 {
  margin: 1rem 0;
}

nav.pagination {
  width: 100%;
  justify-content: flex-end;
  display: flex;
  gap: 0.5rem;
}
nav.pagination > * {
  width: 38px;
  height: 38px;
  display: block;
  text-align: center;
  line-height: 38px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 18px;
}
nav.pagination > *.current {
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
}

@media (min-width: 769px) {
  .content-section {
    padding: clamp(3.5rem, 5vw, 5.25rem) 0;
  }
  .page-content > p {
    margin: 2rem 0;
  }
  .page-with-sidebar {
    padding-top: 1rem;
  }
}
@media (max-width: 1024px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  body > header,
  .page-content,
  #front-page-header,
  #static-page-header,
  .content-section,
  .new-section {
    width: 100%;
    max-width: 100%;
  }
  .container,
  .post-container {
    width: 100%;
    max-width: none;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }
  .content-section {
    padding: clamp(2.25rem, 6vw, 3.25rem) 0;
  }
  .page-content > p {
    margin: 1rem 0;
  }
  .page-with-sidebar .page-sidebar {
    display: none;
  }
}
/*
 * WordPress Gutemberg block styling 
 */
.wp-block-image {
  margin: 1rem 0;
}
.wp-block-image img {
  height: 100%;
}

@media (max-width: 768px) {
  .wp-block-image {
    margin: 2rem 0;
  }
}
/*
 * Blog post content styling
 */
article.post-card a.post-image {
  width: 100%;
  display: block;
  line-height: 0;
  overflow: hidden;
}
article.post-card a.post-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s;
}
article.post-card a.post-image:hover img {
  transform: scale(1.1);
}
article.post-card .post-text {
  margin: 0.75rem 0 2rem;
}
article.post-card .post-text h3, article.post-card .post-text p {
  margin: 0.2rem 0;
}
article.post-card .post-text h3 {
  font-size: 18px;
}
article.post-card .post-text h3 a {
  color: var(--text-color);
}
article.post-card .post-text p.categories {
  font-weight: 600;
}
article.post-card .post-text p.date {
  color: var(--text-color-grey);
}

#post-header .post-info {
  color: var(--text-color-grey);
}

article.post-card.tournament-card {
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--primary-color-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
article.post-card.tournament-card a.post-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
article.post-card.tournament-card a.post-image img {
  aspect-ratio: 16/10;
  filter: saturate(1.05) contrast(1.05);
}
article.post-card.tournament-card a.post-image .tournament-card__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.25s ease;
}
article.post-card.tournament-card a.post-image .tournament-card__sport {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.45em 0.7em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--primary-text-color);
  background-color: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
article.post-card.tournament-card .post-text {
  margin: 0;
  padding: 1.05rem 1.1rem 1.15rem;
}
article.post-card.tournament-card .post-text h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2em;
  font-weight: 800;
  letter-spacing: -0.01em;
}
article.post-card.tournament-card .post-text h3 a {
  color: var(--primary-text-color);
}
article.post-card.tournament-card .tournament-meta {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.35rem;
  color: var(--text-color-grey);
  font-size: 0.95rem;
}
article.post-card.tournament-card .tournament-meta .tournament-meta__item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
article.post-card.tournament-card .tournament-meta .tournament-meta__item i {
  margin-top: 0.15rem;
  color: var(--secondary-color);
  opacity: 0.95;
}
article.post-card.tournament-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
article.post-card.tournament-card:hover a.post-image img {
  transform: scale(1.06);
}
article.post-card.tournament-card:hover a.post-image .tournament-card__overlay {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  article.post-card.tournament-card {
    transition: none;
  }
  article.post-card.tournament-card:hover {
    transform: none;
  }
  article.post-card.tournament-card a.post-image img {
    transition: none;
  }
  article.post-card.tournament-card a.post-image .tournament-card__overlay {
    transition: none;
  }
}
/**
 * INDEX
 *
 * 1. Mixins
 * 2. Fill buttons
 * 3. Outline buttons
 * 4. Link buttons
 * 
 */
.btn-default, .btn {
  padding: 1em 1.25em;
  line-height: 1em;
  font-weight: 700;
  border-radius: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-default > i, .btn > i {
  font-size: 0.9em;
}
.btn-default > i:not(:first-child), .btn > i:not(:first-child) {
  margin-left: 0.5em;
}
.btn-default > i:not(:last-child), .btn > i:not(:last-child) {
  margin-right: 0.5em;
}
.btn-default, .btn {
  background-color: var(--primary-color-light);
  color: var(--text-color);
}
.btn-default:hover, .btn:hover {
  background-color: var(--primary-color-light);
  color: var(--text-color);
  transform: translateY(-1px);
}

.btn-primary {
  padding: 1em 1.25em;
  line-height: 1em;
  font-weight: 700;
  border-radius: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary > i {
  font-size: 0.9em;
}
.btn-primary > i:not(:first-child) {
  margin-left: 0.5em;
}
.btn-primary > i:not(:last-child) {
  margin-right: 0.5em;
}
.btn-primary {
  background-color: var(--primary-color);
  color: var(--primary-text-color);
}
.btn-primary:hover {
  background-color: var(--primary-color-dark);
  color: var(--primary-text-color);
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 1em 1.25em;
  line-height: 1em;
  font-weight: 700;
  border-radius: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-secondary > i {
  font-size: 0.9em;
}
.btn-secondary > i:not(:first-child) {
  margin-left: 0.5em;
}
.btn-secondary > i:not(:last-child) {
  margin-right: 0.5em;
}
.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
}
.btn-secondary:hover {
  background-color: var(--secondary-color-dark);
  color: var(--secondary-text-color);
  transform: translateY(-1px);
}

.btn-default-outline, .btn-outline {
  padding: 1em 1.25em;
  line-height: 1em;
  font-weight: 700;
  border-radius: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-default-outline > i, .btn-outline > i {
  font-size: 0.9em;
}
.btn-default-outline > i:not(:first-child), .btn-outline > i:not(:first-child) {
  margin-left: 0.5em;
}
.btn-default-outline > i:not(:last-child), .btn-outline > i:not(:last-child) {
  margin-right: 0.5em;
}
.btn-default-outline, .btn-outline {
  padding: calc(1em - 2px) calc(1.25em - 2px);
  border: 2px solid;
  background-color: transparent;
}
.btn-default-outline:hover, .btn-outline:hover {
  font-weight: 900;
}
.btn-default-outline, .btn-outline {
  background-color: var(--text-color);
  color: var(--text-color);
}

.btn-primary-text-outline {
  padding: 1em 1.25em;
  line-height: 1em;
  font-weight: 700;
  border-radius: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary-text-outline > i {
  font-size: 0.9em;
}
.btn-primary-text-outline > i:not(:first-child) {
  margin-left: 0.5em;
}
.btn-primary-text-outline > i:not(:last-child) {
  margin-right: 0.5em;
}
.btn-primary-text-outline {
  padding: calc(1em - 2px) calc(1.25em - 2px);
  border: 2px solid;
  background-color: transparent;
}
.btn-primary-text-outline:hover {
  font-weight: 900;
}
.btn-primary-text-outline {
  border-color: var(--primary-text-color);
  color: var(--primary-text-color);
}
.btn-primary-text-outline:hover {
  background-color: var(--primary-text-color);
  color: var(--primary-color);
}

.btn-primary-outline {
  padding: 1em 1.25em;
  line-height: 1em;
  font-weight: 700;
  border-radius: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary-outline > i {
  font-size: 0.9em;
}
.btn-primary-outline > i:not(:first-child) {
  margin-left: 0.5em;
}
.btn-primary-outline > i:not(:last-child) {
  margin-right: 0.5em;
}
.btn-primary-outline {
  padding: calc(1em - 2px) calc(1.25em - 2px);
  border: 2px solid;
  background-color: transparent;
}
.btn-primary-outline:hover {
  font-weight: 900;
}
.btn-primary-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn-primary-outline:hover {
  background-color: var(--primary-color);
  color: var(--primary-text-color);
}

.btn-secondary-outline {
  padding: 1em 1.25em;
  line-height: 1em;
  font-weight: 700;
  border-radius: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-secondary-outline > i {
  font-size: 0.9em;
}
.btn-secondary-outline > i:not(:first-child) {
  margin-left: 0.5em;
}
.btn-secondary-outline > i:not(:last-child) {
  margin-right: 0.5em;
}
.btn-secondary-outline {
  padding: calc(1em - 2px) calc(1.25em - 2px);
  border: 2px solid;
  background-color: transparent;
}
.btn-secondary-outline:hover {
  font-weight: 900;
}
.btn-secondary-outline {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.btn-secondary-outline:hover {
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
}

a[class^=btn] {
  text-decoration: none;
  display: inline-block;
}

li[class^=btn] {
  padding-right: 0;
  padding-left: 0;
}
li[class^=btn] > a {
  border-radius: 8px;
  text-decoration: none;
  color: unset;
  padding: 0.5em 0.75em;
}

.icon-link-btn {
  font-weight: 600;
  color: var(--primary-color);
}
.icon-link-btn i {
  color: var(--secondary-color);
}
.icon-link-btn i:last-child {
  margin-left: 6px;
}
.icon-link-btn i:first-child {
  margin-right: 6px;
}
.icon-link-btn:hover {
  color: var(--secondary-color);
}

input[type=submit], button[type=submit] {
  padding: 1em 1.25em;
  line-height: 1em;
  font-weight: 700;
  border-radius: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
input[type=submit] > i, button[type=submit] > i {
  font-size: 0.9em;
}
input[type=submit] > i:not(:first-child), button[type=submit] > i:not(:first-child) {
  margin-left: 0.5em;
}
input[type=submit] > i:not(:last-child), button[type=submit] > i:not(:last-child) {
  margin-right: 0.5em;
}
input[type=submit], button[type=submit] {
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
  border: none;
  cursor: pointer;
}
input[type=submit]:hover, button[type=submit]:hover {
  background-color: var(--secondary-color-dark);
  color: var(--secondary-text-color);
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:hover, a:focus, a:focus-within {
  color: var(--text-color);
}

a:not(.btn) {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  text-decoration-color: transparent;
}
a:not(.btn):hover, a:not(.btn):focus, a:not(.btn):focus-within {
  text-decoration-color: var(--secondary-color);
}

a[rel=external]:after {
  content: "\f35d";
  font-family: "Font Awesome 5 Pro";
}

*[data-tooltip]::before {
  content: "";
  transform: translateX(0);
  opacity: 0;
  top: 50%;
}

*[data-tooltip]:hover:not([data-tooltip-on*=focus]):not([data-tooltip-on*=input]),
*[data-tooltip]:focus:not([data-tooltip-on=hover]):not([data-tooltip-on*=input]),
*[data-tooltip][data-tooltip-on=focus-within]:focus-within,
input:focus-visible + *[data-tooltip][data-tooltip-on=input-label] {
  position: relative;
}
*[data-tooltip]:hover:not([data-tooltip-on*=focus]):not([data-tooltip-on*=input])::before,
*[data-tooltip]:focus:not([data-tooltip-on=hover]):not([data-tooltip-on*=input])::before,
*[data-tooltip][data-tooltip-on=focus-within]:focus-within::before,
input:focus-visible + *[data-tooltip][data-tooltip-on=input-label]::before {
  content: attr(data-tooltip);
  background-color: var(--primary-color-dark);
  color: #ffffff;
  font-size: 12px;
  min-width: 10ch;
  text-align: center;
  padding: 0.5em 0.75em;
  border-radius: 6px;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  z-index: 999;
  transition: top 0.5s ease-out, opacity 0.6s;
}
*[data-tooltip]:hover:not([data-tooltip-on*=focus]):not([data-tooltip-on*=input])[data-tooltip-pos*=top]::before,
*[data-tooltip]:focus:not([data-tooltip-on=hover]):not([data-tooltip-on*=input])[data-tooltip-pos*=top]::before,
*[data-tooltip][data-tooltip-on=focus-within]:focus-within[data-tooltip-pos*=top]::before,
input:focus-visible + *[data-tooltip][data-tooltip-on=input-label][data-tooltip-pos*=top]::before {
  top: unset;
  bottom: calc(0% - 8px);
}
*[data-tooltip]:hover:not([data-tooltip-on*=focus]):not([data-tooltip-on*=input])[data-tooltip-pos*=left]::before,
*[data-tooltip]:focus:not([data-tooltip-on=hover]):not([data-tooltip-on*=input])[data-tooltip-pos*=left]::before,
*[data-tooltip][data-tooltip-on=focus-within]:focus-within[data-tooltip-pos*=left]::before,
input:focus-visible + *[data-tooltip][data-tooltip-on=input-label][data-tooltip-pos*=left]::before {
  transform: unset;
  left: unset;
  right: 0%;
}
*[data-tooltip]:hover:not([data-tooltip-on*=focus]):not([data-tooltip-on*=input])[data-tooltip-pos*=right]::before,
*[data-tooltip]:focus:not([data-tooltip-on=hover]):not([data-tooltip-on*=input])[data-tooltip-pos*=right]::before,
*[data-tooltip][data-tooltip-on=focus-within]:focus-within[data-tooltip-pos*=right]::before,
input:focus-visible + *[data-tooltip][data-tooltip-on=input-label][data-tooltip-pos*=right]::before {
  transform: unset;
  left: 0%;
}

.page-sidebar .widget-container .widget {
  padding: 2rem 0;
}
.page-sidebar .widget-container .widget .widget-title {
  margin-bottom: 1rem;
}
.page-sidebar .widget-container .widget:not(:last-child) {
  border-bottom: 2px solid var(--primary-color-light);
}
.page-sidebar .widget-container .widget:first-child {
  padding-top: 0;
}
.page-sidebar .widget-container .widget h3 {
  margin-top: 0;
}
.page-sidebar .widget-container .widget #wp-calendar {
  width: 100%;
}
.page-sidebar .widget-container .widget #wp-calendar caption {
  text-transform: capitalize;
}
.page-sidebar .widget-container .widget #wp-calendar td {
  text-align: center;
}
.page-sidebar .widget-container .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-sidebar .widget-container .widget ul > li:not(:last-child) {
  margin-bottom: 0.5em;
}
.page-sidebar .widget-container .widget ul.children {
  margin-left: 1em;
  margin-top: 0.5em;
}

nav.pagination {
  width: 100%;
  justify-content: flex-end;
  display: flex;
  gap: 0.5rem;
}
nav.pagination > * {
  width: 38px;
  height: 38px;
  display: block;
  text-align: center;
  line-height: 38px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 18px;
  border-radius: 50%;
}
nav.pagination > *:hover {
  background-color: var(--primary-color-light);
}
nav.pagination > *.current {
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
}

form {
  display: flex;
  flex-direction: column;
}
form > *:not(label) {
  margin-bottom: 1.25rem;
}
form > label {
  margin-bottom: 0.5rem;
}
form label {
  font-weight: 600;
}
form input[type=text], form input[type=email], form input[type=number], form input[type=search], form input[type=tel], form input[type=file], form select, form .select2 .select2-selection--single, form textarea {
  padding: 0.75em 1em;
  border: 1px solid #3f3f3f;
  border-color: #3f3f3f !important;
  background-color: #202020;
  border-radius: 8px;
  margin: 0.5rem 0;
  width: 100%;
}
form input[type=text]::placeholder, form input[type=email]::placeholder, form input[type=number]::placeholder, form input[type=search]::placeholder, form input[type=tel]::placeholder, form input[type=file]::placeholder, form select::placeholder, form .select2 .select2-selection--single::placeholder, form textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--text-color-grey);
  opacity: 1; /* Firefox */
}
form .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 16px;
  right: 12px;
}
form .select2-container--default .select2-selection--single {
  height: fit-content;
}
form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal;
  padding-left: 0px;
  padding-right: 0px;
}
form .select-wrapper {
  position: relative;
}
form .select-wrapper::after {
  pointer-events: none;
  position: absolute;
  right: 0;
  line-height: 42px;
  margin-right: 1em;
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  content: "\f078";
}
form .select-wrapper select {
  appearance: none;
  width: 100%;
  height: 42px;
}
form input[type=checkbox] {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 0.5rem;
}
form textarea {
  min-height: 80px;
}
form input[type=file] {
  padding: 0.4em 0.5em;
  color: var(--text-color-grey);
}
form input[type=file]::file-selector-button {
  background-color: #2e2e2e;
  color: #fff;
  border: 1px solid #3f3f3f;
  border-radius: 6px;
  padding: 0.5em 1em;
  margin-right: 0.75em;
  cursor: pointer;
  transition: all 0.2s ease;
}
form input[type=file]::file-selector-button:hover {
  background-color: #3a3a3a;
}
form input[type=file]::-webkit-file-upload-button {
  background-color: #2e2e2e;
  color: #fff;
  border: 1px solid #3f3f3f;
  border-radius: 6px;
  padding: 0.5em 1em;
  margin-right: 0.75em;
  cursor: pointer;
  transition: all 0.2s ease;
}
form input[type=file]::-webkit-file-upload-button:hover {
  background-color: #3a3a3a;
}

span.chip {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 600;
}
span.chip i:first-child {
  padding-right: 0.2rem;
}
span.chip {
  background-color: var(--primary-color-light);
  color: var(--text-color);
}

span.chip-success {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 600;
}
span.chip-success i:first-child {
  padding-right: 0.2rem;
}
span.chip-success {
  background-color: #c6edac;
  color: #456631;
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  position: relative;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.swiper.overflow-hidden {
  overflow: hidden;
}

/*
 * Woocommerce CSS overrides
 *

 * 1. Single product page
 * 2. Product page tabs
 * 3. Product card
 * 4. Cart & checkout
 * 
 */
.woocommerce div.product form.cart .variations label {
  text-align: left;
  margin-top: 1.1em;
  display: block;
}

.woocommerce div.product form.cart .button {
  margin: 0.5rem 0;
  height: 49px;
  border-radius: 8px;
  margin-left: 1rem;
}

.woocommerce div.product form.variations_form {
  display: flex;
  flex-direction: column;
}
.woocommerce div.product form.variations_form .variations {
  margin-bottom: 0 !important;
}
.woocommerce div.product form.variations_form .single_variation_wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.woocommerce div.product form.cart:not(.variations_form) {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.woocommerce div.product .product_title {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.woocommerce div.product .product_meta {
  color: var(--text-color-grey);
  text-align: right;
}

.woocommerce div.product form.cart .button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
}
.woocommerce div.product form.cart .button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
  background-color: var(--secondary-color-dark);
  color: var(--secondary-text-color);
}

.woocommerce .quantity .qty {
  width: 4rem;
}

.woocommerce-product-rating {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.woocommerce-product-rating .woocommerce-review-link {
  color: var(--text-color-grey);
}

.woocommerce #review_form #respond form {
  margin-top: 2rem;
}
.woocommerce #review_form #respond form .comment-form-rating {
  margin-bottom: 0 !important;
}
.woocommerce #review_form #respond form .form-submit {
  text-align: right;
}
.woocommerce #review_form #respond form .form-submit input[type=submit] {
  padding: 1em 1.25em;
  line-height: 1em;
  font-weight: 700;
  border-radius: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.woocommerce #review_form #respond form .form-submit input[type=submit] > i {
  font-size: 0.9em;
}
.woocommerce #review_form #respond form .form-submit input[type=submit] > i:not(:first-child) {
  margin-left: 0.5em;
}
.woocommerce #review_form #respond form .form-submit input[type=submit] > i:not(:last-child) {
  margin-right: 0.5em;
}
.woocommerce #review_form #respond form .form-submit input[type=submit] {
  background-color: var(--primary-color);
  color: var(--primary-text-color);
}
.woocommerce #review_form #respond form .form-submit input[type=submit]:hover {
  background-color: var(--primary-color-dark);
  color: var(--primary-text-color);
}

.single-product.woocommerce-page .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
  pointer-events: none;
}

#product-showcase.content-section {
  overflow-x: hidden;
}

#product-showcase .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a {
  overflow: hidden;
  display: block;
}
#product-showcase .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a img {
  transition: transform 0.25s ease-out;
}
#product-showcase .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a img:hover {
  transform: scale(1.05);
}
#product-showcase .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  position: relative;
}
#product-showcase .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image::after {
  content: "";
  position: absolute;
  background-image: url(./assets/dot.svg);
  background-size: 18px;
  width: 100%;
  height: 100%;
  top: 2rem;
  left: 2rem;
  z-index: -1;
  pointer-events: none;
}

/* Jotform embed (Aneto Cup) */
.aneto-jotform {
  width: 100%;
  margin-top: 2rem;
}
.aneto-jotform iframe {
  width: 100% !important;
  max-width: 100% !important;
  border: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-color: #d3ced2 !important;
  background-color: var(--primary-color-light);
}

.woocommerce-products-header h1.page-title {
  margin-top: 0;
}

.woocommerce-result-count {
  color: var(--text-color-grey);
  margin-top: 2rem;
}

.woocommerce select {
  -webkit-appearance: none;
  appearance: none;
}

.woocommerce .woocommerce-ordering {
  position: relative;
}
.woocommerce .woocommerce-ordering::after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  position: absolute;
  right: 16px;
  top: calc(50% - 7px);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.woocommerce ul.products::before {
  content: none;
}
.woocommerce ul.products > li.product {
  margin: 0px !important;
  border: 1px solid rgba(51, 51, 51, 0.0823529412);
  width: 100% !important;
  overflow: hidden;
  display: flex;
}
.woocommerce ul.products > li.product h2.woocommerce-loop-product__title, .woocommerce ul.products > li.product span.price {
  margin: 0 !important;
}
.woocommerce ul.products > li.product span.price {
  margin-bottom: 1rem;
}
.woocommerce ul.products > li.product .star-rating {
  display: none !important;
}
.woocommerce ul.products > li.product > a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

@media (min-width: 769px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(1, 1fr);
  }
}
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
  font-size: 18px;
  margin: 0.2rem 0;
  padding: 0;
  color: var(--text-color);
}
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  height: 100%;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  min-height: 3.2em;
}
.woocommerce ul.products li.product:hover .woocommerce-loop-category__title, .woocommerce ul.products li.product:hover .woocommerce-loop-product__title, .woocommerce ul.products li.product:hover h3, .woocommerce ul.products li.product:focus .woocommerce-loop-category__title, .woocommerce ul.products li.product:focus .woocommerce-loop-product__title, .woocommerce ul.products li.product:focus h3, .woocommerce ul.products li.product:focus-within .woocommerce-loop-category__title, .woocommerce ul.products li.product:focus-within .woocommerce-loop-product__title, .woocommerce ul.products li.product:focus-within h3 {
  color: var(--secondary-color);
}

.woocommerce ul.products li.product .price {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-color-grey);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

form.woocommerce-product-search {
  flex-direction: row;
  gap: 0.5rem;
  position: relative;
}
form.woocommerce-product-search button[type=submit] {
  margin-bottom: 0 !important;
  color: var(--secondary-color);
  background-color: transparent !important;
  position: absolute;
  right: 0;
}
form.woocommerce-product-search button[type=submit]:hover {
  color: var(--secondary-color-dark);
}
form.woocommerce-product-search input[type=text] {
  margin: 0 !important;
}

.woocommerce-cart .woocommerce {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}
.woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
  width: 100%;
}
.woocommerce-cart .woocommerce .woocommerce-cart-form {
  flex-grow: 1;
}
.woocommerce-cart .woocommerce .cart-collaterals {
  width: unset;
  min-width: 400px;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
  width: 100%;
}
.woocommerce-cart .woocommerce .cart-collaterals h2 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .woocommerce-cart .woocommerce .cart-collaterals {
    width: 100%;
    min-width: 0;
  }
}
@media (min-width: 481px) {
  #add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
    width: 200px;
  }
}
aside.page-sidebar .product-categories .current-cat a {
  color: var(--text-color) !important;
}
aside.page-sidebar .product-categories a {
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 600;
}
aside.page-sidebar .product-categories a:hover {
  color: var(--text-color);
}
aside.page-sidebar .wp-block-search__input {
  margin: 0;
}
aside.page-sidebar .wp-block-search__inside-wrapper {
  margin-bottom: 0;
}
aside.page-sidebar .wc-block-product-categories {
  margin-bottom: 0;
}
aside.page-sidebar .woocommerce-mini-cart .remove.remove_from_cart_button {
  display: none;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a {
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:first-child {
  padding: 1em 1.25em;
  line-height: 1em;
  font-weight: 700;
  border-radius: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:first-child > i {
  font-size: 0.9em;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:first-child > i:not(:first-child) {
  margin-left: 0.5em;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:first-child > i:not(:last-child) {
  margin-right: 0.5em;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:first-child {
  padding: calc(1em - 2px) calc(1.25em - 2px);
  border: 2px solid;
  background-color: transparent;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:first-child:hover {
  font-weight: 900;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:first-child {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:first-child:hover {
  background-color: var(--primary-color);
  color: var(--primary-text-color);
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:last-child {
  padding: 1em 1.25em;
  line-height: 1em;
  font-weight: 700;
  border-radius: 12px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:last-child > i {
  font-size: 0.9em;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:last-child > i:not(:first-child) {
  margin-left: 0.5em;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:last-child > i:not(:last-child) {
  margin-right: 0.5em;
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:last-child {
  background-color: var(--primary-color);
  color: var(--primary-text-color);
}
aside.page-sidebar .woocommerce-mini-cart__buttons.buttons a:last-child:hover {
  background-color: var(--primary-color-dark);
  color: var(--primary-text-color);
}

.woocommerce form .form-row input.input-checkbox {
  margin: 1px 8px 0 0;
}
.woocommerce form .form-row label.checkbox {
  line-height: normal;
}

.woocommerce-checkout form.checkout {
  display: block;
}

.woocommerce-cart .page-content-commerce #main-content,
.woocommerce-checkout .page-content-commerce #main-content {
  width: min(100%, 62rem);
  margin: 0 auto;
}

.woocommerce-checkout #customer_details {
  margin: 0;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  width: 100%;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  margin: 0;
}

.woocommerce-checkout #order_review_heading {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  align-self: auto;
}

.woocommerce-checkout #order_review {
  position: static;
  top: auto;
  padding: 1.5rem 0 0;
  border: 0;
  border-top: 1px solid #3f3f3f;
  border-radius: 0;
  background: transparent;
}

.woocommerce-checkout #order_review .shop_table,
.woocommerce-checkout #order_review .woocommerce-checkout-payment {
  margin-bottom: 0;
}

.woocommerce-checkout #order_review .shop_table {
  border: 0;
  border-collapse: collapse;
  background: transparent;
}

.woocommerce-checkout #order_review .shop_table th,
.woocommerce-checkout #order_review .shop_table td {
  padding: 0.85rem 0;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.woocommerce-checkout #payment {
  background: transparent;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  border: 0;
}

.woocommerce-checkout #payment ul.payment_methods > li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.woocommerce-checkout #payment div.payment_box {
  margin: 0.75rem 0 0;
  background: #181818;
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #181818;
}

.woocommerce-checkout .qls-upload-pdf-field {
  margin-top: 1.5rem;
  padding: 1.5rem 0 0;
  border: 0;
  border-top: 1px solid #3f3f3f;
  border-radius: 0;
  background: transparent;
}

.woocommerce-checkout .qls-upload-pdf-field input[type=file] {
  margin-bottom: 0.6rem;
}

.woocommerce-checkout .qls-upload-pdf-field small {
  display: block;
  color: var(--text-color-grey);
}

.woocommerce-checkout .qls-order-pdf-preview {
  margin-top: 1rem;
}

.woocommerce-checkout .qls-order-pdf-preview[hidden] {
  display: none !important;
}

.woocommerce-checkout .qls-order-pdf-preview-card {
  border: 1px solid #3f3f3f;
  border-radius: 12px;
  overflow: hidden;
  background: #151515;
}

.woocommerce-checkout .qls-order-pdf-preview-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.woocommerce-checkout .qls-order-pdf-thumb {
  flex-shrink: 0;
  width: 5rem;
  aspect-ratio: 0.75;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.woocommerce-checkout .qls-order-pdf-thumb img,
.woocommerce-checkout .qls-order-pdf-thumb-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.woocommerce-checkout .qls-order-pdf-thumb img {
  object-fit: cover;
}

.woocommerce-checkout .qls-order-pdf-thumb-frame {
  pointer-events: none;
}

.woocommerce-checkout .qls-order-pdf-actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.woocommerce-checkout .qls-order-pdf-view,
.woocommerce-checkout .qls-order-pdf-delete {
  font-size: 0.9rem;
  font-weight: 600;
}

.woocommerce-checkout .qls-order-pdf-view {
  color: var(--secondary-color);
  text-decoration: none;
}

.woocommerce-checkout .qls-order-pdf-view:hover {
  color: var(--secondary-color-dark);
}

.woocommerce-checkout .qls-order-pdf-delete {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff8f8f !important;
  cursor: pointer;
}

.woocommerce-checkout .qls-order-pdf-delete:hover {
  color: #ff6a6a !important;
}

.woocommerce-checkout .qls-order-pdf-frame {
  display: block;
  width: 100%;
  height: 26rem;
  border: 0;
  background: #fff;
}

@media (max-width: 768px) {
  .woocommerce-checkout .qls-order-pdf-preview-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .woocommerce-checkout .qls-order-pdf-actions {
    width: 100%;
  }
  .woocommerce-checkout .qls-order-pdf-frame {
    height: 20rem;
  }
  .woocommerce-checkout #order_review {
    margin-top: 1rem;
  }
}
.wcpa_field {
  background-color: #202020 !important;
  color: #fff !important;
}

.wcpa_field label {
  color: #fff !important;
}

.wcpa_wrap .wcpa_field_label {
  color: #fff !important;
}

input[type=submit], button[type=submit] {
  background-color: var(--secondary-color);
  color: #fff !important;
  border: none;
  cursor: pointer;
}

.woocommerce .quantity .qty {
  background-color: #202020 !important;
  color: #fff !important;
}
.woocommerce .quantity .qty::-webkit-outer-spin-button, .woocommerce .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce .quantity .qty[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

@media (min-width: 769px) {
  section.related.products {
    padding: 2rem 0;
  }
  div.product.type-product {
    padding-top: 2rem;
  }
}
@media (max-width: 1024px) {
  section.related.products {
    padding: 1rem 0;
  }
  div.product.type-product {
    padding-top: 1rem;
  }
}
.animate.fade-in {
  opacity: 0;
  transition: opacity 1s linear;
}
.animate.slide-down {
  transform: translateY(-50px);
  opacity: 0;
  transition: opacity 0.5s linear, transform 1s ease-out;
}
.animate.slide-up {
  transform: translateY(50px);
  opacity: 0;
  transition: opacity 0.5s linear, transform 1s ease-out;
}
.animate.slide-up-big {
  transform: translateY(200px);
  opacity: 0;
  transition: opacity 0.75s linear, transform 1.5s ease-out;
}
.animate.slide-right {
  transform: translateX(-100px);
  opacity: 0;
  transition: opacity 0.5s linear, transform 1s ease-out;
}
.animate.slide-left {
  transform: translateX(100px);
  opacity: 0;
  transition: opacity 0.5s linear, transform 1s ease-out;
}
.animate.flip {
  transform: scaleY(0);
  transform-origin: top;
  overflow: hidden;
  transition: transform 0.5s ease-out;
}
.animate.in-view.fade-in {
  opacity: 1;
}
.animate.in-view.slide-down, .animate.in-view.slide-up, .animate.in-view.slide-up-big {
  transform: translateY(0px);
  opacity: 1;
}
.animate.in-view.slide-right, .animate.in-view.slide-left {
  transform: translateX(0px);
  opacity: 1;
}
.animate.in-view.flip {
  transform: scaleY(1);
}
.animate.delay-025 {
  transition-delay: 0.25s;
}
.animate.delay-05 {
  transition-delay: 0.5s;
}
.animate.delay-075 {
  transition-delay: 0.75s;
}
.animate.delay-1 {
  transition-delay: 1s;
}

html.preloader-skip #preloader {
  display: none;
}

#preloader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  width: 120px;
  clip-path: inset(0 100% 0 0);
  animation: revealLogo 0.55s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes revealLogo {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
}
#front-page-header {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--primary-color-dark);
  min-height: 100vh;
  min-height: 100svh;
}
#front-page-header .header-image,
#front-page-header .header-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#front-page-header .header-video {
  isolation: isolate;
}
#front-page-header .header-image img,
#front-page-header .header-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}
#front-page-header .header-image img {
  filter: saturate(1.1) contrast(1.02) brightness(1.05);
}
#front-page-header .header-video video {
  display: block;
  object-fit: cover;
  object-position: center;
}
#front-page-header .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.38) 45%, rgba(0, 0, 0, 0.12) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.38) 100%);
}
#front-page-header .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
#front-page-header .hero-inner {
  max-width: 58rem;
}
#front-page-header .hero-title {
  margin: 0;
  line-height: 1.02em;
  letter-spacing: -0.02em;
  font-weight: 800;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  color: var(--primary-text-color);
}
#front-page-header .hero-subtitle {
  margin: 1rem 0 0;
  max-width: 44rem;
  line-height: 1.45em;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-color-grey);
}
#front-page-header .hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
#front-page-header .hero-actions .btn {
  margin: 0;
}
#front-page-header .hero-actions .btn-secondary {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  #front-page-header {
    min-height: 100vh;
    min-height: 100svh;
  }
  #front-page-header .hero-content {
    padding: 3.25rem 0;
  }
  #front-page-header .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%);
  }
}
#static-page-header {
  min-height: 300px;
}
#static-page-header .container {
  margin-bottom: auto;
  text-align: left;
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
}
#static-page-header .header-image, #static-page-header .header-video, #static-page-header .header-slider {
  position: relative;
  width: 60%;
}
#static-page-header .header-image::after, #static-page-header .header-video::after, #static-page-header .header-slider::after {
  content: "";
  position: absolute;
  background-image: url(./assets/dot.svg);
  background-size: 18px;
  width: 100%;
  height: 100%;
  top: 2rem;
  left: 2rem;
  z-index: -1;
  pointer-events: none;
}
#static-page-header .header-slider {
  aspect-ratio: 16/9;
  overflow: hidden;
}
#static-page-header .header-slider:not(.swiper-container-initialized) .swiper-slide {
  display: none;
}
#static-page-header .header-slider:not(.swiper-container-initialized) .swiper-slide:first-child {
  display: block;
}
#static-page-header .header-slider .swiper-wrapper {
  height: 100%;
}
#static-page-header .header-slider .swiper-slide {
  height: 100%;
}
#static-page-header .header-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#static-page-header .header-slider .swiper-pagination {
  bottom: 1rem;
}

@media (max-width: 768px) {
  #static-page-header {
    min-height: 150px;
    overflow-x: hidden;
  }
  #static-page-header .container {
    flex-direction: column;
  }
  #static-page-header .header-image, #static-page-header .header-video, #static-page-header .header-slider {
    width: 100%;
  }
}
#static-page-header.tournament-header .container {
  margin-bottom: auto;
  text-align: left;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
}
#static-page-header.tournament-header .container .subtitle {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
}
#static-page-header.tournament-header .container .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#static-page-header.tournament-header .container .buttons a {
  margin: 0 !important;
}
#static-page-header.tournament-header .container .header-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#static-page-header.tournament-header .container h1 {
  font-size: clamp(2rem, 6vw, 65px);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0.5rem 0;
  word-break: break-word;
  line-height: 1.1;
}
#static-page-header.tournament-header .container .header-image, #static-page-header.tournament-header .container .header-video {
  flex: 0 0 clamp(26rem, 42vw, 38rem);
  max-width: clamp(26rem, 42vw, 38rem);
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#static-page-header.tournament-header .container .header-image::after, #static-page-header.tournament-header .container .header-video::after {
  content: "";
  position: absolute;
  background-image: url(./assets/dot.svg);
  background-size: 18px;
  width: 100%;
  height: 100%;
  top: 2rem;
  left: 2rem;
  z-index: -1;
  pointer-events: none;
}
#static-page-header.tournament-header .container .header-image img,
#static-page-header.tournament-header .container .header-video video {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  #static-page-header.tournament-header .container {
    flex-direction: column;
  }
  #static-page-header.tournament-header .container .header-text, #static-page-header.tournament-header .container .header-image, #static-page-header.tournament-header .container .header-video {
    width: 100%;
    flex: unset;
  }
  #static-page-header.tournament-header .container h1 {
    font-size: 48px;
  }
}
header {
  position: relative;
  display: flex;
}
header .header-image,
header .header-slider {
  width: 100%;
  height: 100%;
}
header .header-image img,
header .header-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: auto;
}
header .header-video {
  width: 100%;
  height: 100%;
}
header .header-video img, header .header-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  filter: none;
}
header .container {
  padding: 4rem 0;
  width: 100%;
  margin-bottom: 0;
}
header .container h1 {
  line-height: 1em;
  margin: 0 0 1rem;
  font-size: 42px;
  color: var(--primary-text-color);
}
header .container .subtitle {
  font-size: 18px;
  color: var(--primary-text-color);
}
header .container a.btn {
  margin: 1rem 0 0;
  width: fit-content;
}

@media (max-width: 768px) {
  header .container h1 {
    font-size: 28px;
  }
  header .container .subtitle {
    font-size: 16px;
  }
  header .header-image img, header .header-slider img, header .header-video video {
    filter: none;
  }
}
.site-logo {
  padding: 5% 0;
  display: flex;
  align-items: center;
}
.site-logo a {
  max-width: 100%;
  height: 100%;
}
.site-logo a img {
  max-height: 100%;
  max-width: 100%;
}
.site-logo .site-name a {
  line-height: 0.6em;
  font-size: 45px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .site-logo {
    padding: 5px 0;
  }
}
#btn-skip-to-content {
  position: absolute;
  display: flex;
  align-items: center;
  top: 1em;
  bottom: 1em;
  transform: translateY(-100px);
  padding: 1em 1.25em;
}
#btn-skip-to-content:focus {
  transform: translateX(0);
  transition: transform 0.4s;
}

@media (max-width: 768px) {
  #btn-skip-to-content {
    display: none !important;
  }
}
.navbar-fixed-top {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  color: var(--primary-text-color);
  transition: background-color 0.25s, border-color 0.25s, box-shadow 0.25s;
  background-color: transparent;
  border-bottom: 1px solid transparent;
}
.navbar-fixed-top a {
  color: var(--primary-text-color);
  text-decoration: none;
}
.navbar-fixed-top a:hover,
.navbar-fixed-top a:focus,
.navbar-fixed-top a:focus-within {
  text-decoration: none;
}
.navbar-fixed-top a:not(.btn-secondary) {
  transition: color 0.2s ease-in;
}
.navbar-fixed-top a:hover,
.navbar-fixed-top a:focus-within,
.navbar-fixed-top .shopping-cart-button:hover {
  color: var(--primary-text-color);
}
.navbar-fixed-top #main-navigation a {
  font-weight: 600 !important;
  text-transform: uppercase;
}
.navbar-fixed-top .nav-cta,
.navbar-fixed-top .nav-cta-mobile {
  text-transform: uppercase;
}
.navbar-fixed-top #nav-toggle,
.navbar-fixed-top .nav-toggle-label {
  display: none;
}
.navbar-fixed-top .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
  height: 100%;
}
.navbar-fixed-top .nav-logo {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}
.navbar-fixed-top .nav-logo.no-menu {
  flex-grow: 1;
}
.navbar-fixed-top .nav-logo .site-logo.inverted {
  display: flex;
}
.navbar-fixed-top .nav-logo .site-logo:not(.inverted) {
  display: none;
}
.navbar-fixed-top .nav-cta {
  white-space: nowrap;
}
.navbar-fixed-top .shopping-cart-button {
  font-size: 1.2em;
  position: relative;
}
.navbar-fixed-top .shopping-cart-button span.number {
  position: absolute;
  top: -10px;
  font-size: 10px;
  width: 15px;
  height: 15px;
  text-align: center;
  padding-right: 1px;
  line-height: 15px;
  font-weight: 600;
  right: -10px;
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
  border-radius: 50%;
}

.navbar-fixed-top.scrolled,
.navbar-fixed-top.no-header {
  background-color: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  color: var(--primary-text-color);
}
.navbar-fixed-top.scrolled .container,
.navbar-fixed-top.no-header .container {
  border-bottom: none;
}

@media (min-width: 769px) {
  .navbar-fixed-top.scrolled .site-logo.inverted,
  .navbar-fixed-top.no-header .site-logo.inverted {
    display: flex !important;
  }
  .navbar-fixed-top.scrolled .site-logo:not(.inverted),
  .navbar-fixed-top.no-header .site-logo:not(.inverted) {
    display: none !important;
  }
  .navbar-fixed-top-margin,
  .navbar-fixed-top,
  .site-logo {
    height: 76px;
  }
  .shopping-cart-button.desktop {
    display: block;
  }
  .shopping-cart-button.mobile {
    display: none;
  }
  .navbar-fixed-top .container {
    position: relative;
  }
  .navbar-fixed-top #main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    gap: 1.25rem;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.01em;
  }
  .navbar-fixed-top #main-navigation .menu-item-mobile-cta {
    display: none;
  }
  .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]) {
    height: 100%;
  }
  .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]) > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 8px;
    font-weight: 600;
    position: relative;
  }
  .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]) > a::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 22px;
    height: 2px;
    background-color: var(--secondary-color);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]):hover > a, .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]):focus-within > a {
    color: var(--primary-text-color);
  }
  .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]):hover > a::after, .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]):focus-within > a::after {
    opacity: 1;
    transform: translateY(0);
  }
  .navbar-fixed-top #main-navigation .menu-item[class^=btn] {
    margin: 0 10px;
  }
  .navbar-fixed-top #main-navigation .menu-item[class^=btn]:last-child {
    margin-right: 0;
  }
  .navbar-fixed-top #main-navigation .menu-item[class^=btn]:first-child {
    margin-left: 0;
  }
  .navbar-fixed-top #main-navigation.row-submenu .sub-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    font-size: 0.95em;
    justify-content: right;
    position: absolute;
    height: 32px;
    margin: auto;
    right: 0;
    z-index: -1;
    transition: opacity 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0.2s;
    will-change: opacity, transform;
  }
  .navbar-fixed-top #main-navigation.row-submenu .menu-item-has-children:hover::after,
  .navbar-fixed-top #main-navigation.row-submenu .menu-item-has-children:focus-within::after {
    content: "";
    position: absolute;
    width: 200vw;
    left: -100vw;
    right: -100vw;
    top: 100%;
    height: 32px;
    z-index: -2;
  }
  .navbar-fixed-top #main-navigation.row-submenu .menu-item:hover .sub-menu,
  .navbar-fixed-top #main-navigation.row-submenu .menu-item:focus-within .sub-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s;
  }
  .navbar-fixed-top #main-navigation.dropdown-submenu > .menu-item {
    position: relative;
  }
  .navbar-fixed-top #main-navigation.dropdown-submenu .sub-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    font-size: 0.95em;
    background-color: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    top: calc(100% - 2px);
    left: 0;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
    flex-direction: column;
    position: absolute;
    width: max-content;
    min-width: min(20rem, 100vw - 2rem);
    max-width: min(25rem, 100vw - 2rem);
    gap: 0.15rem;
    overflow: hidden;
    z-index: 25;
    transition: opacity 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0.2s;
    will-change: opacity, transform;
  }
  .navbar-fixed-top #main-navigation.dropdown-submenu .sub-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
  }
  .navbar-fixed-top #main-navigation.dropdown-submenu .sub-menu .menu-item {
    width: 100%;
  }
  .navbar-fixed-top #main-navigation.dropdown-submenu .sub-menu .menu-item > a {
    display: block;
    padding: 0.72rem 0.95rem;
    border-radius: 12px;
    white-space: normal;
    line-height: 1.25;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }
  .navbar-fixed-top #main-navigation.dropdown-submenu .sub-menu .menu-item:hover > a, .navbar-fixed-top #main-navigation.dropdown-submenu .sub-menu .menu-item:focus-within > a {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--primary-text-color);
    transform: translateX(2px);
  }
  .navbar-fixed-top #main-navigation.dropdown-submenu .menu-item-has-children:hover .sub-menu,
  .navbar-fixed-top #main-navigation.dropdown-submenu .menu-item-has-children:focus-within .sub-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s;
  }
  .navbar-fixed-top.scrolled #main-navigation.dropdown-submenu .menu-item-has-children:hover .sub-menu,
  .navbar-fixed-top.scrolled #main-navigation.dropdown-submenu .menu-item-has-children:focus-within .sub-menu,
  .navbar-fixed-top.no-header #main-navigation.dropdown-submenu .menu-item-has-children:hover .sub-menu,
  .navbar-fixed-top.no-header #main-navigation.dropdown-submenu .menu-item-has-children:focus-within .sub-menu {
    background-color: rgba(8, 8, 8, 0.94);
    top: calc(100% - 2px);
    border-radius: 18px;
  }
}
@media (max-width: 768px) {
  html.mobile-nav-open,
  body.mobile-nav-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
  .shopping-cart-button.desktop {
    display: none;
  }
  .shopping-cart-button.mobile {
    display: block;
  }
  .navbar-fixed-top .site-logo:not(.inverted) {
    display: none !important;
  }
  .navbar-fixed-top .site-logo.inverted {
    display: flex !important;
  }
  .navbar-fixed-top-margin,
  .navbar-fixed-top,
  .site-logo.inverted {
    height: 56px;
  }
  .navbar-fixed-top,
  .navbar-fixed-top.scrolled,
  .navbar-fixed-top.no-header {
    background-color: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }
  .navbar-fixed-top .container,
  .navbar-fixed-top.scrolled .container,
  .navbar-fixed-top.no-header .container {
    border-bottom: none;
    gap: 0.65rem;
  }
  .navbar-fixed-top {
    position: sticky;
    top: 0;
  }
  .navbar-fixed-top .container {
    position: relative;
    justify-content: space-between;
  }
  .navbar-fixed-top .nav-logo {
    flex-grow: 1;
    min-width: 0;
    position: relative;
    z-index: 120;
  }
  .navbar-fixed-top .nav-logo .site-name a.h1 {
    font-size: 30px;
    line-height: 1em;
  }
  .navbar-fixed-top .shopping-cart-button.mobile,
  .navbar-fixed-top .nav-toggle-label {
    position: relative;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
  .navbar-fixed-top .shopping-cart-button.mobile {
    display: inline-flex;
    color: var(--primary-text-color);
    text-decoration: none;
    flex-shrink: 0;
  }
  .navbar-fixed-top .shopping-cart-button.mobile span.number {
    top: -5px;
    right: -4px;
  }
  .navbar-fixed-top .container > a.btn-secondary {
    display: none;
  }
  .navbar-fixed-top .nav-cta {
    display: none;
  }
  .navbar-fixed-top .nav-toggle-label {
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .navbar-fixed-top .nav-toggle-label::after {
    content: "\f0c9";
    font-family: "Font Awesome 5 Pro";
    font-weight: 200;
    font-size: 18px;
    color: var(--primary-text-color);
    transition: transform 0.25s ease;
  }
  .navbar-fixed-top #nav-toggle {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .navbar-fixed-top #nav-toggle:focus-visible + .nav-toggle-label {
    outline-style: solid;
    outline-width: 2px;
    outline-color: var(--secondary-color);
    outline-offset: 2px;
  }
  .navbar-fixed-top #nav-toggle:checked + .nav-toggle-label {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
  }
  .navbar-fixed-top #nav-toggle:checked + .nav-toggle-label::after {
    content: "\f00d";
    transform: rotate(90deg);
  }
  .navbar-fixed-top #nav-toggle:checked ~ #main-navigation {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .navbar-fixed-top #nav-toggle:checked ~ .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .navbar-fixed-top #main-navigation {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    padding: calc(56px + 1rem) 0.85rem calc(108px + env(safe-area-inset-bottom));
    background-color: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: none;
    box-shadow: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s ease, visibility 0s linear 0.28s;
    gap: 0.4rem;
    z-index: 110;
  }
  .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]) {
    width: 100%;
    padding: 0;
  }
  .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]) > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.95rem 1rem;
    margin: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--primary-text-color);
    font-weight: 600;
    line-height: 1.2;
  }
  .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]):hover, .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]):focus-within, .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]).is-open {
    background-color: transparent;
  }
  .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]):hover > a, .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]):focus-within > a, .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]).is-open > a {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-text-color);
  }
  .navbar-fixed-top #main-navigation > .menu-item:not([class^=btn]):not(:first-child) {
    border-top: none;
  }
  .navbar-fixed-top #main-navigation .menu-item[class^=btn] {
    max-width: none;
    width: 100%;
    margin: 0.35rem 0 0;
    padding: 0;
    display: flex;
    text-align: center;
  }
  .navbar-fixed-top #main-navigation .menu-item[class^=btn] > a {
    width: 100%;
    padding: 0.85rem 1rem;
  }
  .navbar-fixed-top #main-navigation .menu-item-mobile-cta {
    display: flex;
    width: 100%;
    margin-top: 0.6rem;
    padding: 0;
  }
  .navbar-fixed-top #main-navigation .menu-item-mobile-cta > a {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
    text-decoration: none;
  }
  .navbar-fixed-top #main-navigation.row-submenu .menu-item-has-children > a::after, .navbar-fixed-top #main-navigation.dropdown-submenu .menu-item-has-children > a::after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 200;
    font-size: 0.875rem;
    margin-left: 0.75rem;
    transition: transform 0.2s ease;
  }
  .navbar-fixed-top #main-navigation.row-submenu .menu-item-has-children.is-open > a::after, .navbar-fixed-top #main-navigation.dropdown-submenu .menu-item-has-children.is-open > a::after {
    transform: rotate(180deg);
  }
  .navbar-fixed-top #main-navigation.row-submenu .sub-menu, .navbar-fixed-top #main-navigation.dropdown-submenu .sub-menu {
    display: flex;
    flex-direction: column;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none;
    animation: none;
    gap: 0.3rem;
    margin: 0;
    padding: 0 0 0 0.55rem;
    transition: max-height 0.28s ease, opacity 0.2s ease, margin-top 0.28s ease, padding-top 0.28s ease;
  }
  .navbar-fixed-top #main-navigation.row-submenu .sub-menu .menu-item, .navbar-fixed-top #main-navigation.dropdown-submenu .sub-menu .menu-item {
    padding: 0;
  }
  .navbar-fixed-top #main-navigation.row-submenu .sub-menu .menu-item > a, .navbar-fixed-top #main-navigation.dropdown-submenu .sub-menu .menu-item > a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.82rem 0.95rem;
    padding-left: 1rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.02);
    line-height: 1.2;
  }
  .navbar-fixed-top #main-navigation.row-submenu .sub-menu .menu-item:hover > a, .navbar-fixed-top #main-navigation.row-submenu .sub-menu .menu-item:focus-within > a, .navbar-fixed-top #main-navigation.dropdown-submenu .sub-menu .menu-item:hover > a, .navbar-fixed-top #main-navigation.dropdown-submenu .sub-menu .menu-item:focus-within > a {
    background: rgba(255, 255, 255, 0.06);
    color: var(--primary-text-color);
  }
  .navbar-fixed-top #main-navigation.row-submenu .menu-item-has-children.is-open > .sub-menu, .navbar-fixed-top #main-navigation.dropdown-submenu .menu-item-has-children.is-open > .sub-menu {
    opacity: 1;
    max-height: 40rem;
    margin-top: 0.4rem;
    padding-top: 0.1rem;
  }
  .navbar-fixed-top .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
    z-index: 105;
  }
  .navbar-fixed-top .nav-cta {
    display: none;
  }
  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff;
  }
}
@media (prefers-reduced-motion: reduce) {
  .navbar-fixed-top .nav-backdrop,
  .navbar-fixed-top #main-navigation,
  .navbar-fixed-top #main-navigation .sub-menu {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}
nav.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
nav.breadcrumbs .crumb a {
  color: var(--text-color);
}
nav.breadcrumbs .crumb.current {
  font-weight: 600;
  color: var(--secondary-color);
}
nav.breadcrumbs .crumb:not(:first-child)::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  content: "\f054";
  padding: 0 0.6rem;
  color: var(--text-color);
}

@media (max-width: 480px) {
  nav.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0;
  }
  nav.breadcrumbs .crumb:not(:nth-last-child(2)) {
    display: none;
  }
  nav.breadcrumbs .crumb:nth-last-child(2)::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    content: "\f053";
    padding: 0 0.6rem;
  }
}
section#ambassadors {
  margin-bottom: 10rem;
}
section#ambassadors h2, section#ambassadors h3 {
  font-family: "Playfair Display", serif;
  color: var(--text-color);
  font-style: italic;
}
section#ambassadors h2 {
  text-align: center;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 3rem;
  font-size: 42px;
}
section#ambassadors p {
  margin: 0px;
}
section#ambassadors .ambassadors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 6rem;
  justify-content: center;
}
section#ambassadors .ambassador {
  flex: 1 0 40%;
  position: relative;
  max-width: 500px;
  padding-right: 150px;
}
section#ambassadors .ambassador h3 {
  font-weight: 900;
  transition: color 0.25s ease-out, letter-spacing 0.5s ease-out;
}
section#ambassadors .ambassador:hover h3 {
  letter-spacing: 0.1ch;
  color: var(--secondary-color);
}
section#ambassadors .ambassador:hover img {
  transform: scale(1.1);
}
section#ambassadors .ambassador .ambassador-img {
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 1;
  max-width: 120px;
}
section#ambassadors .ambassador .ambassador-img::after {
  content: "";
  top: 24px;
  right: -24px;
  left: 24px;
  bottom: -24px;
  position: absolute;
  background-image: url("./assets/dot.svg");
  background-size: 18px;
  z-index: 0;
  pointer-events: none;
}
section#ambassadors .ambassador img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  transition: transform 0.25s ease-out, filter 0.5s;
  filter: none;
  -webkit-filter: none;
}
section#ambassadors .ambassador img:hover {
  filter: contrast(1.05);
  -webkit-filter: contrast(1.05);
}

@media (max-width: 768px) {
  section#ambassadors .ambassadors-list {
    flex-direction: column;
    overflow-x: hidden;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  section#ambassadors .ambassadors-list .ambassador-img {
    position: relative;
  }
  section#ambassadors .ambassadors-list .ambassador {
    position: relative;
    align-items: center;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding-right: 0px;
  }
}
section.banner a {
  width: 100%;
  margin: 1rem 0;
  display: flex;
  overflow: hidden;
}
section.banner a img {
  width: 100%;
  transition: transform 0.5s;
}
section.banner a:hover img {
  transform: scale(1.05);
}

section.banner .banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0rem 2rem;
}

@media (min-width: 769px) {
  section.banner a .img-mobile {
    display: none;
  }
  section.banner a .img-desktop {
    display: block;
  }
}
@media (max-width: 768px) {
  section.banner a .img-mobile {
    display: block;
  }
  section.banner a .img-desktop {
    display: none;
  }
  section.banner .banner-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
section#block-grid .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
section#block-grid .container article.block {
  height: 200px;
  position: relative;
}
section#block-grid .container article.block .block-text {
  z-index: 2;
  position: relative;
  font-family: "Playfair Display", serif;
  color: var(--text-color);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4901960784);
  font-weight: 900;
  font-style: italic;
  text-transform: lowercase;
  font-size: 1.6em;
  padding: 0 1.6rem;
  line-height: 1em;
  text-align: center;
}
section#block-grid .container article.block .block-text:hover {
  transition: all 0.3s ease;
  color: var(--secondary-color);
}
section#block-grid .container article.block .backdrop-filter {
  backdrop-filter: grayscale(1) contrast(0.75);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
section#block-grid .container article.block .backdrop-image {
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
section#block-grid .container article.block:hover {
  transition: all 0.3s ease;
}
section#block-grid .container article.block:hover .backdrop-filter {
  backdrop-filter: grayscale(0) contrast(1);
  display: none !important;
}
section#block-grid .container .plus-row {
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(25% - 22px);
  left: calc(25% - 22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section#block-grid .container .plus-row .plus {
  font-size: 50px;
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  section#block-grid .container {
    grid-template-columns: repeat(2, 1fr);
  }
  section#block-grid .container article.block .backdrop-filter {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: none !important;
  }
}
@media (max-width: 480px) {
  section#block-grid .container {
    grid-template-columns: repeat(1, 1fr);
  }
}
div.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.button-rows .container {
  width: 100%;
}
.button-rows .container .section-header {
  justify-content: center;
  margin-bottom: 2rem;
}
.button-rows .container .button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
.button-rows .container .button-row > a.big-button {
  position: relative;
  display: flex;
  flex-basis: calc(33.333% - 0.667rem);
  align-items: center;
  justify-content: center;
  background-size: 100%;
  background-position: 50% 50%;
  transition: background-size 1s;
}
.button-rows .container .button-row > a.big-button:hover {
  background-size: 110%;
}
.button-rows .container .button-row > a.big-button {
  height: 120px;
  padding: 2rem;
  font-size: 28px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: var(--primary-text-color);
  text-align: center;
}
.button-rows .container .button-row > a.big-button span {
  z-index: 2;
}
.button-rows .container .button-row > a.big-button:after {
  content: "";
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 0.75;
}
@media (max-width: 768px) {
  .button-rows .container .button-rows .container .button-row > a.big-button {
    flex-basis: 100%;
  }
}

section.circle-section {
  position: relative;
}
section.circle-section .media-elm img {
  min-height: 400px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
section.circle-section .media-elm:hover img {
  filter: grayscale(0%);
}
section.circle-section .animated-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
section.circle-section .animated-circles .circle {
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}
section.circle-section .animated-circles .circle img {
  max-width: 400px;
  max-height: 400px;
  object-fit: contain;
}
section.circle-section .animated-circles .circle:nth-child(2) img {
  animation: rotate-animation 20s infinite linear;
}
section.circle-section .animated-circles .circle:nth-child(3) img {
  animation: rotate-animation 24s infinite linear reverse;
}
section.circle-section .animated-circles .circle:nth-child(4) img {
  animation: rotate-animation 28s infinite linear;
}
section.circle-section .animated-circles .circle:nth-child(5) img {
  animation: rotate-animation 32s infinite linear reverse;
}
section.circle-section .animated-circles .circle:nth-child(6) img {
  animation: rotate-animation 36s infinite linear;
}
section.circle-section .animated-circles .circle:nth-child(7) img {
  animation: rotate-animation 40s infinite linear reverse;
}

@media (max-width: 768px) {
  section.circle-section .media-elm img,
  section.circle-section .media-elm:hover img {
    filter: none;
    -webkit-filter: none;
  }
}
@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#tournament-counter .section-header {
  justify-content: center;
}
#tournament-counter .counter {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 72px;
  font-weight: 600;
}
#tournament-counter .counter > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#tournament-counter .counter > div span.number {
  line-height: 1.2em;
  font-family: "Roboto Mono", monospace;
}
#tournament-counter .counter > div span.string {
  font-size: 18px;
  text-transform: uppercase;
}

#contact-form .container:not(.form-with-extra) .wpcf7 {
  width: min(600px, 90vw);
  margin: auto;
}

#contact-form .container.form-with-extra {
  display: flex;
  gap: 4rem;
}
#contact-form .container.form-with-extra > * {
  flex-basis: 0;
  flex-grow: 1;
}
#contact-form .container.form-with-extra aside img {
  width: 100%;
  margin-top: 2rem;
}
#contact-form .container.form-with-extra .form-elm p {
  margin: 0.5rem 0;
}

#contact-form:not(.default) .container.form-with-extra .form-elm {
  background-color: rgb(0, 0, 0);
  color: var(--text-color);
}
#contact-form:not(.default) .container.form-with-extra .form-elm p, #contact-form:not(.default) .container.form-with-extra .form-elm label, #contact-form:not(.default) .container.form-with-extra .form-elm span {
  color: var(--text-color);
}
#contact-form:not(.default) .container.form-with-extra .form-elm a:not(.btn) {
  color: var(--secondary-color);
}
#contact-form:not(.default) .container.form-with-extra .form-elm a:not(.btn):hover {
  color: var(--secondary-color-dark);
}
#contact-form:not(.default) .container.form-with-extra .form-elm {
  border: 1px solid rgba(51, 51, 51, 0.0823529412);
  padding: 1rem 2rem;
  position: relative;
}
#contact-form:not(.default) .container.form-with-extra .form-elm::after {
  content: "";
  position: absolute;
  background-image: url(./assets/dot.svg);
  background-size: 18px;
  width: 100%;
  height: 100%;
  top: 2rem;
  left: 2rem;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 768px) {
  #contact-form .container.form-with-extra {
    flex-direction: column;
    gap: 2rem;
  }
  #contact-form .container.form-with-extra aside img {
    margin-top: 1rem;
  }
}
.gallery {
  display: grid;
  gap: 1rem;
}
.gallery .gallery-item {
  text-align: center;
}
.gallery .gallery-item.square {
  aspect-ratio: 1;
}
.gallery .gallery-item.wide {
  aspect-ratio: 16/9;
}
.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery.col4_2_1 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery.col6_3_1 {
  grid-template-columns: repeat(6, 1fr);
}
.gallery.col2_1_1 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .gallery.col4_2_1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery.col6_3_1 {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery.col2_1_1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery {
    gap: 0.5rem;
  }
  .gallery.col4_2_1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery.col6_3_1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery.col2_1_1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.media-image-section img {
  width: 100%;
  transition: transform 0.5s;
  filter: grayscale(0) contrast(0.75);
}

.media-image-section a {
  width: 100%;
  display: block;
}
.media-image-section a:hover img {
  transform: scale(1.025);
}

.media-image-section .container {
  overflow: hidden;
}

@media (max-width: 768px) {
  .media-image-section img {
    filter: none;
    -webkit-filter: none;
  }
}
section#new-contact {
  position: relative;
}
section#new-contact .block-title-dots-after::after {
  content: "";
  background-image: url("./assets/dot-big.svg");
  width: 100%;
  aspect-ratio: 1;
  display: block;
  position: absolute;
  background-size: 20px;
  margin-left: -1rem;
  background-repeat: round;
  margin-top: 1rem;
}
section#new-contact::before, section#new-contact::after {
  content: "";
  position: absolute;
  background-image: url("./assets/dot.svg");
  background-size: 18px;
  pointer-events: none;
}
section#new-contact::before {
  top: calc(100% - 160px);
  left: 0px;
  right: 40vw;
  bottom: 54px;
}
section#new-contact::after {
  top: calc(100% - 36px);
  left: 0px;
  right: 40vw;
  bottom: 0;
}
section#new-contact .container {
  margin-top: 4rem;
  padding-top: 4rem;
}
section#new-contact .container h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--text-color);
  font-size: 3.4rem;
  z-index: 1;
  margin-bottom: 1.4rem;
}
section#new-contact .container ul {
  list-style: none;
  padding: 0;
  z-index: 1;
  position: relative;
}
section#new-contact .container ul li {
  text-transform: uppercase;
  font-weight: 800;
  transition: 0.5s color;
}
section#new-contact .container ul li a {
  color: var(--text-color);
}
section#new-contact .container ul li a:hover, section#new-contact .container ul li a:focus, section#new-contact .container ul li a:focus-within {
  color: var(--secondary-color);
}
section#new-contact .container ul li::after {
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  margin-left: 12px;
  color: white;
}
section#new-contact .container ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  padding: 0.8rem 0;
  margin-right: 150px;
}
section#new-contact .container aside {
  position: absolute;
  right: 120px;
  top: -75px;
  z-index: 1;
}
section#new-contact .container aside .map-container {
  position: relative;
  width: 300px;
  height: 300px;
  background-color: black;
  border-radius: 50%;
  overflow: hidden;
}
section#new-contact .container aside img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
section#new-contact .container aside img.hidden {
  opacity: 0;
}
section#new-contact .container aside .contact-location {
  margin-top: 320px;
}
section#new-contact .container .contact-links {
  padding-left: 180px;
  padding-bottom: 200px;
}

@media (max-width: 768px) {
  section#new-contact .container .contact-links {
    padding-left: 0px;
    padding-bottom: 2rem;
  }
  section#new-contact .container h2 {
    display: none !important;
  }
  section#new-contact .container aside {
    position: relative;
    top: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
  }
  section#new-contact .container aside .map-container {
    width: 200px;
    height: 200px;
  }
  section#new-contact .container aside img {
    width: 100%;
    height: 100%;
  }
  section#new-contact .container aside .contact-location {
    margin-top: 220px;
  }
  section#new-contact .container ul li {
    margin-right: 0px;
  }
  .block-title-dots-after::after {
    display: none !important;
  }
}
section#partners {
  overflow: hidden;
}
section#partners .section-header {
  justify-content: center;
  margin-bottom: 1.5rem;
}
section#partners .section-header:not(:first-child) {
  margin-top: 2.5rem;
}
section#partners .section-header h2 {
  font-size: 18px;
  text-align: center;
}
section#partners .partner-list[hidden],
section#partners .partner-swiper[hidden] {
  display: none !important;
}
section#partners .partner-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  margin-bottom: 2rem;
}
section#partners .partner-list a.partner-logo {
  flex: 0 0 140px;
  width: 140px;
  min-width: 140px;
  max-width: 140px;
  height: 56px;
  overflow: hidden;
}
section#partners .container > .section-header:first-child + .partner-list {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
section#partners .container > .section-header:first-child + .partner-list a.partner-logo {
  flex-basis: 170px;
  width: 170px;
  min-width: 170px;
  max-width: 170px;
  height: 68px;
}
section#partners .partner-swiper {
  display: none !important;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  margin-bottom: 2rem;
}
section#partners .partner-swiper a.partner-logo {
  width: min(100%, 170px);
  max-width: 170px;
  height: 68px;
  margin: 0 auto;
  overflow: hidden;
}
section#partners .partner-swiper .slider-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
}
section#partners .partner-swiper .swiper-pagination {
  position: static;
  margin-top: 1rem;
}
section#partners a.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-radius 0.5s ease-out;
  border-radius: 0;
}
section#partners a.partner-logo img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  transition: transform 0.5s ease-out;
}
section#partners a.partner-logo:hover {
  border-radius: 16px;
}
section#partners a.partner-logo:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  section#partners .section-header:not(:first-child) {
    margin-top: 2rem;
  }
  section#partners .partner-list {
    display: none !important;
  }
  section#partners .partner-swiper {
    display: block !important;
    visibility: visible;
    max-height: none;
    overflow: visible;
    pointer-events: auto;
  }
}
@media (max-width: 480px) {
  section#partners .partner-swiper a.partner-logo {
    width: min(100%, 150px);
    height: 60px;
  }
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

#tournament-grid .post-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
#tournament-grid article.post-card.tournament-card .post-text {
  padding: 0.85rem 0.9rem 1rem;
}
#tournament-grid article.post-card.tournament-card .post-text h3 {
  font-size: 1.05rem;
}
#tournament-grid article.post-card.tournament-card .tournament-meta {
  margin-top: 0.6rem;
  gap: 0.3rem;
  font-size: 0.88rem;
}

nav.category-menu {
  margin-bottom: 2rem;
}
nav.category-menu .parent-categories, nav.category-menu .child-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-weight: 600;
  padding: 0.5rem 0;
}
nav.category-menu .parent-categories a.category-link, nav.category-menu .child-categories a.category-link {
  color: var(--text-color);
}
nav.category-menu .parent-categories a.category-link.current, nav.category-menu .parent-categories a.category-link:hover, nav.category-menu .child-categories a.category-link.current, nav.category-menu .child-categories a.category-link:hover {
  color: var(--secondary-color);
}
nav.category-menu .parent-categories {
  text-transform: uppercase;
}
nav.category-menu .parent-categories:not(:last-child) {
  border-bottom: 1px solid rgba(51, 51, 51, 0.0823529412);
}

.no-posts {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  background-color: var(--primary-color-light);
  color: var(--text-color-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}
.no-posts i {
  opacity: 0.75;
  margin-right: 0.2rem;
}

@media (max-width: 1024px) {
  #tournament-grid .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .post-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  #tournament-grid .post-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  nav.category-menu .parent-categories, nav.category-menu .child-categories {
    gap: 0.5rem 1rem;
    flex-wrap: wrap;
  }
}
section#product-showcase .single-product .product_title {
  font-size: 32px;
}
section#product-showcase .single-product .woocommerce-Price-amount {
  color: var(--secondary-color);
  font-size: 1.5rem;
}
section#product-showcase .single-product .woocommerce-tabs, section#product-showcase .single-product .product_meta {
  display: none !important;
}
section#product-showcase .single-product .product.type-product {
  padding-top: 0 !important;
  display: flex;
  justify-content: space-between;
}
section#product-showcase .single-product div.images {
  margin-bottom: 4rem;
  float: none;
}
section#product-showcase .single-product div.summary {
  float: none;
}
section#product-showcase .single-product .related.products {
  display: none !important;
}

@media (max-width: 768px) {
  section#product-showcase .single-product .product_title {
    font-size: 24px;
  }
  section#product-showcase .single-product div.images {
    margin-bottom: 2rem;
  }
  section#product-showcase .single-product .product.type-product {
    flex-direction: column;
    align-items: stretch;
  }
}
.recent-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .recent-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .recent-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.stats-section .container {
  text-align: center;
}
.stats-section .container .section-header {
  justify-content: center;
}
.stats-section .container .stat-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 3rem 0;
  align-items: flex-start;
}
.stats-section .container .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: 15%;
  transition: background-color 0.5s ease-out, border-radius 0.5s ease-out;
  border-radius: 0px;
  padding: 1rem;
}
.stats-section .container .stat:hover {
  background-color: var(--primary-color-light);
  border-radius: 16px;
}
.stats-section .container .stat .stat-number {
  font-size: 42px;
  margin: 0.25rem 1rem;
  flex-direction: column;
  font-weight: 600;
  display: flex;
}
.stats-section .container .stat .stat-number i {
  font-size: 1.5em;
  margin-bottom: 0.25rem;
}
.stats-section .container .stat .stat-number i::before {
  color: var(--primary-color-dark);
}
.stats-section .container .stat .stat-title {
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 18px;
}

@media (max-width: 768px) {
  .stats-section .container .stat-row {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .stats-section .container .stat-title {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .stats-section .container .stat-row {
    flex-direction: column;
    align-items: center;
  }
}
.stats-section .container {
  text-align: center;
}
.stats-section .container .stat-circle-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}
.stats-section .container .percent {
  position: relative;
}
.stats-section .container .percent .stat-info {
  position: absolute;
  width: 100%;
  top: 25%;
  display: flex;
  flex-direction: column;
}
.stats-section .container .percent .stat-info .stat-number {
  font-size: 42px;
}
.stats-section .container .percent .stat-info .stat-title {
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
}
.stats-section .container .percent svg {
  position: relative;
  width: 150px;
  height: 150px;
  transform: rotate(-85deg);
}
.stats-section .container .percent svg circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--primary-color-light);
  stroke-width: 10;
  stroke-linecap: round;
  transform: translate(5px, 5px);
}
.stats-section .container .percent svg circle:nth-child(2) {
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  stroke: var(--secondary-color);
}

@media (max-width: 768px) {
  .stats-section .container .stat-circle-row {
    flex-direction: column;
    gap: 3rem;
  }
}
.text-section .container {
  display: flex;
}
.text-section .container .text-elm {
  flex-basis: 100%;
}
.text-section .container .text-elm h2 {
  margin: none;
}
.text-section .container .text-elm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.text-section .container .text-elm a.btn-primary {
  margin-top: 1.5rem;
  align-self: flex-end;
}
.text-section .container .text-elm h2 {
  margin: 0 0 0.5rem;
}

.text-media-section .container {
  display: flex;
  align-items: stretch;
}
.text-media-section .container.media-after {
  flex-direction: column;
  gap: 2rem;
}
.text-media-section .container.media-before {
  flex-direction: column-reverse;
  gap: 2rem;
}
.text-media-section .container.media-left {
  flex-direction: row-reverse;
  gap: 4rem;
}
.text-media-section .container.media-right {
  flex-direction: row;
  gap: 4rem;
}
.text-media-section .container .media-elm,
.text-media-section .container .text-elm {
  flex: 1 1 0;
  min-width: 0;
}
.text-media-section .container .media-elm > *:not(img) {
  width: 100%;
}
.text-media-section .container .media-elm > img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  object-fit: contain;
}
.text-media-section .container .media-elm iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.text-media-section .container .media-elm {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
}
.text-media-section .container .media-elm::after {
  content: "";
  position: absolute;
  background-image: url(./assets/dot.svg);
  background-size: 18px;
  width: 100%;
  height: 100%;
  top: 2rem;
  left: 2rem;
  z-index: -1;
  pointer-events: none;
}
.text-media-section .container .text-elm h2 {
  margin: none;
}
.text-media-section .container .text-elm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}
.text-media-section .container .text-elm .button-group {
  margin-top: 1.5rem;
}
.text-media-section .container .text-elm h2 {
  margin: 0 0 0.5rem;
}

@media (min-width: 769px) {
  .text-media-section .container.media-after {
    max-width: 60%;
    margin: auto;
  }
  .text-media-section .container.media-before {
    max-width: 60%;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .text-media-section .container.media-after {
    flex-direction: column;
    gap: 1rem;
  }
  .text-media-section .container.media-before {
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .text-media-section .container.media-left {
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .text-media-section .container.media-right {
    flex-direction: column;
    gap: 1rem;
  }
  .text-media-section .container .media-elm,
  .text-media-section .container .text-elm {
    flex-basis: 100%;
  }
  .text-media-section .container .media-elm > img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
#three-words .container {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  padding: 6rem 0;
  margin-block: 4rem;
}
#three-words .container::before, #three-words .container::after {
  content: "";
  position: absolute;
  background-image: url("./assets/dot.svg");
  background-size: 18px;
  pointer-events: none;
}
#three-words .container::before {
  top: -38px;
  left: -50px;
  right: -50px;
  bottom: 60%;
}
#three-words .container::after {
  top: 47%;
  left: -50px;
  right: -50px;
  bottom: 0;
}
#three-words .container .word-col {
  flex: 1 1 0px;
  text-align: center;
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 0.94;
  color: var(--secondary-color);
  font-weight: 300;
}
#three-words .container .word-col .word:nth-child(1) {
  font-size: 0.8em;
}
#three-words .container .word-col .word:nth-child(3) {
  font-size: 1.8em;
  font-family: "Rajdhani";
  font-weight: 600;
}
#three-words .container .word-col .word:nth-child(3) a {
  color: transparent;
}
#three-words .container .word-col .word:nth-child(3) a:visited {
  -webkit-text-stroke: 3px var(--secondary-color);
  color: var(--secondary-color);
}
#three-words .container .word-col .word:nth-child(3) {
  position: relative;
  -webkit-text-stroke: 3px var(--secondary-color);
  text-shadow: 0 0 5px var(--secondary-color-transparent);
}
#three-words .container .word-col .word:nth-child(3)::before {
  position: absolute;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  content: attr(data-text);
  opacity: 0.7;
  filter: blur(8px);
  left: 50%;
  transform: translate(-50%, 0px);
  pointer-events: none;
}

@media (max-width: 768px) {
  #three-words .container {
    flex-direction: column;
  }
  #three-words .container::before, #three-words .container::after {
    left: 0px;
    right: 0px;
  }
}
#three-arrows .container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 4rem 0;
  margin-top: 4rem;
}
#three-arrows .container::before, #three-arrows .container::after {
  content: "";
  position: absolute;
  background-image: url("./assets/dot.svg");
  background-size: 18px;
  pointer-events: none;
}
#three-arrows .container::before {
  top: -20px;
  left: -50px;
  right: -50px;
  bottom: 60%;
}
#three-arrows .container::after {
  top: 47%;
  left: -50px;
  right: -50px;
  bottom: 0;
}
#three-arrows .container .arrow {
  font-size: 3rem;
}
#three-arrows .container .arrow:hover .second {
  color: var(--secondary-color-dark);
}
#three-arrows .container .arrow .first, #three-arrows .container .arrow a {
  color: white;
}
#three-arrows .container .arrow .first, #three-arrows .container .arrow .second {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
}
#three-arrows .container .arrow .second {
  color: var(--secondary-color);
}
#three-arrows .container .arrow::before {
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  #three-arrows .container::before, #three-arrows .container::after {
    left: 0px;
    right: 0px;
  }
  #three-arrows .container .arrow {
    text-align: center;
  }
}
section#three-section-video .three-links {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
section#three-section-video .three-links .video-link {
  flex: 1 0 0px;
  display: flex;
  height: 100%;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 36px;
  text-transform: lowercase;
  backdrop-filter: grayscale(1) contrast(0.75) brightness(0.5);
  transition: backdrop-filter 0.5s;
}
section#three-section-video .three-links .video-link:hover {
  backdrop-filter: grayscale(0) contrast(0.75) brightness(0.75);
}
section#three-section-video .three-links .video-link a {
  margin: auto;
  color: var(--text-color);
  text-align: center;
  letter-spacing: 0.2ch;
}
section#three-section-video .three-links .video-link:nth-child(1) a {
  font-family: "Roboto Mono", monospace;
  font-style: italic;
}
section#three-section-video .three-links .video-link:nth-child(2) a {
  color: var(--secondary-color);
}
section#three-section-video .three-links .video-link:nth-child(3) a {
  font-family: "Montserrat", sans-serif;
}
section#three-section-video .three-links .video-link:nth-child(4) a {
  font-family: "Roboto Mono", monospace;
  font-style: italic;
  color: var(--secondary-color);
}
section#three-section-video video {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  section#three-section-video .container {
    flex-direction: column;
  }
  section#three-section-video .three-links {
    position: relative;
    flex-direction: column;
    gap: 2rem;
    padding-block: 4rem;
  }
  section#three-section-video .three-links .video-link {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  section#three-section-video video {
    width: 100%;
    min-height: 100%;
    filter: none;
    transition: backdrop-filter 0.5s;
  }
  section#three-section-video video:hover {
    filter: none;
  }
}
.media-video-section video, .circle-section video {
  width: 100%;
}

.media-video-section iframe, .circle-section iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.media-video-section .container {
  max-width: min(90%, 60rem);
}

@media (max-width: 768px) {
  .page-content {
    overflow-x: hidden;
  }
}
footer#page-footer {
  background-color: var(--primary-color);
  color: var(--primary-text-color);
}
footer#page-footer a {
  color: var(--secondary-color) !important;
}
footer#page-footer ul {
  list-style: none;
  padding: 0;
}
footer#page-footer ul li {
  padding: 2px 0;
}
footer#page-footer .site-logo {
  padding: 0;
}
footer#page-footer .footer-logos {
  flex-grow: 1;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-right: 1rem;
}
footer#page-footer .footer-logos a {
  display: block;
}
footer#page-footer .footer-logos a img {
  display: block;
  width: auto;
  height: auto;
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
}
footer#page-footer ul.rrss {
  display: flex;
  gap: 1.5rem;
  font-size: 18px;
  margin-bottom: 0;
  align-items: flex-end;
}
footer#page-footer ul.rrss a {
  color: var(--text-color);
}
footer#page-footer ul.rrss li {
  padding: 0;
}
footer#page-footer #footer-navigation {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  gap: 1.5rem;
}
footer#page-footer #footer-navigation .menu-item-has-children > a {
  font-size: 1.2em;
  font-weight: 500;
  pointer-events: none;
  font-family: "Playfair Display", serif;
}
footer#page-footer p {
  white-space: nowrap;
  margin: 0;
}
footer#page-footer .footer-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid #3f3f3f;
}
footer#page-footer .footer-bottom {
  display: flex;
  width: 100%;
}
footer#page-footer .footer-bottom a {
  color: var(--secondary-color);
  letter-spacing: 0.1ch;
  font-weight: 500;
}
footer#page-footer .footer-bottom li:not(:last-child)::after {
  content: "|";
  margin: 0 1rem;
  color: var(--text-color);
}
footer#page-footer .footer-bottom ul {
  display: flex;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  footer#page-footer .footer-logos a,
  footer#page-footer .footer-logos img {
    transition: none !important;
  }
  footer#page-footer .footer-logos a:hover {
    transform: none;
  }
}
.floating-rrss {
  position: fixed;
  z-index: 999;
  right: 0;
  top: 50%;
  display: flex;
  flex-direction: column;
  background-color: var(--secondary-color);
  list-style: none;
  margin: 0px !important;
  padding: 0.5em;
  gap: 0.5em;
}
.floating-rrss li {
  text-align: center;
}
.floating-rrss a {
  color: var(--text-color);
}
.floating-rrss a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  footer#page-footer .footer-top, footer#page-footer .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
  footer#page-footer .footer-top > p, footer#page-footer .footer-bottom > p {
    text-align: right;
  }
  footer#page-footer #bottom-navigation {
    gap: 0;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    justify-content: center;
  }
  footer#page-footer ul.rrss {
    margin-bottom: 1rem;
  }
  footer#page-footer #footer-navigation {
    justify-content: center;
  }
  footer#page-footer .footer-logos {
    justify-content: center;
    align-items: center;
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  footer#page-footer #footer-navigation {
    flex-direction: column;
    align-items: center;
  }
}
html.preloader-skip #preloader {
  display: none;
}

#preloader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  width: 120px;
  clip-path: inset(0 100% 0 0);
  animation: revealLogo 0.55s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes revealLogo {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
}

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