/*
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
*/

.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;
}

button.btn.btn-talisman i,
a.btn.btn-talisman i,
.projects .item .item-content p.readmore i,
.projects-slider .item .item-content p.readmore i,
.media-list .item .content p.readmore i {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.projects .item a,
.projects-slider .item a,
.projects .item a *,
.projects-slider .item a * {
    direction: rtl;
}

.projects .item .item-content p.title,
.projects-slider .item .item-content p.title {
    text-align: right;
}

body,
p,
ul,
ol,
li,
.projects .item .item-content p.title,
.projects-slider .item .item-content p.title,
section.section-expertises .nav-pills-squares a,
button.btn,
a.btn {
    font-family: "FbPractica";
}

.contact-form form .form-group .form-control{
    direction: rtl;
}
