/* ================================
   Product Hero Section (MBA)
   ================================ */

.product-herosection {
    position: relative;
    min-height: 628px;
    padding: 0 20px;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    overflow: hidden;
    background-image: url(../assets/img/product-bg.svg);
    background-size: cover;
    background-position: center;
}

/* Content wrapper */
.product-herosection .hero-content {
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    text-align: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}

/* Breadcrumb accordion */
.product-herosection .accordion {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 52px;
    border: 1px solid #FFFFFF80;
    /* border-image-source: linear-gradient(90deg, #FFFFFF 0%, rgba(186, 226, 178, 0.3) 72.55%, rgba(255, 255, 255, 0.5) 100%); */
    width: fit-content;
    padding: 0 21px;
    height: 30px;
    background: #6FEDA6;
    border-radius: 35px;
    margin-left: auto;
    margin-right: auto;
    align-content: center;
}

.product-herosection .accordion span {
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    color: #218370;
    padding: 0 8px;
}

.product-herosection .accordion span.active {
    color: #000;
}

/* Title */
.product-herosection .title {
    font-size: 60px;
    font-weight: 500;
    line-height: 70px;
    margin-bottom: 36px;
    color: #000000;
}

/* Subtitle */
.product-herosection .subtitle {
    font-size: 18px;
    max-width: 100%;
    line-height: 22px;
    margin: 1.5rem 0 2rem;
    color: #000000;
}

/* Button */
.product-herosection .explorebtn2 {
    width: 215px;
    height: 55px;
    border-radius: 10px;
    border: 1px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(90deg,
            #CFA1FF 6.73%,
            #00D885 23.56%,
            #D2F501 40.87%,
            #85F346 60.1%,
            #42C9CD 77.4%,
            #77C6E7 97.73%) border-box;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.product-herosection button {
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    gap: 8px;
    margin: auto;
    position: relative;
    left: -10px;
}

.product-herosection button:hover {
    /* background: #333; */
    /* transform: translateY(-2px); */
}

.product-herosection button::before,
.product-herosection button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    width: 20px;
    height: 16px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cpath d='M0 6.54541H17.1818' stroke='white' stroke-miterlimit='10'/%3E%3Cpath d='M10.9238 0C10.9238 3.61306 13.7259 6.54545 17.1862 6.54545' stroke='white' stroke-miterlimit='10'/%3E%3Cpath d='M17.1813 6.54541C13.7245 6.54541 10.9189 9.47412 10.9189 13.0909' stroke='white' stroke-miterlimit='10'/%3E%3C/svg%3E");
    transition: all 0.5s cubic-bezier(0.25, 0.25, 0.08, 1.08);
}

.product-herosection button::before {
    opacity: 0;
    transform: translate(-100%, -50%);
}

.product-herosection button:hover::before {
    opacity: 1;
    transform: translate(0, -50%);
}

.product-herosection button:hover::after {
    opacity: 0;
    transform: translate(100%, -50%);
}


/* ================================
   Tablet
   ================================ */

@media (min-width: 768px) {}

/* ================================
   Desktop
   ================================ */

@media (min-width: 1024px) {}

@media (max-width: 426px) {
    .product-herosection .accordion {
        margin-bottom: 39px;
        padding: 0 16px;
    }

    .product-herosection .title {
        font-size: 40px;
        line-height: 40px;
    }

    .product-herosection .subtitle {
        font-size: 16px;
        line-height: 20px;
        margin: 1.5rem 0 2rem;
        padding: 0rem 1rem;
    }
}

@media (max-width: 340px) {
    .product-herosection .accordion {
        padding: 0 12px;
    }

    .product-herosection .accordion span {
        line-height: 20px;
        padding: 0 4px;
    }
}