/**
* Template Name: FlexStart
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Updated: Nov 01 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root{
    --ssr-coral: #F25A3C;
    --ssr-mint: #78D7D1;
    --ssr-cream: #F8F5EF;
    --ssr-dark: #222222;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'Outfit', sans-serif;
}

/*** Hero Header ***/
.hero-header {
    position: relative;
    height: 100vh;
    min-height: 800px;

    background-image: url('../img/hero-back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 650px;

    margin-left: 7%;
    margin-top: -40px;
}

.hero-tagline {
    display: block;

    font-size: 32px;
    font-weight: 300;

    color: #222;
    margin-bottom: 15px;

    letter-spacing: -1px;
}

.hero-title {
    font-size: 92px;
    font-weight: 800;

    line-height: 0.9;
    margin: 0;

    color: #F25A3C;
    text-transform: uppercase;
}

.hero-title .year {
    color: #222;
}

.hero-desc {
    max-width: 500px;

    margin-top: 25px;
    margin-bottom: 35px;

    font-size: 18px;
    line-height: 1.8;

    color: #444;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-registerhero {
    padding: 16px 40px;
    border-radius: 50px;

    background: #F25A3C;
    color: #fff;

    text-decoration: none;
    font-weight: 700;
}

.btn-registerhero:hover {
    background: #e24c2f;
}

.btn-outline {
    padding: 16px 40px;
    border-radius: 50px;

    border: 2px solid #F25A3C;
    color: #F25A3C;

    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {

    .hero-header {
        min-height: 700px;
        align-items: flex-start;
        padding-top: 120px;
    }

    .hero-content {
        margin-left: 25px;
        margin-right: 25px;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Section RUNNER CHECKER*/ 
.runner-check-section{
    background: var(--ssr-cream);
    position: relative;
    overflow: hidden;
}

/* Decorative Pattern */
.runner-check-section::before{
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;

    width: 350px;
    height: 350px;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(120,215,209,.35) 0px,
            rgba(120,215,209,.35) 10px,
            transparent 10px,
            transparent 25px
        );

    transform: rotate(-45deg);
}

/* Badge */
.runner-badge{
    border: 1px solid rgba(242,90,60,.15);
    background: white;
    color: var(--ssr-coral);
    font-weight: 600;
    letter-spacing: .5px;
}

/* Heading */
.runner-title{
    font-size: 3rem;
    font-weight: 800;
    color: var(--ssr-dark);
}

.runner-title span{
    color: var(--ssr-coral);
}

.runner-desc{
    color: #666;
    font-size: 1.05rem;
}

/* Input */
.runner-input{
    height: 64px;
    border-radius: 50px;
    border: 2px solid #eee;
    background: white;

    transition: all .3s ease;
}

.runner-input:focus{
    border-color: var(--ssr-mint);
    box-shadow: 0 0 0 0.25rem rgba(120,215,209,.2);
}

/* Button */
.btn-runner-check{
    height: 64px;
    min-width: 180px;

    border: none;
    border-radius: 50px;

    background: var(--ssr-coral);
    color: white;

    font-weight: 700;
    letter-spacing: .5px;

    transition: .3s;
}

.btn-runner-check:hover{
    background: #e14d31;
    color: white;

    transform: translateY(-2px);
}

/* Card Effect */
.runner-check-card{
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);

    border-radius: 30px;

    padding: 40px;

    box-shadow: 0 10px 40px rgba(0,0,0,.06);
}

/*------ Section RUNNER CHECKER END*-------/ 

/* SECTION REGISTRATION*/
#kategori{
    background: var(--ssr-cream) !important;
    position: relative;
    overflow: hidden;
}

/* badge registration */
#kategori .btn-sm{
    background:#fff;
    color:var(--ssr-coral) !important;
    border-color:rgba(242,90,60,.2) !important;
    font-weight:600;
    padding:10px 22px;
}

/* title */
#kategori h1{
    color:var(--ssr-dark);
    font-weight:800;
    letter-spacing:1px;
}

/* card */
.case-item{
    border-radius:30px !important;
    overflow:hidden;
    background:#fff;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.4s;
}

