:root {
    --body-font: #333333;
    --primary: #FCAF3E;
    --primary-light: #FFFAF3;
    --primary-dark: #da942c;
    --secondary: #19B4ED;
    --secondary-dark: #0782AF;
    --white: #ffffff;
    --black: #000000;
    --grey-300: #CCCCCC;
    --grey-200: #e4e4e4;
    --grey-100: #F5F5F5;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --section-padding: 45px 0 0 0;
    --container: 1310px;
    --container-padding: 0 15px;
}
* {
    box-sizing: border-box;
}
p {
    font-size: 16px;
    line-height: 23px;
    color: #000;
    margin: 0 0 12px 0;
}
p:last-child {
    margin-bottom: 0;
}
.features_bg4 {
    background-color: #e5f5f8;
}
.features_bg5 {
    background-color: #EDFDFF;
}
.features_bg6 {
    background-color: #fdffef;
}
.track {
    position: relative;
    will-change: transform;
    animation: marquee 10s linear infinite;
    -webkit-animation: marquee 10s linear infinite;
}
@keyframes marquee {
    from { transform: translateY(0); -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); }
    to { transform: translateY(-50%); -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); }
}
.subtitle {
    font-size: 20px;
    display: block;
    margin: 0 0 12px 0;
}
.play-anim-ico {
    width: 60px;
    position: absolute;
    height: 60px;
    left: 50%;
    top: 50%;
    z-index: 1;
    margin-top: -30px;
    margin-left: -30px;
    font-size: 61px;
    box-shadow: 0 6px 15px rgb(0 0 0 / .15);
    color: #fff
}
.play-anim-ico::before {
    content: '\e9c2';
    font-family: 'icomoon';
    vertical-align: top;
    overflow: hidden;
}
.play-anim-ico:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    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 #fff;
    transform: scale(.9);
    transform-origin: center center;
    animation: pulse-me 1s linear infinite;
    -webkit-animation: pulse-me 1s linear infinite;
    color: #fff
}
.play-anim-ico.theme:after {
    box-shadow: 0 0 0 13px var(--secondary-dark)
}
.play-anim-ico.theme {
    color: var(--secondary-dark);
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 0;
}
@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)
    }
}
.bgcolor1 {
    background-color: #C1E4F7;
}
.bgcolor2 {
    background-color: #D4EBD7;
}
.bgcolor3 {
    background-color: #E0D6FC;
}
.bgcolor4 {
    background-color: #F4DAFD;
}
.bgcolor5 {
    background-color: #FFE5D7;
}
.bgcolor6 {
    background-color: #FFF4D8;
}
.bgcolor7 {
    background-color: #FFDCDC;
}
.bgcolor8 {
    background-color: #D7F8FF;
}
img {
    max-width: 100%;
}
#midd-part {
    margin-top: 82px;
}
.button-block.center {
    justify-content: center;
}
.img-fluid{
    max-width: 100%;
    height: auto;
}
/************************************************************/
.taxi-header {
    position: fixed;
    z-index: 111;
    width: 100%;
    top: 81px;
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    box-shadow: 0 0 0 0 rgb(0 0 0 / .1)
}
.taxi-header.fixed {
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / .1)
}
.taxi-header ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end
}
.taxi-header .page-logo {
    min-height: 60px;
    line-height: 60px;
    display: inline-block
}
.taxi-header .page-logo img {
    vertical-align: middle
}
.taxi-header img {
    max-width: 100%;
    width: 164px;
    height: 40px;
    display: inline-block;
    font-size: 0;
}
.taxi-header-inner {
    display: grid;
    grid-template-columns: auto auto;
    max-width: 1416px;
    margin: auto;
    padding: 0 45px;
    min-height: 60px
}
.taxi-header ul li a {
    min-height: 60px;
    display: block;
    line-height: 60px;
    color: #000;
    font-weight: 600
}
.taxi-header ul li.have_dropdown a>img {
    width: 12px;
    margin-left: 2px;
    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;
    height: auto
}
.taxi-header ul li a:hover {
    color: var(--primary)
}
.taxi-header ul li>ul {
    display: block;
    position: absolute;
    z-index: 111;
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0rem 0rem 1.25rem rgb(30 34 40 / .06);
    border-radius: 10px;
    top: 70%;
    min-width: 280px;
    opacity: 0;
    visibility: 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
}
.taxi-header ul li>ul li a {
    min-height: initial;
    line-height: normal;
    padding: 6px 30px;
    font-weight: 500
}
.taxi-header ul li {
    position: relative
}
.taxi-header .taxi-header-right>ul>li:last-child {
    min-height: 60px;
    line-height: 60px
}
.taxi-header .taxi-header-right>ul>li:last-child a {
    min-height: initial;
    line-height: normal;
    padding: 13px 20px;
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    z-index: 0;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px
}
.taxi-header .taxi-header-right>ul>li:last-child a::before {
    background: #000;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    z-index: -1;
    pointer-events: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px
}
.taxi-header .taxi-header-right>ul>li:last-child a:hover:before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1)
}
.taxi-header-left {
    position: relative
}
.lavel_menu_toggle {
    width: 30px;
    height: 23px;
    background: 0 0;
    border: none;
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0
}
.lavel_menu_toggle span:after,.lavel_menu_toggle span:before {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
    left: 0;
    content: '';
    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
}
.lavel_menu_toggle span:before {
    top: 0
}
.lavel_menu_toggle span:after {
    bottom: 0
}
.lavel_menu_toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    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
}
.lavel_menu_toggle.open span {
    background-color: #fff0
}
.lavel_menu_toggle.open span:before {
    top: 10px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform-origin: center center
}
.lavel_menu_toggle.open span:after {
    bottom: 10px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform-origin: center center
}
/************************************************************/
.cmn-primary-btn {
  background-color: var(--secondary-dark);
  height: 46px;
  padding: 0 8px 0 12px;
  text-transform: uppercase;
  font-weight: var(--font-medium);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary-dark);
  font-size: 15px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  cursor: pointer;
}
.cmn-primary-btn:hover {
  background: var(--secondary);
  border: 1px solid var(--secondary);
  color: var(--white);
}
.cmn-primary-btn:hover span {
    background-color: var(--white);
    color: var(--secondary);
}
/*******************************************/
.cmn-primary-btn.app-flow-button {
    background: #00a9b7;
    border-color:#00a9b7;
}
.cmn-primary-btn.app-flow-button:hover {
    background: #00a9b7;
    border-color:#00a9b7;
    color: #fff;
}
.cmn-primary-btn.app-flow-button:hover span {
    background-color: var(--white);
    color: var(--secondary-dark);
}
.cmn-primary-btn.app-flow-button:after {
    content: '';
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #007883;
    z-index: -1;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    animation: buttonanim 2s infinite;
    -webkit-animation: buttonanim 2s infinite;
    -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;
}
/*******************************************/
.cmn-primary-btn.introvideo-btn {
    background: var(--primary);
    border-color:var(--primary);
    padding: 0 7px 0 12px;
}
.cmn-primary-btn.introvideo-btn:hover {
    background: var(--primary);
    border-color:var(--primary);
    color: #fff;
}
.cmn-primary-btn.introvideo-btn:hover span {
    background-color: #fff;
    background-image: url(../images/uber-clone-taxicube/btn-arrow.svg);
}
.cmn-primary-btn.introvideo-btn:after {
    content: '';
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--primary-dark);
    z-index: -1;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    animation: buttonanim 2s infinite;
    -webkit-animation: buttonanim 2s infinite;
    -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;
}
.cmn-primary-btn.introvideo-btn i {
    font-size: 32px;
    margin-left: 10px;
}
/****************************************/
/*******************************************/
.cmn-primary-btn.demovideo-btn {
    background: #0fb158;
    border-color:#0fb158;
}
.cmn-primary-btn.demovideo-btn:hover {
    background: #0fb158;
    border-color:#0fb158;
    color: #fff;
}
.cmn-primary-btn.demovideo-btn:after {
    content: '';
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #058f43;
    z-index: -1;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    animation: buttonanim 2s infinite;
    -webkit-animation: buttonanim 2s infinite;
    -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;
}
/*******************************************/
/*******************************************/
.cmn-primary-btn.buy-now {
    background: #ffd615;
    border-color:#ffd615;
    color: #000;
}
.cmn-primary-btn.buy-now:hover {
    background: #ffd615;
    border-color:#ffd615;
}
.cmn-primary-btn.buy-now:hover span {
    background-color: #fff;
    color: var(--secondary-dark);
}
.cmn-primary-btn.buy-now:after {
    content: '';
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #e4ba00;
    z-index: -1;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    animation: buttonanim 2s infinite;
    -webkit-animation: buttonanim 2s infinite;
    -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;
}
/*******************************************/
@keyframes buttonanim {
    0% {
        width: 0%
    }
    100% {
        width: 100%
    }
}
.cmn-primary-btn span {
  background-color: var(--white);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  margin-left: 10px;
  font-size: 14px;
  color: var(--secondary-dark);
}
.cmn-primary-btn span:after{
    content: '\e9cf';
    font-family: 'icomoon';
    font-weight: 500;
}
.cmn-primary-btn.havevideo i {
    width: 32px;
    height: 32px;
    font-size: 32px;
    margin-left: 10px;
}
.cmn-primary-btn:hover span {
  background-color: var(--white);
  color: var(--secondary);
}
.cmn-primary-btn.demovideo-btn:hover span {
    background-color: var(--white);
    color: var(--secondary-dark);
}
.cmn-outline-btn {
  background-color: var(--white);
  height: 50px;
  padding: 0 8px 0 12px;
  text-transform: uppercase;
  font-weight: var(--font-medium);
  color: var(--black);
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
}
.cmn-outline-btn:hover {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.cmn-outline-btn span {
    background-color: var(--primary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    margin-left: 10px;
    font-size: 14px;
    color: var(--white);
}
.cmn-outline-btn:hover span {
    background-color: #fff;
    color: var(--primary);
}
.cmn-outline-btn span:after {
    content: '\e9cf';
    font-family: 'icomoon';
    font-weight: 500;
}
.banner-btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
}
.heading-area.center {
    text-align: center;
    width: 100%;
}
.heading-area.center ~ p {
    text-align: center;
}
.heading-style {
    font-size: 40px;
    line-height: 1em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
    margin-top: -8px;
    text-transform: capitalize;
}
.heading-style span {
    color: var(--secondary-dark);
}
/****************************************/
.banner {
    margin-top: 60px;
    background-image: url(../images/uber-clone-taxicube/back.webp);
    background-size: contain;
    position: relative;
}
.banner-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: center;
}
.banner h1 {
    font-size: 52px;
    line-height: 1em;
    font-weight: bold;
    margin-bottom: 20px;
}
.banner h1 span {
    color: var(--primary);
}
.banner-image-column {
    height: 750px;
    overflow: hidden;
}
.banner:before {
    content: "";
    position: absolute;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0));
    height: 60px;
    top: 0;
    width: 100%;
    z-index: 1;
}
.banner.nobefore::before {
    display: none;
}
.banner:after {
    content: "";
    position: absolute;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,#fff 100%);
    height: 60px;
    bottom: 0;
    width: 100%;
    z-index: 1;
}
.banner.nobefore {
    padding: 40px 0;
}
/****************************************/
ul.page-listview-area {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}
ul.page-listview-area li {
  list-style-type: none;
  background: url(../images/uber-clone-taxicube/list-arrow.svg) no-repeat 0 0;
  padding-left: 28px;
  line-height: 20px;
  font-size: 15px;
  background-size: 20px;
}
ul.page-listview-area li a {
  color: var(--body-font);
}
ul.page-listview-area li a:hover {
  color: var(--primary);
}
/****************************************/
.about-uber-clone {
    padding: var(--section-padding);
}
.about-uber-clone .play-anim-ico {
    top: auto;
    left: 47%;
    margin: 0;
    bottom: 83px;
    transform: scale(.8) translateX(-50%);
    -webkit-transform: scale(.8) translateX(-50%);
    -moz-transform: scale(.8) translateX(-50%);
    -ms-transform: scale(.8) translateX(-50%);
    -o-transform: scale(.8) translateX(-50%);
    padding: 0;
}
.about-uber-clone img {
    vertical-align: top
}
.about-uber-clone-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--container-padding);
}
.about-uber-clone-row {
    display: grid;
    grid-template-columns: 0.71fr 1fr;
    gap: 30px;
    align-items: center
}
.about-uber-clone-left {
    box-shadow: 0 0 4px 0 rgba(0,0,0,0.15);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.about-uber-clone-left:hover {
    color: var(--orange)
}
/******************************************************/
.overview {
    padding: 40px 0;
    background-color: var(--primary-light);
}
.overview-inner {
    max-width: var(--container);
    padding: var(--container-padding);
    margin: 0 auto;
}
.overview-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.stat-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
}
.stat-box .icon {
    font-size: 50px;
}
.stat-box b {
    font-size: 35px;
    font-weight: bold;
    margin: 10px 0 8px 0;
    line-height: 1em;
    color: #000;
    display: block;
}
.stat-box p {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
}
/* Right side content */
.overview-content .badge {
    display: inline-block;
    background: #e8f5e9;
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.overview-content .bold {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
    color: #333333;
}
/******************************************************/
/****************************************/
.features {
    padding: var(--section-padding);
    position: relative;
}
.features .light-shape {
    position: absolute;
    left: -10px;
    bottom: 50px;
    z-index: -1;
}
.features-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 1310px;
    padding: 0 15px;
}
.features ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.fet-caption {
    padding: 20px;
    background-color: #fff;
    height: 100%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12), 0 0 0 1px #E4E4E4 inset;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: relative;
}
.features ul li p {
    font-size: 15px;
}
.features ul li i {
    height: 40px;
    font-size: 40px;
    display: inline-flex;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.features ul li i img {
    width: 40px;
    height: 40px;
    display: block;
}
.features ul li a {
    font-size: 30px;
    position: absolute;
    color: var(--primary);
    right: 13px;
    bottom: -16px;
    opacity: 0;
    visibility: 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;
    background-color: #fff;
    cursor: pointer;
}
.fet-caption:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12), 0 0 0 1px var(--primary) inset;
    background-color: var(--primary-light);
}
.fet-caption:hover a {
    opacity: 1;
    visibility: visible;
}
.fet-caption-title-area {
    display: grid;
    grid-template-columns: 40px auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.features ul li strong {
    display: block;
    line-height: normal;
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 0;
    font-weight: 600;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.fet-caption p {
    margin-bottom: 0;
}
/* ---------------------------------------------- */
.ai-features{
    padding: var(--section-padding);
}
.ai-features-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}
.ai-features-row > ul {
    display: grid;
    gap: 15px;
}
.ai-features-row > ul > li {
    background-color: #fff;
    padding: 14px 20px;
    text-align: left;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
    font-size: 18px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.ai-features ul.page-listview-area li {
    color: #fff;
    background-image: url(../images/uber-clone-taxicube/list-arrow_white.svg);
}
.ai-features-row {
    display: grid;
    grid-template-columns: 350px auto;
    gap: 30px;
}
.ai-features-data-holder {
    padding: 30px;
    background: linear-gradient(180deg, #FCAF3E 0%, #FFB851 100%);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.ai-feature-image {
    position: relative;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.ai-features-content {
    display: none;
    grid-template-columns: 230px auto;
    gap: 20px;
    align-items: flex-start;
}
.ai-features-content img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: auto;
}
.ai-features-content.active {
    display: grid;
}
.ai-features-content p {
    color: #fff;
}
.ai-features-content strong {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin: 0 0 10px 0;
}
.ai-features ul li.active {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px var(--primary) inset;
}




/* Grid */
  .ai-features .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 14px;
    margin-bottom: 15px;
  }

  .ai-features .card {
    border-radius: 20px;
    padding: 26px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.ai-features .image__box {
    display: block;
    text-align: right;
    margin: -135px -25px -25px -25px;
}
  .ai-features .image__box img{
    vertical-align: top;
    max-width: 92%;
}
  .ai-features .card:hover {
    transform: translateY(-4px);
  }

  .card-icon{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: center;
  }

.ai-features .card-icon i {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    font-size: 40px;
}
.ai-features .card strong {
    font-size: 18px;
    display: block;
    font-weight: bold;
    color: #000;
    line-height: 1.2em;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.ai-features .cmn-primary-btn {
    height: 38px;
    font-size: 13px;
}
.ai-features .cmn-primary-btn span {
    width: 25px;
    height: 25px;
}
.ai-features .cmn-primary-btn.havevideo i {
    width: 25px;
    height: 25px;
    font-size: 25px;
}
.ai-features .ai_btn_area .cmn-primary-btn:not(:last-child){
    margin-bottom: 10px;
}
  /* Card sizes */
  .ai-features .card-2x2 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .ai-features .card-2x1 {
    grid-column: span 2;
  }

  .ai-features .card-1x1 {
    grid-column: span 1;
  }

  /* Card colors */
 .ai-features .card-blue {
  background: #f8faff;
}

.ai-features .card-teal {
  background: #f7fdfb;
}

.ai-features .card-amber {
  background: #fffef8;
}

.ai-features .card-purple {
  background: #fcfaff;
}

.ai-features .card-pink {
  background: #f8f5f7;
}

.ai-features .card-indigo {
  background: #f9f9ff;
}

.ai-features .card-slate {
  background: #f8feff;
}

.ai-features .card-rose {
  background: #fdf9f9;
}

  .ai-features .icon-blue {
    background: #dce8ff;
  }

  .ai-features .icon-teal {
    background: #c9eede;
  }

  .ai-features .icon-amber {
    background: #fde9b2;
  }

  .ai-features .icon-purple {
    background: #e4d2f8;
  }

.ai-features  .icon-pink {
    background: #fdd4e4;
  }

  .ai-features .icon-indigo {
    background: #d8d8f8;
  }

  .ai-features .icon-slate {
    background: #D6F7FB;
  }

  .ai-features .icon-rose {
    background: #fcd4d4;
  }

  /* Price display */
.ai-features  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 20px;
  }

  .ai-features .price-big {
    font-size: 28px;
    font-weight: 500;
    color: #b45a00;
    letter-spacing: -1px;
  }

  .ai-features .weather-icons {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  /* Fare ring */
  .ai-features .fare-ring-wrap {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Bar chart */
  .ai-features .bar-chart {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    height: 52px;
    margin-top: auto;
    padding-top: 16px;
  }

  .ai-features .bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
    -webkit-transition: height 0.5s ease;
    -moz-transition: height 0.5s ease;
    -ms-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -ms-border-radius: 4px 4px 0 0;
    -o-border-radius: 4px 4px 0 0;
}

  /* Stars */
  .ai-features .stars {
    display: flex;
    gap: 3px;
    margin-top: auto;
    padding-top: 16px;
  }

.ai-features  .star {
    width: 18px;
    height: 18px;
  }

  /* Route line */
  .ai-features .route-visual {
    margin-top: 16px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 64px;
  }

   /* Voice bars */
  .ai-features .voice-bars {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    height: 48px;
    margin-top: auto;
  }

  .ai-features .vbar {
    width: 4px;
    background: #e87070;
    border-radius: 2px;
    transition: height 0.3s ease;
  }

  /* AI fare card */
  .ai-features .fare-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }

  .ai-features .fare-text {
    flex: 1;
  }

  .ai-features .fare-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 500;
    color: #8a2ab9;
    box-shadow: 0 0 0 8px rgba(138, 42, 185, 0.08);
    flex-shrink: 0;
    margin-left: 24px;
  }
.ai-features a.ai__features {
    display: block;
    cursor: pointer;
    background-color: var(--secondary-dark);
    position: relative;
    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-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    min-height: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}
.ai-features a.ai__features:hover {
    background-color: var(--secondary);
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
}
.ai-features a.ai__features:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    right: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    pointer-events: none;

}
/* ---------------------------------------------- */
/* ---------------------------------------------- */
.send__parcel {
    padding: var(--section-padding);
}
.parcel-inner {
    border: 1px solid #ddd;
    background: linear-gradient(to right, #fcf7de 0%, #ebe3bd 100%);
    border-radius: 12px;
}
.send__parcel-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--container-padding);
}
.send__parcel .heading-style i {
    position: relative;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.send__parcel .heading-style i img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    z-index: -1;
    animation: spin 9s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}
