:root {
	--theme:#0b998b;
	--theme-dark:#056d63;
	--theme-light:#f2fffd;
}
*{
    font-family: 'poppins';
}
img{
    max-width: 100%;
}
.heading-style{
    padding-right: 0;
}
.heading-area h2,
.heading-area h3,
.heading-area h4,
.scripting .heading-area h4 {
    padding-bottom: 8px;
    margin-bottom: 10px;
    line-height: 1.2em;
}
.heading-area h3::after,
.heading-area h2::after,
.heading-area h4::after {
    background-color: var(--theme);
}
.heading-area strong {
    display: block;
    color: #000;
    line-height: 1.2em;
}
a{
    color: #000;
}
p{
    font-size: 15px;
    color: #000;
    line-height: 23px;
    margin: 0 0 12px 0;
    font-weight: 400;
    text-align: justify;
}
p:last-child{
    margin-bottom: 0;
}
.btn {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    background-color: var(--theme);
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    margin-right: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.5 ease-in-out;
    -webkit-transition: all 0.5 ease-in-out;
    -moz-transition: all 0.5 ease-in-out;
    -ms-transition: all 0.5 ease-in-out;
    -o-transition: all 0.5 ease-in-out;
    margin: 10px 0 0 0;
}
.btn:hover{
    background-color: var(--theme-dark);
}
.heading-area.white > *{
    color: #fff;
}
.common-button {
    background-color: var(--theme);
}
.common-button:hover {
    background-color: var(--theme-dark);
}
/* -------------------------------- */
.banner .heading-area h2,
.banner .heading-area .sub_title,
.testimonials-description h4 {
    color: var(--theme);
}
.banner .heading-area h2::after,
.banner .heading-area .sub_title::after,
.testimonials-description h4::after {
    background: var(--theme);
}
.testimonials-card {
    border: solid 2px var(--theme);
}
.testimonials-description .more-videos,
.testimonials-card:hover {
    background: var(--theme);
    color: #fff;
}
.accordion-panel .accordion:hover,
.accordion-panel .active {
    background-color: var(--theme);
}
.accordion-panel .panel {
    border-left: 10px solid var(--theme);
}
.testimonials-card:hover .testimonials-description .more-videos {
    background: #fff;
    color: #000;
}
.testimonials-description .more-videos span img {
    filter: invert(1);
    -webkit-filter: invert(1);
}
.testimonials-card:hover .more-videos span img {
    filter: invert(0);
    -webkit-filter: invert(0);
}
/****************************************/
/****************************************/
.banner_section{
    padding: 40px 0;
    background-color: var(--theme-light);
}
.banner_inner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    align-items: center;
}
.banner_section .banner_right {
    width: 370px;
    position: relative;
    text-align: left;
}
.banner_left{
    width: calc(100% - 390px);
    width: -o-calc(100% - 390px);
    width: -ms-calc(100% - 390px);
    width: -moz-calc(100% - 390px);
    width: -webkit-calc(100% - 390px);
}
.banner_section .heading-area h1 {
    font-size: 50px;
    line-height: 40px;
    font-weight: 600;
    font-family: 'poppins';
    display: block;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}
.banner_section .heading-area .sub_title {
    font-size: 29px;
    line-height: 1em;
    color: var(--theme);
    font-weight: 600;
    position: relative;
    display: block;
    margin-top: 10px;
}