.case-item:hover{
    transform:translateY(-8px);
}

.case-item img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:.6s;
}

.case-item:hover img{
    transform:scale(1.05);
}

.case-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(255,255,255,.20),
        rgba(255,255,255,0)
    );
}

.case-overlay h4{
    font-size:1.5rem;
    font-weight:700;
    color:#fff;
    line-height:1.6;
}

.case-overlay .text-warning{
    color:#FFD166 !important;
}

.button-71{
    position:absolute;

    left:30px;
    bottom:30px;

    z-index:15;

    border:none;
    border-radius:50px;

    background:#F25A3C;
    color:#fff;

    padding:14px 30px;

    font-weight:700;

    transition:.3s;
}

.button-71:hover{
    background:#E14D31;
}

.button-72{
    position:absolute;

    left:30px;
    bottom:30px;

    z-index:15;

    border:none;
    border-radius:50px;

    background:#333;
    color:#fff;

    padding:14px 30px;

    font-weight:700;

    cursor:not-allowed;
}
.category-ribbon{
    display:inline-block;

    width:fit-content;

    background:rgba(120,215,209,.95);

    color:#222;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;
    font-weight:700;

    margin-bottom:15px;
}

#kategori::before{
    content:'';

    position:absolute;
    right:-120px;
    top:-80px;

    width:350px;
    height:350px;

    background:
    repeating-linear-gradient(
        90deg,
        rgba(120,215,209,.25) 0,
        rgba(120,215,209,.25) 8px,
        transparent 8px,
        transparent 22px
    );

    transform:rotate(45deg);
}


#kategori{
    background:#F8F5EF !important;
}

#kategori h1{
    color:#222;
    font-weight:800;
}

#kategori .btn-sm{
    color:#F25A3C !important;
    border-color:#F25A3C !important;
    background:#fff;
}

.case-item{
    position:relative;
    overflow:hidden;

    border-radius:30px;

    background:#fff;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.3s;
}

.case-item:hover{
    transform:translateY(-8px);
}

.case-item img{
    width:100%;
    display:block;
}


