:root {
    --gray-800: #424242;
    --gray-500: #9e9e9e;
    --gray-400: #bdbdbd;
    --gray-50: #fafafa;
    --white: #ffffff;
    --soft-black: #0c0b0b;
    --lime-green: #daff6e;
    --blue: #0cb2cd;
    --dark-blue: #073c89;
    --medium-blue: #2e418b;
    --green: #00bb40;
    --purple: #572781;
    --light-purple: #c9a4e7;
    --yellow: #ffd201;
    --dark-yellow: #fbbf09;
    --darker-yellow: #d5d800;
    --orange: #fb5e2a;
    --vibrant-orange: #ff4e03;
    --pink: #ea577b;
    --rose: #ff4d70;
    --darker-pink: #e1047d;
    --vibrant-pink: #ff3e9a;
    --font-parfumerie: "parfumerie-script", sans-serif;
    --font-salo: "salo-variable", sans-serif;
    --font-salo-Q: "ss01" 0, "ss02" 0, "ss03" 1;
    --font-salo-O: "ss01" 1, "ss02" 0;
}

.show-mobile {
    display: none;
}

@media (min-width: 1024px) {
    .show-desktop {
        display: block;
    }
    .show-mobile {
        display: none;
    }
}

/* Estilos para dispositivos móveis */
@media (max-width: 1023px) {
    .show-desktop {
        display: none;
    }
    .show-mobile {
        display: block;
    }
}

/* Buttons */
.primary-button {
    background-color: var(--white);
    color: var(--soft-black);
    text-decoration: none;
    border-radius: 45px;
    border: none;
    padding: 20px 70px;
    transition: all 0.2s ease-in-out;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    display: block;
}

.primary-button:hover {
    box-shadow: 0px 0px 0px 1.2px var(--white) inset;
    background: transparent;
    color: var(--white);
}

.orange-button {
    background-color: var(--vibrant-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    border: none;
    padding: 20px 80px;
    transition: all 0.2s ease-in-out;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    display: block;
}

.orange-button:hover {
    box-shadow: 0px 0px 0px 1.2px var(--vibrant-orange) inset;
    background: transparent;
    color: var(--vibrant-orange);
}

.charity-card-darker-pink-button {
    background-color: var(--white);
    color: var(--darker-pink);
    text-decoration: none;
    border-radius: 10px;
    border: none;
    padding: 20px 80px;
    transition: all 0.2s ease-in-out;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    display: block;
}

.charity-card-darker-pink-button:hover,
.charity-card-light-blue-button:hover {
    box-shadow: 0px 0px 0px 1.2px var(--white) inset;
    background: transparent;
    color: var(--white);
    text-decoration: none;
}

.charity-card-light-blue-button {
    background-color: var(--white);
    color: var(--blue);
    text-decoration: none;
    border-radius: 10px;
    border: none;
    padding: 20px 80px;
    transition: all 0.2s ease-in-out;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    display: block;
}

/* General classes */
.disabled-swiper-button {
    display: none !important;
}

.txt-yellow {
    color: #ffd201;
}

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

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

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

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

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

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

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

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

/* Cards Charities */
.bg-light-blue-card {
    background-color: var(--blue);
    position: relative;
}

.bg-light-blue-card::before {
    content: "";
    position: absolute;
    background-image: url("../images/shapes/shape-rectangle-blue-1.svg");
    background-size: cover;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.bg-darker-pink-card {
    background-color: var(--darker-pink);
    position: relative;
}

.bg-darker-pink-card::before {
    content: "";
    position: absolute;
    background-image: url("../images/shapes/shape-rectangle-purple-1.svg");
    background-size: cover;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

body {
    font-family: "proxima-nova", sans-serif;
}

.site-wrapper {
    overflow: clip;
    position: relative;
}

* {
    box-sizing: border-box;
    margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
}

.swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 50px);
}

.swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 50px);
}

/* Header */
.header-scroll {
    max-height: calc(100dvh - var(--header-bar-h, 0px));
    overflow-y: auto;
    overscroll-behavior: contain;
}

.hover-dropdown.dropdown:hover .dropdown-menu {
    display: block;
}

header .navbar-toggler-icon {
    background-image: url("../images/icons/menu.svg");
    width: 2rem;
    height: 2rem;
}

/* SE FOR MOBILE A ALTURA DO HEADER È 80PX */
/* @media (max-width: 1023px) {
    header {
        height: 80px;
    }
} */

.hover-dropdown .nav-link:hover {
    text-decoration: none;
}

.hover-dropdown .dropdown-menu {
    width: 100%;
}

.hover-dropdown .dropdown-item {
    color: var(--soft-black);
    font-size: 16px;
    font-weight: 700;
    margin: 0 20px 0 20px;
}

.nav-link.custom-nav-link {
    color: var(--gray-800);
    font-size: 26px;
    font-weight: 500;
}

.hover-dropdown .dropdown-item:hover {
    background-color: transparent;
}

header .nav-link {
    color: var(--soft-black);
    font-size: 16px;
    font-weight: 700;
    margin: 0 14px 0 14px;
    text-transform: capitalize;
}

.navbar-toggler {
    border: none;
}

.navbar-brand {
    display: none;
}

.navbar-brand img {
    width: 100%;
    max-width: 90px;
}

.navbar-toggler-icon {
    width: 3rem;
    height: 3rem;
}

header .nav-link:hover {
    text-decoration: underline;
}

header {
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 113px;

    position: fixed;
    width: 100%;
    z-index: 1031;
    background: var(--white);
    transition: all 0.4s ease-in-out;
    top: 0%;
}

header .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}

/* Footer */
footer {
    position: relative;
}

footer::before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-brands h2 {
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-O);
    text-transform: uppercase;
    font-size: 64px;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-brands a {
    text-decoration: none !important;
}

.footer-bg {
    background-color: var(--soft-black);
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 200px;
}

.footer-copyright p {
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0;
}

.footer-copyright img {
    width: 100%;
    margin-top: 25px;
    max-width: 35px;
}

