:root {
  --theme:#00C299;
  --theme-dark :#009474;
  --theme-light:#eafffb;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Exo 2';
}
@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(play-video-13.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(play-video-green.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 var(--theme);
  transform: scale(0.9);
  transform-origin: center center;
  animation: pulse-me1 1s linear infinite;
  -webkit-animation: pulse-me1 1s linear infinite;
}
.page__content {
  margin: 80px auto 0 auto;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  max-width: 1920px;
}
.heading-area {
  text-align: center;
  margin-bottom: 15px;
  width: 100%;
}
.heading-area.full {
  width: 100%;
}
.heading-area.left {
  text-align: left;
}
.heading-area.left .heading-text {
  text-align: left;
}
.heading-area .heading-text {
  color: #000;
  font-size: 39px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.heading-area.white .heading-text {
  color: #fff;
}
.heading-area .heading-text b {
  color: var(--theme);
}
.heading-area strong {
  text-transform: uppercase;
  font-size: 20px;
  color: #000;
  font-weight: 600;
  display: block;
  position: relative;
}
.mb-0 {
  margin-bottom: 0 !important;
}
p {
  margin: 0 0 15px 0;
  padding: 0;
  line-height: 23px;
  font-size: 15px;
  color: #000;
  text-align: justify;
}
p a {
  color: #000;
}
p:last-child {
  margin-bottom: 0;
}
li {
  display: block;
}
li {
  display: block;
}
.page__content {
  margin: 80px auto 0 auto;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  max-width: 1920px;
}
.page__content>* {
  padding: 40px 0 50px 0;
}
.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: 10px 15px 10px 15px;
  text-align: center;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: 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,
.btn:focus {
  background-color: var(--theme-dark);
  color: #fff;
}
.btn-color1 {
  background: #0c8ee4;
}
.btn-color1:hover,
.btn-color1:focus {
  background-color: #0976be;
}
.btn-color2 {
  background-color: #FE9B00;
}
.btn-color2:hover,
.btn-color2:focus {
  background-color: #c07a24;
}
img {
  max-width: 100%;
}
/******top part*********/
.banner a.view-demo {
  background: transparent;
  color: #000;
  border: solid 2px var(--theme);
  padding: 10px 15px;
  display: inline-block;
  border-radius: 3px;
  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);
  z-index: -1;
  border-radius: 0;
  transition: all 0.5s ease 0s;
  animation: buttonanim 1.5s infinite;
  -webkit-animation: buttonanim 1.5s infinite;
}
.banner a.view-demo:hover {
  background-color: #f8f8f8;
  color: #000;
}
.banner a.view-demo img {
  width: 30px;
  height: 30px;
  vertical-align: top;
}
.banner a.new_video span small {
  display: block;
  line-height: normal;
  font-size: 13px;
  color: #000;
  font-weight: 600;
  margin-top: 1px;
  text-transform: uppercase;
}
.banner a.new_video span {
  font-size: 16px;
  text-transform: none;
  display: inline-block;
  color: #000;
  vertical-align: middle;
  margin: -5px 0 0 5px;
  text-align: left;
  line-height: normal;
}
.banner .gomain,
.gen-button {
  font-size: 18px;
  background-color: var(--theme);
  font-weight: 600;
  color: #ffffff;
  padding: 12px 40px 14px 40px;
  text-align: center;
  box-sizing: border-box;
  display: inline-block;
  border-radius: 3px;
  margin-top: 75px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  margin: 0 10px 10px 0;
  line-height: 30px;
  text-transform: capitalize;
  min-height: 54px;
  cursor: pointer;
}
.banner .gomain:hover,
.gen-button:hover {
  background-color: var(--theme-dark);
  color: #fff;
}
.banner-inner {
  margin: 0 auto;
  padding: 0px 15px;
  max-width: 1310px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.banner-right {
  width: 43%;
}
.banner-left {
  width: 54%;
}
.banner-left h1 {
  font-size: 39px;
  display: inline-block;
  font-weight: bold;
  margin: 0 0 10px;
  line-height: 50px;
  padding: 0px;
  text-transform: uppercase;
  color: #000;
}
.banner-left b {
  margin: 0 0 10px;
  padding: 0px;
  font-size: 20px;
  color: var(--theme);
  font-weight: 600;
  display: block;
  line-height: normal;
  text-transform: uppercase;
}
/************premium-features**********/
.premium-features-part-inner {
  margin: 0 auto;
  padding: 0px 15px;
  max-width: 1310px;
}
.premium-features-part-inner ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
}
.premium-features-part-inner ul li {
  padding: 0 10px;
  width: 33.33%;
  text-align: center;
  display: block;
}
/******************/
.perfect-script {
  background: var(--theme-light);
}
.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: 55%;
}
.perfect-script-right {
  width: 41%;
  position: relative;
}
.perfect-script-right::before{
  content: '';
  display: block;
  width: 100%;
  padding-top: 100%;
}
.perfect-script-right::before{
  content: '';
  display: block;
  width: 100%;
  padding-top: 89.4%;
}
.perfect-script-right img{
    position: absolute;
    left: 0;
    top: 0;
}
/******************/
.green-part {
  background-color: var(--theme-light);
}
.green-part-inner {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1310px;
}
.green-part-inner ul li {
  margin: 0 0 4px;
  padding: 0 0 0 20px;
  font-size: 15px;
  line-height: 23px;
  position: relative;
  color: #000;
}
.green-part-inner ul li:before {
  width: 6px;
  height: 6px;
  background-color: var(--theme);
  position: absolute;
  content: '';
  left: 0;
  top: 9px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.green-part-inner ul li:last-child {
  margin-bottom: 0;
}
/******************/
.latest-features {
  background: var(--theme-light);
}
.latest-features-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.latest-features-inner .heading-area p {
  text-align: center;
}
.latest-features ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}
.latest-features ul li {
  width: 49%;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
/*******************************************/
.demolinks {
  background-color: var(--theme);
}
.demolinks .heading-area strong {
  color: #fff;
}
.demolinks-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}
.demolinks .heading-area h3 {
  color: #fff;
}
.demolinks ul {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.demolinks ul {
  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;
  width: 100%;
}

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

.demolinks ul:last-child {
  margin-bottom: 0;
}

.demolinks ul a {
  display: block;
  width: 100%;
  position: relative;
}

.demolinks ul a::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 32.4%;
}
.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 30px;
  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;
}
/**************************************/
.iphone-content-here {
  background: #f8f8f8;
}
.iphone-content-here-inner {
  margin: 0 auto;
  padding: 0px 15px;
  max-width: 1310px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.iphone-content-here-inner-left {
  width: 48%;
}
.iphone-content-here-inner-right {
  width: 50%;
  position: relative;
}
.iphone-content-here-inner-right::before{
  content: '';
  display: block;
  width: 100%;
  padding-top: 79%;
}
.iphone-content-here-inner-right img{
  position: absolute;
  left: 0;
  top: 0;
}
/******************/
.steps-your-product-inner {
  margin: 0 auto;
  padding: 0px 15px;
  max-width: 1310px;
}
.steps-your-product-inner ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 20px;
}
.steps-your-product-inner ul li {
  width: 25%;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  text-align: center;
  position: relative;
}
.steps-your-product-inner ul li::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 101%;
}
.steps-your-product-inner ul li img {
  position: absolute;
  left: 0;
  top: 0;
}
/*********************/
.front-end {
  background-color: var(--theme-light);
}
.front-end-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.front-end-left {
  width: 48%;
}
.front-end-right {
  width: 48%;
  position: relative;
}
.front-end-right::before{
  content: '';
  display: block;
  width: 100%;
  padding-top: 77.5%;
}
.front-end-right img{
  position: absolute;
  left: 0;
  top: 0;
}
.front-end 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;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  text-align: center;
}
.front-end a:hover {
  background-color: var(--theme-dark);
}
.reviews {
  padding: 45px 0;
}
.reviews-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
ul.reviews-list {
  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;
  -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;
  width: 100%;
}
ul.reviews-list li:not(:last-child) a::before {
  width: 100%;
  display: block;
  content: '';
  padding-top: 71%;
}
ul.reviews-list li:not(:last-child) a img {
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
}
ul.reviews-list li a::after {
  content: '';
  background-image: url(play-video-18.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 {
  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(--theme);
  color: #fff;
  padding: 15px;
  text-align: center;
}
ul.reviews-list li.morereview a:hover {
  background: var(--theme-dark);
}
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;
}
/*********************************/
/**************************************/
.screens {
  padding: 45px 0;
  background: var(--theme-light);
}
.screens .heading-area {
  margin-bottom: 0;
}
.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;
  height: 50px;
  padding: 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: #1f1f1f;
}
.TABROW .TAB.active:after {
  content: '';
  left: 0;
  right: 0;
  bottom: -1px;
  height: 4px;
  background-color: var(--theme);
  position: absolute;
}
.screens ul {
  display: none;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}