.price-badge{
    position:absolute;

    top:25px;
    right:25px;

    z-index:20;

    background:rgba(255,255,255,.95);

    padding:15px 20px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.price-badge small{
    display:block;

    color:#666;

    font-size:11px;

    letter-spacing:1px;

    margin-bottom:5px;
}

.price-badge .price{
    font-size:36px;

    font-weight:800;

    color:#F25A3C;

    line-height:1;
}

.price-badge span{
    color:#222;
    font-size:13px;
}


@media (max-width:768px){

    .button-71,
    .button-72{
        left:15px;
        right:15px;
        bottom:15px;

        width:calc(100% - 30px);
    }

    .price-badge{
        top:15px;
        right:15px;
    }
}


/* SECTION REGISTRATION END */


/* SECTION INFO */

.event-info-section{
    background:#F8F5EF;
    position:relative;
    overflow:hidden;
}

.event-info-section::before{
    content:"";

    position:absolute;

    top:-100px;
    right:-100px;

    width:350px;
    height:350px;

    background:
    repeating-linear-gradient(
        90deg,
        rgba(120,215,209,.25) 0,
        rgba(120,215,209,.25) 8px,
        transparent 8px,
        transparent 22px
    );

    transform:rotate(45deg);
}

.section-badge{
    display:inline-block;

    background:#fff;

    color:#F25A3C;

    border:1px solid rgba(242,90,60,.2);

    border-radius:50px;

    padding:10px 20px;

    font-weight:600;

    margin-bottom:20px;
}

.section-title{
    font-size:3rem;
    font-weight:800;

    line-height:1.1;

    color:#222;

    margin-bottom:25px;
}

.section-title span{
    color:#F25A3C;
}

.section-description{
    color:#666;
    font-size:1.05rem;
    line-height:1.9;
}

.info-highlight{
    display:flex;
    gap:20px;

    margin-top:35px;
}

.info-item{
    flex:1;

    background:#fff;

    border-radius:20px;

    padding:20px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.info-item h4{
    color:#F25A3C;
    font-size:2rem;
    font-weight:800;

    margin-bottom:5px;
}

.info-item span{
    color:#666;
}

.event-info-slider{
    border-radius:30px;
    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.event-info-slider img{
    border-radius:30px;
}

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

    top:50%;
    transform:translateY(-50%);

    background:#fff;

    border-radius:50%;

    opacity:1;
}

.carousel-control-prev{
    left:20px;
}

.carousel-control-next{
    right:20px;
}

.carousel-control-prev i,
.carousel-control-next i{
    color:#F25A3C;
    font-size:18px;
}

@media(max-width:768px){

    .section-title{
        font-size:2rem;
    }

    .info-highlight{
        flex-direction:column;
    }
}

/* SECTION INFO END */


/* SECTION BENEFIT  */

.benefit-section{
    background:#F8F5EF;
    position:relative;
    overflow:hidden;
}

.benefit-section::before{
    content:'';

    position:absolute;

    left:-100px;
    bottom:-100px;

    width:300px;
    height:300px;

    background:
    repeating-linear-gradient(
        90deg,
        rgba(120,215,209,.25) 0,
        rgba(120,215,209,.25) 8px,
        transparent 8px,
        transparent 22px
    );

    transform:rotate(-45deg);
}

.section-badge{
    display:inline-block;

    background:#fff;

    color:#F25A3C;

    padding:10px 20px;

    border-radius:50px;

    border:1px solid rgba(242,90,60,.2);

    font-weight:600;

    margin-bottom:20px;
}

.section-title{
    font-size:3rem;
    font-weight:800;
    color:#222;
}

.section-subtitle{
    max-width:600px;
    margin:auto;
    color:#666;
}

.benefit-card{
    background:#fff;

    border-radius:24px;

    padding:30px 20px;

    text-align:center;

    height:100%;

    transition:.3s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.benefit-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.benefit-card i{
    font-size:42px;

    color:#F25A3C;

    margin-bottom:15px;
}

@media(max-width:768px){

    .section-title{
        font-size:2rem;
    }

    .benefit-card{
        padding:20px 10px;
    }

    .benefit-card i{
        font-size:32px;
    }

}

/* SECTION BENEFIT END */



/* SECTION FAQ */

#faq{
    background:#F8F5EF;
    position:relative;
    overflow:hidden;
}

#faq::before{
    content:'';

    position:absolute;

    right:-120px;
    bottom:-120px;

    width:350px;
    height:350px;

    background:
    repeating-linear-gradient(
        90deg,
        rgba(120,215,209,.25) 0,
        rgba(120,215,209,.25) 8px,
        transparent 8px,
        transparent 22px
    );

    transform:rotate(45deg);
}

.section-badge{
    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#fff;

    color:#F25A3C;

    border:1px solid rgba(242,90,60,.15);

    font-weight:600;

    margin-bottom:20px;
}

.section-title{
    font-size:3rem;
    font-weight:800;

    color:#222;

    margin-bottom:15px;
}

.section-subtitle{
    color:#666;
    font-size:1.05rem;
}

#faq .accordion-item{
    border:none;

    margin-bottom:15px;

    border-radius:20px !important;

    overflow:hidden;

    background:#fff;

    box-shadow:
        0 10px 25px rgba(0,0,0,.05);
}

#faq .accordion-button{
    background:#fff;

    color:#222;

    font-weight:700;

    padding:22px 25px;

    font-size:1.05rem;

    box-shadow:none !important;
}

#faq .accordion-button:not(.collapsed){
    background:#fff;

    color:#F25A3C;
}

#faq .accordion-button::after{
    background-image:none !important;

    content:"+";

    font-size:28px;

    font-weight:300;

    color:#F25A3C;

    transform:none;
}
#faq .accordion-button:not(.collapsed)::after{
    content:"−";
}

#faq .accordion-body{
    color:#555;

    line-height:1.9;

    padding:0 25px 25px;
}

.price-list{
    list-style:none;
    padding-left:0;
    margin-top:10px;
}