.footer-social {
    background-color: var(--white);
    color: var(--soft-black);
    padding: 26px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.footer-social:hover {
    transform: scale(1.08);
}

.footer-icons {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Home */
.video-container {
    display: flex;
    position: relative;
}

.dark-gradient {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.video-container h1 {
    position: absolute;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--white);
    z-index: 1;
    top: 35%;
    left: 0;
    right: 0;
    text-align: center;
    line-height: 0.9;
}

.video-container .line1 {
    font-size: 100px;
}

.video-container .line2 {
    font-size: 170px;
}

.video-container .line3 {
    font-size: 136px;
}

.video-container .special {
    font-family: var(--font-parfumerie);
    vertical-align: middle;
}

.video-container video {
    width: 100%;
    height: 100%;
    max-height: 1200px;
    object-fit: cover;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    max-height: 1200px;
    min-height: 1200px;
    object-fit: cover;
}

.popup-modal.fade {
    width: 100% !important;
    height: 100% !important;
}

.homeCarousel2 img {
    width: 100%;
}

.carousel img {
    object-fit: cover;
    width: 100%;
}

.time-countdown {
    color: var(--white);
    justify-content: center;
    gap: 3rem;
    padding-left: 20px;
    max-height: 65px;
}

.time-countdown .count {
    font-size: 35px;
    font-weight: 700;
}

.time-countdown .label {
    font-size: 17px;
    font-weight: 700;
}

.countdown-dots {
    font-size: 64px;
    font-weight: 700;
}

.hide-countdown {
    background-color: #000000;
    color: var(--white);
    position: absolute;
    top: -9%;
    right: 1%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
    border: none;
    cursor: pointer;
    i {
        transform: rotate(180deg);
    }
}

.hide-countdown:hover {
    top: -11%;
}

.countdown-bg {
    background-color: var(--soft-black);
    padding-top: 12px;
    padding-bottom: 12px;
}

/* COUNTDOWN BG TEM QUE TER PADDING DE 20 PX NO DESKTOP */

@media (min-width: 1024px) {
    .countdown-bg {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.countdown-bg::before {
    content: "";
    background-image: url("../images/shapes/shape-rectangle-1.svg");
    position: absolute;
    background-size: cover;
    background-position: 0 4rem;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.clearfix {
    position: relative;
    z-index: 1;
}

/* Tickets */
.tickets-start {
    position: relative;
    background-color: var(--green);
    padding-top: 100px;
    padding-bottom: 100px;

    background-repeat: no-repeat;
    background-size: cover;
}

.tickets-start::before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-image: url("../images/shapes/shape-rectangle-green-1.svg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.tickets-start h1 {
    font-size: 170px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-O);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--purple);
}

.tickets-start p {
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
}

.tickets-start img {
    margin-left: 20px;
    width: 100%;
    border-radius: 15px;
}

.ticket-link {
    margin-top: 100px;
}

.sectors {
    position: relative;
    background-color: var(--dark-blue);
    padding-top: 100px;
    padding-bottom: 100px;
}

.sectors::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/shapes/shape-wave-gradient.svg");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    z-index: 0;
}

.accordion-item {
    margin-bottom: 12px;
}

.accordion-item:first-of-type,
.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-item,
.faq .accordion-button,
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
    border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--soft-black);
}

.sectors .accordion-button {
    background-color: transparent;
}

button:focus:not(:focus-visible) {
    box-shadow: none;
}

.accordion-body {
    padding-top: 0;
    padding-left: 40px;
    padding-right: 90px;

    font-size: 16px;
    color: var(--soft-black);
    font-weight: 400;
    padding-bottom: 30px;
}

.sectors .accordion-body img {
    width: 100%;
    margin-bottom: 30px;
}

.sectors .accordion-body {
    padding-top: 0;
    padding-left: 40px;
    padding-right: 90px;
    max-width: 70%;
    min-height: 600px;
    font-size: 24px;
    color: var(--white);
    font-weight: 500;
    padding-bottom: 30px;
    display: flex;
    align-items: end;
    z-index: 2;
    position: relative;
}

.sectors .accordion-collapse {
    position: relative;
}

.sectors .accordion-collapse::before {
    content: "";
    position: absolute;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: 0;
}

.sectors .accordion-item {
    background-color: transparent;
    border: none;
    background-size: cover;
    background-position: center center;
}

.accordion-header {
    margin-bottom: 0;
    padding-left: 40px;
}

.sectors .accordion-header {
    padding-right: 40px;
}

.accordion-button {
    font-size: 64px;
    color: var(--soft-black);
    font-weight: 400;
    padding-left: 0;
}

.ticket-advise {
    font-size: 20px;
    font-weight: 700;
    margin-top: 64px;
    text-align: center;
    color: var(--white);
}

.sectors .accordion-button {
    font-size: 72px;
    color: var(--vibrant-pink);
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-weight: 400;
    padding-left: 0;
    padding-right: 0;
    position: static;
}

.sectors-title {
    font-size: 156px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    color: var(--white);
    font-weight: 400;
    position: relative;
    margin-bottom: 30px;
}

.accordion-button:not(.collapsed)::after {
    margin-right: 12px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EA577B'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='%23EA577B' stroke-width='2'/></svg>");
}

.accordion-button::after {
    margin-right: 12px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='black' stroke-width='2'/></svg>");
}

.sectors .accordion-button:not(.collapsed)::after {
    margin-right: 12px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF3E9A'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='%23FF3E9A' stroke-width='2'/></svg>");
}

.sectors .accordion-button::after {
    margin-right: 12px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='%23ffffff' stroke-width='2'/></svg>");
}

.shape-3-tickets {
    bottom: -12rem;
    left: 5rem;
    position: absolute;
}

.ticket-category-title {
    font-size: 180px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 120px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    text-align: center;
    line-height: 150px;
    position: relative;
    z-index: 10;
}

.ticket-category-title span {
    display: block;
    color: var(--yellow);
    text-transform: lowercase;
    font-family: var(--font-parfumerie);
    font-size: 260px;
    margin-top: -80px;
}

.ticket-category {
    overflow: hidden;
    position: relative;
    background-color: var(--purple);
    padding-top: 100px;
    padding-bottom: 100px;
}

.ticket-category::before,
.ticket-category::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-repeat: no-repeat;
    mix-blend-mode: screen;
}

.ticket-category::before {
    background-image: url("../images/shapes/glare-2.svg");
    background-size: 40rem;
    background-position: 100% 12%;
}

.ticket-category::after {
    background-image: url("../images/shapes/glare.svg");
    background-size: 50rem;
    background-position: 0% 130%;
}

.shape-wave-1 {
    top: -55rem;
    left: -23rem;
    transform: rotate(18deg);
}

.shape-wave-2 {
    top: -36rem;
    right: -53rem;
}

.shape-wave-1,
.shape-wave-2 {
    position: absolute;
}

.ticket-category-card h2 {
    font-family: "proxima-nova", sans-serif;
    font-size: 28px;
    color: var(--white);
    font-weight: 900;
    text-align: start;
}

.ticket-card-title {
    margin-bottom: 16px;
}

.ticket-category-card p {
    font-size: 17px;
    color: var(--white);
    font-weight: 400;
    text-align: start;
}

.ticket-category-card {
    padding: 45px 28px;
    height: 100%;
    border-radius: 15px;
    position: relative;
    z-index: 10;
}

.shape-1 {
    width: 100%;
    height: 100%;
    position: relative;
}

.shape-2,
.shape-3 {
    width: 100%;
    height: 50%;
}

.shape-3 {
    margin-top: 20px;
    padding-top: 112px;
}

.shape-1::before {
    content: "";
    background-image: url("../images/shapes/shape-rectangle-1.svg");
    position: absolute;
    opacity: 0.1;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.ticket-types {
    margin-top: 20px;
}

.benefited-institutions {
    background-color: var(--light-purple);
    padding-top: 100px;
    padding-bottom: 100px;
}

.benefited-institutions .charity-card-darker-pink-button,
.benefited-institutions .charity-card-light-blue-button {
    max-width: 70%;
    margin-top: 45px;
}

.benefited-title {
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-O);
    text-transform: uppercase;
    font-size: 96px;
    color: var(--white);
    font-weight: 400;
    text-align: center;
    margin-bottom: 70px;
}

/* Follow section */
.follow h2 {
    font-size: 64px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    color: var(--dark-blue);
    font-weight: 400;
    margin-bottom: 0;
}

.follow a {
    text-decoration: none;
    font-size: 80px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-O);
    color: var(--pink);
    font-weight: 400;
}

.follow {
    padding-top: 100px;
    padding-bottom: 100px;
}

