/*
Theme Name: IsaGroup

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{
    font-family: 'FbPractica';
}

.bx-wrapper * {
    direction: ltr;
}

.section-projects .bx-wrapper .bx-controls .bx-controls-direction .bx-next{
    right: -20px;
    left: auto;
}

.section-projects .bx-wrapper .bx-controls .bx-controls-direction .bx-prev{
    left: -20px;
    right: auto;
}

.contact-content form .form-group .form-control{
    text-align: right;
}