/** Help Support Section : Start **/
.ptb_8 {
    padding: 8rem 0;
}

.about-menu-title .about-menu-title_inner {
    position: relative;
    /* margin-bottom: 3em; */
    padding: 0 0 3em 0;
    text-align: center;
    color: #333;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
}

.about-menu-title .about-menu-title_inner::after {
    content: "";
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 60px;
    height: 2px;
    background-color: #b2b7fe;
}

.sec-help-support .help-support .help-support_inner {
    display: block;
    border: 3px solid #ffffff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 12px 8px 8px 8px;
}

.sec-help-support .help-support .help-support_inner .help-support_inner-img {
    text-align: center;
}

.sec-help-support .help-support .help-support_inner .help-support_inner-img img {
    width: 100px;
    border-radius: 50%;
}

.sec-help-support .help-support .help-support_inner .help-support_inner-title {
    color: #285055; 
    font-weight: 700;
    text-align: center;
    font-size: 22px;
    margin: 10px 0;
}

.sec-help-support .help-support .help-support_inner .help-support_inner-progress {
    width: 100%;
    height: 20px;
    border-radius: 16px;
}
/** Help Support Section : End **/

/**  **/
/**  **/
/**  **/
.confetti_content-open-one .confetti_content_inner .confetti-container {
    display: none;
}

.confetti_content-one .confetti_content_inner {
    position: relative;
    background: linear-gradient(to bottom right, #facc15, #ca8a04);
    color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    animation: slideIn 0.6s ease-out forwards;
    border: 2px solid #ffe3a1;
}

.confetti_content-one .confetti_content_inner .confetti-body {
    width: 100%;
    padding: 0;
}

.confetti_content-one .confetti_content_inner .confetti-body #medal_image {
    width: 25%;
    margin: 0 auto;
}

.confetti_content-one .confetti_content_inner .confetti-body #medal_image img {
    /* transform: rotate(-180deg) scale(0);
    animation: medalPop 0.6s ease-out forwards 0.2s; */

    transform-origin: bottom center;
    /* animation: trophyBounce 02s ease forwards; */
    animation: trophyBounce 1s ease forwards;
}

/* @keyframes medalPop {
    0% {
        transform: rotate(-180deg) scale(0);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
} */

@keyframes trophyBounce {
    0% {
        transform: scale(1.5) rotate(0deg);
    }

    30% {
        transform: scale(0.9) rotate(-15deg);
    }

    50% {
        transform: scale(1.1) rotate(10deg);
    }

    70% {
        transform: scale(0.95) rotate(-5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.confetti_content-one .confetti_content_inner .confetti-body .confetti_content-btn {
    display: inline-block;
    padding: 4px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    line-height: inherit;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* margin-top: 16px; */
}

.confetti-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    animation: confettiAnim 2s infinite;
}

@keyframes confettiAnim {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    50% {
        transform: translateY(-20px) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

@media (min-width: 568px) and (max-width: 767px) {
    .confetti_content_inner {
        height: auto;
    }
}