.default-card {
    padding: 60px 40px;
    height: 100%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.default-card
    a:not(.charity-card-darker-pink-button, .charity-card-light-blue-button) {
    color: var(--white);
}

.default-card h2 {
    color: var(--white);
    font-family: "proxima-nova", sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 45px;
    text-align: start;
}

.default-card p {
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0;
    word-break: break-word;
}

/* Infos */
.faq {
    background-color: var(--dark-blue);
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-size: cover;
}

.faq h1 {
    font-size: 170px;
    line-height: 150px;
    color: var(--lime-green);
    font-weight: 400;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-Q);
    margin-bottom: 0;
}

.faq h3 {
    font-size: 40px;
    color: var(--white);
    font-weight: 900;
    margin-top: 20px;
    margin-bottom: 45px;
}

.faq .accordion-button {
    font-size: 24px;
    color: var(--soft-black);
    font-weight: 700;
    padding-top: 36px;
    padding-bottom: 36px;
}

.contact .contact-subtitle {
    color: var(--white);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 0;
}

.contact .contact-title {
    font-size: 128px;
    color: var(--dark-blue);
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-O);
    font-weight: 400;
    margin-bottom: 36px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
}

.contact {
    background-color: var(--light-purple);
    padding-top: 100px;
    padding-bottom: 100px;

    background-repeat: no-repeat;
    background-size: cover;
}

.contact a {
    text-decoration: underline;
    width: fit-content;
}

/* History */
.swiperHistory2 .swiper-slide-thumb-active {
    transform: translateY(-5px) scale(1.15);
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.swiperHistory2 {
    overflow: visible;
}

.swiper-button-next-custom-5,
.swiper-button-prev-custom-5 {
    position: absolute;
    top: 50%;
    z-index: 1;
    color: var(--white);
    background-color: #00000036;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.swiper-button-next-custom-5 {
    right: 2rem;
}

.swiper-button-prev-custom-5 {
    left: 2rem;
}

.history {
    position: relative;
    background-color: var(--white);
    padding-top: 100px;
    padding-bottom: 130px;
}

.history h2 {
    font-size: 96px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-Q), var(--font-salo-O);
    text-transform: uppercase;
    margin-bottom: 90px;
    color: var(--vibrant-pink);
    font-weight: 400;
    text-align: center;
}

.history p {
    font-size: 24px;
    color: var(--vibrant-pink);
    font-weight: 700;
    margin-top: 80px;
    margin-bottom: 16px;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
}

.history-slider-section {
    position: relative;
    width: 100%;
    height: 100px;
}

.swiperHistory img:not(.year-star) {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    display: block;
}

.swiperHistory2 {
    margin-top: -6rem;
}

.swiperHistory2 .swiper-wrapper {
    align-items: stretch;
}

.swiperHistory2 .swiper-slide {
    max-height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.swiperHistory2 img {
    aspect-ratio: 16/9;
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.swiperHistory2 .content,
.swiperHistory .content {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white);
}

.swiperHistory2 .swiper-slide {
    cursor: pointer;
}

.swiperHistory .content p {
    font-size: 24px;
    font-weight: 700;
    margin: 0 8rem;
    text-align: center;
}

.swiperHistory .content h3 {
    font-size: 96px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    text-align: center;
}

.history-year h2 {
    font-size: 156px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 700;
    margin-bottom: 60px;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #fff;
}

.swiperHistory .content h3 {
    font-family: "proxima-nova", sans-serif;
    font-weight: 700;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #fff;
}

.history-year-little h2 {
    font-size: 90px;
    font-family: "proxima-nova", sans-serif;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
    font-weight: 700;
    margin-bottom: 0;
}

.history-year img {
    position: absolute;
    top: -40px;
    left: -3rem;
}

.history-word {
    padding-top: 130px;
    padding-bottom: 100px;
    color: var(--soft-black);
}

.history-word h2 {
    font-size: 96px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    font-feature-settings: var(--font-salo-Q), var(--font-salo-O);
}

.history-word p {
    font-size: 32px;
    font-weight: 300;
    margin-right: 25rem;
    word-wrap: break-word;
    word-break: break-word;
}

.history-word h3 {
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-size: 48px;
    text-transform: uppercase;
}

.time-machine-title {
    text-align: center;
    margin-bottom: 60px;
}

.time-machine-title h1 {
    color: var(--white);
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    font-size: 96px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.time-machine-title h2 {
    text-transform: lowercase;
    font-family: var(--font-parfumerie);
    color: var(--vibrant-pink);
    font-size: 200px;
    margin-top: -4rem;
    margin-left: 10rem;
    line-height: 50%;
}

.time-machine {
    background-color: var(--soft-black);
    padding-top: 100px;
    padding-bottom: 100px;
}

.time-machine-info {
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.play-btn-time-machine {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: var(--white);
    background-color: #00000036;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 24px;
}

.time-machine-info-card h2 {
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    font-size: 96px;
    color: var(--white);
    font-weight: 400;
    text-align: end;
    line-height: 55px;
    margin-bottom: 0;
}

.time-machine-info-card .show-desktop {
    height: 100%;
}

.time-machine-info-card img {
    width: 100%;
    border-radius: 15px;
    height: 100%;
    object-fit: cover;
}

.time-machine-info-card:hover {
    transform: translateY(-5px);
}

.time-machine-info-card {
    position: relative;
    transition: all 0.2s ease-in-out;
    height: 100%;
}

.video-modal-content {
    background: transparent;
    border: 0;
    box-shadow: none;
}

/* Estilos para os indicadores */
.carousel-indicators {
    position: relative;
    bottom: 10px;
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
    margin-top: 50px;
    margin-bottom: 35px;
    gap: 12px;
    margin-left: 0;
    margin-right: 0;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    margin: 1px 3px;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-indicators .active {
    background-color: var(--purple);
}

.carousel-indicators [data-bs-target] {
    width: 40px;
    height: 40px;
    text-indent: 0;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
    padding: 25px;
}

.carousel-item p {
    font-size: 16px;
    color: var(--soft-black);
    font-weight: 700;
}

.carousel-item h2 {
    font-size: 64px;
    color: var(--soft-black);
    font-weight: 400;
    font-family: var(--font-parfumerie);
}

/* Estilizando as setas de navegação */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 58%;
    width: 60px;
    height: 60px;
    background-color: var(--pink);
    border-radius: 0;
    opacity: 1;
}

.carousel-control-prev {
    left: -4rem;
}

.carousel-control-next {
    right: -4rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--pink);
}

.prev-icon,
.next-icon {
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.speaker-block-three {
    text-align: center;
}

.speaker-block-three .inner-box {
    background-color: transparent;
}

.speaker-block-three .image-box {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-caption {
    margin-top: 5px;
}

.carousel-control-prev {
    padding-right: 4px;
}

/* Experiences */
.experiences {
    position: relative;
    background-image: url('https://assets.planetaatlantida.com.br/2025/site/assets/images/background-experiencias.jpg');
    /* padding-top: 100px; */
    background-repeat: no-repeat;
}

.mt-35 {
    margin-top: 35px;
}

.experiences::before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-repeat: no-repeat;
    background-size: cover;
}

.experiences h1 {
    line-height: 170px;
    margin-bottom: 0;
    font-size: 170px;
    color: var(--white);
    font-weight: 400;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-O);
}

.experiences p {
    font-size: 22px;
    color: var(--dark-yellow);
    font-weight: 700;
    margin-bottom: 100px;
    padding: 0 22rem;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.custom-video-btn {
    background: var(--pink);
    font-size: 36px;
    border: none;
    color: var(--white);
    padding: 25px;
    width: 90px;
    height: 90px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.custom-video-btn:hover {
    background: transparent;
    box-shadow: 0px 0px 0px 1.2px var(--pink) inset;
    color: var(--pink);
}

.play-button {
    position: absolute;
}

/* #ytVideo {
    width: 100%!important;
    height: 500px!important;
    border-radius: 15px!important;
} */

.video-container img {
    width: 100%;
    max-height: 900px;
    object-fit: cover;
}

.experience-last-message {
    position: relative;
    background-color: var(--purple);
    padding-top: 70px;
    padding-bottom: 60px;
}

.experience-last-message::before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-repeat: no-repeat;
    background-size: cover;
}

.experience-last-message h3 {
    font-size: 60px;
    color: var(--white);
    margin-bottom: 0;
    font-weight: 900;
    text-align: center;
    line-height: 70px;
    text-transform: uppercase;
}

.experience-last-message h3 span {
    font-size: 42px;
    font-weight: 400;
}

.experience-last-message h2 {
    font-size: 190px;
    color: var(--yellow);
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-O);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
}

.experience-last-message h2 span {
    font-family: var(--font-parfumerie);
    font-size: 230px;
    text-transform: lowercase;
    vertical-align: middle;
}

.experience-last-message .font {
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-Q);
    font-size: 120px;
    color: var(--pink);
    font-weight: 400;
    margin-bottom: 0;
}

.experience-last-message-container hr {
    color: var(--yellow);
    width: 80px;
    opacity: 1;
    border: 4px solid;
    margin-top: -48px;
    margin-bottom: 0;
}

.experience-last-message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: center;
}

