:root {
    --theme: #00A9AA;
    --theme-dark: #009191;
    --theme-light: #eafffb;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo 2';
}
li {
    display: block;
}
img{
    max-width: 100%;
}
a:hover,
a:active,
a:visited,
a:focus{
    text-decoration: none;
}
a{
    color: #000;
}
.main{
    margin: 80px auto 0 auto;
}
.main >*{
    padding: 45px 0;
}
p{
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 400;
    text-align: justify;
}
p:last-child{
    margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5{
    font-family: 'Exo 2';
}

.heading-area{
    margin: 0 0 15px 0;
    width: 100%;
}
.heading-area.center >*{
    text-align: center;
}
.main-title {
    color: #000;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    margin-top: -8px;
}
.heading-area strong {
    text-transform: uppercase;
    font-size: 20px;
    color: var(--theme);
    font-weight: 600;
    display: block;
}
.other-charg {
    color: var(--theme);
    margin: 5px 0 0 0;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 33px;
    font-weight: bold;
}
.heading-area.white > *{
    color: #fff;
}
.heading-area > p{
    margin: 10px 0 0 0;
}
.btn__div{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    grid-gap: 15px;
}
.common-button {
    font-size: 18px;
    background-color: var(--theme);
    font-weight: 600;
    color: #ffffff;
    padding: 12px 16px 16px 20px;
    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;
}
.common-button:hover,
.common-button:focus
 {
    background-color: var(--theme-dark);
    color: #fff;
}
/* ============================================= */
.banner {
    background: var(--theme-light);
}
.banner-inner {
    margin: 0 auto;
    padding: 0px 15px;
    max-width: 1310px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.banner-left{
    width: 50%;
}
.banner-right {
    width: 48%;
}
.banner-left h1 {
    margin: 0 0 5px;
    font-size: 40px;
    text-transform: uppercase;
    color: #000;
    font-weight: bold;
    line-height: 40px;
}
.banner-left span {
    margin: 0 0 15px;
    display: block;
    font-size: 26px;
    line-height: 26px;
    color: var(--theme);
    font-weight: bold;
    text-transform: uppercase;
}
.banner p {
    text-align: justify;
}
/* ----------------------------------- */
  .features-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 1310px;
    padding: 0 15px;
  }
  .features ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .features ul li i {
    font-size: 50px;
    display: block;
    margin: 0 0 10px 0;
  }
  .features ul li .fet-caption {
    padding: 20px 15px;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
    border-radius: 8px;
    min-height: 100%;
    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;
    background: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.features ul li strong {
    display: block;
    line-height: normal;
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
    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;
}
.features ul li:last-child{
    grid-column: span 2 ;
}
/* ----------------------------------- */
.perfect-script{
    background: #f8f8f8;
}
.perfect-script p {
    text-align: justify;
}
.perfect-script .heading-area ~ strong {
    display: block;
    font-size: 17px;
    margin: 0 0 10px 0;
}
.perfect-script-inner {
    margin: 0 auto;
    padding: 0px 15px;
    max-width: 1310px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.perfect-script-left {
    width: 58%;
}
.perfect-script-left ul li {
    padding: 0 0 0 20px;
    font-size: 16px;
    color: #000;
    line-height: 23px;
    position: relative;
}
.perfect-script-left ul li::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: var(--theme);
}
.perfect-script-right {
    width: 39%;
}
/* ----------------------------------- */
.green-part-inner {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1310px;
}
.green-part-inner ul li {
    margin: 0 0 10px;
    padding: 0 0 0 20px;
    font-size: 16px;
    color: #000;
    line-height: normal;
    position: relative;
}
.green-part-inner ul li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: var(--theme);
}
.green-part-inner ul li ul span{
    display: block;
    margin: 5px 0;
}
.green-part-inner ul li ul li{
    margin-bottom: 5px;
}
/* ----------------------------------- */
.iphone-content-here{
    background: #f8f8f8;
}
.iphone-content-here-inner {
    margin: 0 auto;
    padding: 0px 15px;
    max-width: 1310px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.iphone-content-here-inner-left {
    width: 60%;
}
.iphone-content-here-inner-rght {
    width: 35%;
}
/* ----------------------------------- */
.demolinks {
    background-color: var(--theme);
  }
  .demolinks-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
  }
  .demo-links-row {
    max-width: 900px;
    margin: 0 auto;
  }

  .demo-links-row ul {
	display: grid;
	grid-template-rows: 1fr 1fr;
	grid-auto-flow: column;
	gap: 10px;
}
.demo-links-row ul li a {
    display: block;
    position: relative;
  }
  .demo-links-row ul li a::before{
    content: '';
    display: block;
    width: 100%;
    padding-top: 33%;
  }
  .demo-links-row ul li a img{
    position: absolute;
    left: 0;
    top: 0;
  }

  .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;
  }
