/* ==================================================
   FRESHCARE RTL
================================================== */

body.rtl {
    direction: rtl;

    text-align: right;
}


/* Navigation */

body.rtl .nav-menu {
    margin-right: auto;
    margin-left: 0;
}


/* Dropdown */

body.rtl .dropdown-menu {
    left: auto;
    right: 0;
}


/* Hero */

body.rtl .hero-text {
    text-align: right;
}

body.rtl .hero-badge {
    left: auto;
    right: -25px;
}

body.rtl .hero-feature {
    flex-direction: row-reverse;
}


/* Why */

body.rtl .why-item {
    flex-direction: row-reverse;
}


/* Text Links */

body.rtl .text-link i {
    transform: rotate(180deg);
}

body.rtl .text-link:hover i {
    transform: translateX(-4px) rotate(180deg);
}


/* Footer */

body.rtl .footer-column ul,
body.rtl .contact-list {
    text-align: right;
}


/* Mobile */

@media (max-width: 900px) {

    body.rtl .nav-menu {
        margin: 0;
    }

    body.rtl .hero-text {
        text-align: center;
    }

    body.rtl .hero-badge {
        right: auto;
        left: 15px;
    }

}