* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::after,
*::before {
    box-sizing: border-box;
}

:root {
    --main-color: #FFC73D;
    --light-color: #F7F7F7;
    --button-color: #052973;
    --hover-color: #d6ab1d;
}

@keyframes pulse-me {
    0% {
        transform: scale(.9);
        opacity: .2;
        -webkit-transform: scale(.9);
        -moz-transform: scale(.9);
        -ms-transform: scale(.9);
        -o-transform: scale(.9)
    }

    50% {
        opacity: .5
    }

    70% {
        opacity: .09
    }

    100% {
        transform: scale(2.1);
        opacity: 0;
        -webkit-transform: scale(2.1);
        -moz-transform: scale(2.1);
        -ms-transform: scale(2.1);
        -o-transform: scale(2.1)
    }
}

main {
    margin: 80px auto 0 auto;
    max-width: 1920px;
}

main>* {
    padding: 45px 0;
}

[data-toggle="popup"], .common-button {
    background-color: var(--main-color);
    font-size: 18px;
    text-transform: initial;
    font-weight: 600;
    padding: 12px 15px 14px 15px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    line-height: 1em;
}

[data-toggle="popup"]:hover,
.common-button:hover {
    background-color: var(--hover-color);
    color: #fff;
}

a:hover,
a:focus,
a:active,
a:valid,
a {
    text-decoration: none;
}

button {
    outline: none;
    border: none;
}

.enq-popup-button-block {
    text-align: center;
}

* {
    box-sizing: border-box;
}

ul,
li,
ol {
    list-style: none;
    margin: 0;
}

img {
    border: none;
    outline: 0;
    max-width: 100%;
}

.btn__div {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    grid-gap: 20px;
    margin: 15px 0 0 0;
}

.btn__div.center {
    justify-content: center;
}

.right-btn {
    margin-left: auto;
}

.play-anim-ico {
    background-image: url(../index-2.html);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 60px;
    position: absolute;
    height: 60px;
    left: 50px;
    bottom: 25px;
    z-index: 111;
    margin-left: -25px;
}

.play-anim-ico:after {
    position: absolute;
    width: 34px;
    height: 34px;
    content: '';
    left: 50%;
    top: 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: -17px 0 0 -17px;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 0 0 13px #ffffff;
    transform: scale(0.9);
    transform-origin: center center;
    animation: pulse-me 1s linear infinite;
    -webkit-animation: pulse-me 1s linear infinite;
}

.play-anim-ico.theme {
    background-image: url(../index-2.html);
}

.play-anim-ico.theme:after {
    box-shadow: 0 0 0 13px #1D59C4;
}

.common-btn {
    background-color: var(--main-color);
    font-size: 18px;
    line-height: 1em;
    text-transform: capitalize;
    font-weight: bold;
    padding: 16px 15px;
    min-height: 55px;
    min-width: 210px;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-gap: 12px;
    border-radius: 12px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    box-shadow: 7px 8px 31px rgba(20, 54, 91, 0.11);
    position: relative;
    z-index: 1;

}

.common-btn img {
    width: 24px;
    height: 24px;
}

.common-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 0;
    background-color: var(--hover-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    z-index: -1;
}

.common-btn::after {
    content: '';
    height: 0%;
    width: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    z-index: -1;
}

.common-btn:hover::before,
.common-btn:hover::after {
    height: 100%;
    width: 100%;
}

.common-btn:hover {
    color: #000;
}

.common-btn.bg-white {
    background-color: #fff;
    color: var(--main-color);
}

.common-btn.bg-white:hover {
    background-color: #000;
    color: #fff;
}

.border-btn {
    color: #1D59C4;
    text-align: center;
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    padding: 10px 15px 12px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 7.175px;
    border: 1px solid #1D59C4;
    background: transparent;
    -webkit-border-radius: 7.175px;
    -moz-border-radius: 7.175px;
    -ms-border-radius: 7.175px;
    -o-border-radius: 7.175px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.border-btn:hover,
.border-btn:focus {
    background: #1D59C4;
    color: #fff;
    border: 1px solid #1D59C4;
}

.border-btn img {
    height: 12px;
    vertical-align: middle;
}

.border-btn:hover img {
    filter: brightness(0) invert(1);
}

p strong {
    font-size: 20px;
    color: #424242;
}

p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000;
    font-weight: 400;
    text-align: justify;
}

