
:root{
  --main_color:#e69c24;
  --black:#000;
  --white:#fff;
  --padding:40px 0;
  --hover:#c07a24;
}
*{
  font-family: 'Exo 2';
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  display: block;
}

main{
  margin:80px auto 0 auto;
}
main > *{
  padding: var(--padding);
}
.heading-area strong {
  text-transform: uppercase;
  font-size: 20px;
  color: var(--main_color);
  font-weight: 600;
  display: block;
}
.main-title {
  font-size: 35px;
  font-weight: bold;
  margin: -8px 0 0 0;
  color: #000;
  text-transform: uppercase;
  line-height: 40px;
}
p {
  line-height: 23px;
  font-size: 16px;
  margin: 0 0 10px 0;
  color: var(--black);
  font-weight: 400;
  text-align: justify;
}
p:last-child{
  margin-bottom: 0;
}
.heading-area {
  margin-bottom: 15px;
  width: 100%;
}
.heading-area.center{
  text-align: center;
}
.heading-area.center > *{
  text-align: center;
  display: block;
}
.heading-area p{
  margin: 10px 0 0 0;
}
.heading-area.white > *{
  color: var(--white);
}
img{
  max-width: 100%;
}
.btn__div{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 15px;
}
.btn__div.ju-center{
  justify-content: center;
}
.common-btn {
  background-color: var(--main_color);
  font-size: 20px;
  text-transform: initial;
  font-weight: 600;
  padding: 10px 15px 13px 12px;
  color: #fff;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.common-btn img {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  font-size: 0;
  display: inline-block;
}
.common-btn:hover {
  background-color: var(--hover);
  color: #fff;
}
a.btn-color2 {
  background-color: #0fb158;
}
a.btn-color2:hover,
a.btn-color2:focus {
  background-color: #0a8d45;
}
a.btn-color1 {
  background-color: #03acef;
}
a.btn-color1:hover,
a.btn-color1:focus
{
  background-color: #0173a0;
}
/*================================================================== */
.banner{
  background-color: #fffae2;
}
.banner-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:center;
}
.banner h1 {
  font-size: 45px;
  line-height: 44px;
  color: var(--main_color);
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.banner b {
  font-size: 22px;
  line-height: normal;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.banner .banner-right>strong {
  font-size: 45px;
  text-transform: uppercase;
  color: #333;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 46px;
}
.banner-left {
  width: 48%;
  position: relative;
}

.banner-right {
  width: 50%;
}
/*================================================================== */
.features-inner{
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.features-inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  justify-content: space-between;
}
.features-inner ul li{
  background-color: #fff;
  text-align: center;
  width: calc(33.33% - 1px);
  width: -webkit-calc(33.33% - 1px);
  width: -ms-calc(33.33% - 1px);
  width: -o-calc(33.33% - 1px);

}
.fet_caption{
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
}
.fet_caption i{
  font-size: 40px;
  width: 70px;
  height: 70px;
  box-shadow: 0 0 10px rgb(0,0,0,0.2);
  -webkit-box-shadow: 0 0 10px rgb(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 0 auto 15px auto;
}
.fet_caption strong{
    font-size: 20px;
    line-height: 1em;
    color: #000;
    display: block;
    text-transform: capitalize;
    margin: 0 0 10px 0;
}
.fet_caption p{
  text-align: center;
}
/*================================================================== */
.script{
  background-color: #f8f8f8;
}
.script-inner {
  margin: 0 auto;
  padding: 0px 15px;
  max-width: 1310px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.script-left {
  width: 49%;
}

.script-right {
  width: 50%;
}

/*================================================================== */
.green-part-inner{
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.green-part-inner ul li {
    font-size: 16px;
    line-height: 24px;
    list-style: none;
    padding-left: 21px;
    position: relative;
    margin-bottom: 8px;
    font-weight: 400;
    color: #000;
    text-align: justify;
}
.green-part-inner ul li:last-child{
  margin-bottom: 0;
}
.green-part-inner ul li:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--main_color);
  border-radius: 50%;
  left: 0;
  top: 6px;
}
/******************/
.solution{
  background-color: #f8f8f8;
}
.solution-inner{
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

}
.solution-left{
  width: 48%;
}
.solution-right{
  width: 48%;
}

/* ============================================================= */
.demolinks{
  background-color: var(--main_color);
}
.demolinks-inner{
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
.demolinks ul {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  gap: 10px;
  max-width: 1200px;
  margin: auto;
}
.demolinks ul li a{
  position: relative;
  display: block;
}
.demolinks ul li a::before{
  content: '';
  display: block;
  width: 100%;
  padding-top: 33%;
}
.demolinks ul li a img{
  position: absolute;
  left: 0;
  top: 0;
}
.price .btn__div{
  justify-content: center;
}
.Pricing_Btn{
    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;
    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-transform: capitalize;
}
.Pricing_Btn:hover{
  background-color: var(--hover);
  color: #fff;
}
/* ============================================================= */

.front-end {
  background-color: #fffae2;
}

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

.front-end-left {
  width: 46%;

}

.front-end-right {
  width: 52%;
}
.front-end-left  ul li{
  font-size: 16px;
  text-align: justify;
  color: #000;
  margin: 0 0 15px 0;
  line-height: 23px;
}

.front-end-left  ul li strong{
  font-size: 20px;
  display: block;
  color: #000;
  text-transform: capitalize;
  margin: 0 0 10px 0 ;
  line-height: 1em;
}
.front-end-left  ul li:last-child{
  margin-bottom: 0;
}

/* ================================================== */
.price-inner {
  max-width: 1310px;
  padding: 0 15px;
  margin: auto;
}
.torn-pricing {
  margin-bottom: 5.6%;
  position: relative;
}
.torn-pricing::before{
  content: '';
  display: block;
  width: 100%;
  padding-top: 64.03%;
}
.torn-pricing img{
  position: absolute;
  left: 0;
  top: 0;
}
.torn-pricing:after {
  content: '';
  position: absolute;
  top: 100%;
  width: auto;
  height: 60px;
  background-image: url(torn-paper-13.png);
  left: 14px;
  right: 0;
  background-size: 39%;
  background-repeat: repeat-x;
  z-index: 1;
  margin-top: -2px;
  pointer-events: none;
}
/* ================================================== */
.reviews {
  padding-bottom: 0;
}
.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 {
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 2px #FE9B00 inset;
  border-radius: 5px;
  margin-bottom: 0;
  margin-top: 0;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  padding: 0 90px;
  transition: all 0.5s ease 0s;
  background-color: #FE9B00;
  min-height: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.reviews .reviews-inner > a:after {
  content: '';
  width: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #c07a24;
  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 .reviews-inner > a:hover:after {
  width: 100%;
}
.reviews .reviews-inner > a:hover {
  background-color: #c07a24;
  box-shadow: 0 0 0 2px #c07a24 inset;
}
ul.reviews-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  row-gap: 20px;
}
ul.reviews-list li {
  width: 25%;
  padding: 0 10px;
}
ul.reviews-list li a {
  display: block;
  box-shadow:0 0 20px 0 rgba(0,0,0,0.20);
  min-height: 100%;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}
ul.reviews-list li:not(:last-child) a:before {
  content: '';
  display: block;
  padding-top: 71%;
}
ul.reviews-list li a::after {
  content: '';
  background-image: url(play-video-20.svg);
  position: absolute;
  right: 10px;
  top: 10px;
  width: 46px;
  height: 46px;
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: center;
  background-color: var(--main_color);
  border-radius: 50%;
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 40%);
}
ul.reviews-list li a img {
  max-width: 100%;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
}
ul.reviews-list li.morereview a {
  min-height: 100%;
  font-size: 28px;
  font-weight: bold;
  line-height: 34px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--main_color);
  color: #fff;
  padding: 15px;
  text-align: center;
}
ul.reviews-list li.morereview a:hover {
  background-color: var(--hover);
}
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;
}

.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 h5 {
  padding: 20px;
  font-size: 25px;
  font-family: 'Exo 2';
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: var(--main_color);
  display: inline-block;
  border-radius: 25px 25px 0 0;
  cursor: pointer;
  transition: all 0.5s ease 0s;
}
.about-section-of h5:hover {
  background-color: var(--hover);
}
.about-section-of h5::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 h5.active:after,
.about-section-of .footer-toggle-btn.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 {
  padding: 40px 0;
  background-color: #f8f8f8;
  display: none;
}
.about-section-of-data .about-section-of-inner {
  text-align: unset
}
.about-section-of h6 {
  font-size: 23px;
  color: #000;
  text-transform: capitalize;
  line-height: 1em;
  font-weight: bold;
  margin: 0 0 15px 0
}
.box-rows ul {
  list-style: none;
  padding-left: 15px
}
.box-rows ul li {
  margin-bottom: 6px;
  font-size: 16px;
  color: #000;
  text-align: justify;
  padding: 0 0 0 18px;
  font-weight: 400;
  position: relative
}
.box-rows ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  background-color: var(--main_color);
  width: 6px;
  height: 6px;
  border-radius: 50%
}
.box-rows h5,
.box-rows h3 {
  font-size: 21px;
  margin-bottom: 5px;
  position: relative;
  font-weight: bold;
  margin-top: 15px;
}
.sub-boxess strong {
  font-size: 19px;
  margin-bottom: 5px;
  position: relative;
  font-weight: 600;
  display: block
}
.sub-boxess {
  padding-left: 20px;
  margin-bottom: 20px;
}
.sub-boxess strong:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--main_color);
  border-radius: 50%;
  left: -22px;
  top: 10px
}
.box-rows:not(:last-child){
  margin-bottom: 20px;
}

