.most-selected-cats{
    position: relative;
}
.most-selected-cats:after{
    content:"";
    width: 91px;
    height: 100%;
    background: var(--black-color-5);
    border-radius: 24px;
    position: absolute;
    top: 50%;
    left: -24px;
    transform: translateY(-50%);
    z-index: -1;
}
.head-most-selected-cats{
    width: 35%;
    padding-left: 10%;
    background: linear-gradient(to bottom,var(--main-color) 0, #B01F61 100%);
    border-radius: 24px;
    border: 8px solid var(--main-color);
    position: relative;
    overflow: hidden;
}
.head-most-selected-cats:before{
    content:"";
    width: 298px;
    height: 298px;
    border-radius: 100%;
    background: linear-gradient(to top,var(--black-color-30) 11%, transparent 20%, transparent 100% );
    mix-blend-mode: color-dodge;
    position: absolute;
    top: -267px;
    right: -10px;
}
.head-most-selected-cats:after{
    content:"";
    width: 298px;
    height: 298px;
    border-radius: 100%;
    background: linear-gradient(to bottom,var(--black-color-30) 11%, transparent 20%, transparent 100% );
    mix-blend-mode: color-dodge;
    position: absolute;
    bottom: -260px;
    right: -10px;
}
.head-most-selected-cats .inner-head{
    padding: 55px 47px 58px 24px;
}
.head-most-selected-cats .inner-head .title{
    display: block;
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    color: var(--white-color);
    margin-bottom: 0;
}
.head-most-selected-cats .inner-head .subtitle{
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: var(--white-color-70);
    margin-bottom: 14px;
}
.head-most-selected-cats .inner-head .text{
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    color: var(--white-color-70);
    margin-bottom: 14px;
}
.head-most-selected-cats .inner-head .btn{
    background-color: var(--white-color-20);
    color: var(--white-color);
    border-radius: 8px;
    min-width: 150px;
    max-width: 100%;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
}

.body-most-selected-cats{
    width: 75%;
    margin-right: -10%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 16px;
    z-index: 9;
}
.body-most-selected-cats .cat-item{
    width: calc(33.3333333% - 16px);
    background: var(--white-color);
    position: relative;
    padding: 4px;
    border-radius: 16px;
    transition: all .3s ease-in-out;
}
.body-most-selected-cats .cat-item a{
    background: var(--white-color);
    padding: 6px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .3s ease-in-out;
    height: 100%;
}
.body-most-selected-cats .cat-item a:before{
    content: "";
    border: 12px solid var(--black-color-10);
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s
    ease-in-out;
}
.body-most-selected-cats .cat-item img{
    padding-right: 6px;
}
.body-most-selected-cats .cat-item-text{
    padding: 7px 16px;
    border-right: 1px solid var(--black-color-10);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.body-most-selected-cats .cat-item-text .name{
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: var(--black-color);
    margin-bottom: 0;
}
.body-most-selected-cats .cat-item-text .text{
    display: block;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    color: var(--black-color-70);
    margin-bottom: 0;
}
.body-most-selected-cats .cat-item a:hover{
    background: var(--main-color);
}
.body-most-selected-cats .cat-item a:hover .cat-item-text{
    border-color: var(--white-color-10);
}
.body-most-selected-cats .cat-item a:hover .name{
    color: var(--white-color);
}
.body-most-selected-cats .cat-item a:hover .text{
    color: var(--white-color-70);
}
.body-most-selected-cats .cat-item a:hover:before{
    opacity: 0;
}

.body-most-selected-cats .cat-item:hover:after{
    content: "";
    width: 132px;
    height: 90px;
    border-radius: 100%;
    background: var(--black-color);
    opacity: 0.3;
    filter: blur(22px);
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    z-index: -1;
}

.most-selected-cats .btn-outline-light{
    padding: 8px;
    background: var(--white-color);
    border-radius: 16px;
    display: none;
    position: relative;
}
.most-selected-cats .btn-outline-light span{
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    color: var(--black-color);
    text-align: center;
    display: block;
}
.most-selected-cats .btn-outline-light .inner{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid var(--sec-color-10);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .3s ease-in-out;
    padding: 4px 12px;
}
.most-selected-cats .btn-outline-light:hover .inner{
    background: var(--sec-color-10);
}

@media (max-width: 991px) {
    .head-most-selected-cats{
        width: 50%;
    }
    .body-most-selected-cats{
        width: 65%;
        margin-right: -12%;
        gap: 10px;
    }
    .body-most-selected-cats .cat-item{
        width: calc(50% - 5px);
    }
}
@media (max-width: 767px) {
    .most-selected-cats:after{
        display: none;
    }
    .most-selected-cats .d-flex{
        flex-wrap: wrap;
    }
    .head-most-selected-cats{
        width: 100%;
        text-align: center;
        padding-left: 0;
    }
    .head-most-selected-cats .inner-head {
        padding: 24px 40px 57px 40px;
    }
    .body-most-selected-cats{
        width: 100%;
        margin-right: 0;
        gap: 16px;
        margin-top: -10%;
        padding: 0 16px;
        position: relative;
        align-items: unset;
    }
    .body-most-selected-cats .cat-item{
        width: calc(50% - 8px);
    }
    .body-most-selected-cats .cat-item a{
        flex-direction: column;
        justify-content: center;
        padding: 11px;
    }
    .body-most-selected-cats .cat-item img{
        padding: 10px 0 0;
    }
    .body-most-selected-cats .cat-item-text{
        border-right: 0;
        border-top: 1px solid var(--black-color-10);
        align-items: center;
        padding: 7px 0;
    }
    .body-most-selected-cats .cat-item a:before{
        border-top-color: var(--black-color-10);
        border-right-color: transparent;
        border-left-color: transparent;
        border-bottom-color: transparent;
        right: unset;
        top: 4px;
        left: 50%;
        transform: translateX(-50%);
    }

    .head-most-selected-cats:before,
    .head-most-selected-cats:after,
    .head-most-selected-cats .inner-head .btn{
        display: none;
    }


    .body-most-selected-cats:after{
        content:"";
        width: 100px;
        height: 355px;
        border-radius: 15px;
        background: var(--black-color-5);
        position: absolute;
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
    .most-selected-cats .btn-outline-light{
        display: block;
        margin-right: auto;
    }
    .body-most-selected-cats .cat-item-text .name{
        font-size: 14px;
    }
}