p:last-child {
    margin-bottom: 0;
}

.heading-area {
    width: 100%;
    display: block;
    margin: 0 0 15px 0;
}

.main-title {
    color: #000;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2em;
    font-weight: bold;
    text-transform: capitalize;
    margin-top: -8px;
}

.sub-title {
    color: #000;
    font-size: 18.54px;
    font-weight: 700;
    line-height: 1.2em;
    display: block;
    margin: 5px 0 15px 0;
}

.heading-area.center>* {
    text-align: center;
}

.heading-area.white>* {
    color: #fff;
}

.heading-area.white .main-title>* {
    color: #fff;
}

.heading-area.flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.flex-hed {
    width: calc(100% - 300px);
    width: -webkit-calc(100% - 300px);
    width: -moz-calc(100% - 300px);
    width: -ms-calc(100% - 300px);
    width: -o-calc(100% - 300px);
}

.heading-area>p {
    margin-top: 5px;
}

.deskop-none {
    display: none;
}

.main__color {
    color: var(--main-color);
}

main {
    max-width: 1920px;
    margin: 80px auto 0 auto;
}
.banner .demo-video {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.demo-video a img {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-bottom: 2px;
}
a.btn-color1 {
    background-color: #0c8ee4;
}
a.btn-color1:hover {
    background-color: #0976be;
}

a.btn-color2 {
    background-color: #0fb158;
}

.btn-color2:hover {
    background-color: #0a8d45;
}

/* ------------------------------------------ */
.banner {
    position: relative;
    background-image: url(bg-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
}

.banner::before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(to right, #fffbf0 0%, #fff5dc 53%, #eeaf11 100%);
}

.banner-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.banner-left {
    width: 48%;
}

.banner h1 {
    font-size: 51px;
    color: #000;
    font-weight: bold;
    line-height: normal;
    text-transform: capitalize;
    margin: 0 0 15px 0;
}

.banner p {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    line-height: 1.5em;
}

.banner-right {
    width: 48%;
}

.fet__innner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.fet__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.fet__list li {
    width: calc(50% - 15px);
    width: -webkit-calc(50% - 15px);
    width: -moz-calc(50% - 15px);
    width: -ms-calc(50% - 15px);
    width: -o-calc(50% - 15px);
}

.fet__caption {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    position: relative;
    background-color: #F8DFE5;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 25px;
    min-height: 100%;
    overflow: hidden;
}

.fet__caption::before {
    content: '';
    display: block;
    position: absolute;
    right: -3px;
    top: -3px;
    width: 82px;
    height: 82px;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    background-color: #CF2550;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
}

.fet__caption strong {
    font-size: 22px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    display: block;
}

.fet__caption i img {
    width: 44px;
    height: 44px;
    display: inline-block;
    font-size: 0;
}

.fet__list li:last-child .fet__caption {
    background-color: #E4EFF4;
}

.fet__list li:last-child .fet__caption::before {
    background-color: #4790B6;
}

.why-choose {
    background-image: url(why.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left center;
    background-color: var(--light-color);
}

.why-choose-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.why-choose-left {
    width: 39%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.why-choose-left .main-image {
    position: relative;
    border-radius: 50%;
    width: 100%;
    z-index: 1;
}

.why-choose-left .main-image::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
}

.why-choose-left .main-image::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    border: 2.21px solid var(--main-color);
    transform: translate(-14px, -8px);
    -webkit-transform: translate(-14px, -8px);
    -moz-transform: translate(-14px, -8px);
    -ms-transform: translate(-14px, -8px);
    -o-transform: translate(-14px, -8px);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: -1;
}

.why-choose-left .main-image>img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center right;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.why-choose-right {
    width: 51%;
}

.__wc_list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin: 0 0 5px 0;
}

.wc__box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.wc__box i {
    width: 48px;
    height: 48px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.wc__box i img {
    width: 28px;
    height: 28px;
    display: inline-block;
    font-size: 0;
}

.wc__box .wc__right {
    width: calc(100% - 68px);
    width: -webkit-calc(100% - 68px);
    width: -moz-calc(100% - 68px);
    width: -ms-calc(100% - 68px);
    width: -o-calc(100% - 68px);
}

.wc__box strong {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    line-height: 1em;
    margin: 0 0 10px 0;
    text-transform: capitalize;
}

/* ================================================== */
.pf-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.pf_list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 20px;
}

.pf_list li {
    width: calc(33.33% - 20px);
    width: -webkit-calc(33.33% - 20px);
    width: -moz-calc(33.33% - 20px);
    width: -ms-calc(33.33% - 20px);
    width: -o-calc(33.33% - 20px);
}

.pf_caption {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.pf_caption i {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    font-size: 40px;
    color: #fff;
}

.pf_caption .pf_content {
    width: calc(100% - 96px);
    width: -webkit-calc(100% - 96px);
    width: -moz-calc(100% - 96px);
    width: -ms-calc(100% - 96px);
    width: -o-calc(100% - 96px);
}

.pf_caption .pf_content strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    display: block;
    margin: 0 0 5px 0;
    line-height: 1.2em;
    text-transform: capitalize;
}

/* ================================================== */
.bu-section {
    background-color: var(--light-color);
}

.bu_inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.bu_left {
    width: 37%;
}

.bu_right {
    width: 61%;
}

.bu_right b {
    display: block;
    font-size: 20px;
    color: #000;
    margin: 0 0 14px 0;
}

.bu__list li {
    font-size: 16px;
    color: #000;
    list-style: none;
    padding-left: 21px;
    position: relative;
    margin-bottom: 7px;
    font-weight: 400;
    line-height: 23px;
}
.bu__list li:last-child{
    margin-bottom: 0;
}
.bu__list li strong {
    text-transform: capitalize;
}

.bu__list li:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--main-color);
    border-radius: 50%;
    left: 0;
    top: 7px;
}