@media (max-width:1024px) {
  .banner h1 {
    font-size: 40px;
}
ul.reviews-list li.morereview a {
  font-size: 2.5vw;
  line-height: 3.5vw;
}
}

@media (max-width:991px) {
  .main-title {
    font-size: 30px;
    line-height: 35px;
}
  .banner-right{
    width: 100%;
  }
  .banner-left {
    width: 100%;
    text-align: center;
}
  .banner-inner {
    flex-direction: column-reverse;
    row-gap: 40px;
  }
  .features-inner ul li {
    width: calc(50% - 1px);
    width: -webkit-calc(50% - 1px);
    width: -ms-calc(50% - 1px);
    width: -o-calc(50% - 1px);
  }
  .script-left{
    width: 100%;
    order: 3;
  }
  .script-right{
    width: 100%;
    order: 2;
    margin: 0 0 30px 0;
  }
  .solution-inner{
    flex-direction: column-reverse;
  }
  .solution-left{
    width: 100%;
  }
  .solution-right {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .front-end-left {
    width: 100%;
    order: 3;
}
.front-end-right {
  width: 100%;
  order: 2;
  margin: 0 0 30px 0;
}
ul.reviews-list li {
  width: 33.33%;
  padding: 0 10px;
}
}

@media (max-width: 630px) {
  .banner h1 {
    font-size: 30px;
    line-height: 1em;
}
.main-title {
  font-size: 26px;
  line-height: 1em;
}
p {
  font-size: 15px;
  line-height: 22px;
}
/* ============================================= */
.banner-inner {
  row-gap: 20px;
}
.features-inner ul li{
  width: 100%;
}
.script-right {
  width: 100%;
  order: 2;
  margin: 0 0 15px 0;
}
.demolinks ul {
	grid-template-columns: 1fr 1fr;
	grid-auto-flow: row;
	gap: 10px;
}
.Pricing_Btn {
  font-size: 18px;
  color: #ffffff;
  padding: 12px 15px;
  min-width: inherit;
}
.front-end-right {
  margin: 0 0 15px 0;
}
.front-end-left  ul li strong {
  font-size: 18px;
  line-height: 1em;
}
.front-end-left ul li{
  font-size: 15px;
}
.green-part-inner ul li {
  font-size: 15px;
  line-height: 22px;
}
/* ============================================= */
ul.reviews-list li {
  width: 50%;
}
ul.reviews-list li a{
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: 0;
}
ul.reviews-list li a img{
  border-radius: 8px;
}
ul.reviews-list li.morereview a {
  font-size: 4.1vw;
  line-height: 5.2vw;
}

ul.reviews-list li a::after {
  width: 35px;
  height: 35px;
  background-size: 29px;
}
ul.reviews-list li.morereview a:before {
  width: 40px;
  height: 40px;
  border-radius: 10px 0 0 0;
  -webkit-border-radius: 10px 0 0 0;
  -moz-border-radius: 10px 0 0 0;
  -ms-border-radius: 10px 0 0 0;
  -o-border-radius: 10px 0 0 0;
}
ul.reviews-list li.morereview a:after {
width: 40px;
height: 40px;
border-radius: 0 0 10px 0;
-webkit-border-radius: 0 0 10px 0;
-moz-border-radius: 0 0 10px 0;
-ms-border-radius: 0 0 10px 0;
-o-border-radius: 0 0 10px 0;
}
.about-section-of h5 {
  padding: 10px;
  font-size: 19px;
  border-radius: 12px 12px 0 0;
}
.about-section-of h6
{
  font-size: 20px;
}
.box-rows ul li {
  font-size: 15px;
  line-height: 23px;
}
}
