:root {
  --theme:#00C299;
  --theme-dark :#009474;
  --theme-light:#eafffb;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@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-dark);
  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;
}

.page__content>* {
  padding: 45px 0;
}

img {
  max-width: 100%;
}

p {
  margin: 0 0 15px 0;
  padding: 0;
  line-height: 23px;
  font-size: 16px;
  color: #000;
  text-align: justify;
}

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

li {
  display: block;
}

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

.main-title {
  margin: -6px 0 0 0;
  color: #000;
  font-size: 39px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  line-height: 1em;
}

.sub-title {
  text-transform: uppercase;
  font-size: 20px;
  color: var(--theme);
  font-weight: 600;
  display: block;
  line-height: 1em;
}

.heading-area.center>* {
  display: block;
  text-align: center;
}

.heading-area.white>* {
  color: #fff;
}

.heading-area>p {
  margin: 5px 0 0 0;
}

@keyframes pulse-me {
  0% {
    transform: scale(0.9);
    opacity: 0.2;
  }

  50% {
    opacity: 0.5;
  }

  70% {
    opacity: 0.09;
  }

  100% {
    transform: scale(5);
    opacity: 0;
  }
}

/* ================================================= */

.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 0;
  text-align: left;
  line-height: normal;
}

.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 10px 10px 10px;
  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;
  height: 56px;
  border: 0;
}

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

.btn.btn-color1 {
  background-color: #e48d0c;
}

.btn.btn-color1:hover,
.btn.btn-color1:focus {
  background-color: #c27708;
}

.btn.btn-color2 {
  background-color: #FFBC47;
}

.btn.btn-color2:hover,
.btn.btn-color2:focus {
  background-color: #cf942d;
}

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

.banner-right {
  width: 48%;
}

.banner-left {
  width: 51%;
}

.banner-left h1 {
  font-size: 48px;
  display: inline-block;
  font-family: 'Exo 2';
  font-weight: bold;
  margin: 0 0 10px;
  line-height: 50px;
  padding: 0px;
  text-transform: uppercase;
}

.banner-left b {
  padding: 0px;
  font-size: 22px;
  color: var(--theme);
  font-weight: 600;
  font-family: 'Exo 2';
  display: block;
  line-height: normal;
  text-transform: uppercase;
}

/* ================================================= */

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

.features-inner ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.features-inner ul li .fet-caption {
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 0 10px hsla(0, 0%, 53%, .1);
  padding: 20px;
  min-height: 100%;
}

.features-inner ul li .fet-caption i {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 0 auto 15px auto;
}

.features-inner ul li .fet-caption strong {
  display: block;
  font-size: 20px;
  color: #000;
  text-transform: capitalize;
  margin: 0 0 10px 0;
  line-height: 1em;
}

.features-inner ul li .fet-caption p {
  text-align: center;
}

/* ================================================= */

.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-inner .heading-area p {
  text-align: center;
}

.perfect-script-left {
  width: 55%;
}

.perfect-script-right {
  width: 40%;
}

/* ================================================= */

.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 5px;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: 23px;
  color: #000;
  text-align: justify;
  position: relative;
}

.green-part-inner ul li strong {
  text-transform: capitalize;
}

.green-part-inner ul li:before {
  width: 7px;
  height: 7px;
  background-color: var(--theme);
  position: absolute;
  content: '';
  left: 0;
  top: 8px;
  border-radius: 50%;
}

/* ================================================= */

.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-left {
  width: calc(100% - 624px);
  width: -webkit-calc(100% - 624px);
  width: -moz-calc(100% - 624px);
  width: -o-calc(100% - 624px);
}

.iphone-left li {
  margin: 0 0 5px;
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: 23px;
  color: #000;
  text-align: justify;
  position: relative;
}

.iphone-left li:before {
  width: 7px;
  height: 7px;
  background-color: var(--theme);
  position: absolute;
  content: '';
  left: 0;
  top: 8px;
  border-radius: 50%;
}

.iphone-left li strong {
  text-transform: capitalize;
}

.iphone-right {
  max-width: 614px;
  width: 100%;
  position: relative;
}

.iphone-right::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 48.3%;
}

.iphone-right img {
  position: absolute;
  left: 0;
  top: 0;
}

/* ================================================= */

.latest-features {
  background-color: var(--theme-light);
}

.latest-features ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.latest-features ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  background-color: #fff;
}

