h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #173050;
}

.ml-auto{
    margin-left: auto;
}

.mr-auto{
    margin-right: auto;
}

.mt-100{
    margin-top: 100px;
}

.pb-100{
    padding-bottom: 100px;
}

.flex-wrap,
.d-flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.flex-wrap{
    flex-wrap: wrap;
}

.flex-wrap li{
    width: 50%;
}

.col-flex{
    display: flex;
    flex-wrap: wrap;
}

.col-flex .feature2{
    width: 100%;
}

.align-evenly{
    display: flex;
    flex-wrap: wrap;
    align-content: space-evenly;
    height: 100%;
    justify-content: center;
}

p{
    color: #173050;
    letter-spacing: 0 !important;
}

.bg_gradient{    
    background: #ebf9f2;
    background: -moz-linear-gradient(top, #ebf9f2 0%, #fffffe 100%);
    background: -webkit-linear-gradient(top, #ebf9f2 0%,#fffffe 100%);
    background: linear-gradient(to bottom, #ebf9f2 0%,#fffffe 100%);
}

.bg_gray{
    background: #f7f7f7;
}

.section-title h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 42px;
}

.section-title.mb-40 {
    margin-bottom: 40px;
}

.section-title h2 span{
    color: #37a000;
    font-weight: 900;
}

.section-title p{
    color: #173050;
}

.demo_btn {
    padding: 12px 30px;
    font-size: 16px;
    line-height: 25px;
    color: #1b2838;
    border: 2px solid #1b2838;
    font-weight: 600;
    min-width: 150px;
}

.buy_btn {
    margin-left: 5px;
    padding: 12px 30px;
    font-size: 16px;
    line-height: 25px;
    background-color: #37a000;
    border: 2px solid #37a000;
    color: #fff;
}

.demo_btn:hover,
.demo_btn:focus {
    background-color: #1b2838;
    color: #fff;
}

.buy_btn:focus,
.buy_btn:hover {
    background-color: transparent;
    color: #1b2838;
}

/*===========================
    Banner Css
==============================*/

.banner_img_part {
    position: relative;
    transition-duration: 0.4s;
}

.banner_img_part .btn_area {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition-duration: 0.4s;
}

.banner_inner {
    text-align: center;
}

.banner .banner_inner h1 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    color: #173050;
    margin: 0;
}

.banner .banner_inner h1 span{
    color: #37a000;
}

.banner .banner_inner p {
    font-size: 19px;
    line-height: 30px;
    margin: 30px 0;
    color: #173050;
}

.banner .vdo-link{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #37a000;
    font-size: 40px;
    background: #ffffff;
    width: 100px;
    line-height: 100px;
    border-radius: 50%;
    transition-duration: 0.4s;
}

.banner .vdo-link:focus,
.banner .vdo-link:hover{
    background: #37a000;
    color: #ffffff;
}
.banner .vdo-link i:after {
    width: 150%;
    height: 150%;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    box-shadow: 0 1px 15px 1px rgb(255 255 255 / 50%);
    content: "";
    -webkit-animation: pulse 2s infinite;
    transform: scale(8);
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1)
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2)
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1)
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2)
    }
}

/*===============================
    End Banner Css
=================================*/

/*===============================
    Apps Feature Css
=================================*/

.app_int_area h2{
    font-size: 35px;
    font-weight: 900;
    line-height: 42px;
}

.app_int_area h2 span{
    color: #00b838;
}