.send__parcel .parcel-image img {
  max-width: 300px;
  height: auto;
  vertical-align: top;
}
.send__parcel .parcel-banner {
    width: 100%;
    padding: 20px 15px 20px 16px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background-repeat: no-repeat;
    background-position: calc(100% + 25px) bottom;
    background-size: 320px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.send__parcel .parcel-content {
    width: calc(100% - 320px);
    width: -o-calc(100% - 320px);
    width: -moz-calc(100% - 320px);
    width: -webkit-calc(100% - 320px);
}
.send__parcel .heading-style {
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.parcel-content p {
    margin-top: 0;
    margin-bottom: 10px;
}
 .parcel-content .common-btn {
    padding: 12px;
 }
.button-block {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
/* ---------------------------------------------- */
/* ---------------------------------------------- */
.package {
    padding: 45px 0 20px 0;
    overflow: hidden
}
.package-inner {
    max-width: var(--container);
    padding: var(--container-padding);
    margin: 0 auto;
}
.package-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.package-column {
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    padding: 15px
}
.package-column > span {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 15px
}
.package-column span i {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #000
}
.package-column span strong {
    font-size: 20px;
    color: #000;
    text-transform: capitalize;
    display: block;
    line-height: normal;
    width: calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: -ms-calc(100% - 80px);
    width: -o-calc(100% - 80px)
}
.package-column li {
    position: relative;
    font-size: 16px;
    color: #000;
    text-align: left;
    margin: 0 0 5px;
    padding-left: 19px
}
.package-column li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #000;
    position: absolute;
    top: 7px;
    left: 0
}
/* ---------------------------------------------- */
/****************************************/
.revenue {
    padding: var(--section-padding);
    position: relative;
}
.revenue .heading-style {
    margin: 0 0 10px 0;
}
.revenue .light-shape {
    position: absolute;
    left: -10px;
    bottom: 50px;
    z-index: -1;
}
.revenue-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 1310px;
    padding: 0 15px;
}
.revenue ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.revenue-caption {
    padding: 20px;
    background-color: #fff;
    height: 100%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.revenue-title-area {
    display: grid;
    grid-template-columns: 70px auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.revenue ul li p {
    font-size: 15px;
}
.revenue ul li i {
    width: 70px;
    height: 70px;
    font-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.revenue ul li .sep {
    position: absolute;
    right: -18px;
    bottom: -70px;
}
.revenue ul li strong {
    display: block;
    line-height: normal;
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 600;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
/**************************************/
/* ---------------------------------------------- */
.masonry {
    width: 100%;
    display: table
}
.masonry-block_ img {
    width: 100%
}
.masonry-block_ a.view-more {
    display: block;
    cursor: pointer;
    background-color: var(--secondary-dark);
    position: relative;
    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-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    min-height: 100%;

}
.masonry-block_ a.view-more:hover {
    background-color: var(--secondary)
}
.masonry-block_ a.view-more img {
    margin-bottom: 0
}
.masonry-block_ a.view-more>span {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    font-weight: 700;
    font-size: 28px
}
.masonry-block_ a.view-more:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    right: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    pointer-events: none
}
.masonry.open ._row_.have_more .masonry-block_:last-child {
    display: block
}
._row_.have_more .masonry-block_ img{
    margin-bottom: 0;
}
.masonry-block_ img {
    margin-bottom: 10px;
    vertical-align: top;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px
}
.masonry-block_.col-7 {
    width: calc(60.7% - 10px);
    width: -o-calc(60.7% - 10px);
    width: -ms-calc(60.7% - 10px);
    width: -moz-calc(60.7% - 10px);
    width: -webkit-calc(60.7% - 10px)
}
.masonry-block_.col-5 {
    width: calc(39.3% - 10px);
    width: -o-calc(39.3% - 10px);
    width: -ms-calc(39.3% - 10px);
    width: -moz-calc(39.3% - 10px);
    width: -webkit-calc(39.3% - 10px)
}
.masonry-block_.col-6 {
    width: calc(52.4% - 10px);
    width: -o-calc(52.4% - 10px);
    width: -ms-calc(52.4% - 10px);
    width: -moz-calc(52.4% - 10px);
    width: -webkit-calc(52.4% - 10px)
}
.masonry-block_.col-3 {
    width: calc(24.32% - 10px);
    width: -o-calc(24.32% - 10px);
    width: -ms-calc(24.32% - 10px);
    width: -moz-calc(24.32% - 10px);
    width: -webkit-calc(24.32% - 10px)
}
.masonry-block_.col-3_1 {
    width: calc(23.2% - 10px);
    width: -o-calc(23.2% - 10px);
    width: -ms-calc(23.2% - 10px);
    width: -moz-calc(23.2% - 10px);
    width: -webkit-calc(23.2% - 10px)
}
.masonry-block_.col-6_1 {
    width: calc(52% - 10px);
    width: -o-calc(52% - 10px);
    width: -ms-calc(52% - 10px);
    width: -moz-calc(52% - 10px);
    width: -webkit-calc(52% - 10px)
}
.masonry-block_.col-6_2 {
    width: calc(48% - 10px);
    width: -o-calc(48% - 10px);
    width: -ms-calc(48% - 10px);
    width: -moz-calc(48% - 10px);
    width: -webkit-calc(48% - 10px)
}
.masonry-block_.col-5_1 {
    width: calc(46.3% - 10px);
    width: -o-calc(46.3% - 10px);
    width: -ms-calc(46.3% - 10px);
    width: -moz-calc(46.3% - 10px);
    width: -webkit-calc(46.3% - 10px)
}
.masonry-block_.col-3_2 {
    width: calc(26.6% - 10px);
    width: -o-calc(26.6% - 10px);
    width: -ms-calc(26.6% - 10px);
    width: -moz-calc(26.6% - 10px);
    width: -webkit-calc(26.6% - 10px)
}
.masonry-block_.col-3_3 {
    width: calc(27% - 10px);
    width: -o-calc(27% - 10px);
    width: -ms-calc(27% - 10px);
    width: -moz-calc(27% - 10px);
    width: -webkit-calc(27% - 10px)
}
.masonry ._row_ {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    display: none
}
.masonry ._row_:nth-child(-n+3) {
    display: flex
}
.masonry.open ._row_ {
    display: flex
}
.masonry-block_.col-33 {
    width: calc(33.33% - 10px);
    width: -o-calc(33.33% - 10px);
    width: -ms-calc(33.33% - 10px);
    width: -moz-calc(33.33% - 10px);
    width: -webkit-calc(33.33% - 10px)
}
.client-photos {
    padding: 45px 0 40px 0;
}
.client-photos .common-button {
    margin: 0 0 0 0
}
.client-photos-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px
}
/* ---------------------------------------------- */
.testimonial-section {
    padding: 40px 0 40px;
    width: 100%;
    position: relative;
    background-color: #f8f8f8;
}
.testimonial-section-inner {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1310px;
    position: relative
}
.testimonial-section-row-flow {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%
}
.testimonial-section-row-flow ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    justify-content: center
}
.testimonial-section-row-flow ul li:last-child {
    grid-column: span 2;
}
.testimonial-section-row-flow ul li:last-child .testimonial-single-item {
    top: 0;
    bottom: 0;
    opacity: 1;
    background-color: var(--secondary-dark);
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    height: auto;
    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;
}
.testimonial-section-row-flow ul li:last-child .testimonial-single-item:hover {
    background-color: var(--secondary)
}
.testimonial-section-row-flow ul li:last-child .testimonial-single-item:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: #fff;
    border-radius: 10px 0 0 0;
    -webkit-border-radius: 10px 0 0 0;
    -moz-border-radius: 10px 0 0 0;
    -ms-border-radius: 10px 0 0 0;
    -o-border-radius: 10px 0 0 0
}
.testimonial-section-row-flow ul li:last-child .testimonial-single-item:after {
    content: '';
    position: absolute;
    top: auto;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: #fff;
    background-image: none;
    background-color: transparent!important;
    box-shadow: none;
    border-radius: 0 0 10px 0;
    -webkit-border-radius: 0 0 10px 0;
    -moz-border-radius: 0 0 10px 0;
    -ms-border-radius: 0 0 10px 0;
    -o-border-radius: 0 0 10px 0;
    left: auto;
    opacity: 1
}
.testimonial-section-row-flow ul li:last-child .testimonial-icon {
    display: none
}
.testimonial-single-item {
    text-align: center;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 20px rgb(0 0 0 / .1);
    position: relative;
    z-index: 0;
    overflow: hidden;
    padding: 5px;
    display: inline-block;
    vertical-align: top;
    min-height: 100%;
    width: 100%;
    color: var(--primary-dark);
    cursor: pointer;
}
.testimonial-single-item:hover {
    color: var(--primary);
}
.testimonial-single-item img{
    vertical-align: top;
}
.testimonial-section-row-flow ul li:not(:last-child) .testimonial-single-item .testimonial-thumb:after {
    content: '\e9c2';
    font-family: 'icomoon';
    vertical-align: top;
    position: absolute;
    left: 10px;
    top: 10px;
    display: inline-block;
    width: 34px;
    height: 34px;
    font-size: 35px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: var(--secondary-dark);
}
.testimonial-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden
}
.testimonial-icon {
    display: none
}
.testimonial-icon i {
    display: none
}
/* ---------------------------------------------- */
.client-reviews {
    padding: 40px 0 40px 0;
    position: relative;
    z-index: 0;
    overflow: hidden
}
.client-reviews.vietnaam-section {
    padding: 40px 0;
}
.client-reviews-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
}
.client-reviews.vietnaam-section .client-reviews-inner {
    grid-template-columns: 1fr 1fr
}
.client-reviews ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gap20)
}
.client-reviews ul li a {
    display: block;
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    color: var(--orange)
}
.client-reviews ul li a:hover {
    color: var(--orange)
}
.client-reviews ul li a::before {
    content: '';
    display: block;
    padding-top: 100%;
    width: 100%
}
.client-reviews ul li a img {
    vertical-align: top;
    position: absolute;
    left: 0;
    top: 0
}
.client-reviews ul li .play-anim-ico {
    bottom: 5px;
    right: 5px;
    left: auto;
    top: auto;
    margin: 0;
    transform: scale(.58);
    -webkit-transform: scale(.58);
    -moz-transform: scale(.58);
    -ms-transform: scale(.58);
    -o-transform: scale(.58)
}
.client-reviews.vietnaam-section a {
    display: block;
    position: relative;
    cursor: pointer;
}
.client-reviews.vietnaam-section a:hover {
    color: var(--orange)
}
.client-reviews.vietnaam-section a img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.client-reviews.vietnaam-section .play-anim-ico {
    left: 5px;
    top: 5px;
    margin: 0;
    transform: scale(.58);
    -webkit-transform: scale(.58);
    -moz-transform: scale(.58);
    -ms-transform: scale(.58);
    -o-transform: scale(.58);
    font-size: 62px
}
.client-reviews.vietnaam-section p b {
    display: block;
    line-height: 20px
}
.client-reviews.vietnaam-section .heading-style strong {
    font-size: 22px;
    display: block;
    position: relative;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 700;
    line-height: normal;
    margin-top: 5px;
}
/* ---------------------------------------------- */
.blog-row {
    font-size: 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 12px
}
.blog-thumb {
    height: 200px;
    background-size: cover;
    border-bottom: 1px solid #ddd
}
.Recent-blog-section-inner {
    max-width: 1350px;
    padding: 0 15px;
    margin: 0 auto
}
.blog-data strong a {
    color: #333;
    font-weight: 600;
    font-size: 17px;
    display: block;
    height: auto!important;
    line-height: 24px
}
.blog-data strong a:hover {
    color: #4a0
}
.blog-box {
    padding: 15px;
    display: inline-block;
    vertical-align: top;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px
}
ul.entry-meta.list-inline {
    margin: 10px -5px
}
ul.entry-meta.list-inline i {
    margin-right: 8px
}
ul.entry-meta.list-inline a {
    font-weight: 600
}
ul.entry-meta.list-inline a:hover {
    color: #4a0
}
.data-hode-show-faq ul {
    list-style: none
}
.data-hode-show-faq ul._TABROW_ {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 10px;
}
.data-hode-show-faq ul._TABROW_ li {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.10);
}
.data-hode-show-faq ul._TABROW_ li.active {
    background-color: var(--black);
    color: var(--white);
    position: relative
}
.data-hode-show-faq ul._TABROW_ li.active:after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    margin-left: -9px;
    border-top: 9px solid #000;
    border-left: 9px solid #fff0;
    border-right: 9px solid #fff0
}
.faq-accordian {
    display: none;
    margin-top: 10px
}
.faq-accordian.active {
    display: block
}
.faq-accordian ul {
    display: grid;
    gap: 10px;
    margin-top: 30px;
    grid-template-columns: 1fr 1fr
}
.faq-accordian ul li>a,.faq-accordian ul li>strong {
    padding: 10px 15px;
    display: block;
    position: relative;
    color: var(--black);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    margin: 0;
    border-bottom: 1px solid #DDD
}
.faq-accordian ul li p {
    padding: 10px 15px;
    font-size: 16px
}
.faq-accordian ul li {
    border-radius: 5px;
    border: 1px solid #DDD;
    background-color: #fff
}
.faq-accordian ul li span {
    display: block
}
.blog-box strong {
    display: block;
    margin-bottom: 10px
}
.blog-box strong a {
    display: block;
    font-size: 18px;
    color: #000;
    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;
    text-transform: capitalize
}
.blog-box strong a:hover {
    color: var(--primary)
}
.blog-secondary p {
    font-size: 15px;
    color: #3c3c3c;
    font-weight: 400;
    line-height: 25px;
    text-align: justify
}
.about-section-of {
    float: left;
    width: 100%;
    padding-top: 40px;
}
.about-section-of-inner {
    max-width: 1350px;
    padding: 0 15px;
    margin: 0 auto;
    text-align: center
}
.about-section-of .footer-toggle-btn {
    margin: 0 5px 0;
    padding: 15px 20px;
    font-size: 22px;
    font-family: 'Exo 2';
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    background-color: var(--secondary-dark);
    color: #fff;
    display: inline-block;
    border-radius: 25px 25px 0 0;
    cursor: pointer;
    transition: all 0.5s ease 0s
}
.about-section-of .footer-toggle-btn span {
    color: var(--primary)
}
strong.sub__title {
    font-size: 20px;
    display: block;
    margin-bottom: 6px
}
.about-section-of .footer-toggle-btn:after {
    content: '';
    display: inline-block;
    border-top: 13px solid #fff;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    margin-left: 10px;
    vertical-align: middle;
    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;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px
}
.about-section-of h2.active:after,.about-section-of .footer-toggle-btn.active:after {
    transform: rotatex(-180deg);
    -webkit-transform: rotatex(-180deg);
    -moz-transform: rotatex(-180deg);
    -ms-transform: rotatex(-180deg);
    -o-transform: rotatex(-180deg)
}
.about-section-of-data {
    text-align: initial;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #fff7f3;
    display: none
}
.about-section-of-data .about-section-of-inner {
    text-align: unset
}
.about-section-of-data p {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 22px;
    margin-top: 0
}
.about-section-of h6 {
    font-size: 23px;
    text-transform: unset;
    font-weight: 600;
    margin: 0 0 15px 0
}
.box-rows ul {
    list-style: none;
    padding-left: 15px
}
.box-rows ul li {
    margin-bottom: 14px;
    font-size: 15px;
    color: #666;
    padding: 0 0 0 18px;
    font-weight: 500;
    position: relative
}
.box-rows ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    background-color: #00a5b3;
    width: 6px;
    height: 6px;
    border-radius: 50%
}
.box-rows h4,.box-rows h5,.box-rows h3 {
    font-size: 21px;
    margin-bottom: 5px;
    position: relative;
    font-weight: 700
}
.sub-boxess strong {
    font-size: 16px;
    margin-bottom: 2px;
    position: relative;
    font-weight: 600;
    display: block
}
.sub-boxess {
    padding-left: 20px;
    margin-bottom: 10px
}
.sub-boxess strong:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    left: -20px;
    top: 7px
}
/* ---------------------------------------------- */
.client-memories {
    padding: 40px 0 0 0;
}
.client-memories-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.client-memories-images {
    position: relative;
}
.client-memories-images img {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100%;
}
.client-memories-images::before {
    content: '';
    width: 100%;
    display: block;
    padding-top: 76.51%
}
/* ---------------------------------------------- */
.screens {
    padding: var(--section-padding);
}
.screens.inverse {
    padding: 45px 0 40px 0;
}
.screens-inner {
    max-width: var(--container);
    padding: var(--container-padding);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    align-items: center;
    gap: 40px;
}
.screens-column.image-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.screens.inverse .screens-inner {
    grid-template-columns: 1fr 2.5fr;
}
/* ----------------------------------------------------- */
.theme {
    padding: 55px 0 40px 0;
}
.theme-inner {
    max-width: var(--container);
    padding: var(--container-padding);
    margin: 0 auto;
}
.theme-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
.theme-row strong {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    color: #000;
}
.theme-column {
    padding: 25px 29px 0 29px;
    border-radius: 14px 14px 0 0;
    -webkit-border-radius: 14px 14px 0 0;
    -moz-border-radius: 14px 14px 0 0;
    -ms-border-radius: 14px 14px 0 0;
    -o-border-radius: 14px 14px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}
