.sb-categories-wrapper{
    width:100%;
}

.sb-section-heading{
    text-align:center;
    margin-bottom:60px;
}

.sb-heading{
    font-size:42px;
    margin-bottom:12px;
}

.sb-subheading{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.sb-categories-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.sb-category-card{
    text-decoration:none;
    text-align:center;
}

.sb-category-image{
    aspect-ratio:1/1;
    border-radius:50%;
    overflow:hidden;
	width: 250px;
	margin: auto;
    background:#f3f3f3;
    transition:.4s ease;
}

.sb-category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.sb-category-card:hover img{
    transform:scale(1.06);
}

.sb-category-title{
    margin-top:18px;
    font-size:18px;
    color:#111;
}

@media(max-width:980px){

    .sb-categories-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .sb-heading{
        font-size:32px;
    }
	
	.sb-category-image{
		width: auto;
	}
}