.carousel-section-1 {
    background-color: var(--blue);
    position: relative;
}

.carousel-section-2 {
    background-color: var(--rose);
    position: relative;
}

.carousel-section-2::before {
    content: "";
    background-image: url("../images/shapes/shape-rectangle-pink-1.svg");
    position: absolute;
    background-size: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.carousel-section-3 {
    background-color: var(--green);
    position: relative;
}

.carousel-section-1 h2 {
    color: var(--lime-green);
}

.carousel-section-2 h2,
.carousel-section-3 h2 {
    color: var(--white);
}

.carousel-section-1 h2,
.carousel-section-2 h2,
.carousel-section-3 h2 {
    font-size: 128px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 120px;
    margin-bottom: 100px;
}

.experience-swiper {
    position: relative;
}

.experience-swiper img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    min-height: 400px;
}

.experience-swiper .swiper-slide {
    height: auto;
}

.swiper-button-next-custom,
.swiper-button-prev-custom,
.swiper-button-next-custom-2,
.swiper-button-next-custom-3,
.swiper-button-prev-custom-2,
.swiper-button-prev-custom-3 {
    position: absolute;
    top: 40%;
    transform: translateY(50%);
    z-index: 1;
    color: var(--white);
    background-color: #00000036;
    border-radius: 10px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next-custom,
.swiper-button-next-custom-2,
.swiper-button-next-custom-3 {
    right: 0;
}

.swiper-button-prev-custom,
.swiper-button-prev-custom-2,
.swiper-button-prev-custom-3 {
    left: 0;
}

.experience-swiper i {
    font-size: 20px;
}

.carousel-section-1-shapes {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.carousel-section-1-shapes::before,
.carousel-section-1-shapes::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-repeat: no-repeat;
    mix-blend-mode: screen;
}

.carousel-section-1-shapes::before {
    background-image: url("../images/shapes/glare-2.svg");
    background-size: 40rem;
    background-position: 100% 12%;
}

.carousel-section-1-shapes::after {
    background-image: url("../images/shapes/glare.svg");
    background-size: 50rem;
    background-position: 0% 5%;
}

.carousel-section-2-shapes {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat, no-repeat;
    background-size: 44rem, 44rem;
    background-position: 75rem 5rem, 15rem 13rem;
}

.carousel-section-3-shapes {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat, no-repeat;
    background-size: 50rem, 32rem;
    background-position: 74rem 20rem, 9rem 8rem;
}

.carousel-section-3-shapes::before,
.carousel-section-3-shapes::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-repeat: no-repeat;
    mix-blend-mode: screen;
}

.carousel-section-3-shapes::before {
    background-image: url("../images/shapes/glare-2.svg");
    background-size: 40rem;
    background-position: 100% 50%;
}

.carousel-section-3-shapes::after {
    background-image: url("../images/shapes/glare.svg");
    background-size: 50rem;
    background-position: 0% -50%;
}

/* Line up */
.line-up img {
    width: 100%;
}

.line-up-title {
    font-size: 48px;
    text-transform: uppercase;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 0;
}

.line-up-artists h1 {
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-size: 156px;
    color: var(--vibrant-orange);
    font-weight: 400;
    line-height: 146px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.line-up-artists h1 span {
    display: block;
    color: var(--dark-blue);
    font-size: 230px;
    font-family: var(--font-parfumerie);
    text-transform: lowercase;
    margin-top: -85px;
}

.line-up-artists {
    position: relative;
    background-color: var(--white);
    padding-top: 130px;
    padding-bottom: 130px;
}

.line-up-artists::before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-repeat: no-repeat;
    background-size: cover;
}

.artist-card img {
    width: 100%;
    border-radius: 15px;
    height: 100%;
    object-fit: cover;
}

.artist-card .show-desktop,
.artist-card .show-mobile,
.swiperHistory .show-mobile,
.swiperHistory .show-desktop {
    height: 100%;
    width: 100%;
}

.artist-card h2 {
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    font-size: 64px;
    color: var(--vibrant-orange);
    font-weight: 400;
    text-align: end;
    line-height: 55px;
}

.artist-card p {
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0;
    text-align: end;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-card {
    position: relative;
    transition: all 0.2s ease-in-out;
    height: 100%;
}

.artist-info {
    position: absolute;
    bottom: 16px;
    right: 16px;
}

.artists-section {
    margin-top: 60px;
}

/* Artist page */
.artist-date {
    background-color: var(--blue);
    border-radius: 28px;
    padding: 12px;
    position: relative;
    margin: 0 22rem;
}

.artist-date h2 {
    color: var(--white);
    font-size: 60px;
    font-weight: 400;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    margin-bottom: 0;
}

.artist-presentation {
    position: relative;
    background-color: var(--white);
    padding-top: 100px;
    padding-bottom: 60px;
}

.artist-presentation h1 {
    font-size: 156px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    color: var(--vibrant-pink);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}

.artist-presentation h2:not(.artist-date h2, .artist-reasons h2) {
    font-size: 60px;
    color: var(--dark-blue);
    font-weight: 400;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-O);
    text-transform: uppercase;
    margin-bottom: 0;
}

.artist-presentation img {
    width: 100%;
    margin-top: 55px;
    margin-bottom: 50px;
}

.artist-presentation p {
    font-size: 32px;
    color: var(--dark-blue);
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
}

.artist-video {
    position: relative;
    background-color: var(--white);
    padding-top: 10px;
    padding-bottom: 0;
}

.artist-video h2 {
    font-size: 190px;
    color: var(--darker-pink);
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-O);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}

.artist-video h2 span {
    display: block;
    font-size: 280px;
    font-family: var(--font-parfumerie);
    text-transform: lowercase;
    color: var(--blue);
    margin-top: -13rem;
}