.theme-column p {
    margin-bottom: 12px;
}
/* ----------------------------------------------------- */
.admin__panel {
  background: #FFF9F5;
  overflow: hidden;
  padding: 40px 0;
}
.admin__panel .heading-area {
    margin: 0 0 15px 0;
}
.admin__panel__inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.admin__panel__inner:not(:last-child) {
  padding-bottom: 40px;
}
.AP__left {
  width: calc(100% - 420px);
  width: -webkit-calc(100% - 420px);
  width: -moz-calc(100% - 420px);
  width: -ms-calc(100% - 420px);
  width: -o-calc(100% - 420px);
}
.AP__right {
  width: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.AP__right.flex_end {
  align-items: flex-end;
}
.AP__right img {
  max-width: 36.7vw;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}
.AP__FET {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.AP__FET article {
  box-shadow: 5px 5px 20px -10px rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  border-right: 6px solid #FFD615;
}
.AP__FET .title-and-icon {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
  margin-bottom: 10px;
  gap: 15px;
}
.AP__FET .title-and-icon i {
  height: 40px;
  font-size: 40px;
}
.AP__FET .title-and-icon strong {
  font-size: 20px;
  color: #000;
  font-weight: bold;
  display: block;
  line-height: 1em;
  text-transform: capitalize;
}
.web__panel {
  overflow: hidden;
  padding: 40px 0;
}
.web__panel .heading-area {
    margin: 0 0 15px 0;
}
/* ----------------------------------------------------- */
.products {
    padding: 40px 0;
    background-color: #f8f8f8;
}
.products-inner {
    max-width: var(--container);
    padding: var(--container-padding);
    margin: 0 auto;
}
.products ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.products ul li {
    position: relative;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
    width: 430px;
    max-width: 100%;
}
.products ul li::before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.products ul li .products-captiion {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    padding: 25px;
    z-index: 1;
}
.products ul li .products-captiion small {
    font-size: 18px;
    color: #fff;
    display: block;
    font-weight: 400;
    margin-top: 15px;
    line-height: 25px;
}
/* ----------------------------------------------------- */
.demos {
    padding: 40px 0;
    background-color: var(--primary-light);
}
.demos-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--container-padding);
}
.demos-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}
.webadmin {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    min-height: 100%;
}
.mobile_apps {
    padding: 20px;
    background-color: var(--primary);
    gap: 20px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.mobile_apps h3 {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.demo-tab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    border: 1px solid #fff;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 15px;
}
.demo-tab li {
    padding: 10px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}
.demo-tab li.active {
    background-color: #fff;
    color: #000;
}
.demo-app-block {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.demo-app-block.active {
    display: grid;
}
.app-qr {
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    gap: 10px;
    display: grid;
}
.demo-app-block#kiosk.active .app-qr {
    grid-column: span 2;
    max-width: 180px;
    margin: 0 auto;
}
/* ---------------------------------------------- */
.whatnext {
    padding: 40px 0 0 0;
}
.whatnext-inner {
    max-width: var(--container);
    padding: var(--container-padding);
    margin: 0 auto;
}
.whatnext-block {
    position: relative;
}
.whatnext .slider-wrapper {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.whatnext .image-slider {
    overflow: hidden;
    border-radius: 0 40px;
}
.whatnext .image-slider img {
    width: 100%;
    object-fit: cover;
}
.whatnext .text-area {
    padding-right: 10px;
    position: relative;
}
/* .whatnext .text-slide {
    visibility: hidden;
    transition: all 0.7s ease 0s;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -ms-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 100%;
} */
.whatnext .text-slide.fade-in {
    opacity: 1;
    visibility: visible;
}
.whatnext .text-slide h1 {
    font-size: 34px;
    margin-bottom: 10px;
}
.whatnext .custom-arrow {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: 0.2s;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    color: var(--secondary-dark);
    border: none;
}
.whatnext .prev-btn { left: 0; }
.whatnext .next-btn { right: 0; }
/* ---------------------------------------------- */
.footer-details {
    background-color: var(--primary-light);
}
/* ---------------------------------------------- */
.flow-video-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
    margin: 0px;
}
.flow-video-section .video-main {
    margin-top: 0;
    position: relative;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    gap: 20px;
}
.flow-video-section .video-main .video-box {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.flow-video-section .video-main .video-box:last-child {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.flow-video-section .video-main .video-box:last-child {
    grid-row: span 2;
}
.flow-video-section .video-main .video-box:not(:last-child) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.flow-video-section .video-main .video-box strong {
    font-size: 18px;
    margin-bottom: 6px;
    transition: .5s;
    font-weight: 600;
    display: block;
    color: #000;
    text-align: left;
}
.flow-video-section .video-main .video-box p {
    font-size: 15px;
    line-height: 22px;
}
.flow-video-section .video-main .video-block {
    cursor: pointer;
}
.flow-video-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    padding: var(--container-padding);
    flex-direction: column;
    align-items: center
}
.flow-video-section .video-block > img {
    min-height: initial;
}
.video-block {
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}
.video-block.no_video .video-icon {
    display: none;
}
.video-block.no_video {
    pointer-events: none;
}
.coming-soon {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--theme-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: bold;
    color: #000;
    left: 0;
    top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.coming-soon .video-icon {
    position: relative;
    margin: 0 auto 20px auto;
    top: auto;
    left: auto;
    display: block;
    pointer-events: none;
}
.coming-soon .video-icon a {
    margin: 0;
    transform: none;
}
.flow-video-section .heading-area p {
    margin-bottom: 10px;
    text-align: center;
}
.video-block img {
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
    vertical-align: top;
}

.video-left {
    width: 49%;
}
.video-right {
    width: 49%;
}
.flow-video-section .play-anim-ico {
    top: auto;
    bottom: 0;
    padding: 0;
    transform: scale(0.5);
    right: 0;
    left: auto;
}
/* ---------------------------------------------- */
@media screen and (max-width:1279px) {
    .banner h1,
    .heading-style {
        font-size: 40px;
    }
    p {
        margin: 0 0 10px 0;
    }
    .theme-row {
        gap: 30px;
    }
    .mobile_apps h3 {
        font-size: 28px;
    }
    .demo-tab li {
        font-size: 16px;
    }
}
@media screen and (max-width:1024px) {
    .lavel_menu_toggle {
        display:flex;
        position: absolute;
        right: 0;
        top: 18px;
        outline: 0;
        box-shadow: none
    }
    .lavel_menu_toggle span,.lavel_menu_toggle span:after,.lavel_menu_toggle span:before {
        background-color: #000
    }
    .taxi-header-inner {
        padding: 0 25px;
        display: block
    }
    .taxi-header-right {
        display: none;
        padding: 0 0 0 0
    }
    .taxi-header ul {
        display: block
    }
    .taxi-header ul li a {
        min-height: initial;
        line-height: normal;
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: space-between
    }
    .taxi-header {
        background-color: #fff;
        box-shadow: 0 0 10px 0 rgb(0 0 0 / .1);
        top: 80px
    }
    .taxi-header .taxi-header-right>ul>li:last-child {
        min-height: initial;
        line-height: normal
    }
    .taxi-header .taxi-header-right>ul>li:last-child a {
        width: 100%;
        margin: 10px 0
    }
    .taxi-header .taxi-header-right>ul>li:not(:last-child) {
        border-bottom: 1px solid #ddd
    }
    .banner h1, .heading-style {
        font-size: 38px;
    }
    /*******************************/
    .ai-features-row {
        grid-template-columns: 100%;
        gap: 20px;
    }
    .ai-features-row > ul {grid-template-columns: 1fr 1fr 1fr;}
    /*******************************/
    .screens-inner {
        gap: 30px;
    }
    .ai-features .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .overview-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width:991px) {
    .banner h1, .heading-style {
        font-size: 35px;
    }
    .banner-inner {
        display: flex;
        flex-direction: column-reverse;
    }
    .banner:after {
        display: none;
    }
    .banner-image-column {
        width: 100%;
        text-align: center;
    }
    .banner {
        padding: 0 0 40px 0;
    }
    /*******************************/
    .about-uber-clone-row {
        grid-template-columns: 100%;
        gap: 20px;
    }
    .subtitle {
        margin: 0 0 8px 0;
    }
    .about-uber-clone .play-anim-ico {
        top: 60%;
    }
    /*******************************/
    .overview-row {
        grid-template-columns: 100%;
    }
    .overview-content {
        text-align: center;
    }
    /*******************************/
    .features ul {
        grid-template-columns: repeat(3, 1fr);
    }
    /*******************************/
    .ai-features-row > ul > li {
        font-size: 16px;
        padding: 15px 20px;
    }
    /*******************************/
    .package-row {
        grid-template-columns: 1fr 1fr;
    }
    /*******************************/
    .screens-inner {
        grid-template-columns: 100%;
        gap: 20px;
    }
    .screens-column.image-column {
        grid-template-columns: auto auto;
        justify-content: flex-start;
    }
    .screens.inverse .screens-inner {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }
    .screens.inverse .screens-inner .screens-column {
        width: 100%;
    }
    /*******************************/
    .send__parcel .parcel-banner {
        background-image: none !important;
    }
    .send__parcel .parcel-content {
        width: 100%;
    }
    .parcel-content p {
        text-align: justify;
    }
    /****************************************/
	.AP__right {
		width: 100%;
		text-align: center;
	margin-bottom: 20px;

	}
	.AP__right img {
		max-width: 100%;
	}
	.AP__left {
		width: 100%;
	}
	.web__panel .AP__right{
		order: 2;
		align-items: center;
	}
	.AP__right.flex_end {
		align-items: center;
	}
	.web__panel .AP__left{
	order: 3;
	}
	.web__panel .button-block {
		order: 3;
	}
	/****************************************/
    .whatnext .slider-wrapper {
        grid-template-columns: 100%;
        padding: 0 0 0 0;
        gap: 20px;
    }
    .whatnext .text-area {
        position: relative;
    }
    .whatnext .text-slide.fade-in {
        display: block;
    }
    .whatnext .custom-arrow {
        top: auto;
        bottom: 0;
        transform: none;
        width: 30px;
        height: 30px;
        font-size: 30px;
    }
	/****************************************/
    .theme-row {
        gap: 20px;
    }
	/****************************************/
    .theme-row strong {
        font-size: 25px;
    }
	/****************************************/
    .demos-row {
        grid-template-columns: 100%;
    }
    .app-qr img {
        max-width: 148px;
        width: 100%;
    }
    .app-qr {
        justify-content: center;
    }
	/****************************************/
    .client-memories-inner {
        grid-template-columns: 100%;
    }
    .client-memories-images {
        text-align: center;
        max-width: 672px;
        margin: 0 auto;
        width: 100%;
    }
	/****************************************/
    .products ul li .products-captiion {
        font-size: 23px;
        padding: 15px;
    }
    .products ul li {
        width: calc(50% -  10px);
        width: -webkit-calc(50% -  10px);
        width: -moz-calc(50% -  10px);
        width: -o-calc(50% -  10px);
    }
    /************************************/
    .flow-video-section .video-block {
        display: block;
        max-width: 600px;
    }
    .video-right {
        width: 100%;
    }
    .flow-video-section .video-main {
        flex-wrap: wrap;
        text-align: center;
    }
    .flow-video-section .heading-area {
        display: block;
    }
    .flow-video-section .heading-area p {
        text-align: center;
    }
    .flow-video-section .video-main .video-box {
        text-align: justify;
    }
    .flow-video-section .video-main {
        display: flex;
        flex-direction: column;
    }
    .flow-video-section .video-main .video-box:last-child {
        grid-column: span 2;
    }
    /************************************/
    .flow-video-section .video-main .video-box:not(:last-child) {
        grid-template-columns: auto 1fr;
    }
    .revenue ul {
        grid-template-columns: repeat(2, 1fr);
    }
    /************************************/
    .client-reviews.vietnaam-section .client-reviews-inner {
        grid-template-columns: 100%;
    }
    .client-reviews.vietnaam-section a {
        max-width: 624px;
    }
    /************************************/
    .testimonial-section-row-flow ul {
        grid-template-columns: repeat(5, 1fr);
    }
    .testimonial-section-row-flow ul li:last-child .testimonial-single-item{
        font-size: 3vw;
    }
    .testimonial-section-row-flow ul li:last-child {
        grid-column: span 1;
    }
    /************************************/
    .blog-row {
        grid-template-columns: 1fr 1fr;
    }
    /* ____________________________________________ */

    .about-uber-clone-left {
        max-width: 519px;
        width: 100%;
        margin: auto;
    }
    /* ____________________________________________ */
    .ai-features .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* ____________________________________________ */
    .overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width:767px) {
    .banner h1, .heading-style {
        font-size: 28px;
    }
    /****************************************/
    .features ul {
        grid-template-columns: repeat(2, 1fr);
    }
    /****************************************/
    .ai-features-content {
        grid-template-columns: 100%;
    }
    .ai-feature-image {
        width: 230px;
    }
    .ai-features-data-holder {
        padding: 20px;
    }
    .ai-features-content p {
        text-align: justify;
    }
    /****************************************/
    .revenue ul {
        grid-template-columns: 1fr 1fr;
    }
    /****************************************/
    .theme-row {
        grid-template-columns: 1fr 1fr;
    }
    .theme-row .theme-column:last-child {
        grid-column: span 2;
    }
    .theme-column {
        padding: 20px 20px 0 20px;
    }
    .masonry-block_ a.view-more>span {
        font-size: 3vw;
    }
    :root {
        --section-padding: 60px 0 0 0;
    }
    .screens.inverse,
    .theme {
        padding: 60px 0 30px 0;
    }
    .admin__panel,
    .web__panel {
        padding: 30px 0;
    }
    .whatnext {
        padding: 30px 0 0 0;
    }
    .masonry-block_ a.view-more:before {
        left: 5px;
        right: 5px;
        top: 5px;
        bottom: 5px;
    }
}
@media screen and (max-width:630px) {
        :root {
        --section-padding: 40px 0 0 0;
    }
    .overview-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-box p {
        font-size: 16px;
    }
    .stat-box b {
        font-size: 30px;
    }
    .stat-box {
        padding: 20px 15px;
    }
    /****************************************/
    .screens-column.image-column{
        grid-template-columns: 100%;
    }
    .screens-column.image-column img{
        margin: auto;
    }
    /****************************************/
    .features ul {
        grid-template-columns: 1fr;
    }
    /****************************************/
    .ai-features-row > ul {
        grid-template-columns: 100%;
    }
    .ai-features-row > ul li {
        white-space: nowrap;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.10);
        text-align: center;
    }
    /****************************************/
    .package-row {
        grid-template-columns: 100%;
    }
    /*******************************/
    .revenue ul {
        grid-template-columns: 100%;
    }
    /*******************************/
    .AP__FET {
		grid-template-columns: 100%;
	}
    /*******************************/
    .theme-row {
        grid-template-columns: 100%;
    }
    .theme-row .theme-column:last-child {
        grid-column: span 1;
    }
    .webadmin {
        grid-template-columns: 100%;
    }
    .demo-app-block {
        gap: 10px;
    }
    .mobile_apps {
        padding: 10px;
    }
    .demo-tab li {
        padding: 8px;
        font-size: 15px;
    }
    .mobile_apps h3 {
        font-size: 23px;
        margin: 0 0 10px;
    }
    /*******************************/
    .products ul li {
        width: 100%;
    }

    /*******************************/
    .testimonial-section-row-flow ul {
        grid-template-columns: repeat(4, 1fr);
    }
    .testimonial-section-row-flow ul li:last-child .testimonial-single-item {
        font-size: 20px;
    }
    /*******************************/
    .data-hode-show-faq ul._TABROW_ {
        grid-template-columns: 1fr 1fr;
    }
    .data-hode-show-faq ul._TABROW_ li.active:after {
        display: none;
    }
    /*******************************/
    .faq-accordian ul {
        grid-template-columns: 100%;
    }
    .data-hode-show-faq ul._TABROW_ li {
        font-size: 16px;
    }
    .blog-row {
        grid-template-columns: 1fr;
    }
    .package {
        padding: 50px 0 20px 0;
    }
    .ai-features .grid {
        grid-template-columns: 100%;
    }
    .ai-features .card-2x2 {
    grid-column: auto;
    grid-row: auto;
}
}

@media screen and (max-width:580px) {
    .data-hode-show-faq ul._TABROW_ {
        grid-template-columns: 100%;
    }
    .masonry-block_ a.view-more>span {
        font-size: 2.5vw;
    }
       .flow-video-section .video-main .video-box:not(:last-child) {
        grid-template-columns: 100%;
    }
    .flow-video-section .video-block {
        text-align: center;
    }
    .send__parcel .heading-style i {
        max-width: 45px;
        width: 100%;
        transform: scale(0.7);
    }
}
@media (max-width:480px) {
     .testimonial-section-row-flow ul {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width:375px) {
     .testimonial-section-row-flow ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-section-row-flow ul li:last-child {
        grid-column: span 2;
        height: 90px;
    }
}