.price-list li{
    background:#fafafa;

    padding:12px 15px;

    border-radius:12px;

    margin-bottom:10px;

    border-left:4px solid #F25A3C;
}

.price-list .label{
    color:#F25A3C;
    font-weight:700;
}

@media(max-width:768px){

    .section-title{
        font-size:2rem;
    }

    #faq .accordion-button{
        font-size:15px;
        padding:18px;
    }

}
/* SECTION FAQ END */


/* CONTACT */

/* ===========================
   CONTACT SECTION
=========================== */

.contact-section{
    background:#F8F5EF;
    position:relative;
    overflow:hidden;
}

/* Decorative Pattern */
.contact-section::before{
    content:'';

    position:absolute;

    top:-120px;
    left:-120px;

    width:350px;
    height:350px;

    background:
    repeating-linear-gradient(
        90deg,
        rgba(120,215,209,.20) 0,
        rgba(120,215,209,.20) 8px,
        transparent 8px,
        transparent 22px
    );

    transform:rotate(-45deg);
}

/* Badge */
.section-badge{
    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#fff;

    color:#F25A3C;

    border:1px solid rgba(242,90,60,.15);

    font-weight:600;

    margin-bottom:20px;
}

/* Title */
.section-title{
    font-size:3rem;
    font-weight:800;

    color:#222;

    margin-bottom:15px;
}

.section-subtitle{
    color:#666;
    max-width:650px;
    margin:auto;
}

/* Card */
.contact-card{
    background:#fff;

    border-radius:28px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
}

.contact-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.08);
}

/* Icon */
.contact-icon{
    width:80px;
    height:80px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            #F25A3C,
            #FF7D5F
        );

    color:white;

    font-size:32px;
}

/* Heading */
.contact-card h4{
    color:#222;
    font-weight:700;
    margin-bottom:15px;
}

/* Description */
.contact-card p{
    color:#666;
    line-height:1.8;
    min-height:60px;
}

/* Contact Name */
.contact-name{
    font-weight:700;

    color:#F25A3C;

    margin-bottom:20px;
}

/* Button */
.contact-btn{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    width:100%;

    background:#F25A3C;

    color:white;

    text-decoration:none;

    border-radius:50px;

    padding:14px 20px;

    font-weight:700;

    transition:.3s;
}

.contact-btn:hover{
    background:#E54F31;
    color:white;
}

/* Instagram */
.instagram-btn{
    background:#78D7D1;
}

.instagram-btn:hover{
    background:#5FC8C1;
}

/* Mobile */
@media(max-width:768px){

    .section-title{
        font-size:2rem;
    }

    .contact-card{
        padding:30px 20px;
    }

    .contact-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

}

/* CONTACT END */

/* FOOTER */

/* ==========================================
   FOOTER SECTION
========================================== */

.footer-section{
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        #F8F5EF 0%,
        #FFFDF9 100%
    );

    padding: 90px 0 35px;

    border-top: 1px solid rgba(0,0,0,.06);
}

/* Decorative Pattern */

.footer-section::before{
    content: '';

    position: absolute;

    top: -180px;
    right: -180px;

    width: 450px;
    height: 450px;

    background:
    repeating-linear-gradient(
        90deg,
        rgba(120,215,209,.15) 0,
        rgba(120,215,209,.15) 8px,
        transparent 8px,
        transparent 22px
    );

    transform: rotate(45deg);

    pointer-events: none;
}

/* ==========================================
   LOGO
========================================== */

.footer-logo{
    width: 100%;
    max-width: 320px;
    height: auto;
}

/* ==========================================
   DESCRIPTION
========================================== */

.footer-description{
    color: #666;

    line-height: 1.9;

    font-size: 15px;

    max-width: 520px;
}

/* ==========================================
   TITLE
========================================== */

.footer-title{
    color: #222;

    font-size: 1.15rem;

    font-weight: 700;

    margin-bottom: 24px;

    position: relative;
}

.footer-title::after{
    content: '';

    display: block;

    width: 50px;
    height: 3px;

    margin-top: 10px;

    border-radius: 50px;

    background: #F25A3C;
}

