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

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

:root {
  --main-color: #FF5882;
  --light-color: #FFEFF3;
  --button-color: #052973;
  --hover-color: #E52C5A;
}

@keyframes pulse-me {
  0% {
      transform: scale(.9);
      opacity: .2;
      -webkit-transform: scale(.9);
      -moz-transform: scale(.9);
      -ms-transform: scale(.9);
      -o-transform: scale(.9)
  }

  50% {
      opacity: .5
  }

  70% {
      opacity: .09
  }

  100% {
      transform: scale(2.1);
      opacity: 0;
      -webkit-transform: scale(2.1);
      -moz-transform: scale(2.1);
      -ms-transform: scale(2.1);
      -o-transform: scale(2.1)
  }
}

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

main>* {
  padding: 40px 0;
}

[data-toggle="popup"], .common-button {
  background-color: var(--main-color);
  font-size: 18px;
  text-transform: initial;
  font-weight: 600;
  padding: 12px 15px 14px 15px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  line-height: 1em;
}

[data-toggle="popup"]:hover,
.common-button:hover {
  background-color: var(--hover-color);
  color: #fff;
}
.common-btn.big-button {
  font-size: 25px;
}
a:hover,
a:focus,
a:active,
a:valid,
a {
  text-decoration: none;
}

button {
  outline: none;
  border: none;
}

.enq-popup-button-block {
  text-align: center;
}

* {
  box-sizing: border-box;
}

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

img {
  border: none;
  outline: 0;
  max-width: 100%;
}

.btn__div {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  grid-gap: 20px;
  margin: 15px 0 0 0;
}

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

.right-btn {
  margin-left: auto;
}

.play-anim-ico {
  background-image: url(../index-49.html);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 60px;
  position: absolute;
  height: 60px;
  left: 50%;
  top: 50%;
  z-index: 111;
  margin-left: -25px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translate(-40%, -100%);
  -webkit-transform: translate(-40%, -100%);
  -moz-transform: translate(-40%, -100%);
  -ms-transform: translate(-40%, -100%);
  -o-transform: translate(-40%, -100%);
}

.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 #ffffff;
  transform: scale(0.9);
  transform-origin: center center;
  animation: pulse-me 1s linear infinite;
  -webkit-animation: pulse-me 1s linear infinite;
}

.play-anim-ico.theme {
  background-image: url(play-video-theme.svg);
}

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

.common-btn {
  background-color: var(--main-color);
  font-size: 18px;
  line-height: 1em;
  text-transform: capitalize;
  font-weight: bold;
  padding: 16px 15px;
  min-height: 55px;
  min-width: 210px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-gap: 12px;
  border-radius: 12px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  box-shadow: 7px 8px 31px rgba(20, 54, 91, 0.11);
  position: relative;
  z-index: 1;
  overflow: hidden;

}
.common-btn img {
  width: 24px;
  height: 24px;
  transition:all 0.3s ease-in-out;
  -webkit-transition:all 0.3s ease-in-out ;
  -moz-transition:all 0.3s ease-in-out ;
  -ms-transition:all 0.3s ease-in-out ;
  -o-transition:all 0.3s ease-in-out ;
}
.common-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0%;
  width: 0;
  background-color: var(--hover-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  z-index: -1;
}
.common-btn::after {
  content: '';
  height: 0%;
  width: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  z-index: -1;
}
.common-btn:hover::before,
.common-btn:hover::after {
  height: 100%;
  width: 100%;
}
.common-btn:hover img{
  filter: brightness(0) invert(1);
}
.common-btn:hover {
  color: #fff;
}
.common-btn.bg-white {
  background-color: #fff;
  color: var(--main-color);
}
.common-btn.bg-white:before,
.common-btn.bg-white:after {
  background-color: #000;
}
.common-btn.bg-white:hover {
  background-color: #000;
  color: #fff;
}

.button_block .common-btn {
  min-width: initial;
}
.button_block {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.border-btn {
  color: var(--main-color);
  text-align: center;
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
  padding: 10px 15px 12px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 7.175px;
  border: 1px solid var(--main-color);
  background: transparent;
  -webkit-border-radius: 7.175px;
  -moz-border-radius: 7.175px;
  -ms-border-radius: 7.175px;
  -o-border-radius: 7.175px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

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

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

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

p strong {
  font-size: 20px;
  color: #424242;
}

p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000;
  font-weight: 400;
  text-align: justify;
}

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

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

.main-title {
  color: #000;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2em;
  font-weight: bold;
  text-transform: capitalize;
  margin-top: -8px;
}

.sub-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  display: block;
  margin: 0 0 15px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  background-color: var(--main-color);
  color: #fff;
  display: inline-block;
  padding: 5px 26px;
  text-transform: uppercase;
}

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

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

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