.artist-spotify {
    position: relative;
    background-color: var(--blue);
    padding-top: 100px;
    padding-bottom: 100px;
}

.artist-spotify::before,
.artist-spotify::after {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: screen;
}

.artist-spotify::before {
    background-image: url("../images/shapes/glare-2.svg");
    background-size: 40rem;
    background-position: 100% -10rem;
}

.artist-spotify::after {
    background-image: url("../images/shapes/glare.svg");
    background-size: 50rem;
    background-position: 0% 40%;
}

.artist-spotify h2 {
    font-size: 156px;
    color: var(--white);
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-O);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 60px;
}

.artist-spotify iframe {
    padding: 0 100px;
    margin-top: 10px;
}

.artist-presentation-shape-2 {
    position: absolute;
    top: -8rem;
    right: -10rem;
    transform: rotate(150deg);
}

.artist-presentation-shape-2 img {
    width: 46rem;
}

.artist-reasons h2 {
    color: var(--darker-pink);
    font-size: 100px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-O);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}

.artist-reasons li p {
    font-size: 28px;
    text-align: start;
}

.artist-reasons li {
    margin-bottom: 30px;
}

.ol-circle {
    list-style: none;
    counter-reset: step;
    margin: 0;
    padding: 0 10rem;
}

.ol-circle > li {
    counter-increment: step;
    position: relative;
    padding-left: 4.5rem;
    line-height: 1.4;
}

.ol-circle > li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    border-radius: 50%;
    font-weight: 700;
    font-size: 32px;
    background: #fff;
}

.artist-reasons-title {
    background-color: var(--lime-green);
    padding: 6px 80px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Line up 2 */
.line-up-2 {
    position: relative;
    background-color: var(--white);
    padding-top: 60px;
    padding-bottom: 130px;
}

.line-up-2 h1 {
    font-size: 156px;
    color: var(--vibrant-orange);
    font-weight: 400;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    text-transform: uppercase;
    font-variation-settings: "opsz" 1;
    margin-bottom: 40px;
}

.filters a {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.filters {
    gap: 30px;
}

.filter-label {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: var(--white);
}

.filter-input {
    display: none;
}

.filters .filter-1 {
    background-color: var(--vibrant-orange);
    padding: 20px 40px;
    position: relative;
    border-radius: 15px;
}

.filter-input:checked + .filter {
    background-color: var(--vibrant-orange);
}

.filter-input:not(:checked) + .filter {
    background-color: var(--dark-blue);
}

.filter-input[value="filter-1"]:checked ~ label .filter-2 {
    background-color: var(--dark-blue);
}

.filter-input[value="filter-2"]:checked ~ label .filter-1 {
    background-color: var(--dark-blue);
}

.filters .filter-2 {
    background-color: var(--dark-blue);
    padding: 20px 40px;
    position: relative;
}

.dates {
    gap: 25px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-top: 45px;
    margin-bottom: 80px;
}

.date-1 {
    background-color: var(--pink);
    padding: 10px 30px;
}

.date-2 {
    background-color: var(--dark-blue);
    padding: 10px 30px;
}

.date-3 {
    background-color: var(--orange);
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: transparent;
    border-bottom-color: var(--orange);
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-width: 3px;
    color: var(--soft-black);
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border: none;
    border-bottom: 3px solid var(--orange);
}

.nav-tabs .nav-link {
    font-size: 20px;
    color: var(--soft-black);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.nav-tabs .nav-link:focus-visible {
    box-shadow: none;
}

.nav-tabs {
    gap: 30px;
}

.artists h2 {
    font-size: 96px;
    color: var(--soft-black);
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    font-weight: 400;
}

.line-up-2-shape-1 {
    position: absolute;
    right: -29rem;
    top: -6rem;
}

.line-up-2-shape-2 {
    position: absolute;
    bottom: -15rem;
    left: -26rem;
    z-index: 1;
}

.line-up-2-shape-2 img {
    width: 36rem;
}

.stages {
    background-color: var(--purple);
    position: relative;
    padding-top: 80px;
    padding-bottom: 130px;
    overflow: hidden;
}

.stages::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/shapes/shape-wave-gradient-purple.svg");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    z-index: 0;
}

.stageSwiper img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.stages h2 {
    font-size: 156px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    color: var(--lime-green);
    font-weight: 400;
    line-height: 140px;
}

.stages h3 {
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 50px;
}

.swiper-button-next-custom-4,
.swiper-button-prev-custom-4 {
    position: absolute;
    top: 62%;
    z-index: 1;
    color: var(--white);
    background-color: #00000036;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.swiper-button-next-custom-4 {
    right: -2rem;
}

.swiper-button-prev-custom-4 {
    left: -2rem;
}

.stage-name {
    text-align: center;
    font-size: 48px;
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    font-weight: 400;
}

.line-up-2-shape-3 {
    position: absolute;
    bottom: -6rem;
    right: -20rem;
}

.line-up-2-shape-3 img {
    width: 38rem;
}

/* Caring for the planet */
.positive-impacts {
    background-color: var(--light-purple);
    color: var(--white);
    text-align: center;
    padding: 100px;
}

.positive-impacts h1 {
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-Q), var(--font-salo-O);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 96px;
    line-height: 90px;
    margin-bottom: 20px;
}

.positive-impacts p {
    font-size: 24px;
    text-transform: uppercase;
    padding: 0 100px;
    margin-bottom: 0;
    font-weight: 700;
}

.planetary-principle {
    background-color: var(--rose);
    position: relative;
    padding: 100px;
    color: var(--white);
    z-index: 10;
}

.planetary-principle p {
    text-transform: uppercase;
    font-size: 24px;
    padding: 0 100px;
    margin-bottom: 0;
    font-weight: 700;
}

.planetary-principle-title {
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-Q), var(--font-salo-O);
    text-transform: uppercase;
}

.planetary-principle-title h2 {
    font-size: 90px;
    margin-bottom: 20px;
}

.ods {
    background-color: var(--soft-black);
    padding-top: 100px;
    color: var(--white);

    background-repeat: no-repeat;
    background-size: cover;
}

.ods h3 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding: 0 120px;
}

.ods h2 {
    font-family: var(--font-parfumerie);
    font-size: 96px;
    line-height: 100px;
}

.water {
    background-color: var(--medium-blue);
    position: relative;
    padding: 80px;
    color: var(--white);
    z-index: 10;
}