.screens ul.active {
  display: flex;
}
.screens ul li {
  width: 25%;
  padding: 0 10px;
  box-sizing: border-box;
}
.screens ul li img {
  max-width: 100%;
}
.screens ul li img {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.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: 31px;
  color: #fff;
  padding: 20px 45px;
  border-radius: 45px;
  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: 30px 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);
}
/**************************************/
/************************************************/
.service-provider-icon-inner {
  margin: 0 auto;
  padding: 0px 15px;
  max-width: 1310px;
  box-sizing: border-box;
}
.service-provider-icon .heading-area p {
  text-align: center;
}
.service-provider-icon .TABROW {
  justify-content: center;
  margin-top: 0;
  margin-bottom: -1px;
  row-gap: 10px;
}
.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 {
  margin: 0px;
  padding: 0px;
  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;
}
.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;
}
.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 strong {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 10px;
}
.single-service-inner.flex strong {
  margin: 0;
}
.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;
  margin-bottom: 8px;
  display: block;
}
.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;
}
.components-text .heading .video-btn:hover {
  background: var(--theme-dark);
}
[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%;
}
/******************/
.demo-video-laptop p {
  text-align: center;
}
.demo-video-laptop-inner {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1310px;
}
.uberclone-vidoe-img {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.uberclone-vidoe-img::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.uberclone-vidoe-img img {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
.uberclone-vidoe-img iframe {
  position: absolute;
  left: 0;
  top: 0;
}
/**************************************/
.pricing-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pricing p {
  text-align: center;
  margin-bottom: 10px;
}
.pricing .get-quote {
  font-size: 22px;
  background-color: var(--theme);
  font-weight: 600;
  color: #ffffff;
  padding: 17px 40px 17px 40px;
  min-width: 264px;
  box-sizing: border-box;
  display: inline-block;
  margin-top: 20px;
  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: 51%;
}
.torn-pricing img {
  position: absolute;
  left: 0;
  top: 0;
}
/*****************************************/
.about-section-of {
  float: left;
  width: 100%;
}
.about-section-of-inner {
  max-width: 1350px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
}
.about-section-of h5 {
  margin: 0;
  padding: 20px;
  font-size: 25px;
  font-family: 'exo_2bold';
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: #fa6903;
  display: inline-block;
  border-radius: 25px 25px 0 0;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}
.about-section-of h5:hover {
  background-color: #b45410;
}
.about-section-of-data {
  text-align: initial;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #f8f8f8;
  display: none;
}
.about-section-of-data .about-section-of-inner {
  text-align: unset;
}
.about-section-of-data p {
  font-size: 15px;
  color: #666;
  font-weight: 300;
}
.about-section-of h6 {
  font-size: 23px;
  text-transform: unset;
  font-weight: 600;
  margin: 0 0 15px 0;
}
.box-rows ul {
  list-style: none;
  padding-left: 15px;
}
.box-rows ul li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #666;
  padding: 0 0 0 18px;
  font-weight: 500;
  position: relative;
}
.box-rows ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  background-color: #fa6903;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.box-rows h6 {
  font-size: 21px;
  margin-bottom: 15px;
  position: relative;
}
.sub-boxess {
  padding-left: 20px;
}
.sub-boxess h6:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #fa6903;
  border-radius: 50%;
  left: -22px;
  top: 10px;
}
/*****************************************/
.delivery-types {
  background-color: var(--theme-light);
  padding: 45px 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;
}
.delivery-types p {
  text-align: center;
}
.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;
  text-align: center;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  bottom: 0;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}