.heading-area.flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

.flex-hed {
  width: calc(100% - 300px);
  width: -webkit-calc(100% - 300px);
  width: -moz-calc(100% - 300px);
  width: -ms-calc(100% - 300px);
  width: -o-calc(100% - 300px);
}

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

.deskop-none {
  display: none;
}

.main__color {
  color: var(--main-color);
}
.banner .demo-video {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.demo-video a img {
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-bottom: 2px;
}
a.btn-color1 {
  background-color: #0c8ee4;
}
a.btn-color1:hover {
  background-color: #0976be;
}

a.btn-color2 {
  background-color: #0fb158;
}

.btn-color2:hover {
  background-color: #0a8d45;
}

/* ------------------------------------------ */
.banner{
  background-color: #f8f8f8;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.banner-inner{
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.banner-left{
  width: 70%;
  position: relative;
  padding: 3.6% 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.banner-left::before{
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 1263px;
  border-radius: 20px 20px 200px 20px;
  -webkit-border-radius: 20px 20px 200px 20px;
  -moz-border-radius: 20px 20px 200px 20px;
  -ms-border-radius: 20px 20px 200px 20px;
  -o-border-radius: 20px 20px 200px 20px;
  background-image: url(banner-bg-2.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  z-index: -1;
}
.banner-caption{
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-left h1{
  font-size: 51px;
  color: #fff;
  font-weight: 600;
  display: block;
  margin: 0 0 15px 0;
}
.banner-left strong{
  display: block;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  display: block;
  margin: 0 0 15px 0;
}
.banner-left p{
  color: #fff;
}
.shape{
  position: absolute;
  right: 0;
  top: 0;
  width: 26.2vw;
}
.overlay_img{
  margin-right: -10.2vw;
}
/* ------------------------------------------ */
.fet-inner{
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.fet__list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.fet__list li{
  z-index: 1;
  position: relative;
}
.fet_caption{
  border: 1px solid #D6D6D6;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 15px;
  min-height: 100%;
}
.fet__list li::after{
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  border: 1px dashed #D6D6D6;
  z-index: -1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.fet_caption::before {
  content: attr(data-num);
  position: absolute;
  right:  20px;
  top: 20px;
  font-size: 40px;
  line-height: 70px;
  font-weight: bold;
  font-family: 'Exo 2';
  color: white;
  text-shadow: -1px -1px 0 var(--main-color),1px -1px 0 var(--main-color),-1px 1px 0 var(--main-color),1px 1px 0 var(--main-color);
  text-transform: uppercase;
}
.fet_caption i {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5.25px;
  -webkit-border-radius: 5.25px;
  -moz-border-radius: 5.25px;
  -ms-border-radius: 5.25px;
  -o-border-radius: 5.25px;
  width: 65px;
  height: 65px;
  margin: 0 0 15px 0;
  font-size: 40px;
  color: #fff;
}
.fet_caption i:before{
  color: #fff;
}

.fet_caption strong{
  display: block;
  font-size: 20px;
  color: #000;
  text-transform: capitalize;
  margin: 0 0 15px 0;
  line-height: 1em;
}
/*--------------------------------------------------------------*/
.ps-section {
  overflow: hidden;
  position: relative;
}
.ps-section::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-image: url(script-new.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 49.221%;
  height: 100%;
}
.ps-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.ps-left {
  width: 49.221%;
  padding: 0 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.ps-right {
  width: 48%;
}
.ps_right .ps_right_inner {
    margin-left: -12%;
    background: #fff;
    position: relative;
    padding: 6% 0 6% 6%;
}
/*--------------------------------------------------------------*/
.cf-inner{
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.cf_list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.cf_list li{
  position: relative;
  padding: 20px;
  z-index: 1;
}
.cf_caption{
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.07);
  padding: 15px;
  min-height: 100%;
}
.cf_list li:before{
  content: '';
  left: 0;
  right: 0;
  top: 0;
  height: 55%;
  background-color: #FFE1E9;
  position: absolute;
  z-index: -1;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: block;
}
.cf_caption i {
  color: var(--main-color);
  font-size: 49px;
  display: block;
  margin: 0 0 15px 0;
}
.cf_caption i::before{
  color: var(--main-color);
}
.cf_caption strong{
  font-size: 20px;
  color: #000;
  text-transform: capitalize;
  font-weight: 600;
  display: block;
  margin: 0 0 15px 0;
  line-height: 1em;
}
/*--------------------------------------------------------------*/
.gp-section{
  background-color: var(--light-color);
}
.gp-inner{
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.gp_list li {
  font-size: 16px;
  color: #000;
  list-style: none;
  padding-left: 27px;
  position: relative;
  margin-bottom: 7px;
  font-weight: 400;
  line-height: 23px;
}
.gp_list li:last-child {
  margin-bottom: 0;
}
.gp_list li strong {
  text-transform: capitalize;
}
.gp_list li:before {
  content: '';
  position: absolute;
  width: 14px;
  height: 11px;
  background-image: url(right_arrow.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 50%;
  left: 0;
  top: 7px;
}

/*--------------------------------------------------------------*/
.demo-inner{
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.demo-left{
  width: 48%;
}
.demo-right{
  width: 48%;
}
.demovideo-block{
  width: 100%;
  display: block;
  position: relative;
  cursor: pointer;
  border: 1px solid #ccc;
}
.demovideo-block::before{
  content: '';
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.demovideo-block img,
.demovideo-block iframe{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
/*--------------------------------------------------------------*/
.user-app {
  z-index: 1;
  position: relative;
  background-color: var(--light-color);
}
.user-app-inner {
  max-width: 1310px;
  margin: auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.user-app-left {
  position: relative;
  padding: 20px 20px 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 48%;
}

.user-app-left::before {
  content: '';
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1000%;
  background: var(--light-color);
  border-radius: 0px 15px 15px 0px;
  -webkit-border-radius: 0px 15px 15px 0px;
  -moz-border-radius: 0px 15px 15px 0px;
  -ms-border-radius: 0px 15px 15px 0px;
  -o-border-radius: 0px 15px 15px 0px;
}

.user-app-left span {
  width: calc(50% - 10px);
  width: -webkit-calc(50% - 10px);
  width: -moz-calc(50% - 10px);
  width: -ms-calc(50% - 10px);
  width: -o-calc(50% - 10px);
}

.user-app-right {
  width: 51%;
}

.user-app ul li {
  font-size: 16px;
  color: #000;
  list-style: none;
  padding-left: 21px;
  line-height: 23px;
  position: relative;
  margin-bottom: 7px;
  font-weight: 400;
}
.user-app ul {
  margin-left: 0;
  margin-bottom: 20px;
}
.user-app ul li:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--main-color);
  border-radius: 50%;
  left: 0;
  top: 7px;
}
/*--------------------------------------------------------------*/
.front-end {
  background-color: var(--light-color);
}
.front-end-inner {
  margin: 0 auto;
  max-width: 1310px;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.front-end-left {
  width: 48%;
}
.front-end-right {
  width: 50%;
}
.front-end-right b{
  font-size: 20px;
  color: #000;
  text-transform: capitalize;
  color: #000;
  display: block;
  margin: 0 0 15px 0;
}
/*--------------------------------------------------------------*/
.client-reviews-inner {
	max-width: 1310px;
	padding: 0 15px;
	box-sizing: border-box;
	margin: 0 auto;
}
.client-reviews ul {
  row-gap: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.client-reviews ul li img {
	width: 100%;
	border-radius: 18px;
	position: absolute;
	left: 0;
	top: 0;
}
.client-reviews ul li a {
	position: relative;
	display: inline-block;
	box-shadow: 0 0 50px 0 rgb(0 0 0 / 20%);
	overflow: hidden;
	border-radius: 25px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
	width: 100%;
  border: 3px solid #fff;
}
.client-reviews ul li a::after {
	content: '';
	position: absolute;
	width: 46px;
	height: 46px;
	top: 15px;
	right: 15px;
	background-image: url(play-black-7.svg);
	background-repeat: no-repeat;
	background-size: 40px;
	z-index: 1;
	padding: 10px;
	background-color: #fff;
	border-radius: 50%;
	background-position: center;
}
.client-reviews ul li:not(:last-child) a:before {
	content: '';
	display: block;
	padding-top: 70.81%;
	width: 100%;
}
.client-reviews ul 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;
	background-color: var(--main-color);
	color: #fff;
	padding: 15px;
	text-align: center;
	flex-direction: column;
}
.client-reviews li.morereview a:hover {
	background-color: var(--hover-color);
}
.client-reviews ul 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;
	background-image: none;
	background-color: transparent;
	box-shadow: none;
	-webkit-box-shadow: none;
}
.client-reviews ul 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;
}
/*--------------------------------------------------------------*/
/******************************************************/
/**************************************/
.pricing {
  padding: 35px 0px 40px 0px;
  position: relative;
  z-index: 1;
}
.pricing img {
  max-width: 100%;
  vertical-align: top;
}
.pricing-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pricing p {
  margin-bottom: 10px;
  text-align: center;
}
.pricing .get-quote {
  font-size: 22px;
  background-color: var(--main_color);
  font-weight: 600;
  color: #ffffff;
  padding: 17px 40px 17px 40px;
  min-width: 264px;
  box-sizing: border-box;
  display: inline-block;
  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;
  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(--hover_color);
}
.pricing .clipart {
  position: absolute;
  left: 0;
  margin-top: 60px;
}
.torn-pricing {
  position: relative;
  margin-bottom: 20px;
}
/**************************************/
/******************************************************/
@media (max-width:1400px) {
  .banner h1{
    font-size: 40px;
    line-height: 1em;
    margin: 0 0 10px 0;
  }
  .banner-left strong{
    font-size: 20px;
    margin: 0 0 10px 0;
  }
  .overlay_img img{
    max-width: 250px;
  }
  .banner-left {
    padding: 30px 0;
}
.main-title{
  font-size: 35px;
}
p{
  font-size: 15px;
  line-height: 22px;
}
.user-app-left{
  width: 43%;
}
.user-app-right {
  width: 55%;
}
}

@media (max-width:1199px) {
  .cf_list {
    gap: 20px;
}
.client-reviews ul li.morereview a{
  font-size: 2.5vw;
  line-height: 3.5vw;
}
}

@media (max-width:991px) {
  .main-title {
    font-size: 30px;
}
  .banner-left::before{
    display: none;
  }
  .banner{
    background-color: var(--main-color);
  }
  .shape{
    display: none;
  }
  .banner-left{
    width: 100%;
    flex-direction: column-reverse;
  }
  .overlay_img{
    margin: 0 0  25px 0;
    text-align: center;
  }
  .banner-caption{
    width: 100%;
  }
  .fet__list {
    grid-template-columns: 1fr 1fr;
}
.ps-left{
  width: 100%;
  margin: 0 0 25px 0;
}
.ps-right{
  width: 100%;
}
.ps-section::before{
  display: none;
}
.deskop-none{
  display: block;
}
.cf_list {
  grid-template-columns: 1fr 1fr;
}
.demo-left{
  width: 100%;
}
.demo-right{
  width: 100%;
  text-align: center;
  margin: 0 0 25px 0;
}
.demo-inner{
  flex-direction: column-reverse;
}
.user-app{
  background-color: var(--light-color);
}
.user-app-left::before{
  display: none;
}
.user-app-left{
  width: 100%;
  margin: 0 0 25px 0;
  padding: 0;
  justify-content: center;
}
.user-app-left span{
  max-width: 275px;
}
.user-app-right{
  width: 100%;
}
.front-end-left{
  width: 100%;
  margin: 0 0 25px 0;
  text-align: center;
}
.front-end-right{
  width: 100%;
}
.client-reviews ul{
    grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width:630px) {
  .main-title {
    font-size: 26px;
}
.banner h1 {
  font-size: 30px;
}
  .fet__list{
    grid-template-columns: 1fr;
  }
  .cf_list{
    grid-template-columns: 1fr;
  }
  .cf_caption {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.07);
    padding: 15px;
}
.common-btn {
  padding: 15px 15px;
  min-height: inherit;
}
.client-reviews ul {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
}
.cf_list li{
  padding: 10px;
}
.client-reviews ul li a::after {
  width: 35px;
  height: 35px;
  background-size: 29px;
}
.client-reviews ul li.morereview a {
  font-size: 4.5vw;
  line-height: 5.5vw;
}
.client-reviews ul li a {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.client-reviews ul li img{
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.client-reviews ul 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;
}
.client-reviews ul 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;
}
.img-center{
  display: block;
  margin: 0 auto;
}
.fet_caption::before {
  font-size: 30px;
}
.fet__list li::after{
  display: none;
}
.ps-section{
  background-color: #f8f8f8;
}
.play-anim-ico{
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  right: 13px;
  top: 13px;
}
}
