.main-text h2{
    font-weight: 600;
    font-size: 60px;
    margin: 20px 0;
    line-height: 57px;
} 

.service-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.main-section-top img{
    width: 100%;
    display: block;
    height: auto;
}

.more-blog-post{
    color: #915FFE;
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

.insights-grid{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 25px 20px;
    margin: 50px 0;
}

.insights-grid a{
    cursor: pointer;
    color: #000;
}

.insights-grid h3{
    font-size: 22px;
    margin-bottom: 10px;
    height: auto;
    line-height: 1.7;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.insights-grid p{
    margin: 0;
    font-size: 16px;
    height: auto;
    line-height: 1.7;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    font-weight: 300;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.insights-grid span{
    color: #915FFE;
}

.img-radius{
    border-radius: 12px;
}

@media(max-width:991px){
    .service-grid{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .main-text h2{
        font-size: 24px;
        line-height: 30px;
        margin: 5px 0;
    }

    .main-text p{
        line-height: 22px;
        font-size: 16px;
        margin: 10px 0;
    }

    .insights-grid{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

}

