:root {
 /* Fonts */
 --heading-font: "LP Horizont Caps", sans-serif;
 --button-font: "DIN Regular", sans-serif;
 ;
 --bs-body-font-family: "DIN Regular", sans-serif;
 ;
 /* Colours */
 --accent-color: rgba(0, 54, 68, 1.00);
 --primary-color: rgba(110, 172, 221, 1.00);
 --secondary-color: rgba(133, 199, 120, 1.00);
 /* Neutral colours */
 --black: rgba(0, 0, 0, 1.00);
 --white: rgba(255, 255, 255, 1.00);
 /* Transitions */
 --transition-default: all 0.15s ease-out 0.15s;
}
::selection {
 background-color: var(--accent-color);
 color: var(--secondary-color);
}
:focus-visible {
 outline-color: none;
 outline-style: none;
 outline-width: none;
}
/* =====================================================
   Custom fonts
===================================================== */
@font-face {
 font-family: 'LP Horizont Caps';
 src: url('../fonts/LP-Horizont-Caps.woff2') format('woff2'), url('../fonts/LP-Horizont-Caps.woff') format('woff');
 font-weight: normal;
 font-style: normal;
 font-display: swap;
}
@font-face {
 font-family: 'DIN Medium Regular';
 src: url('../fonts/din_medium-webfont.woff2') format('woff2'), url('../fonts/din_medium-webfont.woff') format('woff');
 font-weight: normal;
 font-style: normal;
 font-display: swap;
}
@font-face {
 font-family: 'DIN Regular';
 src: url('../fonts/din-webfont.woff2') format('woff2'), url('../fonts/din-webfont.woff') format('woff');
 font-weight: normal;
 font-style: normal;
 font-display: swap;
}
/* =====================================================
   Common
===================================================== */
html, body {
 scroll-behavior: smooth !important;
 scroll-padding-top: 12rem;
}
body {
 overflow-x: hidden;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
 font-family: var(--heading-font);
 text-transform: uppercase;
}
h1 {
 color: var(--primary-color);
}
h1, h2 {
 text-transform: uppercase;
}
h2, h3, h4, h5, h6 {
 color: var(--secondary-color);
}
h3, h4, h5, h6 {
 text-transform: none;
}
img {
 display: block;
 height: auto;
 width: 100%;
}
blockquote {
 border-left: 1px solid var(--primary-color);
 padding: 1rem;
}
blockquote p:last-of-type {
 margin-bottom: 0;
}
blockquote sup {
 color: var(--accent-color);
}
a {
 color: var(--primary-color);
}
ul, ol {
 list-style: none;
}
button:focus:not(:focus-visible) {
 box-shadow: none;
}
.wrapper {
 background-color: var(--white);
 overflow-x: hidden;
 position: relative;
 z-index: 1;
}
/* =====================================================
   Page loading
===================================================== */
.fade-in {
 animation: fadeIn 1.5s ease-in 0.5s forwards;
 opacity: 0;
}
@keyframes fadeIn {
 from {
  opacity: 0;
 }
 to {
  opacity: 1;
 }
}
/* =====================================================
   Header / Footer
===================================================== */
.header {
 background-color: var(--white);
 position: fixed;
 left: 0;
 opacity: 0;
 top: 0;
 transform: translateY(-100%);
 transition: opacity 0.3s ease, transform 0.3s ease;
 width: 100%;
 z-index: 1030;
}
.header.visible {
 box-shadow: 0 4px 15px rgba(110, 172, 221, 0.2);
 opacity: 1;
 transform: translateY(0);
}
/* =====================================================
   Navigation
===================================================== */
.navbar-brand-container {
 align-items: center;
 display: flex;
 flex: 1;
 flex-wrap: nowrap;
 gap: 3rem;
 justify-content: center;
}
.navbar-brand {
 display: flex;
 height: 100%;
 margin: 0;
 padding: 1rem;
 position: relative;
 width: 100%;
}
.navbar-brand.active:before {
 position: absolute;
 content: "";
 left: 0;
 bottom: calc(-0.7rem - -3px);
 width: 100%;
 height: 3px;
 background-color: var(--primary-color);
}
.event-logo-desktop, .event-logo-mobile {
 height: auto;
 min-height: 60px;
 max-height: 100px;
 object-fit: contain;
 transition: transform 0.2s ease;
 width: 100%;
}
.event-logo-mobile {
 display: none;
}
.logo-placeholder {
 align-items: center;
 display: flex;
 height: 100%;
 justify-content: center;
 max-height: 100px;
 position: relative;
 width: 100%;
}
.logo-placeholder span {
 position: relative;
 display: flex;
 justify-content: center;
}
@media (min-width: 48.0625em) {
 .logo-placeholder span:before {
  content: "\F282";
  font-family: bootstrap-icons;
  font-size: 100%;
  font-weight: 700;
  position: absolute;
  left: 50%;
  bottom: calc(10px - 25px);
  background-color: var(--white);
  width: 35px;
  height: 25px;
  transform: translateX(-50%) translateY(100%);
  opacity: 1;
  padding: 0.15rem;
  text-align: center;
  line-height: 1;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 4px 15px rgba(110, 172, 221, 0.2);
 }
 .logo-placeholder:hover span::before {
  color: var(--primary-color);
  opacity: 1;
 }
}
.nav-link {
 color: var(--accent-color);
 font-weight: 600;
}
@media (max-width: 30em) {
 .event-logo-desktop {
  display: none;
 }
 .event-logo-mobile {
  display: block;
 }
 .navbar-brand-container {
  gap: 0.25rem;
 }
}
@media (max-width: 48em) {
 .event-logo-desktop {
  max-height: 60px;
 }
 .navbar-brand-container {
  gap: 0.5rem;
 }
}
@media (min-width: 48.0625em) and (max-width: 62em) {
 .event-logo-desktop {
  max-height: 70px;
 }
 /*.event-logo-desktop:before {
  content: "\F282";
  font-family: bootstrap-icons;
  font-size: 120%;
  font-weight: 700;
  opacity: 0.5;
  position: absolute;
  right: 8vw;
 }
 .event-logo-desktop:hover::before {
  color: var(--primary-color);
  opacity: 1;
 }*/
 .navbar-brand-container {
  gap: 1.5rem;
 }
}
@media (min-width: 62.0625em) {
 .header .event-logo-desktop {
  width: 50%;
 }
 .header .event-logo-desktop:hover {
  transform: scale(1.05);
 }
}
/* Dropdowns */
.dropdown {
 display: flex;
 flex: 1;
 justify-content: center;
 min-width: 0;
}
.dropdown-item .bi {
 margin-right: 0.5rem;
}
.dropdown-item.active, .dropdown-item:active {
 background-color: var(--bs-dropdown-link-hover-bg);
 color: var(--accent-color);
}
.dropdown-toggle::after {
 display: none;
}
.dropdown-menu {
 border-radius: 0.5rem;
 left: 50% !important;
 max-width: 280px;
 position: absolute !important;
 right: auto !important;
 top: 100% !important;
 transform: translateX(-50%) !important;
 width: calc(100% - 2rem);
 z-index: 1000;
 border: 1px solid var(--accent-color);
 box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 padding: 0;
}
.dropdown-menu[data-bs-popper] {
 position: absolute;
}
.dropdown-menu.left[data-bs-popper] {
 left: 50%;
 right: auto;
 transform: translateX(-50%);
}
.dropdown-menu.right[data-bs-popper] {
 left: auto;
 right: 50%;
 transform: translateX(50%);
}
.dropdown-menu::before {
 content: '';
 position: absolute;
 top: -10.5px;
 left: 21px;
 width: 0;
 height: 0;
 border-left: 11px solid transparent;
 border-right: 11px solid transparent;
 border-bottom: 11px solid var(--white);
 z-index: 2;
}
.dropdown-menu::after {
 content: '';
 position: absolute;
 top: -12px;
 left: 20px;
 width: 0;
 height: 0;
 border-left: 12px solid transparent;
 border-right: 12px solid transparent;
 border-bottom: 12px solid var(--accent-color);
 z-index: 1;
}
.dropdown-menu.left[data-bs-popper]::before, .dropdown-menu.left[data-bs-popper]::after, .dropdown-menu.right[data-bs-popper]::before, .dropdown-menu.right[data-bs-popper]::after {
 left: 50%;
 transform: translateX(-50%)
}
@media (min-width:0em) and (max-width:46em) {
 .dropdown-menu.left, .dropdown-menu.right {
  width: calc(150% - 2rem);
 }
 .dropdown-menu.left[data-bs-popper] {
  left: 0;
  transform: translateX(0);
 }
 .dropdown-menu.left[data-bs-popper]::before {
  left: 21px;
  right: auto;
  transform: none;
 }
 .dropdown-menu.left[data-bs-popper]::after {
  left: 20px;
  right: auto;
  transform: none;
 }
 .dropdown-menu.right[data-bs-popper] {
  right: 0;
  transform: translateX(0);
 }
 .dropdown-menu.right[data-bs-popper]::before {
  left: auto;
  right: 21px;
  transform: none;
 }
 .dropdown-menu.right[data-bs-popper]::after {
  left: auto;
  right: 20px;
  transform: none;
 }
}
.dropdown-menu li .dropdown-item {
 border-bottom: 1px solid var(--accent-color);
 font-size: 120%;
 padding: 1rem;
 line-height: 1;
}
.dropdown-menu li:first-of-type .dropdown-item {
 border-top-left-radius: 0.5rem;
 border-top-right-radius: 0.5rem;
}
.dropdown-menu li:last-of-type .dropdown-item {
 border-bottom-left-radius: 0.5rem;
 border-bottom-right-radius: 0.5rem;
 border-bottom: none;
}
.dropdown-menu .dropdown-icon {
 display: inline-block;
 width: auto;
 height: 32px;
}
/* Navbar language */
.language-links {
 margin: 0;
 padding: 0;
 position: absolute;
 top: 1.5rem;
 right: 1.5rem;
 z-index: 1030;
}
.language-links > .nav-item {
 align-items: center;
 display: inline-flex;
 flex: 1;
 justify-content: center;
 text-align: center;
}
.language-links .nav-link {
 align-items: center;
 aspect-ratio: 1 / 1;
 border-radius: 50%;
 background-color: rgba(255, 255, 255, 0.5);
 display: flex;
 font-family: 'DIN Medium Regular';
 justify-content: center;
 margin: 0.5rem;
 height: 50px;
 width: 50px;
 padding: 0;
 overflow: hidden;
}
@media (min-width:0em) and (max-width:46em) {
 .language-links .nav-link {
  background-color: rgba(255, 255, 255, 1);
  margin: 0.15rem;
  font-size: 75%;
  height: 30px;
  width: 30px;
  padding: 0;
  overflow: hidden;
 }
}
.language-links .nav-link:hover {
 background-color: rgba(255, 255, 255, 0.75);
}
.language-links .nav-link.active {
 background-color: rgba(255, 255, 255, 1);
 border: 1px solid var(--accent-color);
}
/* =====================================================
   Content sections
===================================================== */
/* Footer */
.footer {
 background-color: var(--primary-color);
}
.footer h1, .footer h2, .footer h3, .footer p, .footer a, .footer ul {
 color: var(--white);
}
.footer-content a:hover {
 color: var(--accent-color);
}
.footer-content .event-logo-desktop {
 grid-template-columns: 1fr 1fr;
 display: grid;
 place-items: center;
}
.footer-content .event-logo-desktop img {
 max-width: 280px;
}
@media (min-width:0em) and (max-width:46em) {
 .footer-content .event-logo-desktop img {
  max-width: 120px;
  margin: 0 1rem;
 }
}
.footer-content .event-social ul {
 display: flex;
 list-style: none;
 padding: 0;
 margin: 0;
}
.footer-content .event-social a {
 font-size: clamp(1.5rem, 2.5vw, 2rem);
 margin: 1.5rem;
}
.footer-bar {
 background-color: var(--secondary-color);
 display: flex;
 justify-content: center;
 align-items: center;
 text-align: center;
}
.footer-bar p, .footer-bar a {
 color: var(--accent-color);
 font-size: 90%;
 display: inline-block;
 margin-bottom: 0;
}
.footer-bar a:hover {
 color: var(--white);
}
.footer-bar span {
 padding-left: 0.25rem;
 padding-right: 0.25rem;
}
@media (min-width:0em) and (max-width:46em) {
 .footer-bar span {
  display: block;
 }
}
/* Hero */
.hero-section {
 align-items: center;
 border-radius: 1.5rem;
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 margin: 1rem;
 overflow: hidden;
 position: relative;
 text-align: center;
 z-index: 1;
}
@media (min-width:0em) and (max-width:46em) {
 .hero-section {
  margin: 0;
  height: calc(100svh - var(--header-height, 0rem));
 }
}
@media (min-width: 46.0625em) {
 .hero-section {
  height: calc(100svh - var(--header-height, 2rem));
 }
}
.hero-section:after {
 background-color: var(--white);
 clip-path: polygon(55% 0%, 54.9% 0%, 44.9% 100%, 45% 100%);
 content: '';
 height: 100%;
 left: 0;
 padding-right: 55%;
 position: absolute;
 width: 100%;
 z-index: 2;
}
@media (min-width:0em) and (max-width:46em) {
 .hero-section:after {
  display: none;
 }
}
.hero-section .event-logo {
 padding: 1rem;
}
@media (min-width:0em) and (max-width:46em) {
 .hero-section .event-logo {
  padding: 0.5rem;
  margin-bottom: 0;
 }
}
.hero-section .event-logo img {
 max-width: 420px;
 margin-bottom: 2.5rem;
 margin-left: auto;
 margin-right: auto;
}
@media (min-width:0em) and (max-width:46em) {
 .hero-section .event-logo img {
  margin-bottom: 1rem;
  width: 75%;
 }
}
.hero-list {
 margin-bottom: 3rem;
}
@media (min-width:0em) and (max-width:46em) {
 .hero-list {
  margin-bottom: 1rem;
 }
}
.hero-content-left, .hero-content-right {
 align-items: center;
 color: var(--white);
 display: flex;
 flex-direction: column;
 height: 100%;
 justify-content: center;
 overflow: hidden;
 position: absolute;
 top: 0;
 width: 100%;
 z-index: 2;
}
.hero-content-left {
 clip-path: polygon(0 0, 55% 0%, 45% 100%, 0% 100%);
 left: 0;
 padding-right: 55%;
}
.hero-content-right {
 clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 45% 100%);
 padding-left: 55%;
 right: 0;
}
.hero-content-left:before, .hero-content-right:before, .hero-content-left:after, .hero-content-right:after {
 content: '';
 height: 100%;
 left: 0;
 position: absolute;
 top: 0;
 transition: all 0.5s ease;
 width: 100%;
}
.hero-content-left:before {
 background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
 opacity: 1;
}
.hero-content-left:hover::before {
 background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
 opacity: 0;
}
.hero-content-left:after {
 background: linear-gradient(to bottom, transparent, rgba(110, 172, 221, 0.75));
 opacity: 0;
}
.hero-content-left:hover::after {
 background: linear-gradient(to bottom, rgba(110, 172, 221, 0.5), rgba(0, 0, 0, 0.75));
 opacity: 1;
}
.hero-content-right:before {
 background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
 opacity: 1;
}
.hero-content-right:hover::before {
 background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
 opacity: 0;
}
.hero-content-right:after {
 background: linear-gradient(to bottom, transparent, rgba(133, 199, 120, 0.75));
 opacity: 0;
}
.hero-content-right:hover::after {
 background: linear-gradient(to bottom, rgba(133, 199, 120, 0.5), rgba(0, 0, 0, 0.75));
 opacity: 1;
}
.hero-content-left:hover .hero-bg-image, .hero-content-right:hover .hero-bg-image {
 transform: scale(1.1);
}
.hero-content-left:hover .hero-bg-image {
 opacity: 1;
}
.hero-bg-image {
 background-image: url("../img/slider/slide-01.avif");
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 height: 100%;
 left: 0;
 position: absolute;
 top: 0;
 transform: scale(1);
 transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
 width: 100%;
 z-index: -1;
}
@media (min-width:0em) and (max-width:46em) {
 .hero-content-left .hero-bg-image {
  background-position: left center;
 }
 .hero-content-right .hero-bg-image {
  background-position: right center;
 }
}
.hero-text {
 max-width: 75%;
 position: relative;
 text-align: left;
 transition: transform 0.3s ease;
 z-index: 3;
}
@media (min-width:0em) and (max-width:46em) {
 .hero-text {
  max-width: 90%;
 }
}
.hero-content-left .hero-text h2, .hero-content-right .hero-text h2 {
 color: var(--white);
 font-size: clamp(2.5rem, 3.5vw, 4.2rem);
 font-weight: 600;
 letter-spacing: 4px;
 margin-bottom: 1rem;
}
.hero-content-left .hero-text h2 span, .hero-content-right .hero-text h2 span {
 display: block;
 text-shadow: -2px -2px 0 var(--white), -1px -2px 0 var(--white), 0 -2px 0 var(--white), 1px -2px 0 var(--white), 2px -2px 0 var(--white), 2px -1px 0 var(--white), 2px 0 0 var(--white), 2px 1px 0 var(--white), 2px 2px 0 var(--white), 1px 2px 0 var(--white), 0 2px 0 var(--white), -1px 2px 0 var(--white), -2px 2px 0 var(--white), -2px 1px 0 var(--white), -2px 0 0 var(--white), -2px -1px 0 var(--white);
}
.hero-content-left .hero-text h2 span {
 color: var(--primary-color);
}
.hero-content-right .hero-text h2 span {
 color: var(--secondary-color);
}
.hero-content-left .hero-text p, .hero-content-right .hero-text p {
 font-size: clamp(1rem, 1.25vw, 1.25rem);
 font-weight: 500;
 line-height: 1.25;
 opacity: 0;
 transition: all 0.5s ease;
}
.hero-content-left .hero-text ul, .hero-content-right .hero-text ul {
 font-size: clamp(1rem, 1.5vw, 1.5rem);
 font-weight: 500;
}
.hero-content-left:hover .hero-text p, .hero-content-right:hover .hero-text p {
 opacity: 1;
}
@media (min-width:0em) and (max-width:46em) {
 .hero-content-left, .hero-content-right {
  clip-path: none;
  padding: 1rem;
  width: 100%;
  height: 50%;
  border-radius: 2.5rem;
  border: 1rem solid var(--white);
 }
 .hero-content-left {
  left: 0;
  right: auto;
 }
 .hero-content-right {
  left: auto;
  right: 0;
  top: 50%;
 }
}
/* Intro */
.intro-section {
 border-radius: 1.5rem;
 position: relative;
 margin: 1rem;
 background: linear-gradient(to bottom, rgba(133, 199, 120, 0.15) 75%, transparent 25%);
}
.intro-section h1 {
 font-size: clamp(2rem, 5vw, 5rem);
}
.intro-section h2 {
 font-size: clamp(1.5rem, 1.8vw, 3rem);
}
.intro-section p {
 font-size: clamp(1rem, 1.2vw, 1.2rem);
}
/* Supports */
.supports {
 margin: 5rem 1rem 1rem;
}
@media (min-width:0em) and (max-width:46em) {
 .supports .section-title h2 {
  position: relative;
  font-size: 90%;
 }
}
.supports-wrapper {
 border: 1px solid var(--secondary-color);
 border-radius: 1.5rem;
 padding: 2.5rem;
 margin-bottom: 4rem;
 position: relative;
 top: -3.5rem;
 z-index: 1;
}
@media (min-width:0em) and (max-width:46em) {
 .supports-wrapper {
  padding: 1.5rem 1rem 1rem;
  margin-bottom: 0;
 }
}
.support-logo {
 display: flex;
 height: 100%;
 justify-content: center;
 margin-left: auto;
 margin-right: auto;
 width: 100%;
 padding: 1.5rem;
}
@media (min-width:0em) and (max-width:46em) {
 .support-logo {
  max-width: 180px;
 }
}
.support-logo a {
 display: block;
 height: 100px;
 width: auto;
 max-width: 100%;
}
.support-logo img {
 margin-left: auto;
 margin-right: auto;
 max-height: 100px;
 min-width: calc(180px - 3rem);
}
/* =====================================================
   UI elements
===================================================== */
/* Titles */
.section-title {
 width: fit-content;
 margin-left: auto;
 margin-right: auto;
 color: var(--primary-color);
 background-color: var(--white);
 padding: 1.5rem;
 position: relative;
 text-align: center;
 top: -0.25rem;
 z-index: 2;
}
@media (min-width:0em) and (max-width:46em) {
 .section-title {
  padding: 0 1.5rem;
  top: -2.5rem;
 }
}
.section-title h2 {
 font-size: clamp(1.25rem, 1.8vw, 3rem);
}
.heading small {
 color: var(--secondary-color);
 display: block;
}
.heading span {
 color: var(--accent-color);
 display: block;
 font-size: clamp(1.2rem, 2vw, 1.5rem);
 margin-bottom: 2.5rem;
 text-transform: none;
}
.content-block__title {
 text-align: right;
 padding-right: 2.5rem;
}
@media (min-width:0em) and (max-width:46em) {
 .content-block__title {
  text-align: left;
  padding-left: 2.5rem;
  padding-right: 0;
  margin-bottom: 1.5rem;
 }
}
.content-block__title span {
 display: block;
}
/* Buttons */
.btn {
 border: 1px solid;
 border-radius: 0.5rem;
 font-family: var(--button-font);
 font-weight: 600;
 line-height: 1;
 margin: 1rem;
 min-width: 265px;
 overflow: hidden;
 padding: 1.2rem 1.75rem;
 position: relative;
 text-transform: uppercase;
 transition: all 0.3s ease;
}
@media (min-width:0em) and (max-width:46em) {
 .btn span {
  display: none;
 }
}
.btn, .btn:active {
 transform: translateY(0);
}
.btn:hover {
 transform: translateY(-2px);
}
.btn-primary, .btn-secondary {
 border: none;
 color: var(--white);
}
.btn-primary {
 background: linear-gradient(135deg, var(--primary-color) 0%, rgba(70, 132, 181, 1.00) 100%);
}
.btn-secondary {
 background: linear-gradient(135deg, rgba(133, 199, 120, 0.9) 0%, rgba(93, 159, 80, 0.9) 100%);
}
.btn.btn-info {
 background-color: var(--white);
 border-color: var(--accent-color);
}
.btn.btn-info:hover, .btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
 background-color: var(--accent-color);
 color: var(--white);
 border-color: transparent;
}
.btn::before, .hero-content-left .btn-primary::before, .hero-content-left .btn-info::before, .hero-content-right .btn-primary::before, .hero-content-right .btn-info::before {
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
 content: '';
 height: 100%;
 left: -100%;
 position: absolute;
 top: 0;
 transition: left 0.5s;
 width: 100%;
}
.btn:hover::before, .hero-content-left .btn-primary:hover::before, .hero-content-left .btn-info:hover::before, .hero-content-right .btn-primary:hover::before, .hero-content-right .btn-info:hover::before {
 left: 100%;
}
button[data-bs-toggle="dropdown"] .bi-arrow-right, .dropdown-toggle .bi-arrow-right {
 transition: transform 0.3s ease !important;
 display: inline-block;
}
button[data-bs-toggle="dropdown"][aria-expanded="true"] .bi-arrow-right, .dropdown-toggle[aria-expanded="true"] .bi-arrow-right {
 transform: rotate(90deg) !important;
}
.hero-content-left .btn-primary {
 background: linear-gradient(135deg, var(--primary-color) 0%, rgba(70, 132, 181, 1.00) 100%);
 box-shadow: 0 4px 15px rgba(110, 172, 221, 0.4);
}
@media (min-width:0em) and (max-width:46em) {
 .hero-content-left .btn-primary, .hero-content-right .btn-primary {
  margin: 0.5rem;
  display: inline-flex;
  font-size: 150%;
  padding: 0.5rem;
  width: auto;
  min-width: inherit;
  min-height: 42px;
  align-content: center;
  align-items: center;
 }
 .hero-content-left .btn-primary .bi, .hero-content-right .btn-primary .bi {
  display: none;
 }
 .hero-content-left .btn-primary span, .hero-content-right .btn-primary span {
  display: block;
  font-size: 65%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
 }
}
@media (min-width: 46.0625em) {
 .hero-content-left .btn-primary .bi.bi-person-check, .hero-content-right .btn-primary .bi.bi-person-check {
  display: none;
 }
}
.hero-content-left .btn-primary:hover {
 background: linear-gradient(135deg, rgba(110, 172, 221, 0.9) 0%, rgba(70, 132, 181, 0.9) 100%);
 box-shadow: 0 8px 25px rgba(110, 172, 221, 0.5);
 transform: translateY(-2px);
}
.hero-content-left .btn-info {
 backdrop-filter: blur(10px);
 background: rgba(255, 255, 255, 0.1);
 border-color: var(--white);
 box-shadow: 0 4px 15px rgba(110, 172, 221, 0.2);
 color: var(--white);
 overflow: hidden;
 position: relative;
 transition: all 0.3s ease;
 -webkit-backdrop-filter: blur(10px);
}
@media (min-width:0em) and (max-width:46em) {
 .hero-content-left .btn-info {
  margin: 0.5rem;
  display: inline-flex;
  font-size: 150%;
  padding: 0.5rem;
  width: auto;
  min-width: inherit;
 }
}
@media (min-width: 46.0625em) {
 .hero-content-left .btn-info .bi, .hero-content-right .btn-info .bi {
  display: none;
 }
}
.hero-content-left .btn-info::before {
 background: linear-gradient(90deg, transparent, rgba(110, 172, 221, 0.1), transparent);
}
.hero-content-left .btn-info:hover {
 background: linear-gradient(135deg, rgba(110, 172, 221, 0.15) 0%, rgba(110, 172, 221, 0.1) 100%);
 border-color: var(--white);
 box-shadow: 0 8px 25px rgba(110, 172, 221, 0.3);
}
.hero-content-right .btn-primary {
 background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(93, 159, 80, 1.00) 100%);
 box-shadow: 0 4px 15px rgba(133, 199, 120, 0.4);
}
@media (min-width:0em) and (max-width:46em) {
 .hero-content-right .btn-primary {
  margin: 0.5rem;
  display: inline-flex;
  font-size: 150%;
  padding: 0.5rem;
  width: auto;
  min-width: inherit;
 }
}
.hero-content-right .btn-primary:hover {
 background: linear-gradient(135deg, rgba(133, 199, 120, 0.9) 0%, rgba(93, 159, 80, 0.9) 100%);
 box-shadow: 0 8px 25px rgba(133, 199, 120, 0.5);
}
.hero-content-right .btn-info {
 backdrop-filter: blur(10px);
 background: rgba(255, 255, 255, 0.1);
 border-color: var(--white);
 box-shadow: 0 4px 15px rgba(133, 199, 120, 0.2);
 color: var(--white);
 overflow: hidden;
 position: relative;
 transition: all 0.3s ease;
 -webkit-backdrop-filter: blur(10px);
}
@media (min-width:0em) and (max-width:46em) {
 .hero-content-right .btn-info {
  margin: 0.5rem;
  display: inline-flex;
  font-size: 150%;
  padding: 0.5rem;
  width: auto;
  min-width: inherit;
 }
}
@media (min-width: 46.0625em) {
 .hero-content-right .btn-info .bi {
  display: none;
 }
}
.hero-content-right .btn-info::before {
 background: linear-gradient(90deg, transparent, rgba(133, 199, 120, 0.1), transparent);
}
.hero-content-right .btn-info:hover {
 background: linear-gradient(135deg, rgba(133, 199, 120, 0.15) 0%, rgba(133, 199, 120, 0.1) 100%);
 border-color: var(--white);
 box-shadow: 0 8px 25px rgba(133, 199, 120, 0.3);
 transform: translateY(-2px);
}
.hero-content-left .btn-primary:focus, .hero-content-left .btn-info:focus {
 box-shadow: 0 0 0 3px rgba(110, 172, 221, 0.25);
 outline: none;
}
.hero-content-right .btn-primary:focus, .hero-content-right .btn-info:focus {
 box-shadow: 0 0 0 3px rgba(133, 199, 120, 0.25);
 outline: none;
}
.hero-content-left .btn-primary.pulse, .hero-content-left .btn-info.pulse {
 animation: pulse-blue 2s infinite;
}
.hero-content-right .btn-primary.pulse, .hero-content-right .btn-info.pulse {
 animation: pulse-green 2s infinite;
}
@keyframes pulse-blue {
 0% {
  box-shadow: 0 4px 15px rgba(110, 172, 221, 0.3);
 }
 50% {
  box-shadow: 0 6px 20px rgba(110, 172, 221, 0.5);
 }
 100% {
  box-shadow: 0 4px 15px rgba(110, 172, 221, 0.3);
 }
}
@keyframes pulse-green {
 0% {
  box-shadow: 0 4px 15px rgba(133, 199, 120, 0.3);
 }
 50% {
  box-shadow: 0 6px 20px rgba(133, 199, 120, 0.5);
 }
 100% {
  box-shadow: 0 4px 15px rgba(133, 199, 120, 0.3);
 }
}
/* Button groups */
.btn-group-wrapper {
 text-align: center;
}
.btn-group.register .dropdown-menu {
 box-shadow: 0 8px 25px rgba(110, 172, 221, 0.3);
 padding: 0;
}
.btn-group.register.montedalua .dropdown-menu {
 border-color: var(--primary-color);
}
.btn-group.register.cruzalta .dropdown-menu {
 border-color: var(--secondary-color);
}
.btn-group.register .dropdown-menu::before {
 content: '';
 position: absolute;
 top: -10.5px;
 left: 21px;
 width: 0;
 height: 0;
 border-left: 11px solid transparent;
 border-right: 11px solid transparent;
 border-bottom: 11px solid var(--white);
 z-index: 2;
}
.btn-group.register .dropdown-menu::after {
 content: '';
 position: absolute;
 top: -12px;
 left: 20px;
 width: 0;
 height: 0;
 border-left: 12px solid transparent;
 border-right: 12px solid transparent;
 z-index: 1;
}
.btn-group.register.montedalua .dropdown-menu::after {
 border-bottom: 12px solid var(--primary-color);
}
.btn-group.register.cruzalta .dropdown-menu::after {
 border-bottom: 12px solid var(--secondary-color);
}
.btn-group.register .dropdown-menu li .dropdown-item {
 font-size: 120%;
 padding: 1rem;
}
.btn-group.register.montedalua .dropdown-menu li .dropdown-item {
 border-bottom-color: var(--primary-color);
}
.btn-group.register.cruzalta .dropdown-menu li .dropdown-item {
 border-bottom-color: var(--secondary-color);
}
/* Lists */
ul.list-hyphen li, ul.list-check li, ul.list-icons li {
 list-style: none;
 position: relative;
}
ul.list-hyphen li::before, ul.list-check li::before, ul.list-icons li::before {
 position: absolute;
}
ul.list-hyphen li::before {
 content: "-";
 left: -0.75rem;
}
ul.list-check li::before {
 color: var(--primary-color);
 content: "✓";
 left: -1.2rem;
}
ul.list-icons .bi {
 left: -1.75rem;
 position: absolute;
}
ul.list-alphabetic {
 list-style-type: none;
 padding-left: 0;
}
ul.list-alphabetic li {
 position: relative;
 padding-left: 1.5rem;
 margin-bottom: 0.5rem;
 text-indent: 0;
}
ul.list-alphabetic li:before {
 content: attr(data-letter);
 position: absolute;
 left: 0;
}
/* Content */
.content-block, .content-block div {
 position: relative;
}
.content-block h4 {
 color: var(--primary-color);
}
.content-block > div:nth-child(2)::before {
 position: absolute;
 top: 0;
 left: 0;
 width: 4px;
 height: 100%;
 background-color: rgba(133, 199, 120, 0.15);
 content: '';
}
.content-block > div:nth-child(2)::after {
 position: absolute;
 bottom: -5rem;
 left: 2px;
 width: 15px;
 height: 15px;
 border-radius: 50%;
 background-color: var(--primary-color);
 content: '';
 transform: translateX(-50%);
}
@media (min-width:0em) and (max-width:46em) {
 .content-block > div:nth-child(2)::before {
  bottom: -4.25rem;
  top: auto;
  left: 0;
  width: 100%;
  height: 4px;
 }
 .content-block > div:nth-child(2)::after {
  bottom: calc(-4.25rem - 5px);
  left: 50%;
  transform: translateX(-50%);
 }
}
.content-block__inner {
 padding: 0 2.5rem 2.5rem;
}
.content-block__inner:last-of-type {
 padding-bottom: 0;
}
/* Video */
.video-container {
 border: 1px solid var(--white);
 border-radius: 1rem;
 position: relative;
 padding-bottom: 56.25%;
 overflow: hidden;
}
.video-container iframe {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
}
.video {
 aspect-ratio: 16 / 9;
 width: 100%;
}
/* =====================================================
   Carousels
===================================================== */
.carousel {
 position: relative;
}
.carousel img {
 border-radius: 1.5rem;
}
.carousel-indicators {
 bottom: 2rem;
}
@media (min-width:0em) and (max-width:46em) {
 .carousel-indicators {
  bottom: 0;
 }
}
.carousel-indicators [data-bs-target] {
 width: 15px;
 height: 15px;
 background-color: var(--white);
 border-radius: 1rem;
 border: none;
 margin-right: 0.5rem;
 margin-left: 0.5rem;
}
.carousel-indicators .active {
 background-color: var(--secondary-color);
 opacity: 1;
}
.carousel-control-next, .carousel-control-prev {
 opacity: 1;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
 background-color: var(--white);
 border-radius: 2.5rem;
 background-size: 2rem;
 width: 3rem;
 height: 3rem;
}
.carousel-control-prev:hover .carousel-control-prev-icon, .carousel-control-next:hover .carousel-control-next-icon {
 background-color: var(--secondary-color);
}
.carousel-control-prev .carousel-control-prev-icon {
 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next .carousel-control-next-icon {
 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-control-prev:hover .carousel-control-prev-icon {
 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next:hover .carousel-control-next-icon {
 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-home {
 position: relative;
 padding: 1rem;
 background-color: var(--white);
 border-radius: 2.5rem;
 margin-top: 2.5rem;
}
@media (min-width:0em) and (max-width:46em) {
 .carousel-home {
  padding: 0;
  margin-top: 1rem;
 }
}
.carousel-home:before {
 position: absolute;
 background: var(--white);
 top: 0;
 left: 50%;
 width: 150%;
 height: 100%;
 content: '';
}
/* =====================================================
   App download
===================================================== */
.app-download-wrapper {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 2rem;
 padding: 2rem;
 border-radius: 12px;
 max-width: 600px;
 margin: 0 auto;
}
.qr-code {
 width: 140px;
 height: auto;
}
.app-buttons {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}
.store-button {
 height: 48px;
 width: auto;
 display: block;
}
/* =====================================================
   Responsive tables
===================================================== */
.responsive-table {
 width: 100%;
 border-collapse: collapse;
 margin: 20px 0;
 background-color: var(--white);
 border: 1px solid var(--accent-color);
}
@media (min-width:0em) and (max-width:46em) {
 .responsive-table {
  border: none;
 }
}
.responsive-table thead tr {
 color: var(--white);
}
.responsive-table th, .responsive-table td {
 padding: 12px;
 text-align: left;
 border: 1px solid var(--accent-color);
 vertical-align: top;
}
.responsive-table th {
 background-color: var(--primary-color);
 font-weight: bold;
 text-align: center;
}
.responsive-table tbody tr:nth-child(even) {
 background-color: #f8f9fa;
}
.responsive-table tbody tr:hover {
 background-color: #e8f4f8;
}
.responsive-table th[scope="row"] {
 background-color: rgba(133, 199, 120, 0.15);
 font-weight: bold;
 text-align: center;
}
@media screen and (max-width: 768px) {
 .responsive-table, .responsive-table thead, .responsive-table tbody, .responsive-table th, .responsive-table td, .responsive-table tr {
  display: block;
 }
 .responsive-table thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
 }
 .responsive-table tr {
  border: 1px solid var(--accent-color);
  margin-bottom: 10px;
  padding: 10px;
  background-color: white;
  border-radius: 5px;
 }
 .responsive-table td {
  border: none;
  position: relative;
  padding-left: 50% !important;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: left;
 }
 .responsive-table td:before {
  content: attr(data-title) ": ";
  position: absolute;
  left: 6px;
  width: 45%;
  padding-right: 10px;
  white-space: nowrap;
  font-weight: bold;
  color: #2c3e50;
 }
 .responsive-table th[scope="row"] {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 3px;
 }
}
/* =====================================================
   GDPR: https://codepen.io/moonbyt3/pen/GaBZay
===================================================== */
.gdpr {
 align-items: center;
 background-color: var(--white);
 border: 1px solid var(--accent-color);
 border-radius: 0.5rem;
 bottom: 3rem;
 box-sizing: border-box;
 display: none;
 flex-direction: column;
 justify-content: center;
 overflow: hidden;
 padding: 1.5rem;
 position: fixed;
 right: 3rem;
 transition: 0.15s ease-out;
 width: 256px;
 z-index: 999;
}
@media screen and (max-width: 46em) {
 .gdpr {
  right: 50%;
  transform: translateX(50%);
 }
}
.gdpr p {
 color: var(--accent-color);
 display: block;
 font-size: 0.85rem;
 margin-bottom: 1.5rem;
}
.gdpr a {
 color: var(--accent-color);
 outline: none;
 text-decoration: underline;
}
.gdpr .button-wrapper {
 display: flex;
 margin-top: 0.5rem;
 width: 100%;
}
.gdpr .btn-info.gdpr-btn {
 background-color: transparent;
 color: var(--accent-color);
 margin: 0 auto;
 max-width: 150px;
 min-width: 150px;
}
.gdpr .btn-info.gdpr-btn:hover {
 background-color: var(--accent-color);
 border-color: var(--accent-color);
 color: var(--white);
}
.js-clear {
 cursor: pointer;
 text-decoration: underline;
}
.js-clear:hover {
 color: var(--white);
}
/* =====================================================
   Prevent Rotation on Mobile Devices (SVG)
===================================================== */
@media (min-width:0em) and (max-width:67.4375em) and (orientation: landscape) {
 .rotate-container-vertical {
  align-items: center;
  background-color: var(--white);
  display: flex;
  height: 100dvh;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100dvw;
  z-index: 9999;
 }
 .rotate-container-vertical > figure {
  text-align: center;
 }
 .rotate-container-vertical figure img, .rotate-container-vertical figure svg {
  display: block;
  margin: 0 auto 2rem auto;
  max-width: 100px;
 }
 .rotate-container-vertical p {
  font-size: 120%;
  margin-bottom: 0;
 }
 .wrapper {
  display: none;
 }
}
@media (min-width:37.5em) and (min-height:31.25em), (min-width:60em), (orientation: portrait) {
 .rotate-container-vertical {
  display: none;
 }
}
/**/