:root {
    --theme: #00A9AA;
    --theme-dark: #009191;
    --theme-light: #eafffb;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo 2';
}
img {
    max-width: 100%;
}
p {
    font-size: 16px;
    line-height: 23px;
    margin: 0 0 10px 0;
    color: #000;
    text-align: justify;
}
p:last-child {
    margin-bottom: 0;
}
a{
    color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li {
    font-family: 'Exo 2';
    margin: 0;
    padding: 0;
}
li,
ul,
ol {
    display: block;
    list-style: none;
}
main {
    max-width: 1920px;
    margin: 80px auto 0 auto;
    border-left: 1px soldi #f8f8f8;
    border-right: 1px soldi #f8f8f8;
}
main>* {
    padding: 40px 0;
}
.heading-area {
    width: 100%;
    margin: 0 0 10px 0;
}
.heading-area.center>* {
    text-align: center;
}
.heading-area>.main-title {
    color: #000;
    font-size: 38px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    margin-top: -8px;
}
.heading-area.white > *{
    color: #fff;
}
.other-charg {
    color: var(--theme);
    margin: 5px 0 0 0;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 24px;
    font-weight: bold;
    line-height: 1em;
}
.heading-area p {
    margin: 5px 0 0 0;
}
.btn__div {
    width: 100%;
    flex-wrap: wrap;
    grid-gap: 15px;
    display: flex;
}
.common-btn {
    font-size: 18px;
    background-color: var(--theme);
    font-weight: 600;
    color: #ffffff;
    padding: 14px 20px 14px 20px;
    line-height: normal;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-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-btn:hover,
.common-btn:focus {
    background-color: var(--theme-dark);
    color: #fff;
}
/* =============================== */
.banner {
    background: #f8f8f8;
    padding: 0;
    overflow: hidden;
}
.banner-inner {
    margin: 0 auto;
    max-width: 1310px;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.banner-right {
    width: 42%;
}
.banner-right h1 {
    margin: 0 0 5px;
    font-size: 47px;
    text-transform: uppercase;
    color: #000;
    line-height: 1em;
    font-weight: bold;
}
.banner-right b {
    margin: 0 0 15px;
    display: block;
    font-size: 25px;
    color: var(--theme);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
}
.banner-left{
    width: 52%;
    position: relative;
    z-index: 1;
    padding-top: 40px;
}
.banner-left img {
    vertical-align: top;
    max-width: 39vw;
}
.banner-left::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme);
    clip-path: polygon(37.5% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}
.banner-left::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme);
    z-index: -1;
}
/* ==================================== */
.features-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}
.features ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.features ul li {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.features ul li i {
    width: auto;
    height: auto;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 50px;
    color: #000;
}
.features ul li:hover strong {
    color: var(--theme);
}
/* ==================================== */
.perfect-script {
    background: #f8f8f8;
}
.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: 61%;
}
.perfect-script-left ul li {
    padding: 0 0 0 20px;
    font-size: 16px;
    color: #000;
    line-height: 23px;
    position: relative;
    margin: 0 0 5px;
}
.perfect-script-left ul li:last-child{
    margin-bottom: 0;
}
.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: 36%;
}
/******************/
.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 25px;
    font-size: 16px;
    color: #000;
    line-height: 23px;
    position: relative;
    text-align: justify;
}
.green-part-inner ul li:last-child {
    margin-bottom: 0;
}
.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;
}
/* ----------------------------------------------------- */
.digitalizing-inner {
    margin: 0 auto;
    padding: 0px 15px;
    max-width: 1310px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.digitalizing_left {
    width: 65%;
}
.digitalizing_right {
    width: 30%;
}
/* -------------------------------------- */
.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;
    align-items: center;
}
.front-end-left {
    width: 47%;
}
.front-end-right {
    width: 51%;
}
.front-end-right strong {
    margin: 0 0 10px;
    font-size: 24px;
    color: #000;
    display: block;
    font-weight: bold;
    text-transform: none;
}
/* -------------------------------------- */
.demolinks {
    background-color: var(--theme);
}
.demolinks-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}
.demolinks ul {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    gap: 10px;
    max-width: 890px;
    margin: 0 auto;
}
.demolinks ul li a {
    display: block;
    position: relative;
}
.demolinks ul li a img {
  position: absolute;
  left: 0;
  top: 0;
}
.demolinks ul li a::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 32.76%;
}
/* -------------------------------------- */
  .reviews-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .reviews .heading-area {
    width: 100%;
  }
  .all-reviews {
    padding: 20px 50px;
    background-color: var(--theme);
    color: #fff;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    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: 50px;
    font-size: 30px;
    font-weight: 600;
  }
  .all-reviews:hover {
    background-color: #1c5879;
    color: #fff;
  }
  ul.reviews-list {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
  }
  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;
    overflow: hidden;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    width: 100%;
  }
  ul.reviews-list li:not(:last-child) a:before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 71%;
  }
  ul.reviews-list li a img {
    max-width: 100%;
    vertical-align: top;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  ul.reviews-list li a::after {
    content: '\e9c2';
    font-family: 'icomoon';
    position: absolute;
    right: 10px;
    top: 10px;
    width: 46px;
    height: 46px;
    padding: 3px;
    font-size: 40px;
    line-height: 40px;
    background-color: var(--theme) !important;
    color: #fff;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 40%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  ul.reviews-list li.morereview a {
    min-height: 100%;
    font-size: 28px;
    font-weight: bold;
    line-height: 34px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--theme);
    color: #fff;
    padding: 15px;
    text-align: center;
  }
  ul.reviews-list li.morereview a:hover {
    background-color: var(--theme-dark);
  }
  ul.reviews-list li.morereview a:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: #fff;
    border-radius: 20px 0 0 0;
    -webkit-border-radius: 20px 0 0 0;
    -moz-border-radius: 20px 0 0 0;
    -ms-border-radius: 20px 0 0 0;
    -o-border-radius: 20px 0 0 0;
  }
  ul.reviews-list li.morereview a:after {
    content: '';
    position: absolute;
    top: auto;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: #fff;
    background-image: none;
    background-color: transparent !important;
    box-shadow: none;
    border-radius: 0 0 20px 0;
    -webkit-border-radius: 0 0 20px 0;
    -moz-border-radius: 0 0 20px 0;
    -ms-border-radius: 0 0 20px 0;
    -o-border-radius: 0 0 20px 0;
  }
