* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::after,
*::before {
  box-sizing: border-box;
}

:root {
  --main-color: #00AA13;
  --secondary-color: #00AA13;
  --light-color: #f2fff4;
  --white: #fff;
  --black: #000;
  --hover-color: #008a10;
  --linear: linear-gradient(180deg, rgba(252, 77, 0, 0.1) 0%, rgba(68, 172, 0, 0.1) 37.6%, rgba(68, 172, 0, 0.05) 68.33%, rgba(191, 108, 0, 0.1) 100%);
  --color1: #1093A5;
  --color1_light: #f0fdff;
  --color2: #FE9308;
  --color2_light: #fff9f2;
  --color3: #1CA4E9;
  --color3_light: #f1faff;
  --color4: #9375BE;
  --color4_light: #f7f2ff;
}

.img-fluid{
  max-width: 100%;
  height: auto;
}

ul.common-listing li {
  margin: 0 0 10px 0;
  list-style: none;
  padding: 0 0 0 28px;
  position: relative;
  color: var(--black);
}

ul.common-listing li:before {
  content: '\e9bd';
  font-family: 'icomoon';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--main-color);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.common-sub-title {
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}

@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 {
  float: none;
}

main {
  margin: 80px auto 0 auto;
  max-width: 1920px;
}

main>*,
main>section {
  padding: 40px 0;
}

.bgcolor1 {
  background-color: #FFEED4;
}

.bgcolor2 {
  background-color: #D4F0FF;
}

.bgcolor3 {
  background-color: #FDE6F7;
}

.bgcolor4 {
  background-color: #D2D2FF;
}

.bgcolor5 {
  background-color: #D6F3BF;
}



.boxcolor1 {
  background-color: #fdf5f5;
}

.boxcolor2 {
  background-color: #fcf9f2;
}

.boxcolor3 {
  background-color: #f9fff4;
}

.boxcolor4 {
  background-color: #f5fffa;
}

.boxcolor5 {
  background-color: #f4fdff;
}

.boxcolor6 {
  background-color: #f5f9ff;
}

.boxcolor7 {
  background-color: #f6f5ff;
}

/**************************************/
header.passive,
header.trans {
  box-shadow: none;
  border-bottom: 1px solid #ddd;
}

.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: transparent;
}

.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;
}

/**************************************/
.grab-header {
  position: fixed;
  z-index: 111;
  width: 100%;
  top: 82px;
  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 rgba(0, 0, 0, 0.1);
  padding: 0;
  left: 0;
  right: 0;
}

.grab-header.fixed {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.grab-header ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.grab-header .page-logo {
  min-height: 60px;
  line-height: 60px;
  display: inline-flex;
  align-items: center;
}

.grab-header .page-logo img {
  vertical-align: middle;
  height: 46px;
}

.grab-header-inner {
  display: grid;
  grid-template-columns: auto auto;
  max-width: 1360px;
  margin: auto;
  padding: 0 45px;
  min-height: 60px;
}

.grab-header ul li a {
  min-height: 60px;
  display: block;
  line-height: 60px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.grab-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;
  vertical-align: middle;
}

.grab-header ul li a:hover {
  color: var(--main-color);
}

.grab-header ul li>ul {
  display: block;
  position: absolute;
  z-index: 111;
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0rem 0rem 1.25rem rgba(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;
}

.grab-header ul li>ul li a {
  min-height: initial;
  line-height: normal;
  padding: 6px 30px;
  font-weight: 500;
}

.grab-header ul li {
  position: relative;
}

.grab-header .grab-header-right>ul>li:last-child {
  min-height: 60px;
  line-height: 60px;
}

.grab-header .grab-header-right>ul>li:last-child a {
  min-height: initial;
  line-height: normal;
  padding: 13px 20px;
  display: inline-block;
  background-color: var(--main-color);
  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;
}

.grab-header .grab-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;
}

.grab-header .grab-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);
}

.grab-header-left {
  position: relative;
}

/**************************************/
[data-toggle="popup"],
.common-button {
  background-color: var(--button-color);
  font-size: 18px;
  text-transform: initial;
  font-weight: 600;
  padding: 13px 30px 14px 30px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

[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: 15px;
  margin: 15px 0 0 0;
}

.btn__div.center {
  justify-content: center;
}

.play-anim-ico.theme:before {
  box-shadow: 0 0 0 13px var(--main-color);
}

.common-btn {
  background-color: #000;
  font-size: 18px;
  line-height: 1em;
  text-transform: capitalize;
  font-weight: 600;
  padding: 14px 15px;
  min-height: 50px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 5px;
  -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;
}

.blink {
  animation: blink 2s infinite;
  -webkit-animation: blink 2s infinite;
}

.play-anim-ico.blink:after {
  display: none;
}

@keyframes blink {
  30% {
    opacity: 0
  }
}

.common-btn img {
  width: 24px;
  height: 24px;
}

.common-btn:hover {
  background: #333;
  color: #fff;
}

.common-btn.bg-white {
  background-color: #fff;
  color: var(--button-color);
}

.common-btn.bg-white:hover {
  background-color: var(--hover-color);
  color: #fff;
}

.common-btn small {
  display: block;
  font-size: 12px;
}

.border-btn {
  color: var(--main-color);
  text-align: center;
  font-size: 18px;
  text-transform: capitalize;
  line-height: 1em;
  font-weight: 600;
  padding: 12px 15px 14px 15px;
  min-height: 50px;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid var(--main-color);
  background: transparent;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.border-btn:hover {
  background: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
}

.border-btn img {
  height: 24px;
  vertical-align: middle;
}

.border-btn:hover img {
  filter: brightness(0) invert(1);
}

.white-btn {
  background-color: #fff;
  color: var(--main-color);
}

.white-btn:hover {
  background-color: var(--black);
  color: #fff;
}

.download .white-btn:hover {
  background-color: var(--main-color);
}

p strong {
  font-size: 18px;
  color: var(--black);
  display: block;
  line-height: 1.2em;
}

p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0;
  color: var(--black);
  font-weight: 400;
  text-align: justify;
}

p:last-child {
  margin-bottom: 0;
}

b {
  font-size: 18px;
  line-height: normal;
  margin: 0 0 12px 0;
}

.d-block {
  display: block;
}

.heading-area {
  width: 100%;
  display: block;
  margin: 0 0 15px 0;
}

.main-title {
  color: var(--black);
  font-size: 37.08px;
  font-weight: 700;
  line-height: 1.1em;
  font-weight: bold;
  text-transform: capitalize;
  margin-top: -8px;
}

.main-title.small {
  font-size: 25px;
}

.main-title span {
  background: url(../images/grab-clone-new/title.svg) no-repeat right bottom;
}

.sub-title {
  color: var(--black);
  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>p {
  margin-top: 5px;
  margin-bottom: 0;
}

.heading-area>.sub-title {
  margin-bottom: 0;
}
.heading-area.white p a{
  color: #fff;
}
/* .m-color {
  color: var(--main-color) !important;
} */
.deskop-none {
  display: none;
}

.m-0 {
  margin: 0 !important;
}

.blink {
  animation: blink 2s infinite;
  -webkit-animation: blink 2s infinite;
}

.bn-section .blink {
  display: inline-block;
  vertical-align: top;
  font-size: 0;
  margin: 0 0 0 5px;
}

.bn-section .blink img {
  display: inline-block;
  vertical-align: middle;
}

@keyframes blink {
  30% {
    opacity: 0
  }
}

@keyframes autoslider {
  0% {
    background-position-x: 0px;
  }

  10% {
    background-position-x: -268px;
  }

  20% {
    background-position-x: -268px;
  }

  30% {
    background-position-x: -536px;
  }

  40% {
    background-position-x: -536px;
  }

  50% {
    background-position-x: -804px;
  }

  60% {
    background-position-x: -804px;
  }

  70% {
    background-position-x: -1072px;
  }

  80% {
    background-position-x: -1072px;
  }

  90% {
    background-position-x: -1340px;
  }

  100% {
    background-position-x: -1340px;
  }
}

@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)
  }
}