/* ==========================================
   LINKS
========================================== */

.footer-links{
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-links li{
    margin-bottom: 14px;
}

.footer-links a{
    color: #555;

    text-decoration: none;

    transition: all .3s ease;
}

.footer-links a:hover{
    color: #F25A3C;

    padding-left: 6px;
}

/* ==========================================
   CONTACT
========================================== */

.footer-contact p{
    color: #555;

    margin-bottom: 14px;

    display: flex;
    align-items: center;

    gap: 12px;
}

.footer-contact i{
    color: #F25A3C;

    width: 22px;

    font-size: 18px;
}

/* ==========================================
   SOCIAL BUTTON
========================================== */

.footer-social{
    display: flex;

    gap: 15px;

    margin-top: 25px;
}

.footer-social a{
    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: #fff;

    color: #222;

    box-shadow:
        0 8px 20px rgba(0,0,0,.08);

    transition: all .3s ease;
}

.footer-social a:hover{
    background: #F25A3C;

    color: #fff;

    transform: translateY(-4px);
}

/* ==========================================
   DIVIDER
========================================== */

.footer-divider{
    height: 1px;

    background: rgba(0,0,0,.08);

    margin-top: 50px;
    margin-bottom: 30px;
}

/* ==========================================
   COPYRIGHT
========================================== */

.footer-bottom{
    color: #666;

    font-size: .95rem;
}

.footer-bottom strong{
    color: #F25A3C;
}

/* ==========================================
   HOVER EFFECT
========================================== */

.footer-section a{
    transition: all .3s ease;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px){

    .footer-section{
        padding-top: 70px;
    }

    .footer-logo{
        max-width: 260px;
        margin-bottom: 20px;
    }

    .footer-title{
        margin-top: 15px;
    }

    .footer-bottom{
        text-align: center;
    }

    .footer-bottom .col-lg-6:last-child{
        margin-top: 10px;
    }
}

@media (max-width: 768px){

    .footer-section{
        padding-top: 60px;
    }

    .footer-logo{
        max-width: 220px;
    }

    .footer-title{
        font-size: 1.05rem;
    }

    .footer-description{
        font-size: 14px;
    }

    .footer-social{
        justify-content: center;
    }

    .footer-contact p{
        justify-content: center;
    }
}

/* FOOTER END */

/* ===================================
   REGISTRATION CLOSED
=================================== */

.registration-closed-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background:
        radial-gradient(circle at top right,
            rgba(232,106,51,.08),
            transparent 30%),
        radial-gradient(circle at bottom left,
            rgba(122,31,31,.06),
            transparent 40%),
        #f8f5ef;
}

.closed-wrapper {
    max-width: 850px;
    margin: auto;
    text-align: center;
    background: #ffffff;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}

.closed-wrapper::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(232,106,51,.08);
}

.closed-wrapper::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(122,31,31,.06);
}

.closed-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #7A1F1F,
        #E86A33
    );
    color: #fff;
    font-size: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(122,31,31,.25);
}

.closed-badge {
    display: inline-block;
    background: rgba(232,106,51,.12);
    color: #E86A33;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.closed-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.closed-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.closed-info-card {
    max-width: 650px;
    margin: 0 auto 40px;
    padding: 25px;
    background: #faf7f3;
    border-radius: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #444;
    font-weight: 500;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #E86A33;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;

    background: linear-gradient(
        135deg,
        #7A1F1F,
        #E86A33
    );

    transition: all .3s ease;
}

.instagram-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(122,31,31,.25);
}

.instagram-btn i {
    font-size: 20px;
}

/* Mobile */

@media (max-width: 768px) {

    .registration-closed-section {
        padding: 100px 15px 60px;
    }

    .closed-wrapper {
        padding: 40px 25px;
    }

    .closed-title {
        font-size: 2rem;
    }

    .closed-description {
        font-size: 1rem;
    }

    .info-item {
        flex-direction: column;
        gap: 5px;
    }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* REGISTRATION HERO */
/* ====================================
   REGISTRATION HERO
==================================== */

.registration-hero{

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #FFFDF9 0%,
            #F8F5EF 100%
        );

    padding: 180px 0 120px;

    border-bottom: 1px solid rgba(0,0,0,.05);
}