/* =============================================== */
.front-end {
    background-color: var(--theme-light);
}
.front-end-inner {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1310px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.front-end-left {
    width: 48%;
}
.front-end-right {
    width: 48%;
}
.front-end-right strong {
    margin: 0 0 15px;
    font-size: 29px;
    color: #000;
    display: block;
    font-weight: bold;
    text-transform: none;
    line-height: 1.1em;
}
/********************************clients stylesheet start***********************************/
.client-reviews {
    background-color: var(--theme-light);
}
.client-reviews-inner {
    max-width: 1310px;
    padding: 0 15px;
    box-sizing: border-box;
    margin: 0 auto;
}
.client-reviews ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.client-reviews ul li img {
    width: 100%;
    border-radius: 18px;
    vertical-align: top;
}
.client-reviews ul li a {
    position: relative;
    display: inline-block;
    padding: 8px;
    box-shadow: 0 0 50px 0 rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 0 50px 0 rgba(0,0,0,0.2);
    border-radius: 25px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ddd;
}
.client-reviews ul li a::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    top: 15px;
    right: 15px;
    background-image: url(../svg/play-black-9.svg);
    background-repeat: no-repeat;
    background-size: 40px;
    z-index: 1;
    padding: 10px;
    background-color: #fff;
    border-radius: 50%;
    background-position: center;
    box-sizing: border-box;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}
