:root{
    --button-bg:rgba(236, 247, 252, 0.77);
    --dark-button-bg:rgba(20, 73, 81, 0.43);
    --ligth-color:rgb(245, 245, 245);
    --dark-color:rgb(17, 15, 15);
    --text-color: #4f4f4f;
    --gray-color:rgb(35, 33, 33);
    --yellow-color:rgba(255, 255, 172, 0.539);
    --dark-yellow:rgb(0 144 179);
    --text-size: 16.5px;
    --box-shadow: 0px 0px 10px 4px rgba(155, 155, 155, 0.238);
    --font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.student_count_image{
    /* border: 1px solid red; */
    width: 100%;
    background: url(/assets/images/home/service-home/slider-1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.soubhik_student_count{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 30px 30px;
    gap: 100px;
    background: var(--dark-button-bg);
    font-family: var(--font-family);
}
.main_content{
    /* border: 1px solid red; */
    padding: 20px;
}
.student_count_icon_section{
    /* border: 1px solid red; */
    height: 100px;
    width: 100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
    background: linear-gradient(178deg,var(--deep_sky),var(--normal_sky));
    text-align: center;
    align-content: center;
    color: var(--ligth-color);
    font-size: 45px;
}
.student_count_icon_section::before{
    content: '';
    border: 2px solid var(--ligth-color);
    height: 100%;
    width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: absolute;
    top: 5%;
    left: 5%;
    transition: .5s all ease;
}
.main_content:hover .student_count_icon_section::before{
    top: -2%;
    left: -2%;
}
.number_counts{
    /* border: 1px solid red; */
    padding: 20px 0px 10px 0px;
    color: var(--ligth-color);
    text-align: center;
    font-weight: bold;
    font-size: 40px;
}
.counts_desc{
    /* border: 1px solid red; */
    padding: 5px 0px 0px 0px;
    color: var(--ligth-color);
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

@media (max-width:1130px){
    .soubhik_student_count{
        gap: 50px;
    }
}