* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*::after,
*::before{
    box-sizing: border-box;
}
:root{
    --main-color:#06953B;
    --light-color:#EAFFF2;
    --button-color:#052973;
    --hover-color:#053697;
}
@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;
}
a{
    color: #000;
}
[data-toggle="popup"],
.common-button {
    background-color: var(--button-color);
    font-size: 18px;
    text-transform: initial;
    font-weight: 600;
    padding: 13px 30px 14px 30px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
[data-toggle="popup"]:hover,
.common-button:hover {
    background-color: #0868ce;
    color: #fff;
}
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;
}
.play-anim-ico {
    background-image: url(../index-94.html);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 60px;
    position: absolute;
    height: 60px;
    left: 50px;
    bottom: 25px;
    z-index: 111;
    margin-left: -25px;
}
.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(../index-94.html);
}
.play-anim-ico.theme:after {
    box-shadow: 0 0 0 13px #1D59C4;
}
.common-btn {
    background-color: var(--button-color);
    font-size: 18px;
    line-height: 1em;
    text-transform: capitalize;
    font-weight: bold;
    padding: 16px 15px;
    min-height: 56px;
    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;
}
.common-btn img{
    width: 24px;
    height: 24px;
}
.common-btn:hover,
.common-btn:focus {
    background: var(--hover-color);
    color: #fff;
}
.common-btn.bg-white{
    background-color: #fff;
    color: var(--button-color);
}
.common-btn.bg-white:hover{
    background-color: #000;
    color: #fff;
}
.border-btn {
    color: #1D59C4;
    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 #1D59C4;
    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: #1D59C4;
    color: #fff;
    border: 1px solid #1D59C4;
}
.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: var(--main-color);
    font-size: 37.08px;
    font-weight: 700;
    line-height: 1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: -8px;
}
.sub-title {
    color: #000;
    font-size: 18.54px;
    font-weight: 700;
    line-height: 1.2em;
    display: block;
    margin: 5px 0 15px 0;
}
.heading-area.center > *{
    text-align: center;
}
.heading-area.white > *{
    color: #fff;
}
.heading-area.white .main-title> *{
    color: #fff;
}
.heading-area > p{
    margin-top: 5px;
}
.deskop-none{
    display: none;
}
/* ======================================= */
.banner {
    background-color: var(--light-color);
}
.banner-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.banner-left {
    width: 50%;
}
.banner-right {
    width: 48%;
}
.banner h1 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--main-color);
    margin: 0 0 15px 0;
    line-height: 1em;
}
.banner strong {
    font-size: 22.66px;
    color: #000;
    font-weight: bold;
    line-height: 1em;
    display: block;
    margin: 8px 0 10px 0;
    text-transform: capitalize;
}
.banner b{
    color: #000;
    display: block;
    font-size: 18.54px;
    line-height: 1.2em;
    text-transform: capitalize;
}
/* ------------------------------------------------------- */
.wc-section{
    overflow: hidden;
    padding: 4.46% 0;
    position: relative;
    margin: 45px 0 45px 0;
}
.wc-section::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url(../png/welcome.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 50.92%;
    height: 100%;
    border-radius: 0 51.5px 51.5px 0;
    -webkit-border-radius: 0 51.5px 51.5px 0;
    -moz-border-radius: 0 51.5px 51.5px 0;
    -ms-border-radius: 0 51.5px 51.5px 0;
    -o-border-radius: 0 51.5px 51.5px 0;
}
.wc-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wc-left{
    width: 50.92%;
}
.wc-right{
    width: 46%;
}
/* ------------------------------------------------------- */
.ow-section{
    background-color: #f8f8f8;
}
.ow-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.ow-left {
    width: 50%;
}
.ow-right {
    width: 43%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
/* -------------------------------------------------------------------- */
.lf-section{
    padding: 40px 0 40px 0;
}
.lf-latest {
    padding: 0 15px;
    max-width: 1310px;
    margin: 0 auto;
}
.lf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.lf-section ul:first-child {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.lf-section ul:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.lf-section ul li strong {
        color: #000;
        font-family: "Exo 2";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        display: block;
        margin: 0 0 3px 0;
}
.lf-section ul li {
    padding: 10px;
    border: 1px solid #ddd;
}
.lf-section ul li p {
    margin: 0;
}
.lf-section ul li i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    margin: 0 10px 0 0;
}
.lf-section ul li i img {
    width: 46px;
    height: 46px;
}
.lf-section ul li .features_heading {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.lf-section ul li .features_heading i {
    margin: 0 20px 0 0;
}
.lf-section ul li .features_heading strong {
    width: calc(100% - 110px);
    width: -o-calc(100% - 110px);
    width: -moz-calc(100% - 110px);
    width: -webkit-calc(100% - 110px);
}
/* -------------------------------------------------------------------- */
.wl-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.wl-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.wl-right {
    width: 53%;
}
/* ------------------------------------------------------ */
.pd-section{
    
}
.pd-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.pd_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.pd__left {
    width: calc(72% - 15px);
    width: -webkit-calc(72% - 15px);
    width: -moz-calc(72% - 15px);
    width: -ms-calc(72% - 15px);
    width: -o-calc(72% - 15px);
    display: grid;
    grid-template-columns: 1.333fr 2fr;
    justify-content: space-between;
    gap: 15px;
}
.pd__left > :last-child {
    grid-column: 1 / -1; /* Span from the first column to the last column */
  }
.pd__right{
    width: calc(28.9% - 15px);
    width: -webkit-calc(28.9% - 15px);
    width: -moz-calc(28.9% - 15px);
    width: -ms-calc(28.9% - 15px);
    width: -o-calc(28.9% - 15px);
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.pd-img-box .pd__img{
    position: relative;
    overflow: hidden;
    border-radius: 18.11px;
}
.pd-img-box .pd__img > img{
    vertical-align: top;
    border-radius: 18.11px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.pd-img-box .pd__overlay{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(6,149,59,0.44);
    padding: 18px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.pd-img-box .pd__overlay strong{
    display: block;
    width: calc(100% - 60px);
    width: -webkit-calc(100% - 60px);
    width: -moz-calc(100% - 60px);
    width: -ms-calc(100% - 60px);
    width: -o-calc(100% - 60px);
}
.pd-img-box .pd__overlay i{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ------------------------------------------------------ */
.pg-used {
    padding-bottom: 0;
}
.pg-used-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.pg-logos{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 40px 0;
}
.pg-logos li{
    position: relative;
    width: calc(33.33% - 15px);
    width: -webkit-calc(33.33% - 15px);
    width: -moz-calc(33.33% - 15px);
    width: -ms-calc(33.33% - 15px);
    width: -o-calc(33.33% - 15px);
    background-color: transparent;
    min-height: 246.18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.pg-logos li::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    border: 2px solid #CBCBCB;
    bottom: 0;
    top: 0;
    background-color: #fff;
    z-index: -1;
}
.contact-row{
    font-size: 24px;
    background-color: var(--button-color);
    padding: 22px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}
.contact-row  a{
    color: var(--main-color);
}
/* ------------------------------------------------------ */
.cr-inner {
    padding: 0 15px;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.cr-left {
    width: 48.82%;
    position: relative;
}
.cr-left:before {
    content: '';
    width: 50vw;
    position: absolute;
    right: 96px;
    top: -60px;
    background-image: url(../png/bg-pattern1.png);
    z-index: -1;
    bottom: 18px;
}
.client-test {
    position: relative;
    z-index: 0;
}
.client-test:after {
    content: '\e9c2';
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 0;
    font-family: 'icomoon';
    font-size: 41px;
    background-color: #fff;
    border-radius: 50%;
    color: var(--main-color);
    padding: 5px;
    right: 10px;
    top: 10px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}
.cr-right {
    width: 47.875%;
}
.testimonial-row {
    display: flex;
    justify-content: space-between;
}
.small-testimoanial {
    width: 46.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.big-testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* ------------------------------------------------------------------------- */
.fet-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin:0 auto ;
}
.fet-inner ul {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.fet-inner ul li {
    text-align: center;
    width: calc(25% - 20px);
    width: -webkit-calc(25% - 20px);
    width: -moz-calc(25% - 20px);
    width: -ms-calc(25% - 20px);
    width: -o-calc(25% - 20px);
}
.fet-caption{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fet-caption .icon{
    width: 78.28px;
    height: 78.28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#EBEEF4;
    border-radius: 16.48px;
    margin: 0 auto 15px auto;
    font-size: 40px;
    font-weight: 400;
    color: var(--main-color);
}
.fet-caption strong{
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    display: block;
    margin: 0 0 10px 0;
    text-transform: capitalize;
}
.fet-caption p {
    text-align: center;
}
/* ------------------------------------------------------------------------- */
.look-at-demo {
    background-color: var(--button-color);
}
.look-at-demo .gen-btn {
    margin: 0 8px 10px 8px;
}
.look-at-demo-inner {
    margin: 0 auto;
    max-width: 1350px;
    padding: 0 15px;
    text-align: center;
    position: relative;
}
.demo-links-row .links-column ul {
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    display: grid;
    gap: 15px;
    max-width: 1220px;
    margin: 0 auto;
}
.demo-links-row .links-column ul li{
    row-gap: 15px;
}
.demo-links-row .links-column ul li a {
    display: block;
}
.demo-links-row .links-column ul li:nth-last-child(-n+3){
    display: none;
}
/**************************************/
.screens {
    padding: 40px 0 50px 0;
    background-color: #f4f4f4;
}
.screens .gen-btn {
    margin: 5px;
}
.screens-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}
.TABROW {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 15px 0;
    gap: 15px;
}
.TABROW .TAB {
    min-width: 197px;
    height: auto;
    padding: 15px 15px;
    box-sizing: border-box;
    font-weight: 600;
    text-transform: uppercase;
    color: #606060;
    letter-spacing: 1px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 0 0 1px #d8d8d8 inset;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    font-size: 16px;
    background-color: #fff;
}
.TABROW .TAB.active {
    background-color: #052973;
    color: #fff;
    box-shadow: none;
}
.screens ul {
    display: none;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    row-gap: 20px;
}
.screens ul.active {
    display: flex;
}
.screens ul li {
    width: 25%;
    padding: 0 10px;
    box-sizing: border-box;
}
.screens ul li img {
    max-width: 100%;
}
.screens ul li img {
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 8px 0 rgba(0,0,0,0.3);
    -ms-box-shadow: 0 0 8px 0 rgba(0,0,0,0.3);
    -o-box-shadow: 0 0 8px 0 rgba(0,0,0,0.3);
}
.screens a.button-btn {
    background-color: #f3aa00;
    font-size: 25px;
    color: #fff;
    padding: 14px 45px 14px 45px;
    min-width: 31.2%;
    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;
    margin: 30px auto 0;
    display: table;
    width: auto;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.screens a.button-btn:hover {
    background-color: #b78000;
}
/**************************************/
.inq_form {
    width: 100%;
    display: block;
    position: relative;
    padding: 40px 0;
    z-index: 0;
    float: left;
    background-color: #f8f8f8;
  }
  .inq_form form input[type=submit] {
    background: var(--button-color);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 14px 20px 14px 20px;
    width: auto;
    text-transform: uppercase;
    min-height: 45px;
    line-height: 30px;
    outline: none;
    border: none;
    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;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .inq_form form input:hover[type=submit] {
    background-color: var(--hover-color);
  }
  .inq_form .head-style {
        color: var(--main-color);
        font-size: 37.08px;
        font-weight: 700;
        line-height: 47.4px;
        font-weight: bold;
        text-transform: uppercase;
        margin-top: -8px;
}
.inq_form-inner {
    max-width: 1340px;
    padding: 40px;
    margin: 0 auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #D3D3D3;
    background-color: #fff;
    border-radius: 10px;
  }
  .inq_form .box-shadow {
    width: 100%;
  }
  .inq_form .box-shadow ul {
    margin: 0px;
    padding: 0px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    row-gap: 25px;
  }
  .inq_form .box-shadow ul li {
    width: 55%;
  }
  .inq_form .box-shadow ul li:first-child{
    width: 41%;
  }
.enquire_form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .inq_form-left,
  .inq_form-right {
    width: calc(100% - 0px);
    width: -o-calc(100% - 0px);
    width: -ms-calc(100% - 0px);
    width: -moz-calc(100% - 0px);
    width: -webkit-calc(100% - 0px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .inq_form .input-row-flow {
    margin-bottom: 16px;
    width: calc(50% - 15px);
    width: -o-calc(50% - 15px);
    width: -ms-calc(50% - 15px);
    width: -moz-calc(50% - 15px);
    width: -webkit-calc(50% - 15px);
  }
  .inq_form .input-row-flow:last-child {
    width: calc(100% - 0px);
    width: -o-calc(100% - 0px);
    width: -ms-calc(100% - 0px);
    width: -moz-calc(100% - 0px);
    width: -webkit-calc(100% - 0px);
  }
  .inq_form .input-row-flow .g-recaptcha {
    margin-top: 20px;
  }
  .inq_form .input-row-flow .custom-input-box {
    margin: 0px;
    border: 0;
    border-bottom: 1px solid #8D8D8D;
    background: #FFF;
    font-size: 16px;
    color: #000;
    padding: 0 15px 20px 0px;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    border-radius: 0;
  }
  .inq_form .input-row-flow .custom-input-box::placeholder{
    color: #000;
  }
  .inq_form .text-center {
    text-align: center;
  }
  .custom-input-button {
    background-color: #003a57;
    position: relative;
    margin: 0 auto;
    padding: 8px 20px 10px;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    border: none;
  }
  .custom-input-button:hover {
    background-color: var(--hover-color);
  }
  .inq_form .video-block {
    max-width: 100%;
    position: relative;
    width: 100%;
    box-shadow: none;
    min-height: 100%;
    text-align: center;
  }
  .inq_form .button-btn {
    width: 100%;
    justify-content:flex-end;
    display: flex;
  }
/* ----------------------------------------------------- */
.faq{
    padding: 40px 0;
    background-color: #f8f8f8;
}
.faq__inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.faq_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.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;
}
.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;
    border-radius: 12px 12px 0 0;
    background: var(--light-color);
    -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;
}
.faq_list li:last-child{
    grid-column: span 2;
}
.__list{
    padding-left: 30px;
}
.__list span{
    display: block;
    font-size: 16px;
    color: #000;
    text-align: justify;
    line-height: normal;
    position: relative;
    margin: 0 0 6px 0;
}
.__list span::before{
    content: '';
    width: 100%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 2px;
}
/* ----------------------------------------------------- */
.services-section {
    background-color: #F7F7F7;
}
.services-section-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}
.services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.service-box {
    display: inline-block;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}
.service-icon {
    font-size: 40px;
    color: var(--main-color);
    margin-bottom: 10px;
}
.service-title {
    font-size: 20px;
    margin-bottom: 8px;
    color: #000;
    font-weight: bold;
}
.service-description {
    font-size: 16px;
    color: #000;
}
/* ----------------------------------------------------- */
.features-section {
    padding: 40px 0;
    text-align: center;
}
.features-section-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-box {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}
.feature-icon {
    font-size: 45px;
    margin-bottom: 10px;
    color: #000;
}
.feature-title {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000;
}
.feature-box {
    text-align: center;
}
/* ----------------------------------------------------- */
  @media (max-width:1400px) {
    .inq_form-inner{
        max-width: calc(100% - 15px);
        max-width: -webkit-calc(100% - 15px);
        max-width: -moz-calc(100% - 15px);
        max-width: -ms-calc(100% - 15px);
        max-width: -o-calc(100% - 15px);
    }
    .banner h1 {
        font-size: 40px;
        margin: 0 0 10px 0;
    }
    .banner strong {
        font-size: 18.66px;
        margin: 0 0 8px 0;
    }
    p {
        font-size: 15px;
        line-height: 21px;
    }
    .cr-left:before {
        top: -58px;
    }
    .demo-links-row .links-column ul{
        max-width: 950px;
    }
    .pg-logos li {
        min-height: 186.18px;
    }
    .pg-logos img{
        max-width: 55%;
    }
  }
  @media (max-width:1199px) {
    .pd__left {
        width: 100%;
    }
    .pd__right{
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .banner h1 {
        font-size: 45px;
    }
  }
@media (max-width:991px) {
    .main-title{
        font-size: 35px;
    }
    .banner-inner{
        flex-direction: column-reverse;
    }
    .banner-right{
        width: 100%;
    }
    .banner-left{
        width: 100%;
        margin: 0 0 25px 0;
    }
    .deskop-none{
        display: block;
    }
    .wc-section{
        padding: 45px 0;
        margin: 0;
    }
    .wc-section::before{
        display: none;
    }
    .wc-left{
        width: 100%;
        margin: 0 0 25px 0;
    }
    .wc-right{
        width: 100%;
    }
    .lf-row {
        grid-template-columns: 1fr;
    }
    .ow-inner{
        flex-direction: column-reverse;
    }
    .ow-left{
        width: 100%;
    }
    .ow-right{
        width: 100%;
        text-align: center;
        align-items: center;
        margin: 0 0 25px 0;
    }
    .wl-left{
        width: 100%;
        align-items: center;
        margin: 0 0 25px 0;
    }
    .wl-right{
        width: 100%;
    }
    .fet-inner ul li{
        width: calc(50% - 20px);
        width: -webkit-calc(50% - 20px);
        width: -moz-calc(50% - 20px);
        width: -ms-calc(50% - 20px);
        width: -o-calc(50% - 20px);
    }
    .cr-left{
        width: 100%;
    }
    .cr-right{
        width: 100%;
        margin: 0 0 25px 0;
    }
    .cr-inner{
        flex-direction: column-reverse;
    }
    .cr-left:before{
        display: none;
    }
    .inq_form-inner{
        padding: 20px;
    }
    .inq_form .box-shadow ul li:first-child,
    .inq_form .box-shadow ul li{
        width: 100%;
        margin: 0 0 25px 0;
    }
    .inq_form .box-shadow ul li:last-child{
        margin-bottom: 0;
    }
    .inq_form .head-style {
        font-size: 35px;
    }
    .services-row,
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width:768px) {
    .screens ul li{
        width: 50%;
    }
}
@media (max-width:630px) {
    main > *{
        padding: 40px 0;
    }
    .banner h1 {
        font-size: 35px;
    }
    .banner strong {
        font-size: 18.66px;
    }
    .btn__div {
        grid-gap: 15px;
    }
    .common-btn {
        padding: 14px 15px;
        min-height: 50px;
    }
    .main-title {
        font-size: 28px;
        line-height: 1em;
        margin-top: -4px;
    }
    .pd__left {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .pd__right {
        grid-template-columns: 1fr;
    }
    .demo-links-row .links-column ul {
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: row;
        gap: 10px;
    }
    .pg-logos li{
        width: 100%;
    }
    .lf-section ul:last-child{
        grid-template-columns: 1fr;
    }
    .fet-inner ul li{
        width: 100%;
    }
    .screens ul li{
        width: 100%;
        text-align: center;
    }
    .pd-img-box .pd__img > img{
        min-height: 272px;
    }
    .small-testimoanial {
        width: 48.5%;
    }
    .inq_form .input-row-flow{
        width: 100%;
    }
    .inq_form .head-style {
        font-size: 28px;
    }
    .inq_form form input[type=submit] {
        font-size: 17px;
        padding: 12px 15px;
        line-height: 25px;
    }
    .contact-row {
        font-size: 20px;
        padding: 18px;
    }
    .lf-section ul li strong {
        font-size: 18px;
    }
    .faq_list {
        grid-template-columns: 1fr;
    }
    .faq_list li:last-child{
        grid-column: auto;
    }
    .services-row,
    .features-grid {
        grid-template-columns: 100%;
    }
}
@media (max-width:480px) {
    .pd-img-box .pd__overlay {
        padding: 10px 15px;
        font-size: 17px;
    }
    .pd-img-box .pd__overlay i {
        width: 25px;
        height: 25px;
    }
}