/*Media Query For Desktop*/
@media (min-width:1024px) {
}
/*scroll Table */
@media all
and (min-width: 768px)
and (max-width: 1024px)  {

}
/*Media Query For Mobile*/
@media all and (max-width : 767px) {
    .title {
        font-size: 2.3em;
    }
}