body {
    font-family: "Poppins", sans-serif;
    background: #000;
}

/* FULL SCREEN BACKGROUND */
.bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg-banner.svg') center/cover no-repeat;
    z-index: -1;
}

/* NAVBAR */
.header {
    background: #000;
    border-bottom: 1px solid #EB0093;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    padding: 0;
}

.navbar-dark .navbar-nav .nav-link:hover {
    background: linear-gradient(360deg, #EB0093 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTON */
.btn-pink {
    background: linear-gradient(0deg, #EB0093 0%, #FFFFFF 100%);
    border: none;
    color: #000;
    border-radius: 40px;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
}

/* HERO */
.hero {
    margin-top: 80px;
}

/* GLASS CARD */
.glass-card {
    background: #FFFFFF1A;
    border-radius: 30px;
    padding: 30px;
    height: 100%;
}

.glass-card .top-span {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
}

.glass-card h2 {
    background: linear-gradient(360deg, #EB0093 0%, #FFFFFF 100%);
    font-size: 57px;
    font-weight: 600;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.glass-card h5 {
    background: linear-gradient(180deg, #FFFFFF 0%, #EB0093 100%);
    font-size: 16px;
    font-weight: 600;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.glass-card h3 {
    margin: 20px 0px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}

.countdown-div {
    gap: 10px;
}

.countdown-div .card_event {
    background: #00000080;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    width: auto;

}

.countdown-div div p {
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

/* BADGE */
.badge {
    background: #00000080;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 400;
    margin-bottom: 20px;
}

.badge span {
    font-weight: 600;
}

.social-btn a:hover {
    color: #fff;
}

.social-btn a {
    background: #FFFFFF1A;
    border: 0;
    border-radius: 24px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}


/* SECTION TITLE */
.section-title {
    background: linear-gradient(180deg, #FFFFFF 0%, #EB0093 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}


.Ticket-section {
    padding-top: 80px;
}

.ticket-card {
    background-color: #FFFFFF1A;
    border-radius: 20px;
    padding: 30px;
}

.ticket-img {
    width: 100%;
    border-radius: 10px;
}

.Ticket-section .inner-text h5 {
    background: linear-gradient(360deg, #EB0093 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.Ticket-section .inner-text p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding-top: 15px;
    margin-bottom: 30px;
}

.bottom-area {
    gap: 10px;
}

.bottom-area div {
    background-color: #00000080;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* GALLERY */
.gallery-section {
    padding: 80px 0px;
}

.gallery-section img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: auto;
    transition: transform 0.4s ease;
}

.gallery-section img:hover {
    transform: scale(1.1);
}


/* footer */
footer {
    padding: 20px 0px;
    border-top: 1px solid #FFFFFF4D;
}

footer a {
    color: transparent;
}

footer a:hover {
    color: transparent;
}

footer p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}


@media (max-width: 767px) {
    .navbar-dark .navbar-nav .nav-link {
        padding: 15px 10px;
    }

    .navbar-collapse {
        padding: 20px 0px;
    }

    .glass-card h2 {
        font-size: 40px;
    }

    .glass-card {
        padding: 25px;
    }

    .ticket-img {
        width: 100%;
    }

    .countdown-div div {
        font-size: 16px;
    }

    .countdown-div div p {
        font-size: 12px;
    }

    .gallery-section {
        padding: 40px 0px;
    }

    .Ticket-section {
        padding-top: 40px;
    }

    .section-title {
        font-size: 30px;
    }

    .badge {
        margin-bottom: 0px;
    }

    .glass-card p {
        font-size: 14px;
    }

    .countdown-div .card_event {
        width: auto;
    }

    .hero {
        margin-top: 40px;
    }
}

@media screen and (min-width: 768px) and (max-width:1024px) {}