/*
Theme Name: Best Education

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 .col-xs-1,
body .col-xs-10,
body .col-xs-11,
body .col-xs-12,
body .col-xs-2,
body .col-xs-3,
body .col-xs-4,
body .col-xs-5,
body .col-xs-6,
body .col-xs-7,
body .col-xs-8,
body .col-xs-9 {
    float: right;
}

@media (min-width: 992px) {
    body .col-md-1,
    body .col-md-10,
    body .col-md-11,
    body .col-md-12,
    body .col-md-2,
    body .col-md-3,
    body .col-md-4,
    body .col-md-5,
    body .col-md-6,
    body .col-md-7,
    body .col-md-8,
    body .col-md-9 {
        float: right;
    }
}

.header-links .link-list .link-icon {
    padding-left: 10px;
    padding-right: 0;
}

.header-links .link-list .link-detail {
    text-align: right;
}

.main-navigation .menu ul li {
    float: right;
}

.main-navigation .menu ul li i {
    padding-left: 0;
    padding-right: 10px;
}

.top-header .nav-icon-wrapper {
    float: left !important;
}

@media (min-width: 992px) {
    .section-block .offset-md-2,
    .footer-cta .offset-md-2 {
        margin-left: auto;
        margin-right: 16.66666667%;
    }
}

.section-block-title-1{
    text-align: right;
}