/*
Theme Name: Adama Events

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;
}
*/
.main-navigation .menu .menu-item a{
	font-size: 3.4rem;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: hidden;
}
.modal .modal-lg .modal-content .modal-body .main-navigation ul{
	display:flex;
	justify-content: space-evenly;
}