.water-shapes::before {
    content: "";
    background-image: url("../images/shapes/shape-rectangle-blue-2.svg");
    position: absolute;
    background-size: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.water h2 {
    font-size: 230px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    line-height: 160px;
    padding-top: 12px;
}

.water h3 {
    font-size: 140px;
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.water-description {
    background-color: var(--blue);
    padding: 10px 24px;
    text-transform: uppercase;
    border-radius: 10px;
    width: fit-content;
    font-size: 26px;
    font-weight: 700;
}

.water-description p {
    margin-bottom: 0;
}

.ticket {
    background-color: var(--orange);
    color: var(--white);
    text-align: center;
    padding: 90px;
}

.ticket::before {
    content: "";
    background-image: url("../images/shapes/shape-rectangle-orange-1.svg");
    position: absolute;
    background-size: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.ticket h1 {
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-size: 140px;
    line-height: 140px;
    position: relative;
    z-index: 10;
}

.ticket p {
    font-size: 24px;
    text-transform: uppercase;
    padding: 0 140px;
    margin-bottom: 0;
    font-weight: 700;
    position: relative;
    z-index: 10;
}

.ticket span {
    color: var(--darker-yellow);
}

.accessibility {
    background-color: var(--blue);
    position: relative;
    padding: 70px;
    color: var(--white);
    z-index: 10;
}

.accessibility-description p {
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 24px;
    padding: 0 100px;
    font-weight: 700;
}

.accessibility h2 {
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-size: 140px;
    margin-bottom: 0;
}

.accessibility-shapes::before {
    content: "";
    background-image: url("../images/shapes/shape-rectangle-1.svg");
    position: absolute;
    background-size: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
}

.accessibility-spotlight {
    font-family: var(--font-proxima);
    background-color: var(--orange);
    padding: 16px 36px;
    border-radius: 10px;
    width: fit-content;
    margin-top: 45px;
}

.accessibility-spotlight h3 {
    font-family: "proxima-nova", sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0;
    margin-bottom: 0;
}

.canvas {
    background-color: var(--blue);
    position: relative;
    padding: 100px;
    color: var(--white);
    z-index: 10;
}

.canvas-description {
    text-transform: uppercase;
    width: fit-content;
}

.canvas-title h2 {
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    font-feature-settings: var(--font-salo-O);
    font-size: 140px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.canvas-title {
    background-color: var(--orange);
    padding: 0 80px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.canvas p {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 700;
}

.caring-for-the-planet-shape-3 {
    position: absolute;
    top: -9rem;
    right: -6rem;
    z-index: 10;
}

.caring-for-the-planet-shape-3 img {
    width: 20rem;
}

.caring-for-the-planet-shape-4 {
    position: absolute;
    top: -11rem;
    right: -13rem;
    z-index: 10;
    transform: rotate(150deg);
}

.caring-for-the-planet-shape-5 {
    position: absolute;
    bottom: -11rem;
    left: -10rem;
    z-index: 11;
    transform: rotate(6deg);
}

/* Extra Page */
.extra-page-title {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.extra-page-title h1 {
    color: var(--white);
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    font-size: 140px;
    line-height: 140px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    margin-right: 6rem;
}

.extra-page-title h2 {
    text-transform: lowercase;
    font-family: var(--font-parfumerie);
    color: var(--yellow);
    font-size: 230px;
    margin-top: -4rem;
    margin-left: 6rem;
    line-height: 50%;
}

.extra-section {
    background-color: var(--orange);
    color: var(--white);
    text-align: center;
    padding: 90px;
}

.extra-section h2 {
    text-align: center;
    font-size: 146px;
    color: var(--white);
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    margin-bottom: 0;
}

.extra-section p {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin: 0 8rem;
    text-transform: uppercase;
    word-wrap: break-word;
    word-break: break-word;
}

.cards-title h2 {
    text-align: center;
    font-size: 96px;
    color: var(--vibrant-pink);
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    margin-bottom: 0;
}

.cards-title p {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--medium-blue);
    margin: 0 10rem;
}

.cards {
    margin-top: 90px;
}

.card {
    border: none;
}

.card h3 {
    font-size: 48px;
    color: var(--vibrant-orange);
    font-family: var(--font-salo);
    font-optical-sizing: none;
    font-variation-settings: "opsz" 1;
    text-transform: uppercase;
    padding-left: 24px;
}

.card img {
    margin-bottom: 23px;
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
}

.card p {
    font-size: 16px;
    font-weight: 700;
    color: var(--medium-blue);
    padding-left: 24px;
    margin-bottom: 0;
}

.cards-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.cards-section a,
.extra-carousel-section a {
    margin-top: 40px;
}

.extra-carousel-section {
    padding-bottom: 100px;
}

@media only screen and (max-width: 1400px) {
    header .nav-link {
        font-size: 15px;
    }

    .extra-page-title h1 {
        font-size: 130px;
    }

    .time-countdown {
        gap: 2rem;
    }

    .artist-presentation-shape-2 {
        top: -9rem;
        right: -18rem;
    }

    .artist-date {
        margin: 0 20rem;
    }

    .history h1 {
        line-height: 160px;
    }

    .carousel-section-1-shapes {
        background-position: 71rem -2rem, -11rem 13rem;
    }

    .carousel-section-2-shapes {
        background-position: 70rem -1rem, -15rem 17rem;
    }

    .carousel-section-3-shapes {
        background-position: 58rem 20rem, -8rem 6rem;
    }
}

@media only screen and (max-width: 1200px) {
    header .nav-link {
        font-size: 14px;
        margin: 0 6px 0 6px;
    }

    .artist-date {
        margin: 0 16rem;
    }

    .carousel-section-1-shapes {
        background-position: 59rem -2rem, -11rem 13rem;
    }

    .carousel-section-2-shapes {
        background-position: 61rem -1rem, -22rem 17rem;
    }

    .carousel-section-3-shapes {
        background-position: 48rem 19rem, -18rem 8rem;
    }

    .tickets-start img {
        margin-left: 0;
        margin-top: 40px;
    }

    .experiences p {
        padding: 0 8rem;
    }
}

@media only screen and (max-width: 992px) {
    .swiperHistory img:not(.year-star) {
        aspect-ratio: initial;
    }

    .swiperHistory .swiper-slide {
        height: 800px;
    }

    .history-word p {
        margin-right: 0;
    }

    .time-machine-title {
        margin-bottom: 100px;
    }

    .history-year img {
        max-width: 21rem;
    }

    .swiperHistory .swiper-slide img:not(.year-star) {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .extra-page-title h1 {
        font-size: 120px;
    }

    .history-year h2 {
        font-size: 100px;
    }

    .swiperHistory .content h3,
    .history-year-little h2 {
        font-size: 60px;
    }

    .swiperHistory .content p {
        font-size: 20px;
        margin: 0;
    }

    .history-year h2 {
        margin-bottom: 0;
    }

    .extra-page-title h2 {
        font-size: 210px;
        margin-top: -4rem;
        margin-left: 6rem;
    }

    .cards-title p,
    .extra-section p {
        margin: 0;
    }

    .line-up-artists h1 {
        font-size: 120px;
    }

    .line-up-artists h1 span {
        margin-top: -70px;
    }

    .shape-wave-1 {
        top: -50rem;
        left: -40rem;
    }

    .shape-wave-2 {
        top: -14rem;
        right: -65rem;
    }

    .benefited-institutions .charity-card-darker-pink-button,
    .benefited-institutions .charity-card-light-blue-button {
        max-width: 100%;
        padding: 20px;
    }

    .tickets-spacing {
        margin-bottom: 16px;
    }

    .sectors .accordion-body {
        max-width: 100%;
        min-height: 400px;
    }

    .experience-last-message h2 {
        font-size: 120px;
    }

    .experience-last-message-container hr {
        margin-top: -30px;
    }

    .experience-last-message .font {
        font-size: 100px;
    }

    .experience-last-message h2 span {
        font-size: 160px;
    }

    .experience,
    .experience2,
    .experience3 {
        overflow: visible;
    }

    .experience .swiper-wrapper,
    .experience2 .swiper-wrapper,
    .experience3 .swiper-wrapper {
        overflow: visible;
    }

    .experience-last-message h3 {
        font-size: 40px;
        line-height: 50px;
    }

    .artist-date {
        margin: 0 4rem;
    }

    .artist-video h2 span {
        margin-top: -12rem;
    }

    .artist-spotify h2 {
        font-size: 130px;
    }

    .ol-circle {
        padding: 0;
    }

    .artist-reasons h2 {
        font-size: 80px;
    }

    .carousel-section-1-shapes {
        background-position: 49rem -2rem, -17rem 20rem;
    }

    .carousel-section-3-shapes {
        background-position: 37rem 23rem, -18rem 8rem;
    }

    .carousel-section-2-shapes {
        background-position: 46rem -4rem, -22rem 17rem;
    }

    .experiences p {
        padding: 0;
    }

    .sectors {
        background-position-y: 20rem;
    }

    .accordion-body {
        padding-right: 16px;
        padding-left: 16px;
    }

    .accordion-header {
        padding-left: 16px;
    }

    header .nav-link {
        font-size: 30px;
    }

    .video-container video {
        height: 400px;
    }

    .video-container iframe {
        min-height: 1600px;
    }

    .footer-copyright p {
        font-size: 16px;
    }

    .navbar-brand {
        display: block;
        text-align: center;
    }

    .footer-bg {
        padding-bottom: 290px;
    }

    .navbar-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .navbar-nav .nav-link.custom-nav-link {
        padding-top: 0;
    }

    .navbar-nav .nav-link {
        padding: 20px 0;
        text-transform: uppercase;
    }

    .countdown-bg .primary-button {
        width: 100%;
        margin-top: 24px;
    }

    .swiper-button-prev-custom,
    .swiper-button-prev-custom-2,
    .swiper-button-prev-custom-3 {
        left: -3rem;
    }

    .swiper-button-next-custom,
    .swiper-button-next-custom-2,
    .swiper-button-next-custom-3 {
        right: -3rem;
    }

    .artist-spotify iframe {
        padding: 0;
    }

    .positive-impacts h1 {
        font-size: 70px;
        line-height: 70px;
    }

    .positive-impacts p,
    .planetary-principle p,
    .ticket p,
    .accessibility h3,
    .canvas p,
    .accessibility-description p {
        padding: 0;
    }

    .water h2 {
        font-size: 7rem;
        line-height: 70px;
    }

    .water h3 {
        line-height: 100px;
        font-size: 5rem;
    }

    .planetary-principle,
    .ticket,
    .canvas {
        padding: 70px;
    }
}

@media only screen and (max-width: 800px) {
    .carousel-control-next {
        right: -3rem;
    }

    .carousel-control-prev {
        left: -3rem;
    }
}

@media only screen and (max-width: 768px) {
    .history-year img {
        left: -5rem;
    }

    .artist-card p {
        text-align: center;
    }

    .time-machine-info-card img {
        max-height: 400px;
    }

    .time-machine-info-card .show-mobile {
        width: 100%;
    }

    .history-word {
        padding-top: 100px;
    }

    .history h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .time-machine-title {
        margin-bottom: 60px;
    }

    .time-machine-info-card h2 {
        font-size: 50px;
    }

    .time-machine-info {
        bottom: 10px;
        right: 10px;
    }

    .time-machine-title h2 {
        font-size: 130px;
        margin-top: -2rem;
        margin-left: 9rem;
    }

    .history-word h3 {
        font-size: 32px;
    }

    .time-machine-title h1 {
        font-size: 60px;
    }

    .history-word p {
        font-size: 20px;
    }

    .history-word img {
        max-width: 40px;
    }

    .history-word h2 {
        font-size: 40px;
        margin-bottom: 0;
    }

    .swiper-button-next-custom-5,
    .swiper-button-prev-custom-5 {
        display: none;
    }

    .swiperHistory2 {
        margin-top: -4rem;
    }

    .history-year h2 {
        font-size: 80px;
    }

    .swiperHistory .content h3 {
        font-size: 48px;
    }

    .swiperHistory .content p {
        font-size: 16px;
    }

    .history p {
        font-size: 20px;
    }

    .extra-section {
        padding: 50px 0;
    }

    .extra-page-title h2 {
        font-size: 150px;
        margin-top: -1rem;
        margin-left: 0rem;
        line-height: 50px;
    }

    .cards-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .card {
        margin-bottom: 30px;
    }

    .cards-title p,
    .extra-section p {
        font-size: 16px;
    }

    .extra-page-title h1 {
        font-size: 60px;
        line-height: 60px;
        margin-right: 0rem;
    }

    .cards-title h2,
    .extra-section h2 {
        font-size: 48px;
    }

    .artist-info {
        transform: translate(-50%, 0%);
        left: 50%;
    }

    .artist-card h2 {
        text-align: center;
    }

    .ticket-advise {
        font-size: 16px;
    }

    .faq .accordion-button {
        padding-right: 10px;
    }

    .sectors .accordion-body {
        padding-right: 24px;
        padding-left: 24px;
    }

    .sectors .accordion-button {
        font-size: 48px;
    }

    .sectors .accordion-body {
        font-size: 16px;
    }

    .sectors .accordion-header {
        padding-left: 24px;
        padding-right: 14px;
    }

    .sectors .accordion-body {
        min-height: 100%;
    }

    .ticket-link {
        margin-top: 45px;
    }

    .sectors-title {
        font-size: 100px;
    }

    .carousel-section-1-shapes::before {
        background-position: 100% -7rem;
    }

    .carousel-section-3-shapes::before {
        background-position: 100% -4rem;
    }

    .nav-link.custom-nav-link {
        font-size: 22px;
    }

    .carousel-section-1-shapes,
    .carousel-section-2-shapes,
    .carousel-section-3-shapes {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .carousel-section-1 h2,
    .carousel-section-2 h2,
    .carousel-section-3 h2 {
        margin-bottom: 50px;
    }

    .experience-last-message-container hr {
        margin-top: 12px;
    }

    .navbar-brand img {
        max-width: 64px;
    }

    .experience-last-message-container p {
        font-size: 32px;
    }

    header {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, 25px);
    }

    .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset, 25px);
    }

    .artist-presentation h1 {
        font-size: 70px;
    }

    .artist-reasons-title {
        padding: 6px 16px;
    }

    .ol-circle > li::before {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 20px;
    }

    .artist-reasons li p {
        font-size: 16px;
    }

    .ol-circle > li {
        padding-left: 3.5rem;
    }

    .artist-reasons h2 {
        font-size: 50px;
    }

    .artist-presentation h2:not(.artist-date h2) {
        font-size: 45px;
    }

    .artist-date h2 {
        font-size: 32px;
    }

    .artist-presentation-shape-2 {
        top: -1rem;
        right: -33rem;
    }

    .artist-date {
        margin: 0;
    }

    .artist-video h2 {
        font-size: 100px;
        margin-bottom: 16px;
    }

    .artist-video h2 span {
        font-size: 150px;
    }

    .artist-video h2 span {
        margin-top: -7rem;
    }

    .artist-spotify h2 {
        font-size: 100px;
        line-height: 100px;
    }

    .artist-presentation {
        padding-top: 60px;
    }

    .artist-presentation p {
        font-size: 16px;
    }

    .swiper-button-prev-custom,
    .swiper-button-prev-custom-2,
    .swiper-button-prev-custom-3 {
        left: -1rem;
    }

    .swiper-button-next-custom,
    .swiper-button-next-custom-2,
    .swiper-button-next-custom-3 {
        right: -1rem;
    }

    .experience-swiper img {
        max-width: 100%;
    }

    .carousel-section-1 h2,
    .carousel-section-2 h2,
    .carousel-section-3 h2 {
        font-size: 70px;
        line-height: 80px;
    }

    .experiences p {
        font-size: 16px;
    }

    .experience-last-message h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .experience-last-message h2 span {
        font-size: 130px;
        display: block;
    }

    .experience-last-message h3 span {
        font-size: 18px;
    }

    .experience-last-message h2 {
        font-size: 80px;
        line-height: 90px;
        text-align: center;
    }

    .experiences h1 {
        font-size: 80px;
        line-height: 100px;
    }

    .experience-last-message .font {
        font-size: 80px;
        position: relative;
        z-index: 2;
    }

    .history h1 {
        font-size: 100px;
        line-height: 100px;
    }

    .history {
        padding-top: 70px;
    }

    .faq h1 {
        font-size: 100px;
        line-height: 90px;
    }

    .contact .contact-subtitle {
        margin-bottom: 14px;
    }

    .contact .contact-title {
        font-size: 100px;
        line-height: 100px;
    }

    .ticket-category-title {
        line-height: 120px;
        font-size: 130px;
    }

    .counter-column span,
    .countdown-dots {
        font-size: 24px !important;
    }

    .time-countdown {
        gap: 1.5rem;
    }

    .countdown-bg .primary-button {
        font-size: 18px;
    }

    .video-container .line1 {
        font-size: 50px;
    }

    .video-container .line2 {
        font-size: 84px;
    }

    .video-container .line3 {
        font-size: 67px;
    }

    .shape-2 {
        height: 100px;
    }

    .ticket-types {
        margin-top: 0;
    }

    .shape-3 {
        margin-top: 0;
        height: 140px;
    }

    .benefited-title {
        font-size: 60px;
    }

    .follow a {
        font-size: 54px;
    }

    .follow h2 {
        font-size: 46px;
    }

    .follow {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .tickets-start,
    .sectors,
    .ticket-category,
    .benefited-institutions {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .tickets-start h1 {
        font-size: 100px;
    }

    .tickets-start p {
        font-size: 18px;
    }

    .ticket-category-title {
        font-size: 94px;
        margin-bottom: 60px;
        line-height: 96px;
    }

    .ticket-category::after {
        background-position: 0% 220%;
    }

    .shape-wave-1 {
        top: -14rem;
        left: -69rem;
    }

    .shape-wave-2 {
        top: 5rem;
        right: -70rem;
    }

    .ticket-category-title span {
        font-size: 140px;
        margin-top: -60px;
    }

    .carousel-control-next {
        right: -1rem;
    }

    .carousel-control-prev {
        left: -1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        background-size: 70% 90%;
    }

    .artist-card img {
        max-width: 100%;
        max-height: 400px;
    }

    .line-up-title {
        font-size: 26px;
        margin-bottom: -20px;
    }

    .line-up-artists h1 span {
        margin-top: -60px;
    }

    .line-up-artists h1 {
        line-height: 100px;
        font-size: 65px;
        margin-bottom: 0;
    }

    .line-up-artists h1 span {
        font-size: 130px;
    }

    .line-up-artists {
        padding-top: 100px;
        padding-bottom: 0;
    }

    .custom-video-btn {
        width: 80px;
        height: 80px;
        font-size: 30px;
    }

    .line-up-2-shape-2 {
        bottom: -15rem;
        left: -35rem;
    }

    .line-up-2-shape-1 {
        right: -34rem;
        top: -6rem;
    }

    .line-up-2 h1 {
        font-size: 128px;
    }

    .filters .filter-1,
    .filters .filter-2 {
        font-size: 16px;
    }

    .nav-tabs .nav-link {
        font-size: 18px;
    }

    .line-up-2-shape-3 {
        position: absolute;
        bottom: -19rem;
        right: -30rem;
    }

    .stages h2 {
        font-size: 128px;
        line-height: 100px;
    }

    .stages h3 {
        font-size: 16px;
    }

    .swiper-button-next-custom-4,
    .swiper-button-prev-custom-4 {
        top: 72%;
    }

    .swiper-button-next-custom-4 {
        right: -3rem;
    }

    .swiper-button-prev-custom-4 {
        left: -3rem;
    }

    .positive-impacts,
    .planetary-principle,
    .ticket,
    .canvas,
    .water,
    .accessibility {
        padding: 40px 0;
    }

    .positive-impacts h1 {
        font-size: 35px;
        line-height: 36px;
    }

    .positive-impacts p,
    .planetary-principle p,
    .ticket p,
    .water-description,
    .accessibility h3,
    .canvas p,
    .accessibility-description p {
        font-size: 16px;
    }

    .planetary-principle-title h2 {
        font-size: 50px;
    }

    .bolt {
        width: 22px;
    }

    .water h3 {
        line-height: 50px;
        font-size: 3rem;
        margin-bottom: 26px;
    }

    .water h2 {
        font-size: 4rem;
        line-height: 60px;
    }

    .ticket h1 {
        font-size: 80px;
        line-height: 80px;
    }

    .accessibility h2 {
        font-size: 80px;
    }

    .accessibility-spotlight h3 {
        font-size: 16px;
    }

    .experience-last-message .font {
        font-size: 50px;
    }

    .accessibility-spotlight {
        margin-top: 20px;
    }

    .canvas-title h2 {
        font-size: 56px;
    }
}

@media only screen and (max-width: 428px) {
    .contact .contact-subtitle {
        line-height: 50px;
    }

    .swiper-button-next-custom-4 {
        right: 1rem;
    }

    .swiper-button-prev-custom-4 {
        left: 1rem;
    }

    .filters .filter-1,
    .filters .filter-2 {
        padding: 20px;
    }

    .experience-last-message-container hr {
        width: 38px;
    }

    .nav-tabs {
        gap: 16px;
    }

    .nav-tabs .nav-link {
        font-size: 16px;
    }

    .time-countdown {
        gap: 1.1rem;
    }

    .swiper-button-prev-custom,
    .swiper-button-prev-custom-2,
    .swiper-button-prev-custom-3 {
        left: 1rem;
    }

    .swiper-button-next-custom,
    .swiper-button-next-custom-2,
    .swiper-button-next-custom-3 {
        right: 1rem;
    }

    .contact .contact-title {
        font-size: 64px;
        line-height: 70px;
    }

    header .nav-link {
        font-size: 22px;
    }

    .video-container h1 {
        font-size: 46px;
    }

    .counter-column span {
        font-size: 22px !important;
    }

    .counter-column .label {
        font-size: 14px !important;
    }

    .countdown-dot {
        font-size: 25px;
    }
}

.container-large {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    --bs-gutter-x: 1.5rem;
    padding-right: var(--bs-gutter-x, 0.5rem);
    padding-left: var(--bs-gutter-x, 0.5rem);
}

.banner-video-title {
    width: 70% !important;
}

@media (min-width: 576px) {
    .container-large {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container-large {
        max-width: 720px;
    }

    .banner-video-title {
        width: 40% !important;
    }
}
@media (min-width: 992px) {
    .container-large {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container-large {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container-large {
        max-width: 1600px;
    }
}

.navbar > .container-large {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.video-container-large {
    position: relative;
    width: 100vw;
    height: 700px;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    .video-container-large {
        height: 300px;
    }
}

#ytVideo {
    width: 100%;
    height: 100%;
    display: none;
}

.custom-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/*
.show-mobile,
.show-desktop {
    width: 100%;
    height: 100%;
    display: block;
} */
/*
.show-mobile img,
.show-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