.apps_feature_inner {
    text-align: center;
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.desktop_ver {
    background: #e6f3ee;
    padding: 90px 0;
}

.features-box .addon,
.apps_feature_inner .addon {
    background: #00b838;
    padding: 5px 25px;
    width: 200px;
    position: absolute;
    top: 16px;
    left: -70px;
    text-align: center;
    line-height: 22px;
    letter-spacing: 0.01em;
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.apps_feature_inner img {
    max-width: 180px;
    margin: 30px auto;
}

.apps_feature_inner p {
    text-align: left;
    padding: 0 10px;
}

.apps_feature_inner ul {
    list-style: none;
    text-align: left;
    line-height: 23px;
    padding-left: 25px;
    margin-bottom: 25px;
    color: #707070;
}

.apps_feature_inner ul li i{
    color: #00b838;
}

.apps_feature_inner .demo_btn {
    padding: 10px 20px;
    width: 100%;
}

/*=================================
    End Apps Features
==================================*/

.navbar.bootsnav.no-background.navbar-ico {
    box-shadow: none;
    background-color: #02557d;
    border-bottom: 1px solid #0b5e86;
}
canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tab_header{
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 800;
}

.product{
    background-color: #fff;
    padding: 20px;
    -webkit-box-shadow: 1px 2px 14px 0px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 1px 2px 14px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 1px 2px 14px 0px rgba(0, 0, 0, 0.12);
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 0;
}

.demo_sec .product-img{
    overflow: visible;
}

.demo_sec .product-img:hover img {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}

.soft_info .details-text h2{
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin-bottom: 30px;
    font-size: 35px;
}

.soft_info .soft-details h2{
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin-bottom: 30px;
    font-size: 35px;
}

.soft-details ul li {
    color: #707070;
    line-height: 25px;
    font-size: 16px;
}

.soft-details ul li i{
    margin-right: 12px;
    color: #00b838;
}

.soft_info .soft-details h2 span,
.banner .banner_inner h1 span,
.soft_info .details-text h2 span{
    font-weight: 900;
    letter-spacing: 0.5px;
}

.soft_info .details-text p{
    margin-bottom: 12px;
}
.testimonial_part.dark .client_comment,
.testimonial_part.dark .client-name,
.testimonial_part.dark .client-place,
.testimonial_part.dark .quotation-icon{
/*    color: #fff;*/
}
.purpose_area p {
    font-size: 18px;
    margin: 20px 0;
}

.check_list li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.check_list.choose_list li{
    margin-bottom: 10px;
}
.check_list .check_icon2{
    color: #39ab76;
    background: rgb(57 171 118 / 20%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    font-size: 11px;
    line-height: 22px;
    margin-top: 3px;
}
.check_list span{
    margin-left: 12px;
    font-size: 17px;
    flex: 1;
    color: #173050;
}
.purpose_area .buy_btn {
    margin-left: 0;
    margin-top: 15px;
}

.testimonial_slider .owl-nav,
.product_slider .owl-nav {
    display: none;
}

.testimonial_slider .owl-dots,
.product_slider .owl-dots {
    text-align: center;
    margin-top: 50px;
}

.testimonial_slider .owl-dots .owl-dot,
.product_slider .owl-dots .owl-dot {
    background: #ade9a3;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 4px;
    border: 0;
}

.testimonial_slider .owl-dots .owl-dot:focus,
.product_slider .owl-dots .owl-dot:focus {
    outline: none;
}

.testimonial_slider .owl-item img {
    width: auto;
}

.star-rating {
    float: none;
}

.product-list-info {
    padding: 30px 10px;
}

.product_slider .product {
    padding: 20px;
}

.product-list-info {
    padding: 20px 0 0;
}
nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li a:hover {
    background-color: #25258e;
}
nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li .block-mega-menu li a:hover,
nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li .block-mega-menu a:hover{
    background-color: transparent;
}
.all-features{
    text-align: center;
}
nav.navbar.bootsnav.navbar-ico ul.nav > li > a {
    color: #fff;
}
nav.navbar.bootsnav.navbar-ico ul.nav > li > a:hover {
    color: #03f44f !important;
}
nav.navbar.bootsnav .navbar-toggle{
    background: transparent;
}
.list-button-holder:first-child .btn {
    background-color: #0187c7;
}
.list-button-holder:last-child .btn {
    background-color: #0570a2;
}
.product-img .overlay {
    background: rgba(4, 119, 175, 0.9);
}
.rait-stars{
    color: #e6ec03;
}
.categoty li a .arrow {
    color: #fff;
}
.explore .arrow-icon{
    right: -60px;
    left: auto;
    border-left: 1px solid;
}
.explore:hover .arrow-icon{
    left: auto;
    right: 0;
}
.explore:hover .btn-text{
    margin-left: auto;
    margin-right: 50px;
}
.content-text .content-list {
    list-style: none;
    padding-left: 0;
}
.content-text ul li{
    color: #173050;
}
.choose_list li,
.content-list li{
    line-height: 28px;
    font-size: 17px;
    color: #173050;
}
.content-list li{
    width: 50%;
}
.choose_list li i,
.content-list li i{
    color: #37a000;
}

/*===========================
    Features 2 CSS
=============================*/

.purpose{
    position: relative;
}
.feature2 {
    position: relative;
    margin-bottom: 30px;
    background: #fff;
    -webkit-box-shadow: 0 2px 50px rgb(0 0 0 / 8%);
    box-shadow: 0 2px 50px rgb(0 0 0 / 8%);
    transition-duration: 0.3s;
}

.feature2:hover{
    transform: translateY(-10px);
}

.purpose .purpose_content{
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.feature2 .feature2__content {
    text-align: center;
    padding: 35px 25px;
    position: relative;
    transition-duration: 0.3s;
    background: #fff;
}

.feature2 .feature2__content span.lnr {
    font-size: 60px;
}

.purpose .purpose_content h3{
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
}

.feature2 .feature2__content h3 {
    padding: 0;
    max-width: 270px;
    margin: 10px auto 25px;
    line-height: 30px;
}

.purpose .purpose_content p,
.feature2 .feature2__content p {
    margin: 0;
    color: #173050;
    font-size: 16px;
}

/*===========================
    FAQ Section
=============================*/

.faq_inner .panel-default > .panel-heading {
    padding: 20px 25px;
    background: #fff;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.06);
}

.faq_inner .panel-group .panel {
    margin-bottom: 10px;
    border: 0;
}

.faq_inner .panel-group .panel .panel-title a i {
    float: right;
    font-size: 12px;
}

.faq_inner .social {
    margin: 25px 0;
}

.faq_inner .social ul li a {
    border: 1px solid #afafaf;
    border-radius: 5px;
}

.faq_inner .social ul li a:hover {
    border: 1px solid #37a000;
    border-radius: 5px;
}

@media(max-width: 991px) {

    .demo_inner .align-center,
    .faq_inner .align-center {
        display: block;
    }

    .faq_inner .header-title {
        text-align: center;
        margin-bottom: 35px;
    }
}

/*===========================
    choose list
=============================*/

.content-text .choose_list{
    list-style: none;
    padding-left: 0;
}

.list_styled{
    list-style: initial;
    padding-left: 20px;
    font-size: 17px;
    color: #173050;
}

.list_styled li{
    margin-bottom: 10px;
}

/*===========================
    Process css
=============================*/

.process_inner{
    position: relative;
}

.process_part{
    background: #fff;
    padding: 30px 25px;
    -webkit-box-shadow: 0 2px 50px rgb(0 0 0 / 8%);
    box-shadow: 0 2px 50px rgb(0 0 0 / 8%);
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    min-height: 192px;
}

.process_part .vdo-link{
    width: 62px;
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 19px;
    color: #ffffff;
    border-radius: 50%;
    background: #173050;
}

.process_part .vdo-link i{
    display: block;
    line-height: 62px;
}

.process_part .addon {
    background: #37a000;
    padding: 5px 25px;
    width: 200px;
    position: absolute;
    top: 16px;
    left: -70px;
    text-align: center;
    line-height: 22px;
    letter-spacing: 0.01em;637
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.process_part img {
    max-width: 100px;
}

.process_part p {
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 0;
    font-weight: 600;
}
.separator{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

/*===========================
    Testimonial Section
=============================*/

.client_comment{
    font-weight: 500;
    line-height: 40px;
    font-size: 26px;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial_item{
    text-align: center;
}

.client-name{
    font-size: 18px;
    font-weight: 600;
    color: #060606;
}

.new-test{
    position: relative;
}

.testimonial_part .new-test .owl-nav{
    display: none;
}
.coin_img{
    margin: 15px auto;
}
.new-test .owl-dots{
    text-align: center;
    margin-top: 30px;
}

.new-test .owl-dots .owl-dot{
    width: 8px;
    height: 8px;
    background-color: #272727;
    margin: 0 3px;
    border-radius: 50%;
}

.new-test .owl-dots .owl-dot.active{
    background-color: #37a000;
}

.testimonial_part .quotation-icon {
    text-align: center;
    color: #37a000;
}
.testimonial_part .quotation-icon i{
    font-size: 60px;
}

@media(max-width:575px){
    .client_comment {
        line-height: 26px;
        font-size: 22px;
    }
}

@media(max-width: 991px){
    .table-responsive {
        white-space: nowrap;
    }
    .process_part{
        min-height: 176px;
    }
}

/*===========================
    Contact Section
=============================*/

.contact{
    margin-bottom: 50px;
}
.contactHeading{
    text-align: center;
    margin: 80px 0;
    color: #173050;
    font-family: "Lora, serif";
    font-weight: 600;
}
.contact_form{
    border: 1px solid #e6e6e6;
}
.contact_form iframe{
    position: relative;
    width: 100%;
    height: 630px;
}
.contact_form h3{
    text-align: center;
    margin: 0;
    background: #173050;
    color: #fff;
    line-height: 36px;
    font-size: 20px;
}
.get_touch .item{
    margin-bottom: 25px;
}
.get_touch .item .item_right a {
    font-size: 15px;
    line-height: 25px;
    color: #656566;
    margin: 25px 0;
}
.get_touch .item .item_left a,
.get_touch .item .item_left .icon-area{
    width: 30px;
    height: 30px;
    text-align: center;
    display: block;
    background: #e6e6e6;
    border-radius: 50%;
    line-height: 30px;
    color: #000;
}
@media (min-width: 1199px){
    .align-center-lg{
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
    }
}
@media (max-width: 991px){
    .more-btn{
        text-align: left;
        margin-top: 30px;
    }
    .all-features{
        text-align: left;
    }
    nav.navbar .navbar-brand img.logo{
        width: 90px;
    }
    .content-list li{
        width: 100%;
    }
    .faq_sec{
        margin-bottom: 35px;
    }
}
@media (max-width: 767px){
    .product-row{
        margin-bottom: 15px;
    }
    .product-image{
        width: 60%;
    }
    .choose_list li, .content-list li{
        font-size: 15px;
    }
    .all-features{
        padding-left: 15px;
    }  
    .section-title{
        margin-bottom: 30px;
    }
    .template-demo, .service-section, .product-features, .choose-product{
        padding: 50px 0;
    }
    .section-title h2,
    .app_int_area h2,
    .content-text .feature-title,
    .banner .banner_inner h1{
        font-size: 30px;
        line-height: 36px;
    }
}
@media (max-width: 575px){    
    .feature2{
        min-height: auto;
    }
    .feature2 .feature2__content h3{
        max-width: 100%;
        width: 100%;
    }
    .flex-wrap li{
        width: 100%;
    }
}
@media (max-width: 520px){
    .product-image{
        width: 100%;
    }
}