/*
Theme Name: Regulations
Theme URI: http://themeforest.net/user/irstheme/
Author: irstheme
Author URI: http://themeforest.net/user/irstheme/portfolio
Description: Regulations – Attorney and Lawyer WordPress Theme
Version: 1.0
License: GNU General Public License v2 or later

Adding support for languages written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.

https://codex.wordpress.org/Right-to-Left_Language_Support

*/
body { 
   direction: rtl; 
   unicode-bidi: embed; 
}
.contact-content {
    text-align: right;
}
.attorneys-section .all-attorney, .attorneys-section-s2 .all-attorney {
    left: 15px;
    right: inherit;
}
.services-section {
    direction: ltr;
}
.services-section .owl-controls, .services-section-s2 .owl-controls, .services-section-s3 .owl-controls {
    right: inherit;
    left: 0;
}
.recent-blog-section .meta ul li {
    float: right;
}
.fun-fact-awards-section .funfact-grids .grid {
    float: right;
}