/* ================================================== */
.script-app {
    /* overflow: hidden; */
    /* padding: 4.84% 0; */
    position: relative;
}

/* .script-app::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url(../images/start-your-own-uber-new/benefits.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 43%;
    height: 100%;
  } */
.script-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.script_left {
    width: 48%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.script_right {
    width: 50%;
}

.script_right .script_right_inner {
    margin-left: -12%;
    background: #fff;
    position: relative;
    padding: 6% 0 6% 6%;
}

.script_right b {
    display: block;
    font-size: 18px;
    color: #000;
    margin: 0 0 14px 0;
}

.script_list li {
    font-size: 16px;
    color: #000;
    list-style: none;
    padding-left: 21px;
    position: relative;
    margin-bottom: 7px;
    font-weight: 400;
    line-height: 23px;
}

.script_list li:last-child {
    margin-bottom: 0;
}

.script_list li strong {
    text-transform: capitalize;
}

.script_list li:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--main-color);
    border-radius: 50%;
    left: 0;
    top: 7px;
}

/* ================================================== */
.ot-app {
    background-color: var(--light-color);
}

.ot-app-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.ot-app-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 20px;
}

.ot-app-list li {
    width: calc(50% - 10px);
    width: -webkit-calc(50% - 10px);
    width: -moz-calc(50% - 10px);
    width: -ms-calc(50% - 10px);
    width: -o-calc(50% - 10px);
}

.ot-app-list .ot-app-box {
    background-color: #fff;
    border: 1px solid #E0E0E0;
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 100%;
}

