* {
  font-family: 'Exo 2';
  margin: 0;
  padding: 0;
}
:root {
  --theme: #00A9AA;
  --theme-dark: #009191;
  --theme-light: #eafffb;
}
h1,
h2,
h3,
h5,
h4,
ul,
ol {
  font-family: 'Exo 2';
  margin: 0;
  padding: 0;
}
p {
  font-size: 16px;
  line-height: 23px;
  color: #000;
  margin-bottom: 10px;
  text-align: justify;
}
p:last-child {
  margin-bottom: 0;
}
a,
a:hover,
a:visited,
a:focus,
a:active {
  text-decoration: none;
}
@keyframes buttonanim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes pulse-me1 {
  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 {
  background-image: url(../svg/play-video-35.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 60px;
  position: absolute;
  height: 60px;
  left: 50%;
  top: 50%;
  z-index: 111;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  pointer-events: none;
}
.play-anim-ico:after {
  position: absolute;
  width: 34px;
  height: 34px;
  content: '';
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 0 0 13px #fff;
  transform: scale(0.9);
  transform-origin: center center;
  animation: pulse-me1 1s linear infinite;
  -webkit-animation: pulse-me1 1s linear infinite;
}
.play-icon-black {
  background-image: url(../svg/play-video-green-2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 60px;
  position: absolute;
  height: 60px;
  left: 50%;
  top: 50%;
  z-index: 111;
  pointer-events: none;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.play-icon-black:after {
  position: absolute;
  width: 34px;
  height: 34px;
  content: '';
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 0 0 13px #008000;
  transform: scale(0.9);
  transform-origin: center center;
  animation: pulse-me1 1s linear infinite;
  -webkit-animation: pulse-me1 1s linear infinite;
}
img {
  max-width: 100%;
}
.btn_div {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  grid-gap: 8px;
}
.btn {
  font-size: 18px;
  background-color: var(--theme);
  font-weight: 600;
  color: #ffffff;
  padding: 0 15px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 3px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-transform: capitalize;
  cursor: pointer;
}
.btn:hover {
  background-color: var(--theme-dark);
  color: #fff;
}
li {
  display: block;
}
.heading-area {
  width: 100%;
  display: block;
  margin: 0 0 15px;
}
.heading-area .main-title,
.heading-area .head-style {
  margin: -8px 0 0;
  padding: 0px;
  font-size: 39px;
  color: #000;
  font-family: 'Exo 2';
  font-weight: bold;
  text-transform: uppercase;
}
.heading-area.center>* {
  text-align: center;
  display: block;
}
.heading-area.white>* {
  color: #fff;
}
.heading-area>p {
  margin: 5px 0 0 0;
}
.page__content {
  margin: 80px auto 0 auto;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.page__content>* {
  padding: 40px 0 40px 0;
}
/******top part*********/
.banner a.view-demo {
  background-color:var(--theme);
  color: #000;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  vertical-align: top;
  position: relative;
  z-index: 0;
}
.banner a.view-demo:after {
  content: '';
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--theme-dark);
  z-index: -1;
  border-radius: 0;
  transition: all 0.5s ease 0s;
  animation: buttonanim 1.5s infinite;
  -webkit-animation: buttonanim 1.5s infinite;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.banner a.view-demo i {
  width: 30px;
  height: 30px;
  font-size: 30px;
  display: inline-block;
  vertical-align: top;
  color: #fff;
}
.banner a.new_video span small {
  display: block;
  line-height: normal;
  font-size: 13px;
  font-weight: 600;
  margin-top: 1px;
  text-transform: uppercase;
  text-align: left;
}
.banner a.new_video span {
  font-size: 16px;
  text-transform: none;
  display: inline-block;
  color: #fff;
  vertical-align: middle;
  margin: -5px 0 0 8px;
  text-align: center;
}
.banner-inner {
  margin: 0 auto;
  padding: 0px 15px;
  max-width: 1310px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.banner-left {
  width: 53%;
}
.banner-right {
  width: 45%;
}
.banner-left h1 {
  margin: 0 0 10px;
  font-size: 40px;
  font-family: 'Exo 2';
  text-transform: uppercase;
  font-weight: bold;
  line-height: 40px;
  display: block;
  color: #000;
}
.banner-left b {
  font-size: 22px;
  color: var(--theme);
  font-weight: 600;
  font-family: 'Exo 2';
  display: block;
  line-height: normal;
  margin: 0 0 10px 0;
}
/************premium-features**********/
.features-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}
.features ul {
  width: 100%;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
}
.features ul li {
  width: 33.33%;
  padding: 0 8px;
  flex-grow: 1;
}
.fet-caption {
  padding: 15px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  min-height: 100%;
  border: 1px solid #ccc;
}
.features ul li i {
  display: block;
  margin: 0 auto 10px auto;
  font-size: 50px;
  color: #000;
}
.features ul li i img {
  height: 56px;
  width: 56px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  display: inline-block;
  font-size: 0;
}
.features ul li strong {
  color: #000;
  font-size: 18px;
  display: block;
  line-height: normal;
  margin: 0 0 10px;
  text-transform: capitalize;
}
.fet-caption span {
  display: block;
}
/******************/
.perfect-script {
  background-color: #f8f8f8;
}
.perfect-script-inner {
  margin: 0 auto;
  padding: 0px 15px;
  max-width: 1310px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.perfect-script-left {
  width: 65%;
}
.perfect-script-right {
  width: 33%;
}
/******************/
.green-part {
  background-color: var(--theme-light);
}
.green-part-inner {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1310px;
}
.green-part-inner p {
  font-size: 17px;
}
.green-part-inner ul {
  margin: 0 auto;
  padding: 0;
  float: none;
}
.green-part-inner ul li {
  margin: 0 0 10px;
  padding: 0 0 0 20px;
  font-size: 16px;
  text-align: justify;
  line-height: 23px;
  position: relative;
  color: #000;
}
.green-part-inner ul li:last-child {
  margin-bottom: 0;
}
.green-part-inner ul li:before {
  width: 8px;
  height: 8px;
  background-color: var(--theme);
  position: absolute;
  content: '';
  left: 0;
  top: 6px;
  border-radius: 50%;
}
/******************/
.business {
  background-color: #f8f8f8;
}
.business-inner {
  margin: 0 auto;
  padding: 0px 15px;
  max-width: 1310px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
  align-items: center;
}
.business-left {
  width: 48%;
}
.business-right {
  width: 48%;
}
/******************/
.front-end {
  background-color: var(--theme-light);
}
.front-end-inner {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1310px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.front-end-left {
  width: 49%;
  position: relative;
}
.front-end-right {
  width: 48%;
}
.front-end-right>a {
  display: inline-block;
  padding: 11px 30px 13px 30px;
  background-color: var(--theme);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.front-end-right>a:hover {
  background-color: var(--theme-dark);
}
/*************************/
.faq__inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.faq_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.faq_list li {
  border: 1px solid #ddd;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  padding: 0 0 10px 0;
  background: #fff;
}
.faq_list li strong {
  font-size: 18px;
  line-height: 1em;
  color: #000;
  display: block;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px 10px 20px;
  text-transform: capitalize;
  border-radius: 12px 12px 0 0;
  background: var(--theme-light);
  -webkit-border-radius: 12px 12px 0 0;
  -moz-border-radius: 12px 12px 0 0;
  -ms-border-radius: 12px 12px 0 0;
  -o-border-radius: 12px 12px 0 0;
}
.faq_list li p {
  padding: 0 20px;
}
/*************************/
.demolinks {
  background-color: var(--theme);
}
.demolinks-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}
.demolinks ul {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  gap: 15px;
  max-width: 920px;
  margin: 0 auto;
}
.demolinks ul li {
  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;
  width: 100%;
}
.demolinks ul li:last-child {
  margin-bottom: 0;
}
.demolinks ul li a {
  display: block;
  position: relative;
}
.demolinks ul li a::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 32.1%;
}
.demolinks ul li a img {
  position: absolute;
  left: 0;
  top: 0;
}
.demo-video-laptop-inner {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1310px;
}
.uberclone-vidoe-img {
  text-align: center;
  max-width: 800px;
  width: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}
.uberclone-vidoe-img::before {
  content: '';
  width: 100%;
  display: block;
  padding-top: 56.25%;
}
.uberclone-vidoe-img img {
  position: absolute;
  left: 0;
  top: 0;
}
.uberclone-vidoe-img iframe {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.delivery-types {
  padding: 40px 0;
}
.delivery-types-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.delivery-types ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
  margin-top: 5px;
}
.delivery-types ul li {
  width: 20%;
  padding: 0 10px;
}
.delivery-types-box {
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  bottom: 0;
}
.delivery-types ul li a {
  display: block;
}
.delivery-types ul li img {
  width: 60px;
  height: 60px;
  display: inline-block;
}
.delivery-types ul li strong {
  display: block;
  color: #222;
  font-size: 22px;
  font-weight: 600;
  margin: 5px 0px 0;
}
.delivery-types ul li:hover .delivery-types-box {
  position: relative;
  bottom: 5px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.4);
}
.delivery-types ul li:hover strong {
  color: var(--theme-dark);
}
.screens {
  background: var(--theme-light);
}
.screens-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}
.TABROW {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 15px 0;
}
.TABROW .TAB {
  min-width: 197px;
  padding: 0 15px 15px 15px;
  box-sizing: border-box;
  font-weight: 600;
  text-transform: uppercase;
  color: #777;
  letter-spacing: 1px;
  display: inline-block;
  text-align: center;
  margin: 0 10px;
  cursor: pointer;
  box-shadow: none;
  font-size: 16px;
  position: relative;
  width: auto;
  margin: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.TABROW .TAB.active {
  background-color: transparent;
  font-weight: 600;
  color: #000;
}
.TABROW .TAB.active:after {
  content: '';
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4px;
  background-color: var(--theme);
  position: absolute;
}
.screens ul {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.screens ul.active {
  display: grid;
}
.screens ul li {
  position: relative;
}
.screens ul li img {
  outline: 1px solid #ddd;
}
.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);
}
.screens .screens-inner a {
  background-color: var(--theme);
  font-size: 26px;
  color: #fff;
  padding: 15px 35px;
  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;
  display: table;
  width: auto;
  margin: 20px auto 0px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.screens .screens-inner a:hover {
  background-color: var(--theme-dark);
}
/*******************************************/
.inq_form {
  display: block;
  background: #f8f8f8;
}
.inq_form form input[type=submit] {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 11px 15px 11px 15px;
  background-color: var(--theme);
  width: auto;
  text-transform: uppercase;
  min-height: 45px;
  outline: none;
  border: none;
  line-height: 30px;
  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;
}
.inq_form form input:hover[type=submit] {
  background-color: var(--theme-dark);
}
.inq_form .head-style {
  font-size: 35px;
  font-weight: bold;
  margin: 0 0 6px 0;
  color: #191919
}
/*.inq_form .head-style:after {
  content: '';
  position: absolute;
  width: 31px;
  height: 3px;
  background-color: #f76a00;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}*/
.inq_form .heading-area {
  margin-bottom: 15px;
  text-align: left;
  align-items: flex-start;
}
.inq_form-inner {
  max-width: 1340px;
  padding: 0 15px;
  margin: 0 auto;
}
.inq_form .box-shadow {
  width: 100%;
}
.inq_form .box-shadow ul {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.inq_form .box-shadow ul li {
  width: calc(50% - 15px);
  width: -o-calc(50% - 15px);
  width: -ms-calc(50% - 15px);
  width: -moz-calc(50% - 15px);
  width: -webkit-calc(50% - 15px);
}
.inq_form .box-shadow ul li:last-child {
  padding: 20px 30px 30px 30px;
  box-shadow: 7px 7px 20px 0 rgba(0, 0, 0, 0.09);
  border-radius: 20px;
  background-color: #fff;
}
.enquire_form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.inq_form-left,
.inq_form-right {
  width: calc(100% - 0px);
  width: -o-calc(100% - 0px);
  width: -ms-calc(100% - 0px);
  width: -moz-calc(100% - 0px);
  width: -webkit-calc(100% - 0px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.inq_form .input-row-flow {
  margin-bottom: 16px;
  width: calc(50% - 8px);
  width: -o-calc(50% - 8px);
  width: -ms-calc(50% - 8px);
  width: -moz-calc(50% - 8px);
  width: -webkit-calc(50% - 8px);
}
.inq_form .input-row-flow:last-child {
  width: 100%;
}
.inq_form .input-row-flow .g-recaptcha {
  margin-top: 20px;
}
.inq_form .input-row-flow .custom-input-box {
  margin: 0px;
  border: 1px solid #ddd;
  background: #FFF;
  font-size: 16px;
  color: #292929;
  padding: 9px 10px;
  border-radius: 4px;
  -webkit-appearance: none;
  width: 100%;
}
.inq_form .text-center {
  text-align: center;
}
.custom-input-button {
  background-color: #003a57;
  position: relative;
  margin: 0 auto;
  padding: 8px 20px 10px;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  border: none;
}
.custom-input-button:hover {
  background-color: #ff6e00;
}
.inq_form .video-block {
  max-width: 100%;
  position: relative;
  width: 100%;
  box-shadow: none;
  min-height: 100%;
  text-align: center;
}
.inq_form .button-btn {
  margin-top: 0;
  justify-content: flex-start;
}
/************************************************/
.reviews {
  background: #f8f8f8;
}
.reviews-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
ul.reviews-list {
  row-gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
ul.reviews-list li {
  width: 25%;
  padding: 0 10px;
}
ul.reviews-list li a {
  display: block;
  background-color: #fff;
  position: relative;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.20);
  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;
  overflow: hidden;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}
ul.reviews-list li:not(:last-child) a::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 71%;
}
ul.reviews-list li:not(:last-child) a img {
  max-width: 100%;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
}
ul.reviews-list li a::after {
  content: '';
  background-image: url(../svg/play-video-35.svg);
  position: absolute;
  right: 10px;
  top: 10px;
  width: 46px;
  height: 46px;
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: center;
  background-color: var(--theme);
  border-radius: 50%;
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 40%);
}
ul.reviews-list li.morereview a {
  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;
  text-align: center;
  background-color: var(--theme);
  color: #fff;
  padding: 15px;
}
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;
}
ul.reviews-list li.morereview a:hover {
  background: var(--theme-dark);
}
/*********************************/
.pricing-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pricing .get-quote {
  font-size: 22px;
  background-color: var(--theme);
  font-weight: 600;
  color: #ffffff;
  padding: 17px 40px 17px 40px;
  min-width: 264px;
  display: inline-block;
  margin-top: 15px;
  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;
}
.pricing .get-quote:hover {
  background-color: var(--theme-dark);
}
.torn-pricing {
  position: relative;
}
.torn-pricing::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 47.1%;
}
.torn-pricing img {
  position: absolute;
  left: 0;
  top: 0;
}
/************************************************/
.service-provider-icon .heading-area~p {
  text-align: center;
}
.service-provider-icon .heading-area {
  width: 100%;
  display: table;
}
.service-provider-icon-inner {
  margin: 0 auto;
  padding: 0px 15px;
  max-width: 1310px;
  box-sizing: border-box;
}
.service-provider-icon .TABROW {
  justify-content: center;
  margin-top: 15px;
  margin-bottom: -1px;
}
.service-provider-icon-row.active {
  display: flex;
}
.service-provider-icon-row {
  display: none;
  flex-wrap: wrap;
  border: 1px solid var(--theme);
  padding: 15px;
  position: relative;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.service-provider-icon .TABROW .TAB {
  padding: 15px 30px;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 0 0 0 1px #d8d8d8 inset;
  margin: 0 5px;
}
.service-provider-icon .TABROW .TAB.active {
  background-color: #fff;
  color: var(--theme);
  position: relative;
  box-shadow: 0 0 0 1px var(--theme) inset;
}
.service-provider-icon .TABROW .TAB.active::after {
  position: absolute;
  height: 2px;
  background: #fff;
  left: 1px;
  bottom: 0px;
  content: "";
  right: 1px;
  z-index: 1;
}
.service-provider-icon-row ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-provider-icon-row ul li {
  width: 20%;
  list-style: none;
  text-align: center;
  padding: 8px;
  box-sizing: border-box;
}
.service-provider-icon-row ul.havefive li.fourwidth.last {
  width: 100%;
  text-align: left;
}
.service-provider-icon-row ul.havefive li.fourwidth.last .single-service-inner,
.service-provider-icon-row ul li.towwidth.last .single-service-inner {
  display: flex;
  padding: 10px;
  justify-content: flex-start;
}
.service-provider-icon-row ul.havefive li.fourwidth.last strong,
.service-provider-icon-row ul li.towwidth.last strong {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.service-provider-icon-row ul.havefive li.fourwidth.last b {
  display: flex;
  width: 25%;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border: 1px solid #e8e8e8;
  box-shadow: 2px 5px 12px 1px #e8e8e8;
  border-radius: 10px;
}
.service-provider-icon-row ul li .flex {
  display: flex;
}
.single-service-inner {
  border-radius: 10px;
  padding: 20px 10px;
  transition: all 0.5s ease 0s;
  min-height: 100%;
  box-shadow: 2px 5px 12px 1px #e8e8e8;
}
.single-service-inner b {
  text-transform: capitalize;
  margin: 0px;
  padding: 0px;
  float: left;
  width: 100%;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 23px;
  font-weight: normal;
}
.single-service-inner b img {
  height: 70px;
  vertical-align: top;
}
.service-provider-icon-row ul li.towwidth.last {
  width: 50%;
  text-align: left;
}
.service-provider-icon-row ul li.fourwidth.last {
  width: 80%;
  text-align: left;
}
.service-provider-icon-row ul li.threewidth.last {
  width: 60%;
  text-align: left;
}
.service-provider-icon-row ul li.towwidth.last .single-service-inner,
.service-provider-icon-row ul li.threewidth.last .single-service-inner,
.service-provider-icon-row ul li.fourwidth.last .single-service-inner {
  display: flex;
  padding: 10px;
  justify-content: flex-start;
}
.service-provider-icon-row ul li.towwidth.last b {
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border: 1px solid #e8e8e8;
  box-shadow: 2px 5px 12px 1px #e8e8e8;
  border-radius: 10px;
}
.service-provider-icon-row ul li.threewidth.last b {
  display: flex;
  width: 30%;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border: 1px solid #e8e8e8;
  box-shadow: 2px 5px 12px 1px #e8e8e8;
  border-radius: 10px;
}
.service-provider-icon-row ul li.fourwidth.last b {
  display: flex;
  width: 30%;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border: 1px solid #e8e8e8;
  box-shadow: 2px 5px 12px 1px #e8e8e8;
  border-radius: 10px;
}
.service-provider-icon-row ul li.towwidth.last strong,
.service-provider-icon-row ul li.threewidth.last strong,
.service-provider-icon-row ul li.fourwidth.last strong {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin: 0;
}
.components-text {
  width: 100%;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
.components-text p.text {
  margin-bottom: 0;
}
.components-text .heading {
  font-size: 24px;
  font-weight: 600;
  color: var(--theme);
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
.components-text .heading img {
  vertical-align: middle;
}
.components-text .heading .video-btn {
  background-color: var(--theme);
  color: #fff;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 5px;
  vertical-align: middle;
  margin: 0 0 0 8px;
  display: inline-block;
}
[class*="icon-part"] {
  margin: 0px;
  padding: 0px;
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.for-mob {
  text-align: center;
}
.for-mob img {
  max-width: 100%;
}
/*********************************/
@media (max-width:1024px) {
  .heading-area .main-title,
  .heading-area .head-style {
    font-size: 35px;
  }
  .banner-inner {
    flex-direction: column-reverse;
  }
  .banner-right {
    width: 100%;
    margin-bottom: 25px;
    text-align: center;
  }
  .banner-left {
    width: 100%;
  }
  ul.reviews-list li.morereview a {
    font-size: 2.5vw;
    line-height: 3.5vw;
  }
  .delivery-types ul li {
    width: 25%;
    padding: 0 10px;
  }
  .perfect-script-right {
      width: 38%;
  }
  .perfect-script-left {
      width: 60%;
  }
  .service-provider-icon-row ul li {
    width: 25%;
  }
}
@media (max-width:991px) {
  .heading-area .main-title {
    font-size: 35px;
  }
  .banner-left h1 {
    font-size: 30px;
    line-height: 1em;
}
  .perfect-script-left {
    width: 100%;
    order: 3;
  }
  .perfect-script-right {
    width: 100%;
    order: 2;
    text-align: center;
    margin-bottom: 30px;
  }
  .screens ul {
      grid-template-columns: repeat(2, 1fr);
  }
  .screens ul li{
      text-align: center;
  }
  .features ul li {
    width: 50%;
  }
  .delivery-types ul li {
    width: 33.33%;
  }
  .business-left {
    width: 100%;
  }
  .business-right {
    width: 100%;
    text-align: center;
  }
  .business-inner {
    flex-direction: column-reverse;
  }
  .inq_form .box-shadow ul li:first-child{
    display: none
  }
  .inq_form .box-shadow ul li {
    width: 100%;
  }
  .inq_form .heading-area {
    margin-bottom: 15px;
    text-align: left;
    align-items: center;
  }
  .front-end-left {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .front-end-right {
    width: 100%;
  }
  ul.reviews-list li {
    width: 33.33%;
  }
  .pricing .get-quote {
    min-width: initial;
    height: auto;
    line-height: normal;
    box-sizing: border-box;
    padding: 14px 30px 17px 30px;
    font-size: 18px;
  }
  .service-provider-icon-row ul li {
    width: 33.33%;
  }
  .service-provider-icon .TABROW .TAB.active::after {
    display: none;
  }
  .service-provider-icon .TABROW .TAB {
    margin: 0 5px 10px 5px;
  }
  .service-provider-icon .TABROW {
    margin-bottom: 20px;
  }
  .service-provider-icon .TABROW .TAB {
    border: 1px solid #ddd;
    box-shadow: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: 0px 5px 10px 5px;
    height: auto;
  }
  .service-provider-icon .TABROW .TAB.active {
    border: 1px solid var(--theme);
    box-shadow: none;
  }
  .service-provider-icon .TABROW .TAB.active::after {
    display: none;
  }
  .faq_list {
    grid-template-columns: 1fr;
}
}
@media (max-width:767px) {
  .heading-area .main-title {
    font-size: 30px;
  }
  .banner-left .banner-head h1 {
    font-size: 34px;
  }
  .screens .screens-inner a {
    padding: 15px 30px;
    font-size: 25px;
  }
  .service-provider-icon-row ul li {
    width: 50%;
  }
  .service-provider-icon-row ul li.towwidth.last {
    width: 100%;
  }
  ul.reviews-list li.morereview a {
    font-size: 24px;
    line-height: 25px;
  }
  .demo-video-laptop .play-anim-ico {
    transform: translate(-50%, -50%) scale(0.6);
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    -moz-transform: translate(-50%, -50%) scale(0.6);
    -ms-transform: translate(-50%, -50%) scale(0.6);
    -o-transform: translate(-50%, -50%) scale(0.6);
  }
}
@media (max-width:630px) {
  .page__content>* {
    padding: 40px 0 40px 0;
  }
  .steps-your-product {
    padding-bottom: 30px;
  }
  .heading-area .main-title {
    font-size: 26px;
  }
  .screens ul {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .banner-left b {
    font-size: 20px;
    line-height: 1em;
}
  .delivery-types ul li img {
    width: 100%;
  }
  .delivery-types-box {
    min-height: 100%;
  }
  .inq_form-left,
  .inq_form-right {
    flex-direction: column;
  }
  .inq_form .input-row-flow {
    width: 100%;
  }
  .inq_form .box-shadow ul li:last-child {
    padding: 20px 20px 20px 20px;
  }
  .play-icon-black {
    width: 40px;
    height: 40px;
  }
  ul.reviews-list li {
    width: 50%;
  }
  ul.reviews-list li a {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.20);
  }
  ul.reviews-list li.morereview a {
    font-size: 20px;
    line-height: 22px;
  }
  ul.reviews-list li a::after {
    width: 35px;
    height: 35px;
    background-size: 29px;
  }
  ul.reviews-list li.morereview a:before {
    width: 40px;
    height: 40px;
    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;
  }
  ul.reviews-list li.morereview a:after {
    width: 40px;
    height: 40px;
    border-radius: 0 0 10px 0;
    -webkit-border-radius: 0 0 10px 0;
    -moz-border-radius: 0 0 10px 0;
    -ms-border-radius: 0 0 10px 0;
    -o-border-radius: 0 0 10px 0;
  }
  .service-provider-icon .TABROW {
    flex-direction: column;
  }
  .service-provider-icon .TABROW .TAB {
    padding: 15px 15px;
    margin: 0 0 15px 0;
  }
  .service-provider-icon .TABROW .TAB:last-child {
    margin-bottom: 0;
  }
  .delivery-types ul li {
    width: 50%;
  }
  .delivery-types ul li:last-child {
    width: 100%;
  }
  .delivery-types-box {
    padding: 10px;
  }
  /*************************************/
  .service-provider-icon-row ul li.fourwidth.last .single-service-inner,
  .service-provider-icon-row ul li.threewidth.last .single-service-inner {
    flex-direction: column;
    align-items: center;
  }
  .service-provider-icon-row ul li.fourwidth.last strong,
  .service-provider-icon-row ul li.threewidth.last strong {
    padding: 0;
    text-align: center;
  }
  .service-provider-icon-row ul li.fourwidth.last b,
  .service-provider-icon-row ul li.threewidth.last b {
    width: 100px;
    padding: 10px;
    margin-bottom: 10px;
  }
  .service-provider-icon-row ul li.threewidth.last,
  .service-provider-icon-row ul li.fourwidth.last {
    width: 100%;
  }
  .service-provider-icon-row ul.havefive li.fourwidth.last strong {
    padding: 0;
    justify-content: center;
  }
  /*************************************/
  .features ul li {
    width: 100%;
    padding: 0;
  }
  .demolinks ul {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media (max-width:480px) {
  .screens ul {
    flex-wrap: wrap;
  }
  .screens ul.active {
    display: flex;
  }
  .screens ul li {
    max-width: 307px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  ul.reviews-list li.morereview a {
    font-size: 13px;
    line-height: 17px;
  }
  .delivery-types ul li strong {
    font-size: 18px;
  }
  .service-provider-icon-row ul li.towwidth.last .single-service-inner {
    flex-direction: column;
    align-items: center;
  }
  .service-provider-icon-row ul li.towwidth.last b {
    height: auto;
    border: none;
    box-shadow: none;
    width: auto;
  }
  .service-provider-icon-row ul li {
    width: 100%;
    padding: 8px 0;
  }
  /***********************************/
  .screens .screens-inner a {
    padding: 15px 30px;
    font-size: 18px;
  }
}