@import "base.css";

#hero{
    background-image: url("https://dedicatedclasses.in/wp-content/uploads/2022/06/a-few-characteristics-of-the-best-coaching-classes.jpg");
}

#hero img{
    filter: none;
}

.img_and_text_1{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.img_and_text_1 div img{
    width: 100%;    
}

.img_and_text_1 div p{
    padding: 0px 50px;
}

@media (max-width:500px){

    .img_and_text_1{
        grid-template-columns: 1fr;
    }

    .img_and_text_1_rev{
        display: flex;
        flex-direction: column-reverse;
    }

    .img_and_text_1 div p{
        margin-top: 10px;
        padding: 0px 0px;
    }

    .spacing_2{
        height: 50px;
    }

}