.acontainer{
    margin-top: 20px;
    background-color: rgb(240, 245, 250);
    width: 100%;
    height: auto;
}
.atitle{
    font-size: 50px;
    padding: 80px 80px 0px 80px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    position: relative;
} 
.atitle:before{
    content: "";
    position: absolute;
    background-color:pink;
    height: 4px;
    width: 20%;
    padding-left: 80px;
    bottom: -5px;
}
.acontainer p{
    font-family:'Times New Roman', Times, serif;
    margin-top: 15px;
    padding: 10px 80px 10px 80px ;
    font-size: 20px;
    color:#333;
}
.abottom{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 80px 10px 80px ;
}
.bleft{
    width: 35%;
}
.bleft p{
padding: 10px 0px 10px 0px !important;
}
.bright{
    width: 35%;
}
.bright p{
    padding: 10px 0px 10px 0px !important;
}
.bleft h2 , .bright h2{
    color: #000;
}
@media screen and (max-width:700px) {
    .bright{
        width: 100%;
    }
    .bleft{
        width: 100%;
        margin-bottom: 20px;
    }
    .bleft p , .bright p{
        font-size: 25px;
    }

}
@media screen and (max-width:500px) {
    .acontainer p{
        padding: 10px 40px 10px 40px ;
        font-size: 18px;
    }
    .abottom{
        padding: 10px 40px 10px 40px ;
    }
    .atitle{
        font-size: 30px;
    }
    
}