/* ====================================
   PATTERN LEFT
==================================== */

.registration-hero::before{

    content: '';

    position: absolute;

    top: -150px;
    left: -150px;

    width: 450px;
    height: 450px;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(120,215,209,.18) 0,
            rgba(120,215,209,.18) 8px,
            transparent 8px,
            transparent 22px
        );

    transform: rotate(-45deg);

    z-index: 0;
}

/* ====================================
   PATTERN RIGHT
==================================== */

.registration-hero::after{

    content: '';

    position: absolute;

    bottom: -180px;
    right: -180px;

    width: 500px;
    height: 500px;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(242,90,60,.08) 0,
            rgba(242,90,60,.08) 8px,
            transparent 8px,
            transparent 22px
        );

    transform: rotate(45deg);

    z-index: 0;
}

/* ====================================
   CONTENT
==================================== */

.hero-content{

    position: relative;

    z-index: 2;

    max-width: 800px;
}

/* ====================================
   BADGE
==================================== */

.hero-badge{

    display: inline-block;

    padding: 10px 24px;

    border-radius: 50px;

    background: #fff;

    border: 1px solid rgba(242,90,60,.15);

    color: #F25A3C;

    font-weight: 600;

    margin-bottom: 25px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.04);
}

/* ====================================
   TITLE
==================================== */

.hero-title{

    font-size: 4rem;

    font-weight: 800;

    color: #222;

    line-height: 1.1;

    margin-bottom: 20px;
}

/* Gradient Text */

.hero-title span{

    color: #F25A3C;
}

/* ====================================
   SUBTITLE
==================================== */

.hero-subtitle{

    color: #666;

    font-size: 1.15rem;

    line-height: 1.9;

    max-width: 650px;

    margin-bottom: 30px;
}

/* ====================================
   BREADCRUMB
==================================== */

.hero-breadcrumb{

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 15px;

    font-weight: 500;
}

.hero-breadcrumb a{

    color: #F25A3C;

    text-decoration: none;

    transition: .3s;
}

.hero-breadcrumb a:hover{

    color: #78D7D1;
}

.hero-breadcrumb span{

    color: #999;
}

/* ====================================
   DECORATION CIRCLE
==================================== */

.hero-circle{

    position: absolute;

    right: 10%;

    top: 50%;

    transform: translateY(-50%);

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242,90,60,.15),
            rgba(242,90,60,.02)
        );

    z-index: 1;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:991px){

    .registration-hero{

        padding: 150px 0 90px;
    }

    .hero-title{

        font-size: 3rem;
    }

    .hero-circle{

        width:200px;
        height:200px;
    }
}

@media(max-width:768px){

    .registration-hero{

        padding: 130px 0 70px;
    }

    .hero-content{

        text-align:center;
    }

    .hero-title{

        font-size: 2.3rem;
    }

    .hero-subtitle{

        font-size: 1rem;
    }

    .hero-breadcrumb{

        justify-content:center;
    }

    .hero-circle{

        display:none;
    }

    .registration-hero::before,
    .registration-hero::after{

        opacity:.4;
    }
}
/* REGISTRATION HERO END */


/* REGIS FORM */

/* ===================================
   PAGE
=================================== */

body{
    background:#F8F5EF;
}

/* ===================================
   CATEGORY CARD
=================================== */

.ticket-selector-card{

    background:#fff;

    border-radius:24px;

    padding:30px;

    margin-bottom:30px;

    box-shadow:
    0 10px 35px rgba(0,0,0,.06);
}

/* ===================================
   RADIO BUTTON
=================================== */

.radio-button{

    position:relative;

    cursor:pointer;

    margin-bottom:15px;
}

.radio-button input{

    display:none;
}

.radio-button span{

    display:block;

    padding:14px 26px;

    border-radius:50px;

    background:#fff;

    border:2px solid #ececec;

    font-weight:700;

    font-size:14px;

    transition:.3s;

    color:#333;
}