/* -------------------------------------- */
/* ---------------Responsive CSS ----------------- */
@media (max-width:1440px) {
    .banner-left img {
        max-width: 100%;
    }
}
@media (max-width:1199px) {
    .banner-right h1 {
        font-size: 40px;
    }
    .banner-right b {
        font-size: 22px;
    }
    .heading-area>.main-title {
        font-size: 35px;
        line-height: 1em;
    }
    .other-charg {
        font-size: 22px;
    }
    ul.reviews-list li.morereview a {
        font-size: 2.5vw;
        line-height: 3.2vw;
    }
}
@media (max-width:991px) {
    .banner{
        padding-bottom: 40px;
    }
    .banner-right {
        width: 100%;
    }
    .banner-left{
        width: 100%;
    }
    .banner-inner{
        flex-direction: column-reverse;
        gap: 25px;
    }
    .features ul {
        grid-template-columns: repeat(3, 1fr);
    }
    .perfect-script-left{
        width: 100%;
    }
    .perfect-script-right{
        width: 100%;
    }
    .perfect-script-inner{
        flex-direction: column;
        gap: 20px;
    }
    .digitalizing-inner{
        flex-direction: column-reverse;
        row-gap: 25px;
    }
    .digitalizing_left{
        width: 100%;
    }
    .digitalizing_right{
        width: 100%;
    }
    .front-end-left{
        width: 100%;
        margin: 0 0 25px;
    }
    .front-end-right{
        width: 100%;
    }
    ul.reviews-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width:630px) {
    .banner{
        padding: 40px 0;
    }
    .banner-right h1 {
        font-size: 28px;
    }
    .banner-right b {
        font-size: 16px;
        margin: 0 0 15px;
    }
    .heading-area>.main-title {
        font-size: 26px;
    }
    .other-charg {
        font-size: 17px;
    }
    .features ul {
        grid-template-columns: 1fr;
    }
    .demolinks ul {
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: row;
        gap: 10px;
    }
    .banner-right img{
        border-bottom: 1px solid #ccc;
    }
    ul.reviews-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    ul.reviews-list li.morereview a {
        font-size: 4.5vw;
        line-height: 5.2vw;
    }
    ul.reviews-list li a::after {
        width: 36px;
        height: 36px;
        font-size: 30px;
        line-height: 30px;
    }
    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;
    }
    .front-end-left {
        margin: 0 0 15px;
    }
    .perfect-script-left ul li {
        font-size: 16px;
        line-height: 20px;
    }
}