/*
Theme Name: Agni Framework

Adding support for language 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.

http://codex.wordpress.org/Right_to_Left_Language_Support

*/
@font-face {

    font-family: 'DINNextLTW23';
    src: url('DINNextLTW23-Medium.html');
    src: url('DINNextLTW23-Mediumd41d.html?#iefix') format('embedded-opentype'),
        url('DINNextLTW23-Medium.woff2') format('woff2'),
        url('DINNextLTW23-Medium.woff') format('woff'),
        url('DINNextLTW23-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {

    font-family: 'DINNextLTW23';
    src: url('DINNextLTW23-Light.html');
    src: url('DINNextLTW23-Lightd41d.html?#iefix') format('embedded-opentype'),
        url('DINNextLTW23-Light.woff2') format('woff2'),
        url('DINNextLTW23-Light.woff') format('woff'),
        url('DINNextLTW23-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


body {
	direction: rtl;
	unicode-bidi: embed;
	font-family: 'DINNextLTW23';
}

.about-menu h4 { text-align: right !important}