.radio-button input:checked + span{

    background:#F25A3C;

    border-color:#F25A3C;

    color:#fff !important;

    box-shadow:
    0 10px 20px rgba(242,90,60,.25);
}

.radio-button input:disabled + span{

    opacity:.55;

    cursor:not-allowed;
}

/* ===================================
   FORM CARD
=================================== */

.registration-card{

    background:#fff;

    border-radius:28px;

    padding:40px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

/* ===================================
   PRICE CARD
=================================== */

#price-group{

    background:
    linear-gradient(
        135deg,
        #F25A3C,
        #FF8669
    );

    border-radius:20px;

    padding:25px;

    margin-bottom:25px;
}

#price-group label{

    color:white;

    font-weight:600;

    margin-bottom:10px;
}

#priceView{

    background:transparent !important;

    border:none !important;

    color:white !important;

    font-size:34px;

    font-weight:800;

    box-shadow:none !important;
}

/* ===================================
   LABEL
=================================== */

.required-label{

    font-weight:700;

    color:#1F2937;

    margin-bottom:8px;
}

/* ===================================
   FORM CONTROL
=================================== */

.form-control,
.form-select{

    height:58px;

    border-radius:14px;

    border:1px solid #ddd;

    padding-left:18px;

    transition:.3s;
}

.form-control:focus,
.form-select:focus{

    border-color:#78D7D1;

    box-shadow:
    0 0 0 .2rem rgba(120,215,209,.2);
}

/* textarea support */

textarea.form-control{

    height:auto;
}

/* ===================================
   ALERT
=================================== */

.alert-warning{

    border:none;

    border-radius:18px;

    background:#FFF5E6;

    color:#9A6700;
}

/* ===================================
   FILE INPUT
=================================== */

input[type=file]{

    padding:12px;
}

/* ===================================
   COMMUNITY BOX
=================================== */

#comunity-group{

    background:#F9FAFB;

    padding:25px;

    border-radius:18px;

    margin-bottom:25px;
}

/* ===================================
   CHECKBOX
=================================== */

input[type="checkbox"]{

    accent-color:#F25A3C;
}

#terms + label,
#bpjs + label{

    font-size:15px;

    color:#444;
}

#terms + label a,
#bpjs + label a{

    color:#F25A3C;

    font-weight:600;

    text-decoration:none;
}

/* ===================================
   EMAIL VALIDATION
=================================== */

.email-validation-message{

    font-size:14px;

    font-weight:600;

    margin-top:8px;

    display:block;
}

/* ===================================
   BUTTON REGISTER
=================================== */

.btn-register{

    background:#F25A3C !important;

    border:none !important;

    color:white !important;

    height:60px;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    padding:0 50px;

    transition:.3s;
}

.btn-register:hover{

    background:#de492b !important;

    transform:translateY(-2px);
}

.btn-register:disabled{

    background:#BDBDBD !important;

    cursor:not-allowed;
}

/* ===================================
   DYNAMIC FORM
=================================== */

#dynamic-forms,
#dynamic-formsUmum{

    margin-top:20px;
}

/* ===================================
   PREVIEW IMAGE
=================================== */

#student-card-img{

    border-radius:15px !important;

    width:100% !important;

    max-width:350px !important;

    height:auto !important;

    object-fit:cover;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

    .registration-card{

        padding:25px;
    }

    .ticket-selector-card{

        padding:20px;
    }

    .radio-button{

        width:100%;
    }

    .radio-button span{

        text-align:center;
    }

    #priceView{

        font-size:24px;
    }

    .btn-register{

        width:100% !important;
        max-width:100% !important;
    }
}

/* REGIS FORM END  */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 30px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Medium screen (tablet dan ke atas) */
@media (min-width: 768px) {
  .header .logo img {
    max-height: 40px;
  }
}

/* Large screen (laptop dan ke atas) */
@media (min-width: 992px) {
  .header .logo img {
    max-height: 50px;
  }
}

/* Extra large screen (desktop besar) */
@media (min-width: 1200px) {
  .header .logo img {
    max-height: 60px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}