.client-reviews ul 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;
}
.client-reviews ul li.morereview a:hover {
    background-color: var(--theme-dark);
}
.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-color: transparent;
    background-image: none;
    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;
    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;
}
/**************************************************/
/* =============================================== */
.faq {
    padding: 40px 0;
}
.faq__inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.faq_list {
    display: flex;
    row-gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.faq_list li {
    border: 1px solid #ddd;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    padding: 0 0 10px 0;
    background: #fff;
    width: calc(50% - 10px);
    width: -o-calc(50% - 10px);
    width: -moz-calc(50% - 10px);
    width: -webkit-calc(50% - 10px);
    gap: 20px;
}
.faq_list li:last-child {
    width: 100%;
}
.faq_list li strong {
    font-size: 20px;
    line-height: normal;
    display: block;
    margin: 0  0 10px 0;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px 10px 20px;
    text-transform: capitalize;
    border-radius:12px 12px 0 0;
    background-color:var(--theme-light);
    -webkit-border-radius:12px 12px 0 0;
    -moz-border-radius:12px 12px 0 0;
    -ms-border-radius:12px 12px 0 0;
    -o-border-radius:12px 12px 0 0;
}
.faq_list li p{
    padding: 0 20px ;
}
/********************************************/
.pricing {
    position: relative;
    z-index: 1;
}
.pricing img {
    max-width: 100%;
}
.pricing-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.pricing p {
    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: 15px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.pricing .get-quote:hover {
    background-color: var(--theme-dark);
}
.pricing .clipart {
    position: absolute;
    left: 0;
    margin-top: 60px;
}
.torn-pricing {
    position: relative;
}
.torn-pricing::before{
    content: '';
    display: block;
    width: 100%;
    padding-top: 51.4%;
}
.torn-pricing img{
    position: absolute;
    left: 0;
    top: 0;
}
/********************************************/
@media screen and (max-width:1199px) {
    .banner-inner{
        flex-direction: column-reverse;
        row-gap: 30px;
    }
    .banner-right {
        width: 100%;
        text-align: center;
    }
    .banner-left{
        width: 100%;
    }
    .features ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:1024px) {
    .client-reviews ul li.morereview a {
        font-size: 2.5vw;
        line-height: 3.5vw;
    }
}
@media screen and (max-width:991px) {

    .main-title {
        font-size: 35px;
    }
    .other-charg {
        font-size: 25px;
    }
    .perfect-script-inner{
        flex-direction: column;
        row-gap: 20px;
    }
    .perfect-script-left{
        width: 100%;
    }
    .perfect-script-right{
        width: 100%;
        text-align: center;
    }
    .iphone-content-here-inner{
        flex-direction: column-reverse;
        row-gap: 30px;
    }
    .iphone-content-here-inner-left{
        width: 100%;
        text-align: center;
    }
    .iphone-content-here-inner-rght{
        width: 70%;
        text-align: center;
    }
    .front-end-left {
        width: 100%;
        margin-bottom: 30px;
    }
    .front-end-right {
        width: 100%;
    }
    .premium-features-part-inner ul li {
        width: 50%;
        padding: 0 5px;
    }
    .client-reviews ul {
        grid-template-columns: repeat(3, 1fr);
    }
    .banner-left h1 {
        font-size: 35px;
    }
    .banner-left span {
        font-size: 24px;
        line-height: 22px;
    }
}

@media screen and (max-width:767px) {
    .faq_list li {
        width: 100%;
    }
    .client-reviews ul li.morereview a {
        font-size: 22px;
        line-height: 25px;
    }
    .btn-div a, a.client-reviews-btn {
        font-size: 24px;
    }
    .features ul {
        grid-template-columns: 1fr;
    }
    .features ul li:last-child {
        grid-column: auto;
    }
}
@media screen and (max-width:630px) {
    .main >*{
        padding: 40px 0;
    }
    .main-title {
        font-size: 28px;
    }
    .heading-area strong {
        font-size: 18px;
    }
    .other-charg {
        font-size: 20px;
    }
    .banner-left h1 {
        font-size: 31px;
        line-height: 35px;
    }
    .banner-left span {
        margin: 0 0 10px;
        font-size: 22px;
    }
    .premium-features-part-inner ul li{
        width: 100%;
        text-align: center;
    }
    .iphone-content-here-inner-rght{
        width: 100%;
    }
    .iphone-content-here-inner-left img{
        margin-bottom: 20px;
    }
    .front-end-right strong {
        font-size: 19px;
    }
    .perfect-script-left img{
        margin-bottom: 20px;
    }
    .demo-links-row .links-column {
        width: 100%;
    }
    .demo-links-row .links-column ul {
        margin: 0;
    }
    .demo-links-row .links-column ul li {
        width: 50%;
        padding: 0 5px;
        margin-bottom: 0;
    }
    .demo-links-row .links-column ul li img {
        max-width: 100%;
    }
    .client-reviews ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .client-reviews ul li a::before {
        width: 35px;
        height: 35px;
        background-size: 29px;
    }
    .client-reviews ul li a {
        padding: 5px;
    }
    .demolinks ul {
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: row;
        gap: 10px;
    }
    .pricing .get-quote {
        font-size: 18px;
        padding: 12px 15px;
        min-width: inherit;
    }
    .client-reviews ul li a {
        border-radius: 12px;
    }
    .client-reviews ul li img {
        border-radius: 5px;
    }
    .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;
}
    .faq_list li strong {
        font-size: 18px;
    }
}

@media screen and (max-width:480px) {
    .client-reviews ul li.morereview a {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width:375px) {
    .main-title {
        font-size: 25px;
    }
}