
/* div{
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #000000;
} */

.category-wrap {
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    float: left;
    width: 100%;
    box-sizing: border-box;
}

.category-wrap h2{
    font-size: 30px !important;
    color: #F60404;
    font-weight: 500 !important;
    text-transform: none !important;
    margin: 15px 0;
}

.category-subheading h1{
    color: #427603;
    margin: 15px auto;
    font-weight: 600;
    font-style: italic;
    font-size: 30px;
    text-shadow: 2px 1px #00000040;

}

.category-container {
    width: auto;
    margin: 10px auto;
    padding: 15px;
}

.category-list-container{
    float: left;
    width: 100%;
    display: block;
}

.category-list-wrap{
    display: flex;
    margin: 15px 20px;
}

.category-list-wrap .plan{
    background: #FBB606;
    position: relative;
    float: left;
    width: 44.8%;
    margin: 15px 7px;
    display: inline-block;
    list-style: none;
    background-size: cover !important;
    padding: 10px;
}

.category-list-wrap .top img{
    width: 80px; /* Set the desired width and height */
    height: 80px;
    border-radius: 50%; /* Make the shape rounded */
    object-fit: cover; 
}

.category-list-wrap img.badge-img {
    position: absolute;
    right: 25px;
    top: -7px;
}



.horizontal-line{
    border: 1px solid #F80D0D;
    height: 0px;
    margin: 20px 0;
    width: calc(100% - 45%);
    position: absolute;
    top: 45px;
    left: 130px;
}

/* .category-list-wrap .top::before{
    border: 1px solid #F80D0D;
    width: 165px;
    height: 0px;
    position: absolute;
    top: 33px;
    left: 128px;
} */

.category-list-wrap .down{
    padding: 8px 30px;
}

.category-list-wrap .down h1{
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    color: #046102;
}



/* media query  */

@media screen and (max-width: 767px){
    .category-list-wrap{
        display: block;
    }
    .category-list-wrap .plan{
        width: 100%;
    }

    .category-list-wrap .down{
        padding: 8px 10px;
    }

    .horizontal-line{
        width: calc(100% - 28%);
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px){
    .category-list-wrap .plan{
        width: 47%;
        min-height: 185px;
        margin: 0 10px;
    }
}



@media screen and (min-width: 768px) and (max-width: 979px){
    .horizontal-line{
        width: calc(100% - 60%);
    }
}



