.bi {
    line-height: 10px !important;
}

.chakra-petch-light {
    font-family: "Chakra Petch", system-ui;
    font-weight: 300;
    font-style: normal;
}

.chakra-petch-regular {
    font-family: "Chakra Petch", system-ui;
    font-weight: 400;
    font-style: normal;
}

.chakra-petch-medium {
    font-family: "Chakra Petch", system-ui;
    font-weight: 500;
    font-style: normal;
}

.chakra-petch-semibold {
    font-family: "Chakra Petch", system-ui;
    font-weight: 600;
    font-style: normal;
}

.chakra-petch-bold {
    font-family: "Chakra Petch", system-ui;
    font-weight: 700;
    font-style: normal;
}

.chakra-petch-light-italic {
    font-family: "Chakra Petch", system-ui;
    font-weight: 300;
    font-style: italic;
}

.chakra-petch-regular-italic {
    font-family: "Chakra Petch", system-ui;
    font-weight: 400;
    font-style: italic;
}

.chakra-petch-medium-italic {
    font-family: "Chakra Petch", system-ui;
    font-weight: 500;
    font-style: italic;
}

.chakra-petch-semibold-italic {
    font-family: "Chakra Petch", system-ui;
    font-weight: 600;
    font-style: italic;
}

.chakra-petch-bold-italic {
    font-family: "Chakra Petch", system-ui;
    font-weight: 700;
    font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6,
.chakra {
    font-family: 'Chakra Petch' !important;
    text-transform: uppercase !important;
}

.chakra-lowercase {
    font-family: 'Chakra Petch' !important;
}

.text-shadow {
    filter: drop-shadow(0 0 0.75rem rgb(0, 0, 0)) !important;
}

.hero-wrapper {
    height: 80dvh !important;
}

@media only screen and (max-width: 600px) {
    .hero-wrapper {
        height: 60dvh !important;
    }
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(18,21,25,0.4) 50%, rgba(18,21,25,1) 95%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.features-gradient {
    background: linear-gradient(180deg, rgba(18,21,25,0.2) 20%, rgba(18,21,25,1) 90%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.join-gradient {
    background: linear-gradient(180deg, rgba(18, 21, 25, 0) 68%, rgba(18, 21, 25, 0.8) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 96%;
}

.darken-overlay {
    background: rgba(18,21,25,0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.swiper-gradient-overlay {
    position: absolute;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, rgba(18,21,25,0) 0%, rgba(18,21,25,1) 90%);
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.cover-darken {
    background-color: rgba(18,21,25,0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.title-line {
    height: 2px;
    width: 100%;
    /* display: inline-block; */
    background-color:  var(--ar-heading-color);
}

.marquee {
    --gap: 1rem;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    /* margin-top: -50px; */
}

.marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: var(--gap);
    animation: scroll 30s linear infinite;
}

.marquee img {
    opacity: 0.5;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* .giveaway-card.active .card {
    box-shadow: inset 0 0 0 2px rgba(var(--ar-success-rgb), 0.5);
} */

.giveaway-card.active.nav-link {
    border: 0px !important;
}

.giveaway-card.active .giveaway-card-container {
    padding: 0 !important;
    transition: all 0.2s ease;
}

.giveaway-card.active .card {
    border: 4px solid rgba(var(--ar-success-rgb), 0.5);
    transition: all 0.2s ease;
}
.giveaway-card.nav-link.active:not([data-bs-toggle=dropdown]) {
    pointer-events: all !important;
}

.giveaway-vertical-marker {
    height: 100px !important;
    width: 1px !important;
    transition: all 0.2s ease;
}

.active .giveaway-vertical-marker {
    height: 50px !important;
    transition: all 0.2s ease;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-radius: 0;
}