.driving_latest_news_area{
    padding: 50px 0;
    background-color: #fff;
    .latest_news_heading{
        text-align: center;
        margin-bottom: 35px;
        h2{
            font-size: 30px;
            font-weight: 700;
            font-family: 'Roboto';
            span{
                color: $primaryColor;
            }
        }
    }

    .latest_content_area{
        display: flex;
        justify-content: center;
        .latest_news_date{
            background-color: $primaryColor;
            padding: 50px;
            h2{
                color: #fff;
            }
            h4{
                color: #fff;
            }
        }
        .latest_news_content{
            background-color: $secondColor;
            padding: 50px;
    
            p{
                color: #fff;
                font-size: 16px;
                font-family: 'Poppins';
                font-weight: 500;
            }
        }
    }

}

.news_heading {
    padding: 30px;
    h4{
        font-size: 30px;
        line-height: 38px;
    }
}
.content{
    text-align: justify;
    p{
        font-size: 16px;
        line-height: 25px;
    }
    ul{
        li{
            list-style-type: disc;
            margin-left: 50px;
        }
    }
}

