a,
a:hover {
    text-decoration: none;
}

body {
    background-color: #F8F9FD;
}

/* category page css start */

.category-p-banner-wapper {
    background: rgb(90 95 147 / 0.05);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    border-bottom: 1px solid rgb(90 95 147 / 0.05);
}

.category-p-banner-wapper::before {
    content: '';
    background-color: rgb(255 78 136 / 0.1);
    border-radius: 9999px;
    width: 24rem;
    height: 24rem;
    position: absolute;
    right: 0;
    top: 0;
    filter: blur(100px);
    transform: translate(50%, -50%) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.category-p-banner-wapper::after {
    content: '';
    background-color: rgb(0 209 255 / 0.1);
    border-radius: 9999px;
    width: 24rem;
    height: 24rem;
    position: absolute;
    left: 0;
    bottom: 0;
    filter: blur(100px);
    transform: translate(-50%, 50%) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.category-p-banner-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.category-p-banner-title h1 {
    margin: 0;
    display: inline-block;
    font-size: 48px;
    line-height: 1;
    position: relative;
    color: rgb(90 95 147);
    font-weight: 900;
    font-family: 'Fraunces', serif;
    text-transform: uppercase;
}

.breadcrumbs-card ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.breadcrumbs-card ul li {
    list-style-type: none;
    display: block;
    color: rgb(47 47 47 / 0.6);
    line-height: 1.625;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.breadcrumbs-card ul span {
    color: rgb(47 47 47 / 0.6);
    line-height: 1.625;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.breadcrumbs-card ul li a {
    color: rgb(90 95 147);
    line-height: 1.625;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.category-grid-wapper {
    padding: 50px 0;
    position: relative;
}

.cate-grid-gap {
    row-gap: 30px;
}

.category-p-grid-card {
    background-color: rgb(255 255 255);
    padding: 32px;
    border-radius: 32px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: .3s;
    position: relative;
    border: 2px solid transparent;
}

.category-p-grid-image {
    overflow: hidden;
    padding: 16px;
    background-color: rgb(248 249 253);
    border-radius: 24px;
    aspect-ratio: 1 / 1;
    margin-bottom: 32px;
    position: relative;
}

.category-p-grid-image img {
    transition-duration: 700ms;
    object-fit: cover;
    border-radius: 16px;
    width: 100%;
    height: 100%;
}

.category-p-grid-label a {
    color: rgb(0 209 255);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 10px;
    display: block;
    margin-bottom: 8px;
    font-family: Plus Jakarta Sans, sans-serif;
}

.category-p-grid-text h4 {
    margin: 0;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    color: rgb(47 47 47);
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
    font-family: 'Fraunces', serif;
    margin-bottom: 12px;
}

.category-p-grid-text p {
    color: rgb(47 47 47 / 0.6);
    line-height: 1.625;
    font-size: 14px;
    margin-bottom: 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.category-p-grid-text .category-p-grid-review-btn {
    margin-top: 1.5rem;
    border: 1px solid rgb(149 151 191 / 0.05);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    color: rgb(255 255 255);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
    background-color: rgb(90 95 147);
    border-radius: 16px;
    width: 100%;
    font-family: Plus Jakarta Sans, sans-serif;
    display: block;
    text-align: center;
}

.category-p-grid-text .category-p-grid-review-btn:hover {
    background-color: rgb(255 78 136);
    box-shadow:
        0 20px 25px -5px rgba(255, 78, 136, 0.3),
        0 8px 10px -6px rgba(255, 78, 136, 0.3);
}

.category-p-grid-card:hover {
    border-color: rgb(255 78 136 / 0.2);
    transform: translateY(-0.5rem);
    box-shadow: rgb(90 95 147 / 0.1);
}

.category-p-grid-card:hover .category-p-grid-image img {
    transform: scale(1.1, 1.1);
}

.category-p-grid-card:hover .category-p-grid-text h4 {
    color: rgb(90 95 147);
}
@media(max-width:991px) {
    .category-p-banner-wapper {
        padding: 60px 0;
    }
}
@media(max-width:767px) {
    .category-p-banner-wapper {
        padding: 60px 0;
    }
    .category-p-grid-card {
        padding: 20px
    }
}

/* category page css end */