Hi @Kartikey Gupta
It looks like you have added Custom CSS to the theme. One of the examples of custom CSS you have added is given below
#home-page-widget-area .widget {
    margin: 0;
    padding: 80px 0;
}
You can change your CSS as per width of device using media screen like. 
@media screen and (max-width: 1240px){
    #home-page-widget-area .widget {
        margin: 0;
        padding: 50px 0;
    }
}
Please take reference of above code and add responsive CSS as per your requirement.
Thank you.