.latest-features ul li i {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 43px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.latest-features ul li .latest-features-caption {
  width: calc(100% - 90px);
  width: -o-calc(100% - 90px);
  width: -ms-calc(100% - 90px);
  width: -moz-calc(100% - 90px);
}

.latest-features ul li strong {
  display: block;
  font-size: 20px;
  color: #000;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1em;
  text-transform: capitalize;
}

.latest-features img {
  max-width: 100%;
  vertical-align: top;
}

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

/*******************************************/
.demolinks {
  background-color: var(--theme);
}

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

.demo-links-row {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.demo-links-row 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;
  width: 100%;
}

.demo-links-row li img {
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

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

.demo-links-row li a {
  display: block;
  width: 100%;
  position: relative;
}

.demo-links-row li a::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 32.4%;
}

/* ================================================= */

.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 {
  max-width: 614px;
  width: 100%;
  position: relative;
}

.front-end-left::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 56.3%;
}

.front-end-left img {
  position: absolute;
  left: 0;
  top: 0;
}

.front-end-right {
  width: calc(100% - 634px);
  width: -webkit-calc(100% - 634px);
  width: -moz-calc(100% - 634px);
  width: -ms-calc(100% - 634px);
  width: -o-calc(100% - 634px);
}

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

/* ================================================= */
.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;
  row-gap: 15px;
}

.TABROW .TAB {
  min-width: 197px;
  padding: 0 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;
  justify-content: center;
  row-gap: 20px;
}

.screens ul.active {
  display: flex;
}

.screens ul li {
  width: 25%;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  position: relative;
}

.screens ul li::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 215.6%;
}

.screens ul li img {
  border: 1px solid #ddd;
  position: absolute;
  left: 0;
  top: 0;
}

.screens .view-app-flow {
  font-size: 22px;
  background-color: #37c95e;
  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: #309500;
}

.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: 15px 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 .heading-area~p {
  text-align: center;
}

.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: 20px;
  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 {
  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;
  /*! align-items: center; */
}

.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%;
  border: 1px solid #e8e8e8;
  box-shadow: 2px 5px 12px 1px #e8e8e8;
}

.single-service-inner.flex strong {
  margin: 0;
}

.single-service-inner b img {
  height: 70px;
  min-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 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%;
}

/* ================================================= */

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

.reviews .reviews-inner>a:after {
  content: '';
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #309500;
  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;
}

.reviews .client-left-shape {
  position: absolute;
  top: -158px;
  left: -10px;
  pointer-events: none;
}

.reviews .client-right-shape {
  position: absolute;
  bottom: -183px;
  right: -10px;
  pointer-events: none;
}

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 {
  content: '';
  display: block;
  width: 100%;
  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: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: #309500;
}

/* ================================================= */

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

.demo-video-laptop-inner p {
  text-align: center;
}

.demo-video-laptop-inner:after {
  content: '';
  clear: both;
  display: block;
}

.uberclone-vidoe-img img:hover {
  cursor: pointer;
}

.demo-video-laptop span {
  margin: 10px 0 30px;
  padding: 0px;
  float: left;
  width: 100%;
  font-size: 35px;
  text-transform: uppercase;
  color: #ff6e00;
  font-weight: 600;
  text-align: center;
}

.demo-video-laptop span img {
  max-width: 100%;
}

.demo-video-laptop p strong {
  color: #ff6e00;
  display: inline;
  font-weight: 500;
}

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

.uberclone-vidoe-img iframe {
  position: absolute;
  left: 0;
  top: 0;
}

.uberclone-vidoe-img img:hover {
  cursor: pointer;
}

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

.pricing-inner p {
  text-align: center;
}

.torn-pricing {
  position: relative;
}

.torn-pricing::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 51%;
}
.torn-pricing img {
  position: absolute;
  left: 0;
  top: 0;
}

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

/**************************************/
/*****************************************/
.about-section-of {
  padding-bottom: 0;
}

.about-section-of-inner {
  max-width: 1350px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
}

.about-section-of h4 {
  margin: 0;
  padding: 20px;
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: var(--theme);
  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;
  font-weight: bold;
}

.about-section-of h4:hover {
  background-color: var(--theme-dark);
}

