.collection-banner-sec {
    position: relative;
    padding-bottom: 0px;
}

.collection-banner-sec .full-diver {
    position: absolute;
    height: 2px;
    background: #fff;
    width: 100%;
    top: 44%;
    z-index: 1;
}

.collection-banner-sec .logo-white {
    width: 60px;
}

.collection-banner-sec .sub-title {
    line-height: 20px;
    margin-top: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.collection-banner-sec .title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 28px;
}

.collection-banner-sec .para {
    font-size: 18px;
    color: #fff;
    line-height: 26px;
}



/*  Start Music Card Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.music-card {
    border-radius: 20px;
    overflow: hidden;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 25px;
    position: relative;
}

.music-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Add the overlay using a pseudo-element */
.music-card::before {
    content: "";
    position: absolute;
    /* Position it absolutely within .music-card */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black with 50% opacity */
    border-radius: inherit;
    /* Match the border radius */
    z-index: 1;
    /* Place it below the content but above the background */
}

.music-card .logo-white {
    width: 40px;
}

.music-card .sub-title {
    line-height: 32px;
    margin-block: 10px;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 600;
    color: #ffffffed;
    letter-spacing: 1px;

}

.music-card .music-name {
    line-height: 18px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    opacity: 0.8;
    margin: 30px 0 0;
}

.music-card .para {
    opacity: 0.8;
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.music-card-sec .gap-20 {
    gap: 20px;
}

/*  End Music Card Section */

.medi-empty-div {
    height: 60px;
}

.collection-banner-sec.meditation-sec .full-diver {
    top: 175px;
}

.collection-banner-sec.meditation-sec .banner-side-img {
    max-height: 420px;
    height: 420px;
}

.collection-banner-sec.meditation-sec .sub-title {
    margin-bottom: 12px;
}

.favourite-div {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    cursor: pointer;
}

.favourite-div.user-fav svg {
    fill: #e09695;
    stroke: #e09695;
    width: 38px;
    height: 38px;
}

.favourite-div svg {
    /* height: 34px; */
    transition: all 0.5s;
}

/* Start Responsive */
@media only screen and (max-width:976px) {
    .collection-banner-sec {
        margin-top: 0px !important;
        /* padding-bottom: 40px !important; */
    }

    .collection-banner-sec .full-diver {
        top: 38%;
    }

    .collection-banner-sec .banner-side-img {
        width: 300px;
        margin-top: 50px;
    }

    section.music-card-sec {
        margin-top: 0px !important;
    }

    .collection-banner-sec.meditation-sec .banner-side-img {
        max-height: 100%;
        height: 100%;
        margin-top: 0px;
    }

    .music-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .music-card .sub-title {
        line-height: 26px;
        margin-block: 12px;
        font-size: 24px;
    }

    .music-card .para {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .music-card .music-name {
        font-size: 16px;
        margin: 20px 0 0;
    }
}

@media only screen and (max-width:600px) {


    .audio-player {
        width: 100%;
    }

    section.music-card-sec {
        margin-top: 30px !important;
    }

    .music-card .music-name {
        font-size: 16px;
        margin: 20px 0 0;
        width: 83%;
    }
    .collection-banner-sec.meditation-sec {
        text-align: center;
    }
    .collection-banner-sec{
        text-align: center;
    }

}

/* End Responsive */

/* ======== Start User Favourite Music Card ========== */
.user-favorite {
    .music-card .logo-white {
        width: 35px;
    }

    .favourite-div.user-fav svg {
        fill: #e09695;
        stroke: #e09695;
        width: 30px;
        height: 30px;
    }

    .music-card .sub-title {
        line-height: 24px;
        margin-block: 10px;
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: 600;
        color: #ffffffed;
        letter-spacing: 1px;
    }

    .music-card .para {
        opacity: 0.8;
        font-size: 16px;
        color: #fff;
        margin-bottom: 20px;
    }

    .audio-player {
        width: 100%;
        margin-left: -10px;
    }

    .music-card .music-name {
        width: 85%;
        line-height: 20px;
        font-size: 15px;
        font-weight: 400;
        color: #fff;
        opacity: 0.8;
        margin: 20px 0 0;
    }

    .audio-player {
        .controls {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            padding: 0;
            position: absolute;
            bottom: 0px;
            right: 0px;
            z-index: 99;
            width: 34px;
            height: 34px;
        }
    }
    .time-div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }

}

/* ======== End User avourite Music Card ========== */