/* Source: style.css */
:root {
    --common_font: "poppins", serif;
}

* {
    font-family: var(--desc_font);
}

html {
    -webkit-text-size-adjust: none;
}

#main-uber-page {
    min-height: 100%;
}
.img-reset {
    display: block;
    max-width: 100%;
    height: auto;
}
#wrapper {
    background-color: #fff;
    min-height: calc(100vh - 354px);
    min-height: -o-calc(100vh - 354px);
    min-height: -moz-calc(100vh - 354px);
    min-height: -webkit-calc(100vh - 354px);
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
p,
a,
address,
em,
img,
small,
strong,
b,
i,
ol,
ul,
li,
form,
label,
footer,
section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

option {
    font-family: var(--desc_font);
}

ul.tab-row li span:after {
    content: attr(data-slogan);
    font-size: 10px;
    display: block;
    color: #757575;
    margin-top: 5px;
    line-height: 12px;
}

footer,
header,
section {
    display: block;
}

body {
    line-height: 1;
    font-family: var(--desc_font);
}

ol,
ul {
    list-style: none;
}

* {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.mix-content {
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

select::-ms-expand {
    display: none;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
/* __________________________________________________________________ */
header.shadow {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
}
/* ----------------------------------------------------------
   8. MIX CONTENT — referenced by body.side_menu .mix-content
   ---------------------------------------------------------- */
.mix-content {
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}


/* ----------------------------------------------------------
   9. USER MENU — navlinks hidden
   ---------------------------------------------------------- */
ul.user-menu ul.navmenu-links {
    display: none !important;
}


/* ----------------------------------------------------------
   10. PROFILE IMAGE — (inside .left-menu-logo)
   ---------------------------------------------------------- */
.profile-image {
    width: 104px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px transparent;
    height: 104px;
    position: relative;
    margin-right: 30px;
}
.profile-image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
    padding: 0;
}
.profile-image i {
    width: 29px;
    height: 29px;
    position: absolute;
    right: 0;
    bottom: 3px;
    font-size: 14px;
    background-color: transparent;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


/* ----------------------------------------------------------
   11. UL.USER-MENU — main sidebar menu
   ---------------------------------------------------------- */
ul.user-menu {
    position: fixed;
    left: 0;
    bottom: 0;
    top: 0;
    background-color: #fff;
    transition: all 0.5s;
    transform: translateX(-340px);
    -webkit-transform: translateX(-340px);
    -moz-transform: translateX(-340px);
    -ms-transform: translateX(-340px);
    -o-transform: translateX(-340px);
    z-index: 9999999999;
    overflow-y: auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    width: 294px;
}
ul.user-menu li:not(:first-child) a {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    display: flex;
    outline: none;
    padding: 10px 20px 10px 15px;
    box-sizing: border-box;
    align-items: center;
    justify-content: flex-start;
    margin: 0 30px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    line-height: 18px;
}
ul.user-menu li a img {
    max-height: 100%;
}
ul.user-menu li:not(:first-child) {
    padding: 0;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.15); */
    width: 280px;
    box-sizing: border-box;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    cursor: pointer;
    margin: 1px 0;
}
ul.user-menu li a span {
    width: auto;
    align-items: center;
    display: inline-block;
    width: calc(100% - 36px);
    width: -o-calc(100% - 36px);
    width: -moz-calc(100% - 36px);
    width: -webkit-calc(100% - 36px);
}
ul.user-menu li a i {
    display: inline-block;
    margin-right: 15px;
    font-size: 20px;
    line-height: normal;
}
ul.user-menu li.active a {
    background-color: #174FEB;
    color: #fff;
}
ul.user-menu li a > * {
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}
ul.user-menu li:not(:first-child) a:hover > * {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
}
ul.user-menu li.logo {
    margin-bottom: 0px;
    border-bottom: none;
    display: block;
}
ul.user-menu li.logo a {
    margin: 15px 30px;
    display: block;
}
ul.user-menu li.logo:hover a,
ul.user-menu li.logo.active a {
    background: transparent;
    color: transparent;
}
body.side_menu ul.user-menu {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}


/* ----------------------------------------------------------
   12. SIDE MENU PROFILE BLOCK (05-02-2024)
   ---------------------------------------------------------- */
.side_menu_profile {
    position: relative;
}

.left-menu-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 11px 30px 12px 50px;
    background-color: #fff;
    column-gap: 20px;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #ddd;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.left-menu-logo .profile-image {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0;
}
.left-menu-logo .profile-image ~ div {
    width: calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: -ms-calc(100% - 80px);
    width: -o-calc(100% - 80px);
}
.left-menu-logo span {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin: 0 0 5px 0;
    width: 137px;
    word-wrap: break-word;
}
.left-menu-logo .__rating {
    font-size: 15px;
    display: inline-flex;
    gap: 5px;
}
.left-menu-logo .__rating i.ri-star-fill {
    color: #fc8400;
    position: relative;
    top: -1px;
}
.side_menu_profile .menu-ico {
    position: absolute;
    top: 7px;
    right: 10px;
}
.side_menu_profile .menu-icoholder-side {
    margin: 0;
    right: 10px;
    height: 100%;
    top: 0;
    display: flex;
    left: auto;
}
.left-menu-welcome {
    width: 100%;
}
.left-menu-welcome > * {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #707070 !important;
    width: auto !important;
    display: block !important;
    word-wrap: break-word !important;
    margin: 0 0 5px 0 !important;
}
.left-menu-logo strong {
    display: block;
    font-size: 22px;
    color: #000;
    font-weight: 600;
    line-height: 1.2em;
    margin: 0 0 5px 0;
}


/* ----------------------------------------------------------
   13. CLOSE MENU BUTTON
   ---------------------------------------------------------- */
.close__menu {
    width: 20px;
    height: 24px;
    position: absolute;
    cursor: pointer;
    display: flex;
    align-items: center;
    right: 10px;
    top: 10px;
}
.close__menu span {
    width: 100%;
    height: 2px;
    background-color: #0072bb;
    display: inline-block;
    position: relative;
}
.close__menu span:before {
    content: '';
    position: absolute;
    top: -7px;
    width: 100%;
    height: 2px;
    background-color: #0072bb;
    display: block;
}
.close__menu span:after {
    content: '';
    position: absolute;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background-color: #0072bb;
    display: block;
}
.close__menu span:before {
    top: 0;
    transform-origin: center center;
    transform: rotate(45deg);
}
.close__menu span {
    background-color: transparent;
}
.close__menu span:after {
    bottom: 0;
    transform-origin: center center;
    transform: rotate(-45deg);
}


/* ----------------------------------------------------------
   14. BODY.SIDE_MENU — overlay + scroll lock
   ---------------------------------------------------------- */
body.side_menu .menu-ico.active {
    display: none;
}
body.side_menu {
    overflow: hidden;
}
body.side_menu .mix-content {
    position: relative;
}
body.side_menu .mix-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999999;
}