/************************************/
.inside-cat {
    padding: 50px 0px;
    position: relative;
    z-index: 1;
}
.cat-inner {
    display: inline-block;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
    padding: 0;
    border: solid 2px #fff;
}
.inside-cat .heading-area h3,
.inside-cat .heading-area h2 {
    margin-bottom: 21px;
}
.inside-cat-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}
.inside-cat ul li {
    width: calc(25% - 30px);
    width: -o-calc(25% - 30px);
    width: -ms-calc(25% - 30px);
    width: -moz-calc(25% - 30px);
    width: -webkit-calc(25% - 30px);
    text-align: center;
    position: relative;
}
.inside-cat ul li strong {
    display: block;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 20px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    background: #303030;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}
.inside-cat ul li strong:hover {
    position: relative;
    background: var(--theme);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.inside-cat ul li img {
    max-width: 100%;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    vertical-align: top;
}
.inside-cat ul li img:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.inside-cat ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    row-gap: 30px;
}
/**************************************/
.order .heading-area strong {
    display: block;
    font-weight: 500;
}
.order .heading-area h3 span {
    display: block;
    font-size: 28px;
    margin: 10px 0 10px 0;
}
.order .heading-area h3::before {
    display: none;
}
.order-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.order ul li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    width: 90px;
    height: 90px;
    font-size: 57px;
    color: #fff;
    border-radius: 5px;
}
.order ul li:nth-child(odd) i {
    background-color: var(--theme);
}
.order ul li:hover i img {
    opacity: 1;
}
.order ul li strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 20px 0 10px;
    line-height: 1em;
}
.order ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.order ul li {
    padding: 0;
    box-sizing: border-box;
    border-radius: 12px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.order {
    padding: 40px 0;
    position: relative;
    z-index: 1;
    background-color: var(--theme-light);

}
/*******************************************/
.smart_features {
    padding: 40px 0;
    background-color: var(--theme-light);
}
.smart_features-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 1310px;
    padding: 0 15px;
}
.smart_features ul {
    display: grid;
    grid-template-columns: repeat(3,  1fr);
    gap: 20px;
    width: 100%;
}
.smart_features ul  li{
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}
.fet-caption {
    padding: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
    border-radius: 12PX;
    min-height: calc(100% - 0px);
    min-height: -o-calc(100% - 0px);
    min-height: -moz-calc(100% - 0px);
    min-height: -webkit-calc(100% - 0px);
    text-align: center;
    background: #fff
}
.smart_features .fet-caption ul {
    display: block;
    width: 100%;
    list-style: disc;
    padding: 0px 0px 0px 10px;
    margin: 0;
}
.smart_features .fet-caption ul li {
    width: 100%;
    padding: 0;
    margin: 0px 0px 5px;
    font-size: 13px;
    color: #777;
    line-height: 17px;
    word-break: break-all;
}
.smart_features ul li i {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    position: relative;
    background: #fff;
    font-size: 40px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #222222 inset;
    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;
}
.smart_features ul li:hover i {
    box-shadow: 0 0 0 2px var(--theme) inset;
    background-color: var(--theme);
    color: #fff;
}
.smart_features ul li .sep {
    position: absolute;
    right: -18px;
    bottom: -70px;
}
.smart_features ul li .title-heading {
    display: block;
    font-size: 18px;
    line-height: normal;
    color: #000;
    margin: 10px 0;
    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;
}
.smart_features ul li p {
    text-align: center;
}
/**************************************/
/**************************************/
.other-products {
    padding: 40px 0;
    background-color: var(--theme-light);
}
.other-products-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}
.other-products ul {
    display: grid;
    gap:20px;
    grid-template-columns: 1fr 1fr;
}
.other-products ul li {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    overflow: hidden;
    background-color: #fff;
}
.other-products ul li strong {
    font-size: 18px;
    padding: 15px;
    display: block;
    font-weight: 600;
    color: #000;
    text-align: center;
}
.other-products ul li img {
    vertical-align: top;
}
/*************************************/
/**************************************/
.faq{
    padding: 40px 0;
}
.faq__inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.faq_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.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:last-child {
    grid-column: span 2;
}
.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: #eff2ff;
    -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;
    font-weight: 600;
}
.faq_list li p{
    padding: 0 20px ;
    color: #000;
    text-align: justify;
    line-height: 24px;
    font-weight: 400;
    font-size: 15px;
}
.faq_list li p:last-child{
    margin-bottom: 0;
}
.__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;
}
/**************************************/
.screens {
    padding: 40px 0;
}
.screens .heading-area {
    text-align: center;
}
.screens-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}
.screens .heading-area h3 {
    padding-bottom: 10px;
    margin-bottom: 18px;
}
.screens .heading-area h3::after {
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.TABROW {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin:15px 0 20px 0;
    gap: 15px;
}
.TABROW .TAB {
    min-width: 197px;
    height: 50px;
    padding: 15px 15px;
    box-sizing: border-box;
    font-weight: 600;
    text-transform: uppercase;
    color: #606060;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: 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;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: #fff;
}
.TABROW .TAB.active {
    background-color: var(--theme);
    color: #fff;
    box-shadow: none;
}
.screens ul {
    display: none;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.screens ul.active {
    display: grid;
}
.screens ul li {
    box-sizing: border-box;
}
.screens ul li img {
    max-width: 100%;
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.3);
}
.screens .view-app-flow {
    font-size: 22px;
    background-color: var(--theme);
    font-weight: 600;
    color: #ffffff;
    padding: 14px 40px 17px 40px;
    min-width: 264px;
    box-sizing: border-box;
    display: inline-block;
    border-radius: 30px;
    margin-top: 35px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.screens .view-app-flow:hover {
    background-color: var(--theme-dark);
}
.screens a.button-btn {
  background-color: #50aad9;
  font-size: 31px;
  color: #fff;
  padding: 20px 45px;
  border-radius: 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;
}
.screens a.button-btn:hover {
    background-color: #1c5879;
}
/**************************************/
.demolinks {
    padding: 40px 0;
    background-color: var(--theme);
}
.demolinks .heading-area h3::after {
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    background-color: #fff;
}

ul.demolinks-items {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    gap: 10px;
    max-width: 1200px;
    margin: auto;
}
ul.demolinks-items li a { display: block; position: relative; }
ul.demolinks-items li a::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 32.76%
}
ul.demolinks-items li a img {
    max-width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.demolinks p:last-child {
    margin-bottom: 0;
}
.demolinks-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}
.demolinks .heading-area h3 {
    color: #fff;
    margin-bottom: 10px;
}
.demolinks .heading-area {
    margin-bottom: 15px;
}

ul.gen-listing li{
    font-size: 16px;
    line-height: 23px;
    color: #000;
    line-height: 23px;
    background-image: none;
    position: relative;
}
ul.gen-listing li:last-child{
    margin-bottom: 0;
}
ul.gen-listing li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #37c95e;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}
/**************************************/
@media screen and (max-width:1024px) {
    .smart_features ul {
        grid-template-columns: repeat(3,  1fr);
    }
    .delivery-types ul li {
        width: calc(33.33% - 20px);
        width: -o-calc(33.33% - 20px);
        width: -ms-calc(33.33% - 20px);
        width: -moz-calc(33.33% - 20px);
        width: -webkit-calc(33.33% - 20px);
        margin-bottom: 20px;
    }
    ul.fetlist {
        justify-content: center;
    }
    ul.fetlist li {
        width: calc(50% - 28px);
        width: -o-calc(50% - 28px);
        width: -ms-calc(50% - 28px);
        width: -moz-calc(50% - 28px);
        width: -webkit-calc(50% - 28px);
        margin: 0 14px 150px 14px;
    }
    .inside-cat ul li {
        width: calc(33.33% - 10px);
        width: -o-calc(33.33% - 10px);
        width: -ms-calc(33.33% - 10px);
        width: -moz-calc(33.33% - 10px);
        width: -webkit-calc(33.33% - 10px);
    }
    ul.fetlist li:last-child {
        margin-bottom: 0;
    }
}
@media screen and (max-width:991px) {
    /**********************************************/
    .banner_section .heading-area h1 {
        font-size: 45px;
    }
    .banner_section .banner_right {
        width: 300px;
    }
    .banner_left {
        width: calc(100% - 330px);
        width: -o-calc(100% - 330px);
        width: -ms-calc(100% - 330px);
        width: -moz-calc(100% - 330px);
        width: -webkit-calc(100% - 330px);
    }
    .banner_section .heading-area .sub_title {
        font-size: 25px;
    }
    .smart_features ul {
        grid-template-columns: repeat(2,  1fr);
    }
    .smart_features ul li .sep {
        display: none;
    }
    .smart_features ul {
        margin-top: 36px;
    }
    /**************************************/
    .order ul {
        grid-template-columns: 1fr 1fr;
    }
    .other-products-inner {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }
    .faq_list {
        grid-template-columns: 100%;
    }
    .faq_list li:last-child {
        grid-column: span 1;
    }
}
@media screen and (max-width:767px) {
    /******************************/
    .banner_section .banner_right{
        margin: 0 0 30px 0;
        text-align: center;
        width: 100%;
    }
    .banner_left{
        width: 100%;
    }
    .banner_section .heading-area h1 {
        font-size: 35px;
    }
    .banner_section .heading-area .sub_title {
        font-size: 21px;
    }
    .smart_features ul {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width:630px) {
    .screens ul {
        grid-template-columns: 1fr;
    }
    .screens ul li {
        text-align: center;
    }
    .order ul {
        grid-template-columns: 1fr;
    }
    .inside-cat ul li strong {
        font-size: 15px;
    }
    .demolinks ul {
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: row;
        gap: 10px;
    }
}
@media screen and (max-width:480px) {
    .other-products ul {
        grid-template-columns: 1fr;
    }
}