.about-section-of h4:after {
  content: '';
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  display: inline-block;
  margin: 0 0 0 10px;
  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 h4.active:after {
  transform: rotatex(-180deg);
  -webkit-transform: rotatex(-180deg);
  -moz-transform: rotatex(-180deg);
  -ms-transform: rotatex(-180deg);
  -o-transform: rotatex(-180deg);
}

.about-section-of-data {
  text-align: initial;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #f8f8f8;
  display: none;
}

.about-section-of-data .about-section-of-inner {
  text-align: unset;
}

.about-section-of h6 {
  font-size: 25px;
  color: #000;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1em;
}

.box-rows:not(:last-child) {
  margin-bottom: 20px;
}

.about-section-of .box-rows>h6 {
  background-color: var(--theme);
  padding: 10px 15px;
  color: #fff;
}

.box-rows ul {
  list-style: none;
  padding-left: 15px;
}

.box-rows ul li {
  margin-bottom: 4px;
  font-size: 16px;
  text-align: justify;
  color: #000;
  padding: 0 0 0 18px;
  font-weight: 500;
  position: relative;
}

.box-rows ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  background-color: var(--theme);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.about-section-of .box-rows .sub-boxess h6 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.sub-boxess {
  padding-left: 20px;
  margin-bottom: 20px;
}

.sub-boxess h6:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--theme);
  border-radius: 50%;
  left: -22px;
  top: 10px;
}

/*****************************************/
.delivery-types {
  background-color: var(--theme-light);
}

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

.delivery-types ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.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: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.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: #000;
  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: #309500;
}

@media screen and (max-width:1024px) {
  .banner-inner {
    flex-direction: column-reverse;
    row-gap: 40px;
  }

  .banner-left {
    width: 100%;
  }

  .banner-right {
    width: 100%;
    text-align: center;
  }

  .iphone-left {
    width: 100%;
    order: 3;
  }

  .iphone-right {
    max-width: 100%;
    margin-bottom: 30px;
    order: 2;
  }

  .front-end-left {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .front-end-right {
    width: 100%;
  }

  ul.reviews-list li.morereview a {
    font-size: 2.5vw;
    line-height: 3.5vw;
  }
}

@media(max-width:991px) {
  .main-title {
    font-size: 35px;
    line-height: 1em;
  }

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

  .features-inner ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .latest-features ul {
    grid-template-columns: 1fr;
  }

  .delivery-types ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .perfect-script-left {
    width: 100%;
    order: 3;
  }

  .perfect-script-right {
    width: 100%;
    margin-bottom: 30px;
    order: 2;
  }

  ul.reviews-list li {
    width: 33.33%;
  }

  .pricing .get-quote {
    min-width: initial;
    height: auto;
    line-height: normal;
    box-sizing: border-box;
    padding: 12px 15px;
    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;
  }

  .screens ul li {
    width: 33.33%;
  }
}

@media screen and (max-width:767px) {
  .main-title {
    font-size: 27px;
  }

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

  .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 screen and (max-width:630px) {
  .page__content>* {
    padding: 40px 0;
  }

  .about-section-of {
    padding-bottom: 0;
  }

  .heading-area .heading-text {
    font-size: 26px;
    margin-top: -4px;
  }

  .demo-links-row {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    gap: 10px;
  }

  .btn {
    padding: 12px 15px;
    height: auto;
  }

  .banner-left h1 {
    font-size: 30px;
  }

  .perfect-script-right {
    margin-bottom: 10px;
  }

  .features-inner ul {
    grid-template-columns: 1fr;
  }

  .delivery-types ul {
    grid-template-columns: 1fr;
  }

  .front-end-left {
    margin-bottom: 15px;
  }

  ul.reviews-list li {
    width: 50%;
    padding: 0 8px;
  }

  ul.reviews-list li.morereview a {
    font-size: 4.2vw;
    line-height: 5.5vw;
  }

  ul.reviews-list li a::after {
    width: 35px;
    height: 35px;
    background-size: 29px;
  }

  ul.reviews-list li.morereview a:before {
    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;
    width: 40px;
    height: 40px
  }

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

  ul.reviews-list li a {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }

  /*************************************/
  .screens .screens-inner a {
    font-size: 17px;
    padding: 14px 25px;
  }

  .about-section-of h4 {
    font-size: 18px;
  }

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

@media screen and (max-width:480px) {
  .screens ul li {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .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-left: 0;
    padding-right: 0;
  }

  ul.reviews-list li.morereview a {
    font-size: 13px;
    line-height: 17px;
  }

  .play-icon-black {
    width: 40px;
    height: 40px;

  }

  .about-section-of .box-rows>h6 {
    padding: 7px 15px;
    font-size: 20px;
    line-height: 1.2em;
  }

  .sub-boxess {
    padding-left: 0;
  }
}