.play-anim-ico {
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 61px;
  line-height: 61px;
  right: 50px;
  top: 50px;
  z-index: 1;
  font-family: 'icomoon';
  color: #fff;
}

.play-anim-ico:after {
  content: '\e9c2';
}

.play-anim-ico::before {
  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 #fff;
  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 {
  color: var(--main-color);
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.grid-container {
  max-width: 1360px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.grid-row {
  display: flex;
  flex-wrap: wrap;
}

/* --------------------------------------------------- */
/******************************************/
.banner-section {
  width: 100%;
  display: block;
  background: #fff;
  position: relative;
  padding: 85px 0px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.banner-section > img{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

ul.genfet {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 20px;
  margin-bottom: -90px;
}

.feature-cap {
  box-shadow: 0px 4.32px 64.87px rgba(0, 0, 0, 0.08);
  padding: 20px;
  min-height: 100%;
  background-color: #fff;
  text-align: center;
}

ul.genfet li strong {
  font-size: 16px;
  font-weight: 600;
  display: block;
  color: #000;
}

ul.genfet li i {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 8px;
  font-size: 45px;
  margin: 0 0 15px;
}

ul.genfet li i img {
  height: 33px;
  width: 33px;
  display: inline-block;
  vertical-align: top;
}

span.smallspace {
  display: block;
  height: 9px;
}

.banner-section-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0px 15px;
  box-sizing: border-box;
  z-index: 1;
  position: relative;
}

.banner-section .head-style .element {
  transform-origin: 50% 50%;
  transform-box: fill-box;
  animation: rotateBox 3s linear infinite;
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: -22px;
  left: 50%;
  z-index: 999999;
  background: var(--main-color);
  margin-left: -10px;
  text-align: left;
}

@keyframes rotateBox {
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

.banner-section p {
  font-size: 16px;
  color: #000;
  line-height: 24px;
  font-weight: 400;
  margin: 0 0 5px;
  text-align: left;
}

.banner-section img {
  vertical-align: top;
}

.banner-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button-btn {
  width: 100%;
  display: flex;
  padding-top: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-btn .video-icon {
  display: inline-block;
  position: relative;
  top: 0;
  right: -20px;
  transform: none;
  z-index: 999;
}

.banner-btn .video-icon a {
  width: 30px;
  height: 30px;
  min-height: 30px;
  margin: 0;
  line-height: normal;
  padding: 0px;
}

.banner-description-top {
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.banner-description-top .left-caption {
  width: 45%;
  position: relative;
  text-align: left;
}

.banner-description-top .right-caption {
  width: 55%;
  text-align: justify;
  position: relative;
}

.banner-description-top .left-caption .heading {
  font-size: 24.66px;
  font-weight: 600;
  line-height: normal;
  color: #f5c500;
  position: relative;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
}

.banner-description-top .left-caption .main-title {
  color: var(--main-color);
  line-height: 1em;
  font-size: 55px;
}

.banner-description-top .left-caption span {
    font-size: 30px;
    font-weight: 700;
    line-height: 1em;
    color: #000;
    display: block;
    position: relative;
    text-transform: capitalize;
    margin: 2px 0 10px 0;
    background-image: none;
}

.__banner_img{
  display: block;
  width: 100%;
  position: relative;
}

.king-icon {
  position: absolute;
  top: -30px;
  right: -20px;
}

.banner-description-top .left-caption .head-style2 {
  font-size: 18px;
  color: #000;
  line-height: 25px;
  font-weight: 600;
  display: block;
  margin: 10px 0 5px 0;
}

.banner-description-top .left-caption .head-style2 span {
  color: var(--main-color);
  font-size: 17px;
  line-height: normal;
  font-weight: 600;
  display: block;
  text-transform: initial;
  margin: 10px 0;
}

.banner-section .banner-btn {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-right: 0 !important;
}

.banner-section .banner-btn a {
  background: #00aa13;
  /*var(--main-color)*/
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 15px;
  border-radius: 4px;
  width: auto;
  text-transform: uppercase;
  line-height: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 0;
  min-height: 50px;
}

.banner-section .banner-btn .blinker {
  vertical-align: middle;
  display: inline-block;
  width: 22px;
  height: 22px;
  font-size: 22px;
  line-height: 22px;
}

.banner-section .banner-btn .blinker img {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}

@keyframes buttonanim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.banner-section .banner-btn a:after {
  content: '';
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--hover-color);
  z-index: -1;
  border-radius: 0;
  transition: all 0.5s ease 0s;
  animation: buttonanim 1.5s infinite;
  -webkit-animation: buttonanim 1.5s infinite;
}

@keyframes buttonanim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.banner-section .banner-btn a.buy-now {
  background: #ffd615;
  color: #000;
}

.banner-section .banner-btn a.buy-now:after {
  background-color: #e4ba00;
}

.banner-section .banner-btn a.demovideo-btn {
  background: #11AC56;
  color: #fff;
}

.banner-section .banner-btn a.demovideo-btn:after {
  background-color: #0a8d45;
}

.banner-section .banner-btn a.introvideo-btn {
  background-color: #cd7e08;
  color: #fff;
  gap: 10px;
}

.banner-section .banner-btn a.introvideo-btn:after {
  background-color: #e48d0c;
}

.banner-section .banner-btn a.view-demo img {
  width: 30px;
}

.slick-arrow {
  position: absolute;
  top: 20px;
  z-index: 11;
  cursor: pointer;
}

.banner-section .slick-prev.slick-arrow {
  left: 50%;
  transform: translateX(-100%);
  margin-left: -10px;
}

.banner-section .slick-next.slick-arrow {
  right: 50%;
  margin-right: -10px;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
}
/********************************************/
.about-grab-clone {
  padding: 40px 0 35px 0;
  margin-bottom: 95px;
}
.about-grab-clone .play-anim-ico {
  top: auto;
  left: 25%;
  margin: 0;
  bottom: 10px;
  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%)
}

.about-grab-clone-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}
.about-grab-clone_row {
  display: grid;
  grid-template-columns: 0.71fr 1fr;
  gap: 20px;
  align-items: center;
}
.about-grab-clone-left {
  position: relative
}
.about-grab-clone-left:hover {
  color: var(--orange)
}
/******************************************************/
.typewriter {
  display: flex;
  align-items: center;
  box-shadow: 0px 4.32px 64.87px rgba(0, 0, 0, 0.08);
  padding: 8px 10px;
  background-color: #fff;
  text-align: center;
  position: absolute;
  left: 80px;
  min-width: 170px;
  border-radius: 12px;
  z-index: 1;
}

.typewriter__text {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 15px;
}

.typewriter__text i {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.typewriter__cursor {
  width: 3px;
  height: 40px;
  background: #000;
  display: inline-block;
  border-radius: 2px;
  margin-left: 4px;
  transform-origin: center;
  animation: blink 1s steps(2, start) infinite;
}

.bg_1 {
  background-color: #CDEDFF;
}

.bg_2 {
  background-color: #FFEBDF;
}

.bg_3 {
  background-color: #FFD5FB;
}

.bg_4 {
  background-color: #D6F4BF;
}

.bg_5 {
  background-color: #D2D2FF;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  49% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/******************************************/
.revenue-groth {
  background: linear-gradient(to right, #0D8772 0%, #0D594C 100%);
}

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

.RG__LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.RG__LIST li {
  border: 1px solid #FFFFFF;
  padding: 20px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}

.RG__LIST li i {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  background-color: #34B75C;
  margin-bottom: 15px;
}

.RG__LIST li strong {
  font-size: 20px;
  color: #000;
  line-height: 1em;
  text-transform: capitalize;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.RG__LIST li p {
  color: #fff;
}

/******************************************/
.clone-app {
  padding: 25px 0 25px 0;
}

.clone-item .text-div h2 {
  font-size: 20px;
  line-height: 33px;
  color: #000000;
  font-weight: 700;
  font-family: 'Exo 2', sans-serif;
  margin-bottom: 25px;
  max-width: 93%;
}

@keyframes moveleftbounce {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0)
  }

  50% {
    transform: translateX(8px);
    -webkit-transform: translateX(12px);
    -moz-transform: translateX(12px);
    -ms-transform: translateX(12px);
    -o-transform: translateX(12px)
  }

  to {
    transform: translateX(0)
  }
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

i,
span,
a {
  display: inline-block;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid var(--main-color);
  padding: 0 25px;
  font-size: 20px;
  height: 55px;
  line-height: 51px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  -ms-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
  background-color: var(--main-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.main-btn:hover {
  background-color: #ffffff;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

.main-btn.main-btn-2 {
  background-color: #ffffff;
  color: var(--main-color);
  border-color: var(--main-color);
}

.main-btn.main-btn-2:hover {
  background-color: var(--main-color);
  color: #ffffff;
  border-color: var(--main-color);
}

@keyframes animation1 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
  }

  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2)
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
  }
}

@-webkit-keyframes animation1 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
  }

  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2)
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
  }
}

.banner-left-content {
  height: 100%;
  align-items: center;
  display: flex;
  box-sizing: border-box;
}

.header-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1
}

.header-hero .shape {
  position: absolute
}

.header-image .image-shape img {
  max-width: 260px;
}

.clone-package-section.inverse {
  background-color: #e7f6ff;
}

.clone-package-section {
  background-color: #e6eeef;
}

.clone-package-section-inner {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1330px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.clone-package-left {
  width: 50%;
}

.clone-package-left p small {
  font-size: 15px;
  font-weight: 500;
}

.clone-package-right {
  width: 48%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.clone-package-right::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 66.03%;
}

.clone-package-right>img {
  position: absolute;
  left: 0;
  top: 0;
}

.cubex-review {
  height: 525px;
  width: 100%;
  cursor: pointer;
}

.clone-package-section .more-reviews-btn,
.general-button {
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 2px var(--main-color) inset;
  border-radius: 5px;
  margin-bottom: 0;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  padding: 10px 40px;
  transition: all 0.5s ease 0s;
  background-color: var(--main-color);
  min-height: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.clone-package-section .more-reviews-btn:after,
.general-button:after {
  content: '';
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #3754c3;
  z-index: -1;
  border-radius: 0;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}

.clone-package-section .more-reviews-btn:hover::after,
.general-button:hover::after {
  background-color: #445cbb;
  width: 100%;
}

.clone-package-right img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.general-button:hover {
  color: #fff;
}

.clone-package-section ul {
  padding: 0;
}

.clone-package-section ul li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
  padding-left: 28px;
  position: relative;
  color: #2b2b2b;
  font-weight: 300;
}

.clone-package-section ul li:before {
  content: '';
  width: 11px;
  height: 3px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  top: 10px;
}

.clone-package-section.inverse .clone-package-section-inner {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.clone-package-section.inverse .clone-package-right:after {
  right: auto;
  left: 0;
}

.clone-package-section.inverse .play-anim-ico {
  left: 50%;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

/*****************************************/
.unlimited-services {
  position: relative;
  z-index: 1;
}

.unlimited-services::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: #ECF7FF;
  border-radius: 0 400px 0 0;
  -webkit-border-radius: 0 400px 0 0;
  -moz-border-radius: 0 400px 0 0;
  -ms-border-radius: 0 400px 0 0;
  -o-border-radius: 0 400px 0 0;
  z-index: -1;
  width: calc(100% - 320px);
  width: -webkit-calc(100% - 320px);
  width: -moz-calc(100% - 320px);
  width: -ms-calc(100% - 320px);
  width: -o-calc(100% - 320px);
  max-height: 627px;
  height: 100%;
}

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

.services-area {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: flex-start;
}

.services-area .services-tabs {
  display: flex;
  flex-direction: column;
  border: 1px solid #E1E6EF;
  border-right: 0;
  border-radius: 20px 0 0 20px;
  -webkit-border-radius: 20px 0 0 20px;
  -moz-border-radius: 20px 0 0 20px;
  -ms-border-radius: 20px 0 0 20px;
  -o-border-radius: 20px 0 0 20px;
  position: sticky;
  top: 143px;
}

.services-area .services-tabs li {
  background: #F8F9FC;
  border-bottom: 1px solid #E1E6EF;
  padding: 15px 23px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #1D2433;
  cursor: pointer;
  font-weight: 600;
  flex-direction: column;
  border-right: 4px solid transparent;
}

.services-area .services-tabs li:first-child {
  border-radius: 20px 0 0 0;
  -webkit-border-radius: 20px 0 0 0;
  -moz-border-radius: 20px 0 0 0;
  -ms-border-radius: 20px 0 0 0;
  -o-border-radius: 20px 0 0 0;
}

.services-area .services-tabs li:last-child {
  border-radius: 0 0 0 20px;
  -webkit-border-radius: 0 0 0 20px;
  -moz-border-radius: 0 0 0 20px;
  -ms-border-radius: 0 0 0 20px;
  -o-border-radius: 0 0 0 20px;
}

.services-area .services-tabs li.active {
  background-color: #fff;
  color: var(--main-color);
  border-right: 4px solid var(--main-color);
}

.services-area .services-tabs li:last-child {
  border-bottom: 0;
}

.services-area .services-tabs li i {
  font-size: 27px;
}
.services-tabs li a {
  pointer-events: none;
}

.unlimited-services-left {
  border: 1px solid #E1E6EF;
  border-radius: 0 20px 20px 0;
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
  -ms-border-radius: 0 20px 20px 0;
  -o-border-radius: 0 20px 20px 0;
  padding: 15px;
  background-color: #fff;
  min-height: 604px;
}

.components-text {
  margin: 0 0 15px;
}

.unlimited-services p,
.unlimited-services p b {
  font-size: 15px;
  line-height: 21px;
}

.components-text .heading {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  margin-top: 0;
  margin-bottom: 5px;
  display: block;
}

.components-text .heading .video-btn {
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  vertical-align: middle;
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 25px;
  color: var(--main-color);
  margin-left: 5px;
  margin-top: -5px;
}

.services-tabs_content ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.services-tabs_content ul li {
  width: calc((100% - 30px) / 3);
  width: -webkit-calc((100% - 30px) / 3);
  width: -moz-calc((100% - 30px) / 3);
  width: -ms-calc((100% - 30px) / 3);
  width: -o-calc((100% - 30px) / 3);
  flex-grow: 0;
  flex-grow: 1;
}

.services-tabs_content ul li .single-service-inner {
  padding: 16px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.05);
  min-height: 100%;
  background-color: #fff;
}

.services-tabs_content ul li .single-service-inner i {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-size: 34px;
  color: #000;
  margin: 0 0 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.services-tabs_content ul li .single-service-inner i img{
  width: 42px;
  height: 42px;
  display: inline-block;
  font-size: 0;
}
.services-tabs_content ul li .single-service-inner strong {
  font-size: 17px;
  color: #000;
  display: block;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.services-tabs_content#parcel ul li .single-service-inner>img {
  display: block;
  margin: 0 auto;
}

.services-tabs_content#deliver-anything ul li .single-service-inner>img {
  display: block;
  margin: 0 auto;
}

.services-tabs_content#parcel ul li .single-service-inner,
.services-tabs_content#deliver-anything ul li .single-service-inner {
  text-align: center;
}
.services-tabs_content {
visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.services-tabs_content.active {
 visibility: visible;
  opacity: 1;
  position: relative;
}

.m_0 {
  margin: 0 !important;
}

/*******************************************/
.flow-video-section {
  background: var(--linear);
}

.flow-video-section .heading-area.center strong {
  display: block;
  margin: 5px 0 0 0;
  font-size: 18px;
}

.flow-video-section .video-main {
  margin-top: 0;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  row-gap: 25px;
}

.flow-video-section .video-icon {
  position: absolute;
}

.flow-video-inner {
  max-width: 1310px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-main {
  display: flex;
  justify-content: left;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 24px;
}

.video-block {
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
  margin: 0 auto;
  max-width: 100%;
  cursor: pointer;
}

.video-block .play-anim-ico {
  right: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 80%);
  -webkit-transform: translate(-50%, 80%);
  -moz-transform: translate(-50%, 80%);
  -ms-transform: translate(-50%, 80%);
  -o-transform: translate(-50%, 80%);
}

.video-block img {
  position: absolute;
  left: 0;
  top: 0;
}

.video-block iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

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

.flow-video-section .heading-area p {
  margin-bottom: 0;
}

.video-block img {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
  vertical-align: top;
}

.video-left {
  z-index: 3;
}

.flow-video-section .video-icon a {
  background-color: #fff;
  animation: ripple-orange 1s linear infinite;
  -webkit-animation: ripple-orange 1s linear infinite;
}

.flow-video-section .video-block {
  width: 49%;
  display: block;
  margin: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.flow-video-section .video-block::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 56.40%;
}

.flow-video-section .video-block img {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.flow-video-section .video-block .play-anim-ico {
  left: auto;
  top: auto;
  bottom: 20px;
  right: 20px;
  margin: 0;
  transform: none;
}

/*****************************************/
.statisticsmain {
  position: relative;
  width: 100%;
  margin-top: 15px;
}

.statistics-inner {
  max-width: 1310px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px 0 15px;
  position: relative;
  z-index: 1;
}

.statisticsmain ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-inner-block {
  border-radius: 10px;
  min-height: 100%;
  padding: 21px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #ffffffe6;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .07);
  background-color: #fff;
}

.statisticsmain ul li {
  width: calc((100% - 70px) / 5);
  width: -webkit-calc((100% - 70px) / 5);
  width: -moz-calc((100% - 70px) / 5);
  width: -ms-calc((100% - 70px) / 5);
  width: -o-calc((100% - 70px) / 5);
  text-align: center;
  font-size: 35px;
  color: #000;
  font-weight: bold;
  position: relative;
  flex-grow: 1;
}

.statisticsmain ul li small {
  color: #000;
  display: block;
  font-weight: 500;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.1em;
}

.statisticsmain ul li sub {
  font-size: 44px;
  display: inline-block;
  position: relative;
  top: 0px;
}

.st_title {
  color: #000;
  line-height: 1em;
  font-size: 35px;
  min-width: 100px;
}

.st_bg1 {
  border-bottom: 10px solid #dbeafe;
}

.st_bg2 {
  border-bottom: 10px solid #ffedd5;
}

.st_bg3 {
  border-bottom: 10px solid #dcfce7;
}

.st_bg4 {
  border-bottom: 10px solid #f3e8ff;
}

.st_bg5 {
  border-bottom: 10px solid #cffafe;
}

.st_bg6 {
  border-bottom: 10px solid #e0e7ff;
}

.st_bg7 {
  border-bottom: 10px solid #ecfccb;
}

/* ===================================================== */
.whatfor-inner {
  display: flex;
  max-width: 1280px;
  padding: 0 15px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.whatfor-left {
  width: 39%;
}

.whatfor-right {
  width: 59%;
}
.whatfor-right ul {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}
.whatfor-right ul li{
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0;
    color: var(--black);
    font-weight: 500;
    text-align: justify;
    background: url(../images/grab-clone-new/check.svg) no-repeat;
    background-position: left 5px;
    padding-left: 25px;
}
/* ==================================================== */
.flow-inner {
  max-width: 1280px;
  padding: 0 15px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.flow-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flow {
  position: relative;
  z-index: 0;
}

.flow .flow-btn {
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 2px var(--main-color) inset;
  border-radius: 5px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  transition: all 0.5s ease 0s;
  background-color: var(--main-color);
  min-height: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.flow .flow-btn:after {
  content: '';
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--hover-color);
  z-index: -1;
  border-radius: 0;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}

.flow .flow-btn:hover:after {
  width: 100%;
}

.flow>.flow-inner>strong {
  font-size: 18px;
  line-height: 27.2px;
  color: #373737;
  font-weight: 500;
  display: block;
  margin: 10px auto 20px auto;
  max-width: 1100px;
  text-align: center;
}

.flow-row ul {
  list-style: none;
  width: 318px;
}

.flow-row ul:first-child,
.flow-row ul:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 400px;
}

.flow-row ul li p {
  line-height: 23.2px;
  color: #373737;
  font-size: 14px;
  display: block;
  margin-top: 16px;
  padding: 0 11px;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}

.flow-row ul:first-child,
.flow-row ul:last-child {
  gap: 30px;
}

.flow-row ul li {
  position: relative;
}

.flow-row ul.middle li:nth-child(2) {
  margin: 92px 0 20px 0;
}

.flow-img-block {
  position: relative;
}

.flow-img-block .arrow {
  position: absolute;
}

.flow-img-block .center-up.arrow {
  left: 50%;
  top: -64px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.flow-img-block .center-down.arrow {
  left: 50%;
  top: auto;
  bottom: -79px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.flow-row ul li .center-down.arrow {
  left: 50%;
  position: absolute;
  top: auto;
  bottom: -77px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.flow-row ul li .arrow {
  position: absolute;
}

.flow-row ul li .center-left.arrow {
  left: -110px;
  right: auto;
  top: 1128px;
}

.flow-row ul li .center-right.arrow {
  right: -110px;
  left: auto;
  top: 1128px;
}

.flow-row ul li .flow-img-block .center-left.arrow {
  left: -110px;
  right: auto;
  top: 380px;
}

.flow-row ul li .flow-img-block .center-right.arrow {
  right: -110px;
  left: auto;
  top: 380px;
}

/****************************************/
/**************************************/
.demolinks {
  padding: 35px 0 40px 0;
  position: relative;
  background-color: #e4eaff;
}

.demolinks p {
  margin-bottom: 20px;
}

.demolinks-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.demo-links-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.demo-links-row strong {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}

.demo-links-row .links-column {
  margin-bottom: 10px;
  width: 300px;
  max-width: 100%;
}

.demo-links-row .links-column ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 8px;
  justify-content: center;
}

.demo-links-row .links-column ul li {
  margin: 0 5px 8px 5px;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  bottom: 0;
}

.demo-links-row .links-column ul li:last-child {
  margin-bottom: 0;
}

.demo-links-row .links-column ul li a {
  display: block;
}

.demo-links-row .links-column ul li:hover {
  bottom: 5px;
}

.web-heading {
  display: inline-block;
  font-size: 46px;
  font-weight: 600;
  background-color: #e2a213;
  color: #fff;
  text-transform: uppercase;
  line-height: normal;
  padding: 0 15px 5px 15px;
}

ul.weblinks li {
  list-style: none;
  position: relative;
  margin: 0 5px;
  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;
  bottom: 0;
}

ul.weblinks li:hover {
  bottom: 5px;
}

ul.weblinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* ======================================================= */
.download {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 0;
  padding-left: 15px;
  padding-right: 15px;
}

.download .btn__div {
  margin: 0;
}

.download .heading-area {
  margin-bottom: 0;
}

.download-inner {
  background: var(--linear);
  max-width: 1310px;
  padding: 25px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 190px;
  gap: 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  align-items: center;
}

.download-caption ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.download-caption ul li {
  margin-right: 20px;
}

.download-caption a {
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 2px #fff inset;
  border-radius: 5px;
  margin-bottom: 0;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--main-color);
  display: inline-flex;
  padding: 0 40px;
  transition: all 0.5s ease 0s;
  background-color: #fff;
  min-height: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.download-caption a:after {
  content: '';
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #e1f4ff;
  z-index: -1;
  border-radius: 0;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}

.download-caption a:hover::after {
  width: 100%;
}

/* ================================================ */
.pricing {
  position: relative;
  z-index: 1;
}

.pricing-inner {
  max-width: 1327px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.pricing .get-quote {
  font-size: 22px;
  background-color: #000;
  font-weight: 600;
  color: #ffffff;
  padding: 13px 20px 17px 20px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  gap: 10px;
}

.pricing .get-quote:hover {
  background-color: #333;
}

.torn-pricing {
  position: relative;
}


/* ======================================== */
.delivery-types-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}

.delivery-types ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
}

.delivery-types ul li {
  width: calc(25% - 16px);
  width: -o-calc(25% - 16px);
  width: -ms-calc(25% - 16px);
  width: -moz-calc(25% - 16px);
  width: -webkit-calc(25% - 16px);
  margin-bottom: 20px;
}

.delivery-types ul li.last {
  width: calc(50% - 10px);
  width: -o-calc(50% - 10px);
  width: -ms-calc(50% - 10px);
  width: -moz-calc(50% - 10px);
  width: -webkit-calc(50% - 10px);
}

.delivery-types ul li a {
  display: block;
  background-color: #222;
  ;
  position: relative;
}

.delivery-types ul li img {
  max-width: 100%;
}

.delivery-caption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 1s 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;
  padding: 15px;
  text-align: center;
}

.delivery-caption strong {
  display: block;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.delivery-caption p {
  margin-bottom: 0;
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  color: #8cea2b;
}

/*========================================================================*/
.script-package-inner {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1310px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

.script-package-row-flow {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


.script-package-row-flow .catrow {
  width: calc((100% - 30px) / 3);
  width: -webkit-calc((100% - 30px) / 3);
  width: -moz-calc((100% - 30px) / 3);
  width: -ms-calc((100% - 30px) / 3);
  width: -o-calc((100% - 30px) / 3);
  box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 24px;
  flex-grow: 1;
  background-color: #fff;
  border-radius: 12px;
}

.script-package-row-flow .catrow .caticonbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 0 0 15px;
}

.script-package-row-flow .catrow .caticonbox i {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-size: 50px;
  color: #000;
}
.script-package-row-flow .catrow .caticonbox strong {
  font-size: 21px;
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
  width: calc(100% - 90px);
  width: -webkit-calc(100% - 90px);
  width: -moz-calc(100% - 90px);
  width: -ms-calc(100% - 90px);
  width: -o-calc(100% - 90px);
}

.script-package-row-flow .catrow ul {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.script-package-row-flow .catrow ul li {
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0;
  color: var(--black);
  font-weight: 500;
  text-align: justify;
  background: url(../images/grab-clone-new/check.svg) no-repeat;
  background-position: left 5px;
  padding-left: 25px;
}

/**************************************/
.fancybox-opened {
  z-index: 80303 !important;
}

/*********************************/
.reviews {
  position: relative;
  background-color: #f8f8f8;
}

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

.reviews .heading-area {
  width: 100%;
}

.all-reviews {
  padding: 20px 50px;
  background-color: var(--main-color);
  color: #fff;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  border-radius: 50px;
  font-size: 30px;
  font-weight: 600;
}

.all-reviews:hover {
  background-color: #1c5879;
  color: #fff;
}

ul.reviews-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  row-gap: 20px;
}

ul.reviews-list li {
  width: 25%;
  padding: 0 10px;
}

ul.reviews-list li a {
  display: block;
  background-color: #fff;
  position: relative;
  border-radius: 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.20);
  transition: all 0.5s ease 0s;
  overflow: hidden;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  width: 100%;
}

ul.reviews-list li:not(:last-child) a:before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 71%;
}

ul.reviews-list li a img {
  max-width: 100%;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
}

ul.reviews-list li a::after {
  content: '\e9c2';
  font-family: 'icomoon';
  position: absolute;
  right: 10px;
  top: 10px;
  width: 46px;
  height: 46px;
  padding: 3px;
  font-size: 40px;
  line-height: 40px;
  background-color: var(--main-color) !important;
  color: #fff;
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 40%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

ul.reviews-list li.morereview a {
  min-height: 100%;
  font-size: 28px;
  font-weight: bold;
  line-height: 34px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  padding: 15px;
  text-align: center;
}

ul.reviews-list li.morereview a:hover {
  background-color: var(--hover-color);
}

ul.reviews-list li.morereview a: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: 20px 0 0 0;
  -webkit-border-radius: 20px 0 0 0;
  -moz-border-radius: 20px 0 0 0;
  -ms-border-radius: 20px 0 0 0;
  -o-border-radius: 20px 0 0 0;
}

ul.reviews-list li.morereview a: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 20px 0;
  -webkit-border-radius: 0 0 20px 0;
  -moz-border-radius: 0 0 20px 0;
  -ms-border-radius: 0 0 20px 0;
  -o-border-radius: 0 0 20px 0;
}

/**************************************/
.services+.demo-video-laptop {
  background: #fff;
}

.statistics~.download {
  padding: 0 15px 40px 15px;
}

.demo-video-laptop{
  background-color: #f8f8f8;
}
.demo-video-laptop-inner {
  max-width: 1310px;
  box-sizing: border-box;
  padding: 0 15px;
  margin: 0 auto;
}

.overview-video-inner {
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.uberclone-vidoe-img {
  position: relative;
  display: block;
  cursor: pointer;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.uberclone-vidoe-img::before{
  content: '';
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.overview-video-inner {
  margin: 0 auto;
}

.overview-video-row .overview-video-right {
  width: 48%;
}

.overview-video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}

.uberclone-vidoe-img img {
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.uberclone-vidoe-img iframe {
  width: 100%;
  max-width: 100%;
  border: 1px solid #ddd;
  position: absolute;
  left: 0;
  top: 0;
}

.uberclone-vidoe-img .play-anim-ico {
  right: auto;
  bottom: auto;
  left: 57%;
  position: absolute;
  top: 51%;
  margin: 0;
}

.demo-video-laptop b {
  display: block;
  font-weight: 400;
  margin: 0 0 15px 0;
  text-align: center;
  font-size: 16px;
  color: #1f1f1f;
  line-height: 28px;
}

/* ============================================================= */
.services {
  background-color: #f8f8f8;
}
.services-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.services .heading-area strong {
  color: #fff;
}

.services ul.tab-row>li .services-inner-block>i {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 0 12.5px 0 rgba(0, 0, 0, 0.25);
}

.services i img {
  max-width: 100%;
  max-height: 100%;
}

.services h3 b {
  font-size: 35px;
  text-transform: uppercase;
}

ul.tab-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 48px 0 0 0;
  padding: 0;
  position: relative;
  width: 100%;
  gap: 20px;
  text-align: center;
}

ul.tab-row.havesix {
  grid-template-columns: repeat(6, 1fr);
  margin: 53px 0 0 0;
}

ul.tab-row.havesix:after {
  left: 8.25%;
  right: 8.25%;
}

ul.tab-row.havesix:before {
  left: auto;
  right: 11.5%;
}

ul.tab-row li img {
  height: 40px;
  width: 40px;
  display: inline-block;
}

ul.tab-row>li {
  box-sizing: border-box;
  margin-top: 24px;
  position: relative;
  height: auto;
}

ul.tab-row>li .services-inner-block>span {
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin: 8px 0 5px 0;
  color: #000;
}

ul.tab-row li p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 20px;
}

ul.tab-row:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 30px;
  top: -30px;
  background-color: #999999;
  left: 50%;
  margin-left: -1px;
}

ul.tab-row:after {
  content: '';
  position: absolute;
  left: 11.8%;
  right: 11.8%;
  height: 2px;
  background-color: #999999;
}

ul.tab-row>li:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 22px;
  left: 50%;
  background-color: #999999;
  top: -22px;
  margin-left: -1px;
}

ul.tab-row li span.booking-from {
  margin: 0 auto;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
}

.booking-from:before {
  content: '';
  height: 19px;
  width: auto;
  display: block;
  margin: 5px auto 5px auto;
  font-size: 65px;
  font-weight: 100;
  background-image: url(../images/grab-clone-new/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.sitemapbgcolor1 {
  background-color: var(--color1);
}

.sitemapbgcolor2 {
  background-color: var(--color2);
}

.sitemapbgcolor3 {
  background-color: var(--color3);
}

.sitemapbgcolor4 {
  background-color: var(--color4);
}

.sitemap_border_bgcolor1 i {
  border-color: var(--color1);
  color: var(--color1);
}

.sitemap_border_bgcolor2 i {
  border-color: var(--color2);
  color: var(--color2);
}

.sitemap_border_bgcolor3 i {
  border-color: var(--color3);
  color: var(--color3);
}

.sitemap_border_bgcolor4 i {
  border-color: var(--color4);
  color: var(--color4);
}

/* .services-inner-block:before {
  width: 3px;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main-color);
  height: 100%;
} */
.services .heading-area h2:after,
.services .heading-area h3:after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #999;
  border-radius: 50%;
  left: 50%;
  bottom: -33px;
  margin-left: -8px;
  z-index: 1;
}
.services .heading-area h2,
.services .heading-area h3 {
  position: relative;
}

ul.subcat-listing {
  text-align: left;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-top: 10px;
}

ul.subcat-listing.sitemap_border_bgcolor1 li {
  background-color: var(--color1_light);
  box-shadow: 0 0 2px 0 var(--color1);
}

ul.subcat-listing.sitemap_border_bgcolor2 li {
  background-color: var(--color2_light);
  box-shadow: 0 0 2px 0 var(--color2);
}

ul.subcat-listing.sitemap_border_bgcolor3 li {
  background-color: var(--color3_light);
  box-shadow: 0 0 2px 0 var(--color3);
}

ul.subcat-listing.sitemap_border_bgcolor4 li {
  background-color: var(--color4_light);
  box-shadow: 0 0 2px 0 var(--color4);
}

ul.subcat-listing li {
  display: grid;
  grid-template-columns: 35px auto;
  gap: 10px;
  align-items: center;
  padding: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

ul.subcat-listing li i {
  width: 35px;
  height: 35px;
  border-style: solid;
  border-width: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

ul.subcat-listing li span {
  font-size: 13px;
  font-weight: 600;
}
ul.subcat-listing li .icon-security-guard:before{
  color: #1093A5 !important;
}
/*********************************/
/******************************************/
.deliverytypes {
  background: var(--linear)
}

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

.deliverytypes ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.deliverytypes ul li img {
  max-width: 100%;
  vertical-align: top;
  border: 1px solid #E7E9ED;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.deliverytypes ul li .deltype-img::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 51.25%;
}

.deliverytypes ul li .deltype-img {
  margin-bottom: 15px;
  position: relative;
  width: 100%;
  display: block;
}

.deliverytypes ul li .deltype-block {
  display: block;
}

.deliverytypes ul li .deltype-block p {
  font-size: 15px;
  line-height: 21px;
}

.deliverytypes ul li b {
  font-size: 18px;
  color: var(--black);
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 4px;
  display: block;
}

/* =============================================================== */
.appcost {
  background-color: #f8f8f8;
}

.appcost-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  align-items: center;
}

.appcost-right {
  width: 33%;
}

.appcost-left {
  width: 64%;
}

.blinker {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.kiosk-banner.white {
  background-color: #f8f8f8;
}

.kiosk-banner {
  width: 100%;
  background: var(--linear);
}

.mobile-kiosk-block {
  width: 652px;
  max-width: 100%;
  margin: 0 auto 20px auto;
  position: relative;
}

.kiosk-banner-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  z-index: 1;
  position: relative;
  flex-wrap: wrap;
}

.kiosk-banner-left {
  width: 49%;
}

.kiosk-banner-left p b {
  color: #000;
  font-size: 18px;
  display: block;
  font-weight: 400
}

.kiosk-banner-left p b i {
  color: #214db2;
  font-size: 24px;
  font-weight: 600
}

.kiosk-banner-right {
  width: 49%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  position: relative
}

.kiosk-banner-right .top-new-benner-mob {
  max-width: 100%;
}

.kiosk-banner .apple-demo-video {
  display: block;
  width: 100%;
  margin-top: 30px;
}

.kiosk-banner .apple-demo-video a {
  background: #609afe;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 5px;
  display: inline-block;
  width: auto;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.kiosk-banner .apple-demo-video a::after {
  content: '';
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #0e48ac;
  z-index: -1;
  border-radius: 0;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}

.kiosk-banner .apple-demo-video a:hover::after {
  background-color: #0e48ac;
  width: 100%;
}

.kiosk-banner ul.tab-screens {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: space-between;
  width: 100%;
}

.kiosk-banner ul.tab-screens li {
  width: 50%;
  padding: 0 5px;
  box-sizing: border-box;
  margin-bottom: 15px;
}

.kiosk-banner ul.tab-screens li img {
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
}

.appcost-right img {
  min-width: 100%;
}

.client-reviews {
  position: relative;
}

.client-reviews-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.client__list {
  width: 100%;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 30px;
  align-items: center;
}

.cl_small_video_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.cl_small_video_list li {
  width: calc((100% - 15px) / 2);
}

.client__list a {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.client__list img{
  vertical-align: top;
}
.cl_small_video_list li a {
  display: block;
  width: 100%;
  z-index: 1;
}

.cl_small_video_list li a::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 100%;
}

.cl_video_overlay {
    background: linear-gradient(to bottom, rgba(201, 59, 59, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 25%;
    border-radius: 0 0 13px 13px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cl_video_overlay strong {
  font-size: 31px;
  color: #fff;
  line-height: 1em;
}
.cl_big_video .cl_video_overlay {
  height: 20%;
}
.cl_video_overlay i {
    font-size: 45px;
    color: #fff;
}

.cl_small_video_list strong {
  font-size: 18px;
}

.cl_small_video_list .cl_video_overlay {
  border-radius: 0 0 14px 14px;
}

.cl_small_video_list i {
  font-size: 35px;
  color: #fff;
}

.cl_small_video_list li a img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cl_small_video_list li a.client__btn {
  /* background: url(../images/grab-clone-new/client-btn.webp) no-repeat center center; */
  background-size: cover;
}

.cl_small_video_list li a.client__btn span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 12px;
  margin: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  font-size: 29px;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

/* ----------------------------------------------------- */
.faq {
  padding: 40px 0;
}

.faq-container {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;

}

.faq-column {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding-bottom: 15px;
    overflow: hidden;
    background: #fff;
}

.faq__list{
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 15px;
}
.faq-question {
  width: 100%;
  padding: 12px;
  background-color: #000;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  text-align: justify;
  position: relative;
  font-weight: 600;
  margin-bottom: 10px;
}
.faq-item:last-child{
  grid-column: span 2;
}

.faq__list p {
  padding: 0 15px;

}

.__list {
  padding-left: 20px;
}

.__list span {
  display: block;
  font-size: 16px;
  color: #000;
  text-align: justify;
  line-height: normal;
  position: relative;
  margin: 0 0 6px 0;
}

.__list span::before {
  content: '';
  width: 100%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 2px;
}

/* ----------------------------------------------------- */
.why__choose {
  overflow: hidden;
  background-color: #f8f8f8;
}

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

.why__choose__left {
  width: 57%;
}

.why__choose_list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.why__choose_list li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-start;
}

.why__choose_list li i {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
  width: 80px;
  height: 80px;
  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;
  background-color: #fff;
  font-size: 45px;
}

.why__choose__right {
  width: 43%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why__choose_list li div {
  width: calc(100% - 100px);
  width: -webkit-calc(100% - 100px);
  width: -moz-calc(100% - 100px);
  width: -ms-calc(100% - 100px);
  width: -o-calc(100% - 100px);
}

.why__choose_list li strong {
  font-weight: bold;
  line-height: 1em;
  color: #000;
  font-size: 18px;
  display: block;
  margin: 0 0 5px;
}

/* ----------------------------------------------------- */
.screens {
  padding: 40px 0px 40px 0;
  overflow: hidden;
  background-color: #f8f8f8;
}

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

.TABROW {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto 15px auto;
  gap: 15px;
  width: 650px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 5px 5px;
}

.TABROW .TAB {
  position: relative;
  width: 100%;
}

.TABROW .TAB span {
  padding: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  border-radius: 1.25rem;
  gap: 10px;
  min-height: 45px;
  white-space: nowrap;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
}

.TABROW .TAB span:hover {
  background: var(--main-color);
  color: #fff;
}

.TABROW .TAB.active span {
  background: var(--main-color);
  color: #fff;
}

.screens ul {
  display: none;
  flex-wrap: wrap;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.screens ul.active {
  display: block;
}

.tab__area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  align-items: flex-start;
}

.tab_img {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 575px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.tab_img::before {
  content: '';
  left: -25px;
  bottom: 0;
  position: absolute;
  width: 1000%;
  background-color: #F2E9F6;
  z-index: -1;
  height: 60%;
  border-radius: 20px 0 0 20px;
  border: 1px solid #F2E9F6;
}

.tab__content {
  width: calc(100% - 627px);
  width: -webkit-calc(100% - 627px);
  width: -moz-calc(100% - 627px);
  width: -ms-calc(100% - 627px);
  width: -o-calc(100% - 627px);
}

.tab__content.full__width {
  width: 100%;
}

.tab_img span {
  width: 280px;
}

.tc_title {
  font-size: 28px;
  color: #000;
  text-transform: uppercase;
  display: block;
  margin: 0 0 5px;
  font-weight: 700;
}

.tab__content ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.tab__content.full__width ol {
  grid-template-columns: 1fr 1fr 1fr;
}

.tab__area ol li i {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8B5CF6, #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E9EBF1;
  border-radius: 50%;
}

.tab__area ol li {
  font-size: 16px;
  color: #000;
  display: flex;
  align-items: flex-start;
  position: relative;
  text-align: justify;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
  padding: 10px;
  border-radius: 12px;
}

.tab__area ol li div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 10px;
  flex-direction: column;
}

.tab__area ol li strong {
  font-size: 18px;
  color: #000;
  line-height: 1em;
  display: block;
}

.screens .view-app-flow {
  font-size: 22px;
  background-color: var(--theme);
  font-weight: 600;
  color: #ffffff;
  padding: 14px 40px 17px 40px;
  min-width: 264px;
  box-sizing: border-box;
  display: inline-block;
  border-radius: 30px;
  margin-top: 35px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.screens .view-app-flow:hover {
  background-color: var(--theme-dark);
}

.flow-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0;
}

.flow-button-btn {
  background-color: var(--theme);
  font-size: 28px;
  color: #fff;
  padding: 15px 25px 17px 25px;
  min-width: 31.2%;
  text-align: center;
  font-weight: 600;
  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: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.flow-button-btn:hover {
  background-color: var(--theme-dark);
  color: #fff;
}

.screens .image {
  width: 60%;
  margin: 0 auto;
}

/* ----------------------------------------------------- */
.launch-section {
  overflow: hidden;
  padding: 0 15px 40px 0;
}

.launch_inner {
  max-width: 1310px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 25px 30px 0 0;
  background-color: #26AB8B;
  border-radius: 0 41px 41px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.launch_inner::before {
  content: '';
  right: 40%;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #26AB8B;
  z-index: -1;
  width: 1000%;
}

.launch-image {
  width: 32%;
}

.launch-image img {
  vertical-align: top;
}

.launch-content {
  width: 65%;
}

/* ----------------------------------------------------- */
.admin__panel {
  overflow: hidden;
  padding-bottom: 30px;
}

.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: 37vw;
  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: 1fr;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

.AP__FET .title-and-icon i {
  width: 62px;
  font-size: 45px;
}

.AP__FET .title-and-icon strong {
  font-size: 20px;
  color: #000;
  font-weight: bold;
  display: block;
  line-height: 1em;
  text-transform: capitalize;
}

.web__panel {
  background: #fff9f4;
  overflow: hidden;

}

/* ----------------------------------------------------- */
.offer__banner{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 10;
  height: auto;
  max-width: 100%;
}
.offer__banner .offer__close {
	font-size: 26px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 0 5px 0 rgba(0,0,0,.2);
	align-items: center;
	right: -4px;
	top: -5px;
	background-color: #fff;
	padding: 0;
	position: absolute;
	cursor: pointer;
}
.offer__banner img{
  vertical-align: top;
}

/* ----------------------------------------------------- */
/* ---------------------------------------------- */
.ai-features {
    padding: 40px 0;
}

.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;
}

.ai-features .card {
    border-radius: 20px;
    padding: 18px;
    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_btn_area{
  position: relative;
  z-index: 1;
}
.ai-features .common-btn {
    padding: 10px 12px 11px 12px;
    min-height: initial;
    font-size: 16px;
    gap: 10px;
}
.ai-features .common-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;
}

.ai-features a.ai__features {
    display: block;
    cursor: pointer;
    background-color: var(--hover-color);
    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(--main-color);
    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;

}
/* ----------------------------------------------------- */
@media screen and (-webkit-min-device-pixel-ratio: 1.50) and (max-width: 1920px) {
  .banner h1 {
    font-size: 40px;
  }

  .banner strong {
    font-size: 16px;
  }

  p {
    font-size: 14px;
    line-height: 19px;
    margin: 0 0 5px;
  }

  .bn-right img {
    max-width: 49vw;
  }

  .main-title {
    font-size: 32px;
  }
}

@media (max-width:1400px) {
  .banner {
    padding: 30px 0;
  }

  .banner h1 {
    font-size: 43px;
    line-height: 1em;
  }

  .banner strong {
    font-size: 17px;
    margin: 0 0 5px 0;
  }

  p {
    font-size: 15px;
    line-height: 23px;
  }

  .flow-video-inner {
    max-width: calc(100% - 15px);
    max-width: -webkit-calc(100% - 15px);
    max-width: -moz-calc(100% - 15px);
    max-width: -ms-calc(100% - 15px);
    max-width: -o-calc(100% - 15px);
  }

  .AP__FET article {
    padding: 15px;
  }

  .AP__left {
    width: calc(100% - 540px);
  }

  .AP__right {
    width: 520px;
  }

  .AP__right img {
    max-width: 42vw;
  }

  .AP__FET .title-and-icon i {
    font-size: 40px;
  }

  .AP__FET .title-and-icon strong {
    font-size: 18px;
  }

  .AP__FET .title-and-icon {
    margin-bottom: 12px;
  }

  .AP__FET .title-and-icon {
    gap: 10px;
  }
}

@media (max-width:1199px) {
  .main-title {
    font-size: 32px;
  }

  .banner-description-top {
    padding: 0;
  }
.banner-description-top .left-caption .main-title {
    font-size: 45px;
}
  .banner-description-top .right-caption {
    width: 100%;
    text-align: center;
    order: 1;
    max-width: 991px;
    margin: 0 auto 20px auto;
  }
  .__banner_img{
    max-width: 722px;
    margin: 0 auto;
  }

  .banner-description-top .left-caption {
    width: 100%;
    order: 2;
  }

  ul.genfet {
    gap: 15px;
    order: 3;
  }
.services-tabs_content ul li {
    width: calc((100% - 30px) / 2);
    width: -webkit-calc((100% - 30px) / 2);
    width: -moz-calc((100% - 30px) / 2);
    width: -ms-calc((100% - 30px) / 2);
    width: -o-calc((100% - 30px) / 2);
}
.tab__content ol {
    grid-template-columns: 1fr 1fr 1fr;
}
  .AP__right img {
    max-width: 53vw;
  }

  .client__list {
    gap: 15px;
  }

  .cl_video_overlay {
    padding: 7px;
  }

  .cl_small_video_list strong {
    font-size: 15px;
  }
.cl_small_video_list li a.client__btn span {
    font-size: 2.5vw;
    line-height: 3.5vw;
}
  ul.reviews-list li.morereview a {
    font-size: 2.5vw;
    line-height: 3.5vw;
  }
}

@media screen and (min-width:1025px) {
  .grab-header ul li:hover ul {
    top: 80%;
    opacity: 1;
    visibility: visible;
  }
}

@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;
  }

  .grab-header ul li>ul {
    position: relative;
    opacity: 1;
    visibility: visible;
    padding: 0;
    display: none;
    box-shadow: none;
  }

  .grab-header ul li>ul li a {
    padding: 8px 6px;
  }

  .grab-header ul li>ul li a {
    border-top: 1px solid #ddd;
  }

  .grab-header ul li.have_dropdown>a.open:after {
    transform: rotate(226deg);
    -webkit-transform: rotate(226deg);
    -moz-transform: rotate(226deg);
    -ms-transform: rotate(226deg);
    -o-transform: rotate(226deg);
    top: 13px;
  }

  .grab-header ul li.have_dropdown a.open>img {
    transform: rotatex(180deg);
    -webkit-transform: rotatex(180deg);
    -moz-transform: rotatex(180deg);
    -ms-transform: rotatex(180deg);
    -o-transform: rotatex(180deg);
  }

  /***************************************/
  .grab-header-inner {
    padding: 0 25px;
    display: block;
  }

  .grab-header-right {
    display: none;
    padding: 0 0 0 0;
  }

  .grab-header ul {
    display: block;
  }

  .grab-header ul li a {
    min-height: initial;
    line-height: normal;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .grab-header {
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    top: 80px;
  }

  .grab-header .grab-header-right>ul>li:last-child {
    min-height: initial;
    line-height: normal;
  }

  .grab-header .grab-header-right>ul>li:last-child a {
    width: 100%;
    margin: 10px 0;
  }

  .grab-header .grab-header-right>ul>li:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }

  .tab__area {
    flex-direction: column-reverse;
  }

  .tab_img {
    margin: 0 auto;
    max-width: 100%;
  }

  .tab__content {
    width: 100%;
  }

  .why__choose__left {
    width: 100%;
    order: 3;
  }

  .why__choose__right {
    width: 100%;
    align-items: center;
    order: 2;
    margin-bottom: 25px;
  }
.statisticsmain{
  order: 4;
}
.ai-features .grid {
    grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width:991px) {
  .main-title {
    font-size: 30px;
}
/* -------------------------------------- */
  ul.genfet {
    grid-template-columns: 1fr 1fr;
}
/* -------------------------------------- */
ul.tab-row {
  margin-top: 0;
  row-gap: 20px;
}
ul.tab-row {
  margin: 0;
  grid-template-columns: 1fr 1fr;
}
ul.tab-row > li {
  margin: 0;
}
ul.tab-row > li:after{
  display: none;
}
ul.tab-row > li:before{
  display: none;
}
.services .heading-area h2:after,
.services .heading-area h3:after{
  display: none;
}
ul.tab-row:before{
  display: none;
}
ul.tab-row:after{
  display: none;
}
/* -------------------------------------- */
.script-package-row-flow .catrow {
    width: calc((100% - 30px) / 2);
    width: -webkit-calc((100% - 30px) / 2);
    width: -moz-calc((100% - 30px) / 2);
    width: -ms-calc((100% - 30px) / 2);
    width: -o-calc((100% - 30px) / 2);
}
/* -------------------------------------- */
.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;
}
.web__panel .AP__left{
  order: 3;
}
/* -------------------------------------- */
.whatfor-left {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}
.whatfor-right{
  width: 100%;
}
/* -------------------------------------- */
.unlimited-services::before {
    border-radius: 0 140px 0 0;
    -webkit-border-radius: 0 140px 0 0;
    -moz-border-radius: 0 140px 0 0;
    -ms-border-radius: 0 140px 0 0;
    -o-border-radius: 0 140px 0 0;
    width: 100%;
}
.services-area {
    grid-template-columns: 1fr;
}
.services-area .services-tabs {
    border-radius:10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0px;
    -ms-border-radius: 10px 10px 0 0px;
    -o-border-radius: 10px 10px 0 0px;
    position: relative;
    top: 0;
    flex-direction: unset;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    border-bottom: 0;
    max-width: 100%;
    outline:1px solid #E1E6EF;
    border: 0;
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
}
.services-area .services-tabs li:first-child {
    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;
}
.services-area .services-tabs li:last-child {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.services-area .services-tabs li {
    white-space: nowrap;
    border-right: 0;
    border: 0;
}
.services-area .services-tabs li.active {
  border: 0;
}
.unlimited-services-left {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0 ;
    -ms-border-radius: 0 ;
    -o-border-radius: 0 ;
}
/* -------------------------------------- */
.RG__LIST {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
/* -------------------------------------- */
.cl_video_overlay strong,
.cl_small_video_list strong {
    display: none;
}
.cl_video_overlay {
    background: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.client__list,
.cl_small_video_list {
    gap: 10px;
}
/* -------------------------------------- */
.launch-section {
    padding-right: 0;
}
.launch_inner {
    padding: 40px 15px;
    background-color: #26AB8B;
    border-radius: 0;
}
.launch-image {
    width: 100%;
    text-align: center;
    margin: 0 0 25px;
}
.launch-image img{
  border-bottom: 1px solid #ccc;
}
.launch-content{
  width: 100%;
}
.about-grab-clone_row {
  grid-template-columns: 100%;
}
/* -------------------------------------- */
.statisticsmain ul {
    gap: 15px;
}
.statisticsmain ul li {
    width: calc((100% - 70px) / 4);
    width: -webkit-calc((100% - 70px) / 4);
    width: -moz-calc((100% - 70px) / 4);
    width: -ms-calc((100% - 70px) / 4);
    width: -o-calc((100% - 70px) / 4);
}
.stat-inner-block {
    padding: 15px;
}
.st_title {
    font-size: 30px;
}
.statisticsmain ul li small {
    font-size: 16px;
}
/* -------------------------------------- */
.kiosk-banner-inner {
    gap: 30px;
}
.kiosk-banner-left {
    width: 100%;
}
.kiosk-banner-right{
  width: 100%;
}
.mobile-kiosk-block:before {
    padding-top: 55.5%;
}
.mobile-kiosk-block {
    margin: 0 auto 15px auto;
}
/* -------------------------------------- */
.pricing .get-quote {
    font-size: 18px;
    color: #ffffff;
    padding: 11px 15px 12px 15px;
}
/* -------------------------------------- */
ul.reviews-list li {
    width: 33.33%;
    padding: 0 10px;
}
/* -------------------------------------- */
.faq__list {
  display: flex;
  flex-direction: column;
}
/* -------------------------------------- */
.offer__banner {
    width: 250px;
}
.offer__banner img {
  height: auto !important;
}
.ai-features .grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media screen and (max-width:630px) {
  .banner-section{
    background: linear-gradient(to top,#fffcf1,#eff7fe);
  }
  .main-title {
    font-size: 26px;
    line-height: 1em;
}
.banner-description-top .left-caption .main-title {
    font-size: 35px;
}
.banner-description-top .left-caption span {
  font-size: 20px;
}
.banner-description-top .left-caption .head-style2 {
    font-size: 17px;
    line-height: 23px;
    margin-top: 0;
}
/* -------------------------------------- */
  ul.genfet {
      grid-template-columns: 1fr;
  }
/* -------------------------------------- */
  ul.tab-row {
    padding: 0;
    grid-template-columns: 1fr;
}
/* -------------------------------------- */
.why__choose__right {
    margin-bottom: 15px;
}
/* -------------------------------------- */
.overview-video-row {
    grid-template-columns: 1fr;
}
.uberclone-vidoe-img .play-anim-ico {
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
}
/* -------------------------------------- */
.script-package-row-flow .catrow {
    width: 100%;
}
.tab__content ol {
    grid-template-columns: 1fr;
}
.AP__FET {
    grid-template-columns: 1fr;
}
.RG__LIST {
    grid-template-columns: 1fr;
}
.client__list {
    grid-template-columns: 1fr;
}
.cl_small_video_list li a.client__btn span {
    font-size: 5.5vw;
    line-height: 6.5vw;
}
.statisticsmain ul li {
    width: calc((100% - 70px) / 2);
    width: -webkit-calc((100% - 70px) / 2);
    width: -moz-calc((100% - 70px) / 2);
    width: -ms-calc((100% - 70px) / 2);
    width: -o-calc((100% - 70px) / 2);
}
.download {
    padding-top: 40px;
}
.download-inner {
    grid-template-columns: 100%;
}
.script-package-row-flow .catrow .caticonbox strong {
    font-size: 18px;
    color: #000;
}
.tab_img{
  justify-content: center;
}
.tab_img::before {
    left: 0;
}
.launch_inner {
    padding: 30px 15px;
}
.faq-section{
  padding: 30px 0;
  background-color: #f8f8f8;
}
.faq-question {
    font-size: 16px;
}
.faq-answer {
    background-color: #fff;
}
.st_title {
    font-size: 25px;
}
.cl_small_video_list i {
    font-size: 25px;
}
.cl_video_overlay i {
    font-size: 30px;
}
.ai-features .grid {
    grid-template-columns: 100%;
}
.ai-features .card-2x2 {
    grid-column: auto;
    grid-row: auto;
}
}