.ot-app-box i {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.ot-app-box>img {
    width: 55px;
    height: 55px;
    display: inline-block;
    font-size: 0;
}

.ot-app-content {
    width: calc(100% - 120px);
    width: -webkit-calc(100% - 120px);
    width: -moz-calc(100% - 120px);
    width: -ms-calc(100% - 120px);
    width: -o-calc(100% - 120px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.ot-app-content strong {
    font-size: 22px;
    color: #283033;
    display: block;
    margin: 0 0 10px 0;
    text-transform: capitalize;
}

.read-more {
    display: inline-flex;
    font-size: 19.19px;
    color: #ff6e00;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.read-more .Arrow {
    width: 12px;
}

.read-more:hover {
    color: #000;
}

.read-more:hover img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(105%) contrast(100%);
}

/* ================================================== */

@media (max-width:1400px) {
    .banner-right {
        width: 40%;
    }
    .banner h1 {
        font-size: 42px;
        line-height: 1em;
    }
}
@media (max-width:1199px) {
    .banner h1 {
        font-size: 45px;
    }

    .why-choose {
        background-image: none;
    }

    .why-choose-left {
        width: 45%;
    }
}

@media (max-width:991px) {
    .main-title {
        font-size: 32px;
    }

    .banner {
        background-image: none;
    }

    .banner-inner {
        flex-direction: column-reverse;
    }

    .banner-right {
        width: 100%;
        margin: 0 0 25px 0;
    }

    .banner-left {
        width: 100%;
    }

    .banner h1 {
        font-size: 40px;
    }

    .fet__list li {
        width: 100%;
    }

    .why-choose-right {
        width: 100%;
    }

    .why-choose-left {
        width: calc(100% - 25px);
        width: -webkit-calc(100% - 25px);
        width: -moz-calc(100% - 25px);
        width: -ms-calc(100% - 25px);
        width: -o-calc(100% - 25px);
        margin: 0 auto 25px auto;
    }

    .why-choose-inner {
        flex-direction: column-reverse;
    }

    .pf_list li {
        width: calc(50% - 20px);
        width: -webkit-calc(50% - 20px);
        width: -moz-calc(50% - 20px);
        width: -ms-calc(50% - 20px);
        width: -o-calc(50% - 20px);
    }

    .bu_left {
        width: 100%;
        text-align: center;
        margin: 0 0 25px 0;
    }

    .bu_right {
        width: 100%;
    }

    .deskop-none {
        display: block;
    }

    .script-app::before {
        display: none;
    }

    .script_left {
        width: 100%;
    }

    .script_right {
        width: 100%;
    }

    .script_right .script_right_inner {
        margin: 0;
        padding: 0;
    }

    .script_left {
        margin: 0 0 25px 0;
    }

    .ot-app-list li {
        width: 100%;
    }
}

@media (max-width:630px) {
    main>* {
        padding: 40px 0;
    }

    .banner::before {
        background: linear-gradient(to top, #fffbf0 0%, #fff5dc 53%, #eeaf11 100%);
    }

    .script-app {
        padding: 40px 0;
    }

    .main-title {
        font-size: 28px;
    }

    .common-btn {
        box-shadow: none;
        min-width: auto;
    }

    .flex-hed {
        width: 100%;
    }

    .banner h1 {
        font-size: 30px;
    }

    .banner p {
        font-size: 18px;
        line-height: 1.3em;
    }

    .pf_list li {
        width: 100%;
    }

    .pf_caption i {
        width: 66px;
        height: 66px;
        font-size: 36px;
    }

    .pf_list {
        gap: 15px;
    }

    .pf_caption .pf_content {
        width: calc(100% - 86px);
        width: -webkit-calc(100% - 86px);
        width: -moz-calc(100% - 86px);
        width: -ms-calc(100% - 86px);
        width: -o-calc(100% - 86px);
    }

    .bu-section {
        margin: 0;
    }

    .bu_right img {
        display: block;
        margin: 0 auto;
    }

    .ot-app {
        background-color: var(--light-color);
    }

    .ot-app-list .ot-app-box {
        padding: 15px;
        background-color: #fff;
    }

    .ot-app-content strong {
        font-size: 18px;
    }
}

@media (max-width:480px) {
    .main-title {
        font-size: 26px;
    }
    .ot-app-img {
        width: 100%;
        margin: 0 0 15px 0;
    }

    .ot-app-content {
        width: 100%;
        margin: 15px 0 0 0;
    }

    .ot-app-img::before {
        content: '';
        display: block;
        width: 100%;
        padding-top: 70%;
    }
}