/* ==========================================================
   MEDIA QUERIES — same order as original file
   ========================================================== */

/* 1024px and below */
@media screen and (max-width: 1024px) {
    ul.user-menu {
        overflow-y: scroll;
    }
}

/* 768px and above */
@media screen and (min-width: 768px) {
    ul.user-menu li.for_mob {
        display: none;
    }
}
/* __________________________________________________________________ */
.banner-section {
    padding: 46px 0 60px 0;
}

.banner-section-inner {
    max-width: 1310px;
    padding: 0 15px 70px 15px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.banner_left {
    width: 51%;
}

.banner-content h1 {
    font-size: 50px;
    color: #000;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.3em;
}

.banner-content h1 small {
    display: block;
}

.banner-content {
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 32px;
    text-align: justify;
}

.banner-content p:last-child {
    margin-bottom: 0;
}

.banner-content p:empty {
    display: none;
}

.app-store-btn {
    margin-top: 30px;
}

.app-store-btn .banner-download-title {
    font-size: 23px;
    color: #000;
    font-weight: bold;
    display: block;
    margin-bottom: 12px;
    text-transform: capitalize;
    line-height: 30px;
}

.home-applink-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.app-store-btn a {
    display: inline-block;
    width: 250px;
    position: relative;
    left: 0;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.app-store-btn a:hover {
    left: -10px;
}

[dir="rtl"] .app-store-btn a {
    right: 0;
}

[dir="rtl"] .app-store-btn a:hover {
    left: auto;
    right: -10px;
}

.app-store-btn a img {
    max-width: 100%;
}

.banner_right {
    width: 44.61%;
    position: relative;
}

.banner_right::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 81%;
}

.banner_right img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
    display: block;
}

.home-sec-pg-banner form.gen-from .form-group label {
    left: 42px;
    width: calc(100% - 75px);
    width: -webkit-calc(100% - 75px);
    width: -moz-calc(100% - 75px);
    width: -ms-calc(100% - 75px);
    width: -o-calc(100% - 75px);
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-sec-pg-banner .categories-caption h2 {
    font-size: 42px;
    overflow: hidden;
    font-weight: 600;
    font-family: var(--desc_font);
    line-height: 1em;
    margin-bottom: 10px;
}

ul.tab-row {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 0 15px 0;
    background-color: rgba(255, 255, 255, 0.85);
}

ul.tab-row li {
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    z-index: 1;
    width: 110px;
    height: 65px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

ul.tab-row li:hover {
    opacity: 1;
}

ul.tab-row li.tab.active {
    opacity: 1;
}

ul.tab-row li:after {
    content: '';
    position: absolute;
    bottom: -15px;
    width: 100%;
    height: 3px;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

ul.tab-row li.tab.active:after {
    opacity: 1;
}

ul.tab-row li img {
    max-height: 25px;
    margin: 0 auto 15px auto;
    transform: translatex(0);
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -ms-transform: translatex(0);
    -o-transform: translatex(0);
}

ul.tab-row li span {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    width: 100%;
}

.request_ride_inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.home-sec-pg-banner .categories-block {
    position: relative;
    background-color: #F3F3F3;
    padding: 30px 25px 35px 25px;
    width: 100%;
    border: 1px solid #F2F2F2;
    text-align: center;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

form.gen-from {
    display: grid;
    grid-template-columns: auto auto 346px;
    gap: 20px;
    max-width: 1050px;
    width: 100%;
    gap: 20px;
    margin: 0 auto;
}

form.gen-from .form-group input,
form.gen-from .form-group select {
    width: 100%;
    padding: 11.5px 35px 11.5px 42px;
    border-radius: 8px;
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #fff;
    outline: 0;
}

.h__location {
    position: absolute;
    top: 15px;
    cursor: pointer;
    width: 14px;
    left: 16px;
    top: 48%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

form.gen-from .form-group input:focus {
    border: 1px solid #404040;
    outline: none;
}

form.gen-from .form-group select:focus {
    border: 1px solid #404040;
}

form.gen-from .form-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    margin-top: -9px;
    pointer-events: none;
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    transition: all 150ms ease 0s;
    -webkit-transition: all 150ms ease 0s;
    -moz-transition: all 150ms ease 0s;
    -ms-transition: all 150ms ease 0s;
    -o-transition: all 150ms ease 0s;
    font-family: var(--desc_font);
}
form.gen-from .form-group.floating label {
    top: 0px;
    background-color: #fff;
    z-index: 1;
    padding: 0 6px;
    transform: scale(0.8) translateX(-25px);
    -webkit-transform: scale(0.8) translateX(-25px);
    -moz-transform: scale(0.8) translateX(-25px);
    -ms-transform: scale(0.8) translateX(-25px);
    -o-transform: scale(0.8) translateX(-25px);
    color: #404040;
}
form.gen-from .form-group {
    position: relative;
    display: block;
}

.home-sec-pg-banner .categories-block .button-block {
    margin-bottom: 0;
}

.categories-caption.active {
    display: block;
}

.home-sec-pg-banner #_fare_estimate_form .detect-loc {
    width: 20px;
    right: 10px;
    top: 48%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.error{
    position: absolute;
    bottom: -18px;
    font-size: 12px;
    color: #f00;
    margin: 0;
    display: block;
    white-space: nowrap;
    margin: 0;
    left: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    line-height: normal;
    text-align: left;
}
.categories-caption p {
    font-size: 15px;
    color: #333;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 15px;
    text-align: center;
    overflow: hidden;
    font-family: var(--desc_font);
}

.categories-caption h2 span {
    display: block;
    margin-top: 13px;
}

.request__btn {
    display: flex;
    gap: 10px;
    width: 100%;
}

.button-block-ride .book-now-btn {
    padding: 15px 54px 15px 22px;
    text-decoration: none !important;
    display: inline-block;
    min-height: 45px;
    box-sizing: border-box;
}

.button-block-ride .book-now-btn:after {
    background-color: transparent;
}

.home-sec-pg-banner .categories-block .btn-hold input[type="submit"] {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 20px 9px 20px;
    color: #fff;
    font-family: var(--desc_font);
    width: 168px;
    text-transform: uppercase;
    border: 1px solid #000;
    white-space: normal;
    word-break: break-word;
    line-height: 1.15;
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    vertical-align: middle;
}

.home-sec-pg-banner .categories-block .button-block-ride .book-now-btn {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-color: #FDB03E;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 20px 9px 20px;
    color: #000;
    font-family: var(--desc_font);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    border: 1px solid #FDB03E;
    width: 168px;
    text-align: center;
    text-transform: uppercase;
    height: 50px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    vertical-align: middle;
}

.home-sec-pg-banner .categories-block .button-block-ride .book-now-btn:hover {
    background-color: #c3811e;
    color: #fff;
    border-color: #c3811e;
}

.home-sec-pg-banner .categories-block .btn-hold input[type="submit"]:hover {
    background: #fff;
    color: #000;
}

.gen-btn,
.button-block a.gen-btn {
    padding: 12px 25px 12px 25px;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-transform: unset;
    text-decoration: none;
    white-space: nowrap;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.3px;
    outline: none;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: capitalize;
    font-family: var(--desc_font);
    margin: 0 0 0 10px;
}

.button-block a.gen-btn:after {
    display: none;
}

.gen-btn:hover,
.gen-btn:focus,
.button-block a.gen-btn:hover,
.button-block a.gen-btn:focus {
    background-color: transparent;
}

.download-links a {
    display: inline-block;
    padding: 0 9px;
    margin: 0 0 16px 0;
    position: relative;
    left: 0;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.ui-tooltip,
.arrow:after {
    background: #191919;
    border: none;
}
.ui-widget.ui-widget-content {
    border: none;
}
.ui-tooltip {
    color: white;
    border-radius: 5px;
    font-size: 13px;
    line-height: 18px;
    padding: 5px 10px;
}
.arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -36px;
    bottom: -16px;
}
.arrow.top {
    top: -16px;
    bottom: auto;
}
.arrow.left {
    left: 20%;
}
.arrow:after {
    content: "";
    position: absolute;
    left: 30px;
    top: -5px;
    width: 10px;
    height: 10px;
    box-shadow: 6px 5px 9px -9px black;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.arrow.top:after {
    bottom: -20px;
    top: auto;
}
@-webkit-keyframes hvr-icon-buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

@keyframes hvr-icon-buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

@-webkit-keyframes hvr-icon-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

@keyframes hvr-icon-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

.btn-hold input[type="submit"] {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 54px 14px 22px;
    cursor: pointer;
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    -webkit-appearance: none;
    appearance: none;
    font-family: var(--desc_font);
}

.btn-hold input[type="submit"]:hover,
.btn-hold input[type="submit"]:focus {
    background-color: transparent;
}

.btn-hold input[type="submit"]:hover~img {}

.btn-hold img {
    width: 20px;
    position: absolute;
    right: 22px;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.btn-hold {
    position: relative;
    display: inline-block;
}

.button-block .gen-btn {
    margin-left: 0;
}

.button-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
}

.button-block a {
    text-decoration: none;
    font-size: 13px;
    color: #000000;
    font-weight: 400;
    position: relative;
}

.button-block a:hover,
.button-block a:focus {
    outline: none;
}

.button-block a:hover:after,
.button-block a:focus:after {
    width: 100%;
}

.button-block a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #000;
    bottom: -5px;
    transition: all 0.1s ease 0s;
    -webkit-transition: all 0.1s ease 0s;
    -moz-transition: all 0.1s ease 0s;
    -ms-transition: all 0.1s ease 0s;
    -o-transition: all 0.1s ease 0s;
    left: 0;
}

.captcha-column {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.captcha-column a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    position: relative;
    display: inline-block;
}

.captcha-column a:hover,
.captcha-column a:focus {
    opacity: 0.5;
    outline: none;
}

.captcha-column img {
    vertical-align: middle;
    margin: 0 0 0 10px;
}

.captcha-column span {
    margin: 8px 0;
    height: auto;
}

.general-form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

@keyframes slideleft {
    from {
        transform: translate3d(845px, 0px, 0px);
    }

    to {
        transform: translate3d(0px, 0px, 0px);
    }
}

@-webkit-keyframes jump {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
        -webkit-transition: -webkit-transform 1.4s 0.6s linear;
        transition: -webkit-transform 1.4s 0.6s linear;
        -o-transition: transform 1.4s 0.6s linear;
        transition: transform 1.4s 0.6s linear;
        transition: transform 1.4s 0.6s linear, -webkit-transform 1.4s 0.6s linear;
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes jump {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
        -webkit-transition: -webkit-transform 1.4s 0.6s linear;
        transition: -webkit-transform 1.4s 0.6s linear;
        -o-transition: transform 1.4s 0.6s linear;
        transition: transform 1.4s 0.6s linear;
        transition: transform 1.4s 0.6s linear, -webkit-transform 1.4s 0.6s linear;
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes shadow {
    0% {
        -webkit-box-shadow: 0px 35px 33px 0 #000;
        box-shadow: 0px 35px 33px 0 #000;
    }

    50% {
        -webkit-box-shadow: 0px 35px 35px -2px #000;
        box-shadow: 0px 35px 35px -2px #000;
        width: 60%;
        left: 20%;
    }

    100% {
        -webkit-box-shadow: 0px 35px 33px 0 #000;
        box-shadow: 0px 35px 33px 0 #000;
    }
}

@keyframes shadow {
    0% {
        -webkit-box-shadow: 0px 35px 33px 0 #000;
        box-shadow: 0px 35px 33px 0 #000;
    }

    50% {
        -webkit-box-shadow: 0px 35px 35px -2px #000;
        box-shadow: 0px 35px 35px -2px #000;
        width: 60%;
        left: 20%;
    }

    100% {
        -webkit-box-shadow: 0px 35px 33px 0 #000;
        box-shadow: 0px 35px 33px 0 #000;
    }
}

.radio-combo {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 15px;
    box-sizing: border-box;
    min-width: 168px;
    margin-bottom: 18px;
}

.radio-combo label {
    margin: 0;
    font-size: 16px;
    display: inline-block;
    color: #000;
    font-weight: 400;
    cursor: pointer;
    width: calc(100% - 36px);
    width: -o-calc(100% - 36px);
    width: -ms-calc(100% - 36px);
    width: -moz-calc(100% - 36px);
    width: -webkit-calc(100% - 36px);
}

.radio-combo .radio-main {
    margin-right: 10px;
}

.radio-main {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.radio-hold input {
    margin: 0;
    vertical-align: top;
    position: absolute;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    opacity: 0;
    cursor: pointer;
}

.radio-hold {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.radio-button {
    width: 22px;
    height: 22px;
    box-shadow: 0 0 0 1px #000 inset;
    display: inline-block;
    border-radius: 50%;
    pointer-events: none;
    vertical-align: top;
}

.radio-button:after {
    content: '';
    width: 22px;
    height: 22px;
    background-color: #000;
    transform: scale(0.6);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
}

.radio-hold input:checked~.radio-button:after {
    opacity: 1;
    visibility: visible;
}

.general-form .form-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    margin-top: -8px;
    pointer-events: none;
    font-size: 15px;
    color: #404040;
    font-weight: 400;
    transition: all 150ms ease 0s;
    -webkit-transition: all 150ms ease 0s;
    -moz-transition: all 150ms ease 0s;
    -ms-transition: all 150ms ease 0s;
    -o-transition: all 150ms ease 0s;
    font-family: var(--desc_font);
}

.general-form .form-group label {
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.general-form .form-group select,
.general-form .form-group input {
    width: 100%;
    padding: 14px 16px 15px 16px;
    border: 1px solid #c1c1c1;
    border-radius: 4px;
    font-size: 15px;
    color: #404040;
    font-weight: 400;
    -webkit-appearance: none;
    box-sizing: border-box;
    outline: none;
    min-height: 40px;
    font-family: var(--desc_font);
}

.general-form .form-group select:focus,
.general-form .form-group input:focus {
    border-color: #757575;
}

.general-form .form-group select {
    background-image: url(../../../img/apptype/ProXR/select-arrow.jpg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 11px;
}

.general-form .button-block .btn-hold {
    margin-right: 15px;
}

.general-form {
    margin-top: 20px;
    width: 100%;
}

.general-form .btn-hold input[type="submit"],
.general-form .btn-hold input[type="button"] {
    padding: 12px 25px 12px 25px;
}

.form-group[class*="removeclass"]:after {
    content: '';
    clear: both;
    display: block;
}

.gen-btn {
    background-color: transparent;
}

.gen-btn:hover {
    background-color: #000;

}

.icon-close {
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: 100%;
}

.custom-modal-main {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease 0s;
    -webkit-transition: 0.3s ease 0s;
    -moz-transition: 0.3s ease 0s;
    -ms-transition: 0.3s ease 0s;
    -o-transition: 0.3s ease 0s;
    z-index: 105000000;
}

.custom-modal-main.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    width: 580px;
    max-width: calc(100% - 0px);
    max-width: -o-calc(100% - 0px);
    max-width: -ms-calc(100% - 0px);
    max-width: -moz-calc(100% - 0px);
    max-width: -webkit-calc(100% - 0px);
    background-color: #fff;
    border-radius: 4px;
    position: relative;
    top: -50px;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

.custom-modal-main.active .custom-modal {
    top: 0;
}

.custom-modal .model-header h4 {
    margin: 0;
    font-size: 18px;
    color: #fff;
    line-height: normal;
}

.custom-modal .model-header i {
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-modal .model-header {
    padding: 20px 25px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    border-radius: 4px 4px 0 0;
}

.custom-modal .model-body {
    padding: 20px 25px;
}

.custom-modal .model-footer {
    padding: 0 25px;
    justify-content: flex-start;
    background-color: transparent;
    border: none;
}

.custom-modal .model-footer .button-block {
    justify-content: center;
}

.custom-modal .model-footer .button-block {
    margin-top: 20px;
}

.newrow {

    justify-content: center;
}

.custom-modal .model-footer .gen-btn {
    margin: 0 5px 10px 5px;
}

.custom-modal .captcha-column .form-group {
    margin-bottom: 0;
}

.custom-modal .general-form {
    margin-top: 0;
}

[id*='RentalVehicleType_'] {
    width: 100%;
}

.form-group strong {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
    margin-top: -3px;
    font-family: var(--desc_font);
}

.detect-loc {
    position: absolute;
    width: 40px;
    right: 55px;
    top: 15px;
    cursor: pointer;
}

.btn-hold input[type="button"] {
    background-color: black;
    border: none;
    outline: none;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 25px 12px 25px;
    cursor: pointer;
    color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    -webkit-appearance: none;
    font-family: var(--desc_font);
}

.btn-hold input[type="button"] {
    font-size: 17px;
}

@media screen and (max-width:1199px) {
    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .home-applink-buttons {
        display: grid;
        grid-template-columns: 250px 250px;
        gap: 20px;
    }

    .home-sec-pg-banner .categories-block {
        padding: 20px;
    }

    .home-sec-pg-banner .categories-caption h2 {
        font-size: 35px;
    }

    form.gen-from {
        grid-template-columns: auto auto auto;
        gap: 10px;
        max-width: 100%;
        width: 100%;
    }

    .categories-caption {
        min-height: unset;
    }

    ul.tab-row li {
        margin: 0 30px;
    }

    ul.tab-row {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
}

@media screen and (max-width:1024px) {
    ul.tab-row li {
        width: 98px;
    }
}

@media screen and (max-width:991px) {
    .banner-section-inner {
        flex-direction: column-reverse;
        gap: 20px;
        padding: 0 15px 40px 15px;
    }

    .banner_left {
        width: 100%;
    }

    .banner_right {
        width: 571px;
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }

    form.gen-from {
        grid-template-columns: auto auto;
        gap: 20px 10px;
    }

    .home-applink-buttons {
        grid-template-columns: 250px 250px;
    }

    .categories-caption h2 {
        font-size: 35px;
        line-height: normal;
    }

    .categories-caption h2 span {
        margin-top: 0;
    }

    .gotop {
        right: 15px;
    }

    .gotop.active {
        bottom: 10px;
    }

    .download-links {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        width: auto;
    }
}

@media screen and (max-width:768px) {
    form.gen-from {
        display: flex;
        flex-direction: column;
    }

    .custom-modal-main {
        align-items: flex-start;
        overflow-y: auto;
    }

    .categories-caption h2 {
        font-size: 28px;
        line-height: normal;
    }

    ul.tab-row li {
        margin: 0 25px;
        min-width: unset;
        width: 98px;
    }

    ul.tab-row li img {
        max-height: 20px;
        margin-bottom: 9px;
    }

    .download-links a {
        margin-bottom: 15px;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-top {
        padding-bottom: 0;
    }

    .footer-bottom .footer-inner span {
        text-align: center;
    }

    .footer-bottom .footer-inner {
        justify-content: center;
    }

    ul.social-media-list {
        border: none;
        margin-top: 0;
    }

    .common-title.havedesc p {
        font-size: 15px;
        line-height: 25px;
    }
}

@media screen and (max-width:630px) {
    .banner-section {
        padding: 40px 0 40px 0;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 15px !important;
        line-height: 24px !important;
    }

    .app-store-btn {
        margin-top: 10px;
    }

    .app-store-btn .banner-download-title {
        font-size: 20px;
        line-height: 1em;
    }

    .home-sec-pg-banner .categories-caption h2 {
        font-size: 24px;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 15px;
    }

    ul.social-media-list {
        padding-top: 0;
    }
    .banner_right img {
        position: relative;
    }
    .banner_right::before {
        display: none;
    }
}

@media screen and (max-width:530px) {
    .home-applink-buttons {
        display: flex;
        gap: 15px;
    }

    .app-store-btn a {
        width: calc((100% / 2) - 15px);
        width: -webkit-calc((100% / 2) - 15px);
        width: -moz-calc((100% / 2) - 15px);
        width: -ms-calc((100% / 2) - 15px);
        width: -o-calc((100% / 2) - 15px);
    }
}

@media screen and (max-width:480px) {
    .categories-caption p {
        line-height: normal;
        font-size: 17px;
    }

    .captcha-column span {
        font-size: 12px;
    }

    .captcha-column img {
        width: 80px;
    }

    .custom-modal .model-body {
        padding: 20px 0 20px 10px !important;
    }

    .custom-modal .model-footer {
        padding: 0 0 0 10px !important;
    }

    .gen-btn,
    .button-block a.gen-btn {
        padding: 10px 25px 10px 25px !important;
    }
}

@media screen and (min-width:1921px) {
    #wrapper.dashboard {
        max-width: 1920px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        background-color: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    }

    .banner-section-inner:after {
        content: '';
        clear: both;
        display: block;
    }
}

@media (max-width:991px) {
    body {
        overflow: inherit;
    }
}

@media (max-width:500px) {
    .home-sec-pg-banner .categories-block .button-block-ride .book-now-btn {
        width: 100%;
        line-height: normal;
    }
}

/* Source: home-new-2022.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

.home-caption-desc a.common-button,
.home-button-block a.common-button {
    font-family: var(--desc_font);
    font-weight: 600;
    font-size: 17px;
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    display: inline-flex;
    padding: 16.5px 13px;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #000;
}

.home-caption-desc a.common-button:hover,
.home-button-block a.common-button:hover {
    background-color: #fff;
    color: #000;
}

.home-caption-desc a.common-button i,
.home-button-block a.common-button i {
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    width: 15px;
    height: 15px;
}
.home-caption-desc a.common-button i img,
.home-button-block a.common-button i img{
    filter: grayscale(100%);
}
.home-caption-desc a.common-button:hover i,
.home-button-block a.common-button:hover i {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
}

.home-button-block a {
    color: #555555;
    font-size: 18px;
}

.home-button-block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 37px;
    align-items: center;
}

.common-title h3 {
    font-size: 52px;
    font-weight: 600;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    color: #000;
    font-family: var(--desc_font);
    line-height: 1em;
    margin-top: -8px;
}

.common-title.havedesc h3 {
    margin-bottom: 10px;
}

.common-title.havedesc p {
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    font-weight: 400;
    color: #000;
    font-family: var(--desc_font);
}

.common-title.havedesc {
    margin-bottom: 15px;
}

.workingprocess {
    padding: 60px 0 0 0;
}

.workingprocess-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

.workingprocess ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.workingprocess ul li {
    box-sizing: border-box;
}

.workingprocess ul li .workingprocess-block strong {
    display: block;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--desc_font);
    text-transform: initial;
    color: #000;
    margin: 20px 0 15px 0;
}

.workingprocess ul li .workingprocess-block .proc_ico {
    height: 130px;
    margin: 0 auto;
}

.workingprocess ul li .workingprocess-block {
    padding: 25px 14px;
    min-height: 100%;
    background-color: #F3F3F3;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.12), 0 0 1px 0 #fff inset;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    text-align: center;
}

.workingprocess ul li .workingprocess-block:hover {
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12), 0 0 0 1px #FDAF3E inset;
}

.workingprocess ul li p {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    line-height: 21.79px;
    font-family: var(--desc_font);
    width: 100%;
    display: block;
}

.p__0 {
    padding: 0 !important;
}

.bg__section {
    background-color: #FAFAFA;
}

.main-components {
    padding: 60px 0;
}

.main-components-inner {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 66px;
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

.setImageRatio {
    position: relative;
}

.main-components-left {
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 23.47px;
    -webkit-border-radius: 23.47px;
    -moz-border-radius: 23.47px;
    -ms-border-radius: 23.47px;
    -o-border-radius: 23.47px;
    overflow: hidden;
}

.main-components-left.add_bg {
    background-color: #F8F8F8;
    border: 1px solid #CCCCCC;
}

.main-components .setImageRatio:before {
    content: '';
    display: block;
    padding-top: 70.54%;
}

.main-components .setImageRatio img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: scale-down;
    object-position: center center;
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
}

.home-caption-desc {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--desc_font);
}

.main-components-caption h3 {
    font-size: 36px;
    color: #000;
    font-weight: 600;
    font-family: var(--desc_font);
    margin-bottom: 29px;
    display: block;
    line-height: 1.2em;
}

.main-services {
    padding: 0 0 60px 0;
}

.main-services-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.main-services ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
}

.main-services ul li {
    box-sizing: border-box;
    position: relative;
    padding: 0 30px;
}

.main-services ul li::after {
    content: '';
    background: linear-gradient(180deg,
            #F5F5F5 0%,
            #CBCBCB 45%,
            #F5F5F5 100%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
}

.main-services ul li:last-child::after,
.main-services ul li:nth-child(3)::after,
.main-services ul li:nth-child(6)::after,
.main-services ul li:nth-child(9)::after,
.main-services ul li:nth-child(12)::after,
.main-services ul li:nth-child(15)::after {
    display: none;
}

.main-services ul li i img {
    width: 64px;
}

.main-services ul li strong {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    font-family: var(--desc_font);
    margin: 10px 0 15px 0;
    display: block;
}

.main-services ul li p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 26px;
    font-family: var(--desc_font);
}

.main-services ul li::before {
    content: attr(data-number);
    font-size: 80px;
    color: #F3F3F3;
    font-weight: 600;
    display: block;
    margin-bottom: -80px;
    margin-left: 25px;
    z-index: 0;
}

.download {
    padding: 40px 0;
    background-color: #F5F5F5;
}

.download-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

.download ul {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.download ul li {
    width: calc((100% / 3) - 17px);
    width: -webkit-calc((100% / 3) - 17px);
    width: -moz-calc((100% / 3) - 17px);
    width: -ms-calc((100% / 3) - 17px);
    width: -o-calc((100% / 3) - 17px);
}

.download ul li a {
    padding: 15px 20px;
    border-radius: 22px;
    background-color: #fff;
    display: grid;
    grid-template-columns: 102px auto;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: #000;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.12), 0 0 1px 0 #fff inset;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;

}

.download ul li a > img {
    height: 102px;
}

.download ul li a i {
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    position: relative;
    transform: translatex(0);
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -ms-transform: translatex(0);
    -o-transform: translatex(0);
}

.download ul li a:hover i {
    transform: translatex(10px);
    -webkit-transform: translatex(10px);
    -moz-transform: translatex(10px);
    -ms-transform: translatex(10px);
    -o-transform: translatex(10px);
    color: #FDB03E;
}

.download ul li a:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12), 0 0 0 1px #FDB03E inset;
}

.download ul li strong {
    display: grid;
    grid-template-columns: auto 24px;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 7px 0;
    align-items: center;
    gap: 10px;
}

.download ul li strong i {
    width: 18px;
    height: 18px;
}
.download ul li p {
    font-size: 16px;
    color: #333;
}

.banner-content p {
    text-align: justify;
}

.become {
    padding: 60px 0 60px 0;
}

.become-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.become ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.become ul li {
    width: calc((100% / 5) - 16px);
    width: -o-calc((100% / 5) - 16px);
    width: -moz-calc((100% / 5) - 16px);
    width: -webkit-calc((100% / 5) - 16px);
    flex-grow: 1;
}

.become ul li a {
    padding: 20px 1px 1px 1px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    display: flex;
    text-decoration: none;
    min-height: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.12);
    outline: 1px solid #D7D7D7;
}

.become ul li .setImageRatio {
    height: 171px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.become ul li img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    vertical-align: top;
    object-position: bottom center;
}

.become ul li a strong {
    text-transform: initial;
    font-size: 16px;
    display: block;
    text-align: center;
    margin-bottom: 12px;
    color: #000;
    font-weight: 600;
    line-height: normal;
    padding: 0 10px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.become ul li a strong i {
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    opacity: 0;
    font-size: 19px;
}

.become ul li a:hover strong i {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    opacity: 1;
    color: #FDB03E;
}

.become ul li a:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
    outline-color: #FDB03E;
}

.activity_sec {
    padding: 50px 0 0 0;
}

.activity_inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.ac-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ac-card {
    border-radius: 20px;
    padding: 28px 28px 24px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ac-card-relocation {
    background: #FAEADA;
}

.ac-card-immigration {
    background: #E1F0E8;
}

.ac-card-body {
    margin-top: auto;
}

.ac-card-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.25;
}

.ac-card-relocation .ac-card-title {
    color: #2C1508;
}

.ac-card-immigration .ac-card-title {
    color: #052818;
}

.ac-card-accent {
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 160px;
    pointer-events: none;
    opacity: 0.35;
}

.home-caption-desc a {
    display: inline-flex;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #25D366;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 13.5px 13px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    pointer-events: none;
    border: 1px solid #25D366;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

.home-caption-desc a:hover .wa-btn {
    color: #25D366;
    background: #fff;
}

.wa-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.home-caption-desc a:hover .wa-btn path {
    fill: #25D366 !important;
}

.home-caption-desc a:hover .wa-btn path:last-child {
    fill: #fff !important;
}

@media (max-width:1279px) {
    .become ul li strong span {
        font-size: 14px;
    }
}

@media (max-width:1199px) {
    .common-title h3 {
        font-size: 40px;
    }

    .workingprocess ul li .workingprocess-block strong {
        font-size: 18px;
        margin: 20px 0 15px 0;
    }

    .download ul li {
        width: calc((100% / 2) - 13px);
        width: -webkit-calc((100% / 2) - 13px);
        width: -moz-calc((100% / 2) - 13px);
        width: -ms-calc((100% / 2) - 13px);
        width: -o-calc((100% / 2) - 13px);
    }

    .main-components-caption h3 {
        font-size: 30px;
    }

    .main-services ul li {
        padding: 0 15px;
    }

    .main-services ul li::before {
        font-size: 60px;
    }
}

@media (max-width:1024px) {
    .main-components-inner {
        gap: 20px;
    }

    .workingprocess ul li .workingprocess-block {
        padding: 15px;
        min-height: 100%;
        background-position: 0;
    }
}

@media screen and (max-width:991px) {
    .workingprocess ul {
        grid-template-columns: 1fr 1fr;
    }

    .workingprocess {
        padding: 50px 0 20px 0;
    }

    .main-components-inner {
        display: flex;
        flex-direction: column;
    }

    .main-components-left {
        width: 100%;
        text-align: center;
        max-width: 700px;
    }

    .main-components-right {
        width: 100%;
    }

    .main-components-caption {
        padding: 0 15px;
    }

    .main-services ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .main-services ul li {
        padding: 0;
    }

    .main-services ul li::after {
        display: none;
    }

    .main-services ul li::before {
        font-size: 50px;
        margin-bottom: -60px;
    }

    .main-components {
        padding: 50px 0;
    }

    .bg__section .main-components:nth-child(2n) .main-components-inner {
        flex-direction: column-reverse;
    }

    .main-components.p__0 .main-components-inner {
        flex-direction: column-reverse;
    }

    .main-components-caption h3 {
        margin-bottom: 10px;
    }

    .home-button-block {
        margin-top: 15px;
    }

    .become ul {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .common-title.havedesc p {
        text-align: justify;
    }

    .become ul li {
        width: calc((100% / 3) - 16px);
        width: -o-calc((100% / 3) - 16px);
        width: -moz-calc((100% / 3) - 16px);
        width: -webkit-calc((100% / 3) - 16px);
    }

    .ac-cards-grid {
        grid-template-columns: 100%;
    }
}

@media screen and (max-width:767px) {
    .become ul li strong {
        font-size: 20px;
    }

    .become ul {
        gap: 20px;
    }

    .become ul li {
        width: 100%;
    }

    .download ul li {
        width: 100%;
    }
}

@media screen and (max-width:630px) {
    .workingprocess ul {
        margin: 0;
    }

    .workingprocess ul {
        grid-template-columns: 100%;
    }

    .common-title h3 {
        font-size: 27px;
    }

    .main-components-caption h3 {
        font-size: 25px;
    }

    .become ul {
        grid-template-columns: 1fr 1fr;
    }

    .become ul li strong {
        font-size: 22px !important;
    }

    .main-components-caption {
        padding: 0;
    }

    .main-components {
        padding: 40px 0;
    }

    .main-services {
        padding: 0 0 40px 0;
    }

    .become {
        padding: 40px 0 40px 0;
    }
}

@media (max-width:500px) {
    .main-services ul {
        grid-template-columns: 100%;
    }

    .request__btn {
        flex-direction: column;
        justify-content: center;
    }

    .main-services ul li {
        padding: 10px 0;
    }

    .home-sec-pg-banner .categories-block .btn-hold input[type="submit"] {
        min-width: initial;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .main-services ul li strong {
        font-size: 18px;
    }

    .main-services ul li::before {
        font-size: 40px;
    }

    .main-components-caption h3 {
        font-size: 24px;
    }

    .common-title h3 {
        margin: 0;
    }

    .home-caption-desc a.common-button,
    .home-button-block a.common-button {
        font-size: 16px;
    }

    .download ul {
        gap: 15px;
    }

    .download ul li strong {
        font-size: 20px;
    }

    .download ul li p {
        font-size: 16px;
        color: #333;
    }

    .become ul li strong {
        font-size: 20px !important;
    }
}

@media screen and (max-width:480px) {
    .become ul {
        grid-template-columns: 100%;
    }

    .download ul li a > img {
        height: 82px;
    }

    .download ul li a {
        padding: 15px;
        border-radius: 12px;
        grid-template-columns: 82px auto;
        gap: 15px;
    }

    form.gen-from .form-group label {
        font-size: 14px;
    }
}

/* Source: style_rtl.css */

[dir="rtl"] .home-sec-pg-banner #_fare_estimate_form .detect-loc {
    left: 10px;
    right: auto;
}

[dir="rtl"] .main-services ul li::after {
    right: auto;
    left: 0;
}

[dir="rtl"] .main-services ul li::before {
    margin-left: 0;
    margin-right: 25px;
}

[dir="rtl"] .become ul li a strong i,
[dir="rtl"] .home-caption-desc a.common-button i,
[dir="rtl"] .home-button-block a.common-button i {
    transform: rotate(180deg) translateX(0);
    -webkit-transform: rotate(180deg) translateX(0);
    -moz-transform: rotate(180deg) translateX(0);
    -ms-transform: rotate(180deg) translateX(0);
    -o-transform: rotate(180deg) translateX(0);
}

[dir="rtl"] .home-caption-desc a.common-button:hover i,
[dir="rtl"] .home-button-block a.common-button:hover i {
    transform: rotate(180deg) translateX(5px);
    -webkit-transform: rotate(180deg) translateX(5px);
    -moz-transform: rotate(180deg) translateX(5px);
    -ms-transform: rotate(180deg) translateX(5px);
    -o-transform: rotate(180deg) translateX(5px);
}

[dir="rtl"] .become ul li a:hover strong i {
    transform: rotate(180deg) translateX(10px);
    -webkit-transform: rotate(180deg) translateX(10px);
    -moz-transform: rotate(180deg) translateX(10px);
    -ms-transform: rotate(180deg) translateX(10px);
    -o-transform: rotate(180deg) translateX(10px);
}

[dir="rtl"] .download ul li strong i {
    transform: rotateY(180deg) translateX(0);
    -webkit-transform: rotateY(180deg) translateX(0);
    -moz-transform: rotateY(180deg) translateX(0);
    -ms-transform: rotateY(180deg) translateX(0);
    -o-transform: rotateY(180deg) translateX(0);
}

[dir="rtl"] .download ul li:hover strong i {
    transform: rotateY(180deg) translateX(10px);
    -webkit-transform: rotateY(180deg) translateX(10px);
    -moz-transform: rotateY(180deg) translateX(10px);
    -ms-transform: rotateY(180deg) translateX(10px);
    -o-transform: rotateY(180deg) translateX(10px);
}

[dir="rtl"] form.gen-from .form-group.pickup-location:before {
    left: auto;
    right: 20px;
    background-position: right top 8px;
}

[dir="rtl"] form.gen-from .form-group.drop-location:before {
    left: auto;
    right: 24px;
}

[dir="rtl"] form.gen-from .form-group.drop-location:after {
    left: auto;
    right: 20px;
}


[dir="rtl"] .btn-hold input[type="submit"] {
    padding: 14px 22px 14px 54px;
}

[dir="rtl"] .btn-hold img {
    right: auto;
    left: 22px;
    transform: rotateY(180deg) translateY(-50%);
    -webkit-transform: rotateY(180deg) translateY(-50%);
    -moz-transform: rotateY(180deg) translateY(-50%);
    -ms-transform: rotateY(180deg) translateY(-50%);
    -o-transform: rotateY(180deg) translateY(-50%);
}

[dir="rtl"] .button-block a:after {
    left: auto;
    right: 0;
}

[dir="rtl"] .general-form .form-group label {
    left: auto;
    right: 16px;
}

[dir="rtl"] .radio-combo {
    padding: 0 0 0 15px;
}

[dir="rtl"] .radio-combo .radio-main {
    margin: 0 0 0 14px;
}

[dir="rtl"] .general-form .btn-hold input[type="submit"] {
    padding: 14px 22px 14px 22px;
}

[dir="rtl"] .general-form .button-block .btn-hold {
    margin: 0 0 0 15px;
}

[dir="rtl"] .general-form .form-group select {
    background-position: left 10px center;
}

[dir="rtl"] .column a.active img {
    margin: 0 0 0 10px;
}

[dir="rtl"] .captcha-column img {
    margin: 0 10px 0 0;
}

[dir="rtl"] form.gen-from .form-group input {
    padding: 11.5px 42px 11.5px 35px;
}

[dir="rtl"] .h__location {
    right: 16px;
}

[dir="rtl"] .button-block.button-block-ride .btn-hold {
    margin: 0 0 10px 20px;
}
[dir="rtl"] .home-sec-pg-banner .categories-block form.gen-from .form-group .error {
    right: 20px;
    left: auto;
    text-align: right;
}
[dir="rtl"] .home-sec-pg-banner form.gen-from .form-group.floating label {
    left: auto;
    right: 42px;
    text-align: right;
    transform: scale(0.8) translateX(25px);
    -webkit-transform: scale(0.8) translateX(25px);
    -moz-transform: scale(0.8) translateX(25px);
    -ms-transform: scale(0.8) translateX(25px);
    -o-transform: scale(0.8) translateX(25px);
}
[dir="rtl"] .home-sec-pg-banner form.gen-from .form-group label {
    text-align: right;
}
/* ==========================================================
   RTL STYLES — [dir="rtl"] overrides
   Extracted from rtl.css in original file order
   ========================================================== */

/* ----------------------------------------------------------
   RTL 1. PROFILE IMAGE — margin flipped for RTL
   (appears before ul.user-menu in rtl file)
   ---------------------------------------------------------- */
[dir="rtl"] .profile-image {
    margin: 0 0 0 30px;
}


/* ----------------------------------------------------------
   RTL 2. UL.USER-MENU — slide from right side in RTL
   ---------------------------------------------------------- */
[dir="rtl"] ul.user-menu {
    left: auto;
    right: 0;
    transform: translateX(340px);
    -webkit-transform: translateX(340px);
    -moz-transform: translateX(340px);
    -ms-transform: translateX(340px);
    -o-transform: translateX(340px);
}


/* ----------------------------------------------------------
   RTL 3. MENU ICOHOLDER SIDE — position flipped
   ---------------------------------------------------------- */
[dir="rtl"] .menu-icoholder-side {
    left: auto;
    right: 0;
}


/* ----------------------------------------------------------
   RTL 4. USER MENU ICON — margin flipped
   ---------------------------------------------------------- */
[dir="rtl"] ul.user-menu li a i {
    margin-right: 0;
    margin-left: 15px;
}


/* ----------------------------------------------------------
   RTL 5. SIDEBAR PROFILE BLOCK (05-02-2024)
   ---------------------------------------------------------- */
[dir="rtl"] .left-menu-logo {
    padding: 11px 50px 12px 28px;
}

[dir="rtl"] .close__menu {
    right: auto;
    left: 10px;
}

[dir="rtl"] .side_menu_profile .profile-image {
    margin: 0;
}

@media screen and (max-width:991px) {
    [dir="rtl"] .mobile_language_cur {
        margin-left: 0;
        margin-right: auto;
    }
}

@media screen and (max-width:767px) {
    [dir="rtl"] .menu-icoholder {
        margin: 0 10px 0 5px;
    }
}

@media screen and (max-width: 530px) {
    [dir="rtl"] .profile-image {
        margin: 0 auto;
    }
}


@media screen and (max-width:480px) {
    [dir="rtl"] .button-block.button-block-ride .btn-hold {
        margin: 0 0 10px 10px;
    }
}
