:root {
 /* Fonts */
 --heading-font: "Alata", sans-serif;
 --primary-font: "Alata", sans-serif;
 /* Colours */
 --accent-color: rgba(243, 151, 120, 1.00);
 --primary-color: rgba(48, 156, 139, 1.00);
 --secondary-color: rgba(0, 66, 55, 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: rgba(243, 151, 120, 0.5);
 color: var(--secondary-color);
}
/* =====================================================
   Common
===================================================== */
html, body {
 scroll-behavior: smooth !important;
 scroll-padding-top: 100px;
}
body {
 font-family: var(--primary-font);
 overflow-x: hidden;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
 text-transform: uppercase;
}
img {
 display: block;
 height: auto;
 width: 100%;
}
blockquote {
 border-left: 3px solid var(--primary-color);
 margin-left: 1rem;
 margin-top: 1rem;
 padding-bottom: 1rem;
 padding-left: 1.5rem;
 padding-top: 1rem;
}
blockquote sup {
 color: var(--accent-color);
}
a {
 color: var(--primary-color);
}
button:focus:not(:focus-visible) {
 box-shadow: none;
}
.wrapper {
 background-color: var(--white);
 overflow-x: hidden;
 position: relative;
 z-index: 1;
}
/* =====================================================
   Page loading
===================================================== */
/* Fade effect */
.fade-in {
 animation: fadeIn 1.5s ease-in 0.5s forwards;
 opacity: 0;
}
@keyframes fadeIn {
 from {
  opacity: 0;
 }
 to {
  opacity: 1;
 }
}
/* Loader diamonds animation */
.diamonds-loader {
 left: 50%;
 position: fixed;
 top: 50%;
 transform: translate(-50%, -50%);
 z-index: 0;
}
.diamond {
 background: rgba(243, 151, 120, 0.5);
 display: block;
 height: 2.5rem;
 position: absolute;
 transform: rotate(45deg);
 width: 2.5rem;
}
.diamond:nth-of-type(1) {
 animation: move1 1.5s -0.1s infinite;
 background: rgba(48, 156, 139, 0.5);
}
.diamond:nth-of-type(2) {
 animation: move2 1.5s -0.2s infinite;
 background: rgba(243, 151, 120, 0.5);
}
.diamond:nth-of-type(3) {
 animation: move3 1.5s -0.3s infinite;
 background: rgba(0, 66, 55, 0.5);
}
@keyframes move1 {
 0% {
  transform: translateX(0%) rotate(45deg);
 }
 25% {
  transform: translateX(150%) rotate(45deg);
 }
 50% {
  transform: translateX(0) rotate(45deg);
 }
 75% {
  transform: translateX(-150%) rotate(45deg);
 }
}
@keyframes move2 {
 0% {
  transform: translateX(0%) rotate(45deg);
 }
 25% {
  transform: translateX(300%) rotate(45deg);
 }
 50% {
  transform: translateX(0) rotate(45deg);
 }
 75% {
  transform: translateX(-300%) rotate(45deg);
 }
}
@keyframes move3 {
 0%, 50%, 50.001%, 100% {
  transform: translateX(0%) rotate(45deg);
 }
 15%, 25% {
  transform: translateX(450%) rotate(45deg);
 }
 65%, 75% {
  transform: translateX(-450%) rotate(45deg);
 }
}
/* =====================================================
   Navigation
===================================================== */
.navbar {
 align-items: center;
 background-color: var(--white);
 display: flex;
 justify-content: space-between;
 padding-left: calc(5vw - 0.5rem);
 padding-right: calc(5vw - 0.5rem);
 width: 100%;
}
.navbar .container-fluid {
 align-items: center;
 display: flex;
 justify-content: space-between;
 width: 100%;
}
.navbar-brand {
 align-items: center;
 cursor: pointer;
 display: flex;
 justify-content: flex-start;
 max-width: 410px;
 padding-bottom: var(--bs-navbar-brand-padding-y);
 padding-top: var(--bs-navbar-brand-padding-y);
 width: 100%;
}
.navbar-brand img {
 display: block;
 height: auto;
 max-height: 100%;
 width: 100%;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
 color: var(--accent-color);
}
.nav-link {
 border: 3px solid var(--white);
 color: var(--primary-color);
 font-size: clamp(1rem, 3vw, 1.25rem);
 letter-spacing: 1px;
 position: relative;
 text-decoration: none;
 text-transform: uppercase;
}
.nav-link:focus-visible {
 box-shadow: none;
}
.nav-link:hover, .navbar-nav .nav-link.active:hover {
 background-color: var(--secondary-color);
 border-color: var(--white);
 color: var(--white);
 text-decoration: none;
}
.navbar-nav > .nav-item {
 display: inline-block;
}
.navbar-nav > .nav-item .nav-link.btn {
 padding: 0.42rem 1vw;
}
.navbar-nav.register > .nav-item .nav-link.btn:hover {
 background-color: var(--accent-color);
 border-color: var(--accent-color);
}
.navbar-nav.social-links, .navbar-nav.language-links {
 padding-left: 0.5rem;
 padding-right: 0.5rem;
}
/* Dropdowns common styles */
.navbar-nav.dropdown > .nav-link.dropdown-toggle {
 border: 3px solid;
 margin-right: 0.5rem;
 padding: 0.35rem 0.9vw 0.35rem 1.2vw;
}
.navbar-nav.dropdown .dropdown-menu {
 border: 3px solid;
 border-radius: 0;
}
.dropdown-item.active, .dropdown-item:active {
 background-color: rgba(235, 245, 243, 1.00);
 color: var(--secondary-color);
}
@media (min-width:1200px) {
 .navbar-expand-xl .navbar-nav.dropdown .dropdown-menu {
  border: 3px solid;
  border-radius: 0;
  min-width: calc(100% - 0.5rem);
 }
}
/* Dropdown register */
.navbar-nav.dropdown.register > .nav-link.dropdown-toggle {
 border-color: var(--accent-color);
 color: var(--accent-color);
 min-width: 206px;
 text-align: center;
}
.navbar-nav.dropdown.register .nav-link.dropdown-toggle:hover, .navbar-nav.dropdown.register .nav-link.active, .navbar-nav.dropdown.register .nav-link.show, .navbar-nav.dropdown.register > .nav-link.dropdown-toggle.show {
 background-color: var(--accent-color);
 border-color: var(--accent-color);
 color: var(--white);
}
.navbar-nav.dropdown.register .dropdown-menu {
 border-color: var(--accent-color);
}
.navbar-expand-xl .navbar-nav.dropdown.register .dropdown-menu {
 border-color: var(--accent-color);
}
.navbar-nav.dropdown .dropdown-item {
 font-size: clamp(1.25rem, 1.5vw, 1.25rem);
}
.navbar-nav.dropdown.register .dropdown-item:focus, .navbar-nav.dropdown.register .dropdown-item:hover {
 background-color: rgba(255, 245, 242, 1.00);
 color: var(--accent-color);
}
.navbar-nav.dropdown .dropdown-item .bi {
 margin-right: 0.5rem;
}
/* Dropdown info */
.navbar-nav.dropdown.info > .nav-link.dropdown-toggle {
 border-color: var(--primary-color);
 min-width: 206px;
 text-align: center;
}
.navbar-nav.dropdown.info .nav-link.dropdown-toggle:hover {
 border-color: var(--secondary-color);
}
.navbar-nav.dropdown.info .nav-link.active, .navbar-nav.dropdown.info .nav-link.show, .navbar-nav.dropdown.info > .nav-link.dropdown-toggle.show {
 background-color: var(--secondary-color);
 border-color: var(--secondary-color);
 color: var(--white);
}
.navbar-nav.dropdown.info .dropdown-menu {
 border-color: var(--secondary-color);
}
.navbar-expand-xl .navbar-nav.dropdown.info .dropdown-menu {
 border-color: var(--primary-color);
}
.navbar-nav.dropdown.info .dropdown-item:focus, .navbar-nav.dropdown.info .dropdown-item:hover {
 background-color: rgba(235, 245, 243, 1.00);
 color: var(--secondary-color);
}
/* Navbar toggler */
.navbar-toggler {
 align-items: center;
 background: transparent;
 border: none;
 display: flex;
 flex-direction: column;
 gap: 5px;
 height: 40px;
 justify-content: center;
 width: 40px;
}
.navbar-toggler .toggler-bar {
 background-color: var(--primary-color);
 display: block;
 height: 3px;
 transition: transform 0.3s, opacity 0.3s;
 width: 30px;
}
.navbar-toggler.collapsed .toggler-bar:nth-child(1) {
 transform: translateY(0) rotate(0);
}
.navbar-toggler.collapsed .toggler-bar:nth-child(2) {
 opacity: 1;
}
.navbar-toggler.collapsed .toggler-bar:nth-child(3) {
 transform: translateY(0) rotate(0);
}
.navbar-toggler:not(.collapsed) .toggler-bar {
 background-color: var(--secondary-color);
}
.navbar-toggler:not(.collapsed) .toggler-bar:nth-child(1) {
 transform: translateY(8px) rotate(45deg);
}
.navbar-toggler:not(.collapsed) .toggler-bar:nth-child(2) {
 opacity: 0;
}
.navbar-toggler:not(.collapsed) .toggler-bar:nth-child(3) {
 transform: translateY(-8px) rotate(-45deg);
}
.navbar-toggler:focus {
 box-shadow: none;
}
/* Hero section */
.hero-section {
 align-items: center;
 display: flex;
 flex-direction: row;
 height: 100svh;
 justify-content: space-between;
 min-height: 800px;
 padding: 100px clamp(2rem, 6vw, 5rem) 5rem;
 text-align: center;
}
.hero-section .hero-text {
 display: flex;
 flex-direction: column;
 height: 100%;
 justify-content: center;
 padding: clamp(0rem, 3vw, 5rem);
 width: 50%;
}
.hero-section .hero-text .heading span {
 display: block;
}
.hero-section .hero-text .heading span:first-of-type {
 color: var(--accent-color);
 font-size: clamp(1.2rem, 2.5vw, 2.5rem);
 font-weight: normal;
 letter-spacing: 2px;
 margin-bottom: 1rem;
 text-transform: none;
}
.hero-section .hero-text p {
 font-size: clamp(1.2rem, 2.2vw, 2rem);
 line-height: 1.2;
}
.hero-section .hero-image {
 background-color: var(--secondary-color);
 flex-grow: 1;
 height: 100%;
 overflow: hidden;
 width: 50%;
}
.hero-section .carousel, .hero-section .carousel-inner, .hero-section .carousel-item {
 height: 100%;
}
.hero-section .carousel-item img {
 height: 100%;
 object-fit: cover;
 object-position: center;
 width: 100%;
}
/* Intro section */
.intro-section {
 align-items: center;
 display: flex;
 flex-direction: row;
 height: 100svh;
 justify-content: space-between;
 padding: 100px clamp(2rem, 6vw, 5rem) 5rem;
 position: relative;
 text-align: center;
}
.intro-section::before, .intro-section::after {
 aspect-ratio: 42 / 50;
 clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
 content: "";
 opacity: 0.1;
 position: absolute;
 top: 5rem;
 transform: translateY(-50%);
 width: 25vw;
 z-index: -1;
}
.intro-section::before {
 background-color: var(--primary-color);
 left: 0;
}
.intro-section::after {
 background-color: var(--accent-color);
 left: 25vw;
}
.intro-section .intro-text {
 display: flex;
 flex-direction: column;
 height: 100%;
 justify-content: center;
 padding: clamp(0rem, 3vw, 5rem);
 text-align: left;
 width: 40%;
}
.intro-section .intro-text h1 {
 color: var(--primary-color);
 font-size: clamp(2rem, 6vw, 6rem);
 font-weight: 700;
 line-height: 1;
 margin-bottom: 2rem;
 text-transform: uppercase;
}
.intro-section .intro-text h1 span {
 display: block;
}
.intro-section .intro-text h1 span:first-of-type {
 color: var(--accent-color);
 font-size: clamp(1.2rem, 2.5vw, 2.5rem);
 font-weight: normal;
 letter-spacing: 2px;
 margin-bottom: 2rem;
 text-transform: none;
}
.intro-section .intro-text h2 {
 font-size: clamp(1.2rem, 3vw, 2rem);
}
.intro-section .intro-text p, .intro-section .intro-text ul {
 font-size: clamp(1rem, 1.8vw, 1.35rem);
}
.intro-section .intro-image {
 flex-grow: 1;
 height: 100%;
 overflow: hidden;
 width: 60%;
}
.intro-section .carousel, .intro-section .carousel-inner, .intro-section .carousel-item {
 height: 100%;
}
.intro-section .carousel-item img {
 height: 100%;
 object-fit: cover;
 object-position: center;
}
/* Info section */
.info-section {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 min-height: 100svh;
 position: relative;
 margin-top: 100px;
 padding: 20vh clamp(2rem, 6vw, 5rem) 5rem;
}
.info-section .heading-container {
 position: absolute;
 top: 0;
 left: 50%;
 text-align: center;
 background-color: var(--white);
 transform: translateX(-50%);
 width: auto;
 padding-left: 5vw;
 padding-right: 5vw;
}
/* Registration tickets */
.tickets-wrapper {
 display: flex;
 flex-direction: column;
 gap: 3rem;
 align-items: center;
}
.ticket {
 display: flex;
 justify-content: center;
 align-items: stretch;
 width: 100%;
 max-width: 720px;
}
.ticket .button-wrapper {
 margin-top: 1.5rem;
 margin-bottom: 0.5rem;
}
.ticket .btn.dropdown-toggle, .ticket .btn.btn-primary {
 background-color: var(--primary-color);
 border: 3px solid var(--primary-color);
 color: var(--white);
 margin-right: 0;
 padding: 0.35rem 0.9vw 0.35rem 1.2vw;
 min-width: 206px;
 text-align: center;
}
.ticket .btn.btn-primary::before, .ticket .btn.btn-primary::after {
 display: none;
}
.ticket .btn.dropdown-toggle:hover, .ticket .btn.dropdown-toggle.show, .ticket .btn.btn-primary:hover {
 border-color: var(--secondary-color);
 background-color: var(--secondary-color);
 color: var(--white);
}
.ticket .dropdown .dropdown-menu {
 border: 3px solid var(--primary-color);
 border-radius: 0;
 min-width: 100%;
}
.ticket .dropdown .dropdown-item:focus, .ticket .dropdown .dropdown-item:hover {
 background-color: rgba(235, 245, 243, 1.00);
 color: var(--secondary-color);
}
.ticket .stub, .ticket .check {
 box-sizing: border-box;
 display: flex;
 flex-direction: column;
}
.ticket .stub {
 display: flex;
 flex-direction: column;
 background-color: var(--accent-color);
 width: 300px;
 aspect-ratio: 1 / 1;
 color: var(--white);
 padding: 1rem;
 position: relative;
 margin-right: 20px;
}
.ticket .stub:before {
 position: absolute;
 top: 0;
 left: -20px;
 content: "";
 height: 100%;
 width: 20px;
 background-color: var(--accent-color);
 clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}
.ticket .stub:after {
 position: absolute;
 top: 0;
 right: -20px;
 content: "";
 height: 100%;
 width: 20px;
 background-color: var(--accent-color);
 clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}
.ticket .stub .top {
 display: block;
 left: 1rem;
 top: 2rem;
 align-items: center;
 width: calc(100% - 2rem);
 height: 20%;
 text-transform: uppercase;
 position: absolute;
 z-index: 1;
}
.ticket .stub .top .admit {
 font-weight: 700;
 font-size: clamp(1rem, 3.25vw, 1.5rem);
}
.ticket .stub .top .line {
 display: block;
 background-color: var(--white);
 width: 50%;
 height: 2px;
 margin: 0.5rem 0.25rem 0 0;
}
.ticket .stub .top .event {
 font-size: clamp(0.75rem, 2vw, 1rem);
}
.ticket .stub .top .event span {
 color: var(--secondary-color);
 display: block;
}
.ticket .stub .number {
 position: absolute;
 bottom: 0rem;
 left: 0;
 width: 100%;
 height: 70%;
 font-size: clamp(4rem, 17vw, 7rem);
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 1;
}
.ticket .stub .number small {
 font-size: 50%;
 top: 0;
 position: relative;
 left: 0.25rem;
}
.ticket .stub .invite {
 position: absolute;
 left: 40%;
 bottom: 10%;
 color: var(--secondary-color);
 width: calc(60% - 1rem);
 font-size: 1.25rem;
 line-height: 1;
 z-index: 1;
}
.ticket .stub .invite:before {
 content: "";
 background-color: var(--white);
 display: block;
 width: 50%;
 height: 2px;
 margin-bottom: 1rem;
}
.ticket .stub .watermark {
 position: absolute;
 left: 0;
 right: 0;
 top: 50%;
 height: 50%;
 transform: translateY(-50%);
 opacity: 0.5;
 z-index: 0;
}
.ticket .stub .dashed-line {
 position: absolute;
 top: 50%;
 right: calc(-1rem - 6px);
 z-index: 1;
 width: 4px;
 height: calc(100% - 4rem);
 transform: translateY(-50%);
 background: repeating-linear-gradient(to bottom, var(--white) 0%, var(--white) calc(100% / 24), #F39778 calc(100% / 24), #F39778 calc(200% / 24));
}
.ticket .check {
 background: var(--white);
 width: 450px;
 padding: 1rem;
 position: relative;
 height: auto;
 margin-left: 20px;
}
.ticket .check:before {
 position: absolute;
 top: 0;
 left: -20px;
 content: "";
 display: block;
 height: 100%;
 width: 20px;
 background-color: var(--white);
 clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}
.ticket .check:after {
 position: absolute;
 top: 0;
 right: -20px;
 content: "";
 height: 100%;
 width: 20px;
 background-color: var(--white);
 clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}
.ticket .check .heading {
 font-size: clamp(1.8rem, 3.5vw, 2.2rem);
 font-weight: 700;
 line-height: 1;
 text-transform: uppercase;
 color: var(--primary-color);
 position: relative;
 margin-top: 1rem;
 margin-bottom: 2rem;
}
.ticket .check .info {
 display: flex;
 justify-content: flex-start;
 width: 100%;
 position: relative;
 flex-wrap: wrap;
}
.ticket .check .info section {
 margin-right: 1.5rem;
 box-sizing: border-box;
 flex: 1 1 auto;
 text-transform: uppercase;
 font-size: clamp(1.2rem, 4.5vw, 1.8rem);
 font-weight: 700;
}
.ticket .check .info section:before {
 content: "";
 background-color: var(--accent-color);
 display: block;
 width: 40px;
 height: 3px;
 margin-bottom: 5px;
}
.ticket .check .info section.date, .ticket .check .info section.hour, .ticket .check .info section.place {
 margin-bottom: 2rem;
}
.ticket .check .info section.date {
 width: calc(60% - 1.5rem);
}
.ticket .check .info section.hour {
 width: calc(40% - 1.5rem);
}
.ticket .check .info section.price, .ticket .check .info section.place {
 width: calc(100% - 1.5rem);
 flex: none;
}
.ticket .check .info section.place small {
 font-size: 70%;
 font-weight: normal;
}
.ticket .check .info section.place .place-info {
 line-height: 0.75;
}
.ticket .check .info section .title {
 font-weight: normal;
 text-transform: uppercase;
 color: var(--primary-color);
 font-size: 70%;
}
.ticket .check .list-check {
 font-size: 80%;
 font-weight: normal;
 text-transform: none;
 margin-top: 0.5rem;
 padding-left: 1rem;
}
.ticket .check .list-check li {
 display: flex;
 justify-content: space-between;
 align-items: center;
 position: relative;
 font-size: 1rem;
}
.ticket .check .list-check li::after {
 content: "";
 position: absolute;
 left: 0;
 right: 0;
 bottom: 0;
 border-bottom: 1px dotted rgba(0, 0, 0, 0.25);
 margin-top: 0.2rem;
}
.ticket .check .list-check li span {
 margin-left: auto;
 color: var(--accent-color);
 font-weight: 700;
 font-size: 120%;
}
/* Supports */
.supports {
 align-items: center;
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 padding: 100px clamp(2rem, 6vw, 5rem) 5rem;
 position: relative;
}
.supports .heading-container {
 position: relative;
}
.supports .sub-heading {
 font-size: clamp(1.5rem, 4vw, 3rem);
}
.supports h3 {
 font-size: clamp(0.9rem, 1.5vw, 1.25rem);
}
.supports .row {
 align-items: stretch;
}
.supports [class^="col-"] {
 justify-content: center;
}
.supports .logo {
 align-items: center;
 aspect-ratio: 1;
 display: flex;
 height: 200px;
 justify-content: center;
 margin-left: auto;
 margin-right: auto;
 max-width: 200px;
}
.supports .logo a {
 display: block;
 width: 100%;
}
.supports .logo img {
 height: auto;
 max-width: 100%;
}
/* Footer */
.footer {
 background-color: var(--primary-color);
 padding-top: 5rem;
}
.footer .footer-content {
 padding-bottom: 5rem;
}
.footer .footer-bar {
 padding: 2.5rem;
}
.footer .footer-content > div {
 color: var(--white);
}
.footer .event-logo img {
 margin-bottom: 1.5rem;
 margin-top: 0.5rem;
 max-width: 150px;
}
.footer .event-about, .footer .event-contacts {
 padding-left: 2.5rem;
 padding-right: 2.5rem;
}
.footer .footer-bar {
 align-items: center;
 background-color: var(--secondary-color);
 display: flex;
 flex-direction: column;
 justify-content: center;
 text-align: center;
}
.footer-bar p, .footer-bar a, .footer .footer-content a {
 color: var(--white);
 font-weight: normal;
 margin: 0;
}
.footer-bar a {
 text-decoration: underline;
}
.footer-bar a:hover {
 color: var(--primary-color);
}
.footer-bar span {
 padding-left: 0.25rem;
 padding-right: 0.25rem;
}
/* Page content */
.page-header {
 align-items: center;
 border-top: 3px solid var(--accent-color);
 display: flex;
 height: 25vh;
 justify-content: center;
 margin-top: 100px;
}
.page-header .heading {
 font-size: clamp(1.8rem, 3vw, 4rem);
 margin-bottom: 0;
 margin-top: 0;
 text-align: center;
}
.page-header .heading span {
 display: block;
 color: var(--accent-color);
 font-size: clamp(1.2rem, 2.5vw, 2.5rem);
 font-weight: normal;
 letter-spacing: 2px;
 margin-bottom: 1rem;
}
.stacked-content {
 align-items: flex-start;
 border-bottom: 3px solid rgba(0, 0, 0, 0.1);
 display: flex;
 gap: 1rem;
 padding-bottom: 5rem;
 padding-top: 5rem;
}
.stacked-content:last-of-type {
 border-bottom: none;
}
.stacked-content-ordinal {
 color: var(--accent-color);
 flex: 0 0 25%;
 font-size: clamp(3rem, 3vw, 4rem);
 line-height: 1;
 margin-bottom: 2rem;
 margin-top: 2rem;
}
.stacked-content-column {
 flex: 1;
}
.stacked-content p:last-of-type {
 margin-bottom: 0;
 padding-bottom: 0;
}
.stacked-content .sub-heading {
 padding-right: 0;
}
.stacked-content .rwd-table {
 width: calc(100% - 1rem);
}
/* =====================================================
   UI elements
===================================================== */
/* Headings */
.heading, .sub-heading {
 color: var(--primary-color);
 font-weight: 700;
 line-height: 1;
 margin-bottom: 2rem;
 margin-top: 2rem;
 position: relative;
}
.heading {
 font-size: clamp(1.8rem, 7.5vw, 4rem);
}
.sub-heading {
 background-color: var(--white);
 display: inline-block;
 font-size: clamp(1.5rem, 3vw, 2rem);
 padding-right: 1.5rem;
}
.heading-container.heading-line:before {
 background-color: var(--black);
 content: "";
 height: 3px;
 left: 0;
 opacity: 0.1;
 position: absolute;
 top: calc(50% - 1.5rem);
 transform: translateY(-50%);
 width: 100%;
}
.heading-container .diamonds {
 background-color: var(--white);
 height: calc(100% - 3rem);
 position: absolute;
 right: 0;
 top: 0;
 width: 120px;
}
.heading-container .diamonds:before, .heading-container .diamonds:after {
 clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
 content: "";
 height: 50px;
 position: absolute;
 top: calc(50% - 0rem);
 transform: translateY(-50%);
 width: 42px;
}
.heading-container .diamonds:before {
 background-color: var(--primary-color);
 right: 45px;
}
.heading-container .diamonds:after {
 background-color: var(--accent-color);
 right: 0;
}
/* Buttons */
.button-wrapper {
 display: inline-block;
 margin-top: 2.5rem;
}
.btn {
 border-radius: 0;
 display: inline-block;
 font-size: clamp(1.2rem, 1.2vw, 1.25rem);
 padding: 0.75rem clamp(1.25rem, 3vw, 2.5rem);
 position: relative;
 text-align: center;
 text-transform: uppercase;
 transition: var(--transition-default);
 width: auto;
}
.btn.btn-primary {
 background-color: var(--white);
 border: 3px solid var(--accent-color);
 box-shadow: none;
 color: var(--accent-color);
}
.btn.btn-primary:hover {
 background-color: var(--white);
 border-color: var(--primary-color);
 box-shadow: none;
 color: var(--primary-color);
}
.btn.btn-primary::before {
 background-color: var(--white);
 content: "";
 height: 75%;
 position: absolute;
 right: -4px;
 top: 50%;
 transform: translateY(-50%);
 width: 4px;
}
.btn.btn-primary::after {
 background-color: var(--primary-color);
 clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
 content: "";
 height: 22px;
 position: absolute;
 right: -10px;
 top: 50%;
 transform: translateY(-50%);
 transition: background-color 0.15s ease-out 0.15s;
 width: 16px;
}
.btn.btn-primary:hover::after {
 animation: spin 0.15s linear 1 forwards;
 background-color: var(--accent-color);
 transition: var(--transition-default);
}
.btn.btn-primary:not(:hover)::after {
 animation: spin-reverse 0.15s linear 1 forwards;
}
@keyframes spin {
 from {
  transform: translateY(-50%) rotate(0deg);
 }
 to {
  transform: translateY(-50%) rotate(90deg);
 }
}
@keyframes spin-reverse {
 from {
  transform: translateY(-50%) rotate(90deg);
 }
 to {
  transform: translateY(-50%) rotate(0deg);
 }
}
/* 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: -1.2rem;
}
ul.list-check li::before {
 color: var(--primary-color);
 content: "✓";
 left: -1.2rem;
}
ul.list-icons li i {
 color: var(--white);
 left: -2rem;
 position: absolute;
}
/* Carousel */
.carousel-inner img {
 height: auto;
 object-fit: cover;
 width: 100%;
}
.carousel-control-next {
 align-items: center;
 aspect-ratio: 1 / 1;
 background-color: transparent;
 border-left: 4px solid var(--white);
 border-top: 4px solid var(--white);
 display: flex;
 height: auto;
 justify-content: center;
 opacity: 1;
 top: auto;
 transition: var(--transition-default);
 width: 20%;
}
.carousel-control-next:hover {
 background-color: transparent;
 border-color: var(--white);
 opacity: 0.5;
}
.carousel-control-next .carousel-control-next-icon {
 background-color: var(--white);
 background-image: none !important;
 height: clamp(3rem, 6vw, 6rem);
 mask-image: url("data:image/svg+xml,%3Csvg fill='%23195B4E' width='800px' height='800px' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.975 17.504l14.287.001-6.367 6.366L16.021 26l10.004-10.003L16.029 6l-2.128 2.129 6.367 6.366H5.977z'/%3E%3C/svg%3E");
 mask-position: center;
 mask-repeat: no-repeat;
 mask-size: contain;
 opacity: 1;
 transition: var(--transition-default);
 width: clamp(3rem, 6vw, 6rem);
}
.carousel-control-next:hover .carousel-control-next-icon {
 background-color: var(--white);
 opacity: 1;
 transform: scale(1.5);
}
.carousel-item .image-credits {
 position: absolute;
 left: 0.5rem;
 bottom: 0.5rem;
 color: var(--white);
 font-size: clamp(0.75rem, 1vw, 1rem);
}
/* Backgrounds */
.diamonds-pattern {
 background: repeating-linear-gradient(50deg, rgba(243, 151, 120, 0.1) 0, rgba(243, 151, 120, 0.1) 10vw, rgba(0, 0, 0, 0.1) 10vw, rgba(0, 0, 0, 0.1) 20vw), repeating-linear-gradient(-50deg, rgba(48, 156, 139, 0.1) 0, rgba(48, 156, 139, 0.1) 10vw, rgba(0, 0, 0, 0.1) 10vw, rgba(0, 0, 0, 0.1) 20vw);
 background-attachment: local;
 background-size: cover;
}
/* =====================================================
   Responsive tables
===================================================== */
.rwd-table {
 border: 1px solid var(--white);
 border-collapse: collapse;
 cursor: default;
 margin: 0;
 padding: 0;
 table-layout: fixed;
 width: 100%;
}
.rwd-table tr {
 border: 2px solid var(--white);
}
.rwd-table th, table td {
 padding: 0.625rem;
 text-align: center;
}
.rwd-table th {
 border-right: 2px solid var(--white);
 font-size: .85rem;
 letter-spacing: .1rem;
 text-transform: uppercase;
}
.rwd-table tbody td {
 border-right: 2px solid var(--white);
 font-size: 0.85rem;
 font-weight: normal;
}
.rwd-table tbody td .additional {
 border-top: 2px solid var(--white);
 margin-top: 0.75rem;
 min-height: 110px;
 padding-top: 0.5rem;
}
@media (min-width:0em) and (max-width:46em) {
 .rwd-table tbody td .additional {
  margin-top: 5px;
  min-height: auto;
 }
}
.rwd-table tbody td span {
 display: block;
}
@media (min-width:0em) and (max-width:46em) {
 .rwd-table tbody td > span {
  min-height: auto;
 }
}
.rwd-table h4 {
 padding: 0;
 text-align: center;
}
.rwd-table h6 {
 color: black;
 font-size: 1.1rem;
 font-weight: 700;
 margin-top: 10px;
}
.rwd-table .fa {
 font-size: 1.5rem;
 margin-right: 5px;
}
.rwd-table thead th {
 color: var(--white);
 font-weight: 700;
 text-transform: uppercase;
}
.rwd-table thead th {
 text-align: center;
}
.rwd-table th {
 padding: 10px;
}
.rwd-table thead tr th:nth-child(2n) {
 background-color: rgba(243, 151, 120, 0.1);
}
.rwd-table thead tr th:nth-child(2n+1) {
 background-color: rgba(48, 156, 139, 0.1);
}
.rwd-table tr:nth-child(2n) {
 background-color: rgba(243, 151, 120, 0.1);
}
.rwd-table tr:nth-child(2n+1) {
 background-color: rgba(48, 156, 139, 0.1);
}
.rwd-table tr:hover {
 background-color: var(--accent-color);
}
@media (min-width:0em) and (max-width:46em) {
 .rwd-table thead {
  border: none;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
 }
 .rwd-table tbody td {
  border-right: none;
  padding-top: 1.8rem;
  position: relative;
  text-align: left;
 }
 .rwd-table tbody td .additional {
  border-top: none;
  padding-top: 0;
 }
 .rwd-table tr:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.02);
 }
 .rwd-table tr:nth-child(2n+1) {
  background-color: rgba(0, 0, 0, 0.05);
 }
 .rwd-table th {
  border-right: none;
  padding: 5px;
 }
 .rwd-table tr {
  border-bottom: 2px solid var(--white);
  border-left: 3px solid var(--primary-color);
  display: block;
 }
 .rwd-table td {
  border-bottom: 2px solid var(--white);
  border-right: none;
  display: block;
  font-size: .8rem;
  text-align: right;
 }
 .rwd-table td:before {
  color: var(--primary-color);
  content: attr(data-label);
  float: left;
  font-weight: 700;
  left: 0.6rem;
  position: absolute;
  text-transform: uppercase;
  top: 0.5rem;
 }
 .rwd-table td:last-child {
  border-bottom: 0;
 }
 .rwd-table tr.no-display-xs {
  display: none;
 }
}
/* Video */
.video-container {
 border: 1px solid var(--white);
 position: relative;
 padding-bottom: 56.25%;
 overflow: hidden;
}
@media (min-width: 1080px) {
 .video-container {
  top: 50%;
  transform: translateY(-50%);
 }
}
.video-container iframe {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
}
.video {
 aspect-ratio: 16 / 9;
 width: 100%;
}
/* Modal with video */
.video-modal .modal-dialog .modal-content {
 border-radius: 0;
}
.video-modal .modal-body {
 padding: 1rem;
}
.video-modal .modal-body h2 {
 color: var(--primary-color);
 font-weight: 700;
}
.video-modal .modal-body h3 {
 color: var(--accent-color);
}
.video-modal .video-container {
 width: 100%;
 position: relative;
}
.video-modal .video-container video {
 width: 100% !important;
 height: auto !important;
 max-height: 70vh;
 object-fit: contain;
 display: block;
}
.video-modal .video-container video[data-orientation="vertical"] {
 max-height: 60vh;
}
@media (max-width: 768px) {
 .video-modal .video-container video {
  max-height: 50vh;
 }
}
/* =====================================================
   GDPR: https://codepen.io/henriquebaldy/pen/empMZWq
===================================================== */
.gdpr {
 align-items: flex-start;
 background-color: var(--secondary-color);
 bottom: 3.125rem;
 box-sizing: border-box;
 color: var(--white);
 display: none;
 flex-direction: column;
 justify-content: space-between;
 opacity: 1;
 overflow: hidden;
 padding: 2.5rem 1.5rem 1.5rem;
 position: fixed;
 right: 3.125rem;
 width: 300px;
 z-index: 999;
}
.gdpr p {
 font-size: 0.85rem;
 text-align: justify;
}
.gdpr a {
 color: var(--white);
 text-decoration: underline;
 transition: color 0.3s ease;
}
.gdpr a:hover {
 color: var(--accent-color);
}
.gdpr-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.8rem;
 justify-content: center;
 margin-top: 2rem;
 width: 100%;
}
.gdpr-btn.accept {
 background-color: transparent;
 color: var(--white);
 margin: 0;
 min-width: 175px;
}
.gdpr-btn.accept:before {
 background-color: var(--secondary-color);
}
.gdpr-btn.accept:hover {
 background-color: transparent;
}
.gdpr-btn.reject {
 background-color: transparent;
 border-color: rgba(255, 255, 255, 0.5);
 color: var(--white);
 margin: 0;
 min-width: 175px;
}
.gdpr-btn.reject:before {
 background-color: var(--secondary-color);
}
.gdpr-btn.reject:hover {
 background-color: transparent;
}
.gdpr-close {
 align-items: center;
 background: none;
 border: none;
 color: var(--white);
 cursor: pointer;
 display: flex;
 font-size: 1.5rem;
 height: 1.5rem;
 justify-content: center;
 opacity: 0.5;
 padding: 0;
 position: absolute;
 right: 0.5rem;
 top: 0.5rem;
 width: 1.5rem;
}
.gdpr-close:hover {
 color: var(--white);
 opacity: 1;
}
.gdpr-manage {
 bottom: 0.5rem;
 font-size: 0.8rem;
 position: fixed;
 right: 1rem;
 z-index: 998;
}
.gdpr-manage a {
 color: #aaa;
 text-decoration: none;
 transition: color 0.3s ease;
}
.gdpr-manage a:hover {
 color: #FFF000;
}
@media (max-width: 600px) {
 .gdpr {
  align-items: center;
  border-left: none;
  border-radius: 0;
  border-right: none;
  bottom: 0;
  left: 0;
  padding: 1rem;
  right: 0;
  width: 100%;
 }
 .gdpr p {
  margin-bottom: 1rem;
  text-align: left;
 }
 .gdpr-actions {
  justify-content: center;
  gap: 0.6rem;
 }
 .gdpr-btn {
  flex: 1;
  max-width: 140px;
  text-align: center;
 }
 .gdpr-manage {
  bottom: auto;
  margin-top: 0.5rem;
  position: relative;
  right: auto;
  text-align: center;
  width: 100%;
 }
}
/* =====================================================
   Media queries
===================================================== */
@media (min-width: 75em) { /* 1200px em rem */
 .tickets-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5rem;
  justify-content: center;
  align-items: stretch;
 }
}
@media (min-width: 75em) {
 .ticket {
  width: auto;
 }
}
@media (max-width: 74.9375rem) { /* 1199px em rem */
 .carousel-control-next {
  width: 20%;
 }
 .gdpr {
  bottom: 2rem;
  right: 2rem;
 }
 .heading-container .diamonds {
  width: 100px;
 }
 .heading-container .diamonds:before, .heading-container .diamonds:after {
  height: 37px;
  width: 31px;
 }
 .heading-container .diamonds:before {
  right: 35px;
 }
 .navbar-nav.social-links, .navbar-nav.language-links {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  display: flex;
  flex: 1;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
 }
 .navbar-nav.social-links > .nav-item, .navbar-nav.language-links > .nav-item {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  text-align: center;
 }
 .navbar-nav.social-links .nav-link, .navbar-nav.language-links .nav-link {
  align-items: center;
  aspect-ratio: 1 / 1;
  display: flex;
  font-size: 150%;
  height: auto;
  justify-content: center;
  margin: 0 auto;
  max-height: 50px;
  max-width: 50px;
  padding: 0;
  width: 100%;
 }
 .navbar-collapse {
  background-color: var(--white);
  border: 4px solid var(--accent-color);
  display: flex;
  flex-wrap: wrap;
  padding: 2.5vw;
 }
 .navbar-nav {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  width: 100%;
 }
 .navbar-nav:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
 }
 .navbar-nav.info {
  border: 1px solid rgba(0, 0, 0, 0.25);
 }
 .navbar-nav.register, .navbar-nav.info {
  margin-bottom: 1rem;
  width: 100%;
 }
 .nav-item {
  margin: 0;
 }
 .nav-link {
  font-size: 150%;
  text-align: center;
  width: 100%;
 }
 .navbar-brand {
  max-width: 320px;
 }
}
@media (max-width: 61.9375rem) { /* 991px em rem */
 .ticket .stub .top {
  display: flex;
  top: 0;
  left: 0;
  position: relative;
  width: calc(100% - 0rem);
 }
 .ticket .stub .number {
  position: relative;
  justify-content: left;
 }
 .ticket .stub .invite {
  display: none;
 }
 .ticket .stub .watermark {
  left: 50%;
  top: 4rem;
  bottom: 1rem;
  height: auto;
  transform: none;
  width: calc(50% - 1rem);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.75;
 }
 .ticket .stub .watermark img {
  width: auto;
  height: 100%;
 }
 .ticket .stub .top .line {
  width: 2px;
  height: 40px;
  margin: 0 1rem;
 }
 .ticket .stub .top .event span {
  display: inline-block;
 }
 .button-wrapper {
  margin-bottom: 1.5rem;
 }
 .info-section {
  margin-top: 0;
  padding: 10vh clamp(2rem, 6vw, 5rem) 5rem;
 }
 .footer {
  margin-top: 0;
  padding-top: 2.5rem;
 }
 .footer .event-about, .footer .event-contacts {
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
 }
 .footer .event-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-top: 0;
 }
 .footer .event-logo img {
  margin-top: 1.5rem;
 }
 .footer .footer-content {
  padding-bottom: 2.5rem;
 }
 .footer-bar p, .footer-bar a, .footer .footer-content a, .js-clear {
  font-size: 95%;
 }
 .gdpr {
  bottom: 3vh;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
 }
 .hero-section, .intro-section {
  display: block;
  flex-direction: row;
  height: auto;
  min-height: initial;
 }
 .hero-section .hero-text, .hero-section .hero-image, .intro-section .intro-text, .intro-section .intro-image {
  display: block;
  flex-direction: row;
  height: auto;
  width: 100%;
 }
 .hero-section {
  padding-top: 75px;
 }
 .intro-section::before, .intro-section::after {
  width: 50vw;
 }
 .intro-section .intro-image {
  margin-bottom: 2.5rem;
 }
 .intro-section .intro-text .button-wrapper {
  margin-bottom: 0;
  margin-top: 2.5rem;
 }
 .navbar-brand {
  width: 75%;
 }
 .ticket {
  display: block;
  margin-top: 2.5rem;
 }
 .ticket .stub {
  width: calc(100% - 40px);
  height: auto;
  aspect-ratio: auto;
  margin-left: 20px;
  padding: 1rem 0;
 }
 .ticket .stub .dashed-line {
  top: auto;
  bottom: -2px;
  right: auto;
  left: 50%;
  width: calc(100% - 4rem);
  height: 4px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to right, #FFF 0%, #FFF calc(100% / 24), #F39778 calc(100% / 24), #F39778 calc(200% / 24));
 }
 .ticket .check {
  width: calc(100% - 40px);
  margin-left: 20px;
  margin-right: 20px;
  padding: 1rem 0;
 }
 .ticket .check .info section {
  margin-right: 0;
 }
 .ticket .check .info section.price, .ticket .check .info section.place {
  width: calc(100% - 0rem);
 }
 .page-header {
  height: 15vh;
 }
 .stacked-content {
  display: block;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
 }
 .stacked-content .rwd-table {
  width: 100%;
 }
 .stacked-content-column {
  width: 100%;
 }
 .stacked-content-ordinal {
  flex: none;
  margin-top: 0;
  text-align: left;
 }
 .supports .logo {
  max-width: 120px;
 }
}
@media (max-width: 36rem) { /* 576px em rem */
 .heading-container .diamonds {
  width: 60px;
 }
 .heading-container .diamonds:before, .heading-container .diamonds:after {
  height: 20px;
  width: 17px;
 }
 .heading-container .diamonds:before {
  right: 20px;
 }
}
/* 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-bottom: 2rem;
  margin-left: auto;
  margin-right: 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;
 }
}
/**/