.delivery-types ul li a {
  display: block;
}
.delivery-types ul li img {
  width: 60px;
  height: 60px;
}
.delivery-types ul li strong {
  display: block;
  color: #000;
  font-size: 22px;
  font-weight: 600;
  margin: 5px 0px 0;
}
.delivery-types ul li:hover .delivery-types-box {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.4);
}
.delivery-types ul li:hover strong {
  color: var(--theme);
}
/*******************************************/
.inq_form {
  display: block;
  background-color: #f8f8f8;
  position: relative;
  padding: 30px 0 40px;
  z-index: 0;
}
.inq_form form input[type=submit] {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 11px 30px 13px 30px;
  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);
}
.inq_form .head-style {
  font-size: 35px;
  font-weight: bold;
  margin: 0 0 6px 0;
  color: #191919
}
.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 {
  margin-top: 15px;
  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;
  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;
}
/* MINIMUM WIDTH CSS */
@media (min-width:1198px) {
  .iphone-content-here-inner-right {
    width: 43%;
  }
}
/* MAXIMUM WIDTH CSS */
@media (max-width:1199px) {
  .delivery-types ul li {
    width: 25%;
  }
  ul.reviews-list li.morereview a {
    font-size: 2.5vw;
    line-height: 3.5vw;
  }
}
@media (max-width:991px) {
  .heading-area .heading-text {
    font-size: 35px;
  }
  /**************************************/
  .banner-left {
    width: 100%;
  }
  .banner-right {
    width: 100%;
    margin-bottom: 30px;
    display: block;
    text-align: center;
  }
  .banner-inner {
    flex-direction: column-reverse;
  }
  .banner-left h1 {
    font-size: 38px;
  }
  .banner-left b {
    font-size: 20px;
  }
  /**************************************/
  .perfect-script-left {
    width: 100%;
    order: 3;
  }
  .perfect-script-right {
    width: 100%;
    margin-bottom: 30px;
    order: 2;
  }
  /**************************************/
  .premium-features-part-inner ul li {
    width: 50%;
  }
  /**************************************/
  .delivery-types ul li {
    width: 33.33%;
  }
  /****************************************/
  .front-end-left {
    width: 100%;
  }
  .front-end-right {
    width: 100%;
    margin-bottom: 20px;
  }
  /****************************************/
  ul.reviews-list li {
    width: 33.33%;
  }
  /****************************************/
  /**************************************/
  .iphone-content-here-inner {
    flex-direction: column-reverse;
  }
  .iphone-content-here-inner-left {
    width: 100%;
  }
  .iphone-content-here-inner-right {
    width: 100%;
    margin-bottom: 30px;
  }
  /**************************************/
  .steps-your-product-inner ul 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 {
    margin-bottom: 15px;
  }
  .service-provider-icon .TABROW .TAB {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    height: auto;
  }
  /**************************************/
  .inq_form .box-shadow ul li {
    width: 100%;
  }
  .inq_form .heading-area {
    margin-bottom: 15px;
    text-align: left;
    align-items: center;
  }
  .latest-features ul li {
    width: 100%;
  }
}
@media (max-width:767px) {
  .banner-left span h1 {
    font-size: 34px;
  }
  .banner-left span {
    line-height: normal;
  }
  /*******************************************/
  .pricing-section h3,
  .pricing-section h3 strong {
    font-size: 35px;
    width: 100%;
    white-space: initial;
    display: block;
  }
  /*******************************************/
  .screens ul li {
    width: 50%;
    margin-bottom: 20px;
    text-align: center;
  }
  .service-provider-icon-row ul li {
    width: 50%;
  }
  .service-provider-icon-row ul li.towwidth.last {
    width: 100%;
  }
  .demo-video-laptop .play-anim-ico {
      transform: translate(-50%, -50%) scale(0.7);
      -webkit-transform: translate(-50%, -50%) scale(0.7);
      -moz-transform: translate(-50%, -50%) scale(0.7);
      -ms-transform: translate(-50%, -50%) scale(0.7);
      -o-transform: translate(-50%, -50%) scale(0.7);
}
}
@media (max-width:630px) {
  /*****************************************/
  .page__content>* {
    padding: 35px 0 40px 0;
  }
  .heading-area .heading-text {
    font-size: 26px;
    line-height: 1.3em;
    margin: 0 0 5px 0;
  }
  .banner-left h1 {
    font-size: 28px;
    line-height: 1.3em;
  }
  .banner-left b {
    font-size: 18px;
    line-height: 1.3em;
  }
  /*************************************/
  ul.reviews-list li {
    width: 50%;
  }
  ul.reviews-list li.morereview a {
    font-size: 4.5vw;
    line-height: 5.5vw;
  }
  ul.reviews-list li a::after {
    width: 35px;
    height: 35px;
    background-size: 29px;
  }
  ul.reviews-list li a {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }
  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: 50px;
    height: 50px;
    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;
  }
  /*************************************/
  .delivery-types ul li {
    width: 50%;
    padding: 0 5px;
  }
  .delivery-types ul li:last-child {
    width: 100%;
  }
  .delivery-types-box {
    min-height: 100%;
    padding: 10px;
  }
  .delivery-types ul li strong {
    font-size: 18px;
    line-height: normal;
  }
  /*************************************/
  .premium-features-part-inner ul li {
    width: 100%;
    padding: 0;
  }
  /*************************************/
  .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;
  }
  .components-text .heading .video-btn {
    margin-top: 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;
  }
  .demolinks ul {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    gap: 10px;
  }
}
@media (max-width:480px) {
  .screens ul li {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .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%;
  }
  .steps-your-product-inner ul li {
    max-width: 314px;
    margin: 0 auto;
    width: 100%;
    border: 0;
  }
  .steps-your-product-inner ul li::before {
    padding-top: 103.2%;
  }
  .steps-your-product-inner ul li:nth-child(2)::before {
    padding-top: 94.5%;
  }
  .steps-your-product-inner ul li:nth-child(3)::before {
    padding-top: 86%;
  }
  .steps-your-product-inner ul li:nth-child(4)::before {
    padding-top: 94.5%;
  }
}