How to change specific menu tab from left to right in My Home Theme?

take reference of two classes and apply css
e.g you have menu in li as:

<li class="menu-item-24011">
<span class="menu-text">profile</span>
</li>

then add this css:

.menu-item-24011 .menu-text {
padding-left: 50%;//change as per your req

}