/********** Template CSS **********/
:root {
    --primary: #061BB0;
    --secondary: #0A0A0A;
    --light: #FF8210;
    --dark: #061BB0;
    --bs-blue: #0f1965;
    --bs-indigo: #0f1965;
    --bs-purple: #0f1965;
    --bs-pink: #0f1965;
    --bs-red: #0f1965;
    --bs-orange: #0f1965;
    --bs-yellow: #0f1965;
    --bs-green: #0f1965;
    --bs-teal: #0f1965;
    --bs-cyan: #0f1965;
    --bs-white: #fff;
    --bs-gray: #000;
    --bs-gray-dark: #000;
    --bs-primary: #0f1965;
    --bs-secondary: #0f1965;
    --bs-success: #0f1965;
    --bs-info: #0f1965;
    --bs-warning: #0f1965;
    --bs-danger: #0f1965;
    --bs-light: #0f1965;
    --bs-dark: #000;

    --primary-bg: #061bb0;
    --primary-bg-hover: #0f1965;
}
@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300;400;500;600;700&display=swap');
/*font-family: 'Signika Negative', sans-serif;*/
*, body{font-family: 'Signika Negative', sans-serif; font-weight: 400;}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    padding: 8px 30px;
    border-radius: 100px;
    color: #333;
    font-weight: 400;
    outline: none;
    margin-left: 3px;
    margin-right: 3px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #fff;
    background: var(--primary-bg);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 1199px) {
    .navbar .navbar-nav .nav-link{padding: 5px 15px; margin-right: 0; margin-left: 0;}
    .navbar-expand-lg{width: auto; max-width: 60%;}    
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
    .navbar .navbar-nav .nav-link{margin-left: 0; margin-right: 0;}
    .navbar-expand-lg{width: 100%; max-width: 100%;}
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}

@media(max-width: 767px){
    
}

/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .6);
    padding: 0;
}

.footer .btn.btn-square:hover {
    color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
}

.footer .copyright {
    padding: 20px 0;
    border-top: 0;color: #d8d8d0;
}

.footer .copyright a {
    color: #d8d8d0;
}

.footer .copyright a:hover {
    color: #fff;
}

/* custom css ================================================================ */
a{color: #0166e1;}
a:hover {color: #0f1965;}
@media (min-width: 1400px){
    .container, .container-sm, .container-md, .container-lg, .container-xxl {
        max-width: 1920px;
        padding-left: 50px;
        padding-right: 50px;
    }     
    /*.hero-header .container, 
    .hero-header .container-sm, 
    .hero-header .container-md, 
    .hero-header .container-lg, 
    .hero-header .container-xl, 
    .hero-header .container-xxl{padding-left: 0;}*/
}

@media (max-width: 1399px){
    .container, .container-sm, .container-md, .container-lg, .container-xxl {
        max-width: 100%;
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 991.98px){
    .container, .container-sm, .container-md, .container-lg, .container-xxl {
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    } 
}

@media (max-width: 767px){
    .container, .container-sm, .container-md, .container-lg, .container-xxl {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    } 
    .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl{/*overflow: hidden;*/}
}

img{max-width: 100%;}
body, p{font-size: 18px;}
body{color: #333;}
p{color: #5c5c5c;text-align: justify;}
.btn{font-size: 19px;border: 1px solid #5c5c5c;border-radius: 100px;color: #333;}
.btn.right-arrow .right-arrow-icon{content: ""; display: inline-block; width: 22px; margin-left: 10px; height: 22px; background: url(../images/right-arrow.png) no-repeat center; vertical-align: middle; background-size: 100% auto;}
.btn.right-arrow:hover{color: #fff; background: var(--primary-bg-hover);}
.btn.right-arrow:hover .right-arrow-icon{background: url(../images/right-white-icon.png) no-repeat center; background-size: 100% auto;}

.btn-primary{
    color: #fff;
    background-color: var(--primary-bg);
    border-color: var(--primary-bg);
    border-radius: 100px;
}
.btn-primary:hover, .btn-primary:focus{
    color: #fff;
    background-color: var(--primary-bg-hover);
    border-color: var(--primary-bg-hover);outline: none; box-shadow: unset;
}
.dropdown .btn-primary{background-color: #20201f; border-color: #20201f;}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{font-family: 'Signika Negative', sans-serif; color: #333;}
.h1{font-weight: 300;}


/* header */
.sticky-top{}
.sticky-top.shadow-sm{background: #fff;padding: 5px 0;}
.header-top{padding: 10px 0 10px;background: #ebebe7; margin-bottom: 15px;}
.comunication{list-style: none; display: flex; align-items: center; margin-bottom: 0;padding-left: 0;}
.comunication li{margin-right: 50px;}
.comunication li:last-child{margin-right: 0px;}
.comunication li a{color: #333; text-decoration: none; font-size: 16px;}
.comunication li .icon{margin-right: 10px;}

.header-top .btn-square {width: 26px; height: 26px; color: #000; border: 1px solid #000;font-size: 12px;padding: 0;}
.profile-bodo{color: #333333;}
.profile-bodo img{max-width: 54px; max-height: 54px; border-radius: 100%; display: none;}
.header-social{display: inline-flex;}
.btn-link{color: #0166e1;}
.btn-link:hover{color: #0f1965;}
.profile-bodo-link{margin-right: 10px;}

@media(max-width: 991.98px){
    .header-top {padding-top: 10px;padding-bottom: 10px;}
}
@media(max-width: 767px){
    .header-top{margin-bottom: 15px;}
    .header-top .col-md-8{width: auto;}
    .header-top .col-md-4{width: auto; margin-left: auto;}
    .comunication li .icon {margin-right: 3px;}
    .comunication li {margin-right: 20px;}
    .sticky-top{position: relative !important; top: auto !important;}
}

@media(max-width: 480px){
    .header-top .col-md-8{max-width: 60%;}
    .comunication{flex-direction: column; align-items: flex-start;}
    .comunication li {margin-right: 0px; margin-bottom: 5px;}
    .comunication li:last-child{margin-bottom: 0;}
    .header-top .col-md-4{max-width: 40%; display: flex; align-items: center;}
    .header-top {margin-bottom: 15px;padding-top: 5px; padding-bottom: 5px;}    
}

@media(max-width: 479px){
    .header-top .col-md-8{max-width: 100%;width: 100%; margin-bottom: 5px;}
    .header-top .col-md-4 {max-width: 100%;width: 100%; margin-top: 5px;align-items: center; justify-content: center;}
    .comunication{align-items: center; justify-content: center;}
}


/* nav */
.nav-section{margin-bottom: 15px; background-color: #fff;}
.nav-section .container{position: relative;position: relative;}
.nav-section .container:after{background-color: rgba(51, 51, 51, 0.5); content: ""; height: 1px; width: 100%; position: absolute; left: 0; right: 0; bottom: -1px; display: none;}
.nav-section.shadow-sm .container:after{display: none;}
.navbar-brand{margin-bottom: 0px;display: inline-block; margin-right: 0;}
.nav-section .text-md-end{display: flex; align-items: center;}
.navbar-toggler-icon{background: url(../images/nav-icon.png) no-repeat center;}

@media(max-width: 991.98px){
    .nav-section .row{flex-flow: row wrap;}
    .nav-section .row .main-logo{order: 1;}
    .nav-section .row .login-wrap{order: 2;margin-left: auto; margin-right: 60px;}
    .nav-section .row .navbar{order: 3; width: 100%;}
    .nav-section .row .navbar .navbar-nav{border-top: 1px solid rgba(51, 51, 51, 0.5);}
    .nav-section .row .navbar .navbar-toggler{position: absolute;right: 0;top: -54px;}
    .nav-section .row .navbar .navbar-toggler:focus{box-shadow: unset;}
    .nav-section .navbar .navbar-nav .nav-link {margin-right: 0; padding: 10px 20px;}
    .nav-section .navbar .navbar-nav .nav-link.active{margin-bottom: 10px;}
    .nav-section .navbar{padding-top: 0.15rem;padding-bottom: 0.15rem;}
    .nav-section{margin-bottom: 10px;}
    .sticky-top{position: relative !important; top: unset !important;}
}

@media(max-width: 767px){
    .nav-section .row .main-logo{text-align: center;}
    .nav-section .row .navbar .navbar-toggler{right: auto; left: 0; top: -40px;}
    .nav-section .navbar {padding-top: 1rem;}
    .nav-section .row .login-wrap{margin-right: auto;justify-content: flex-end;}
    .navbar-brand{margin-right: 0;}
    .navbar-brand .me-2 {margin-right: 0rem !important;}
    .nav-section{margin-bottom: 0px;}
}

@media(max-width: 480px){
    .nav-section .row .navbar{margin-top: 15px;}
    .nav-section .navbar {padding-top: 0;}
    .nav-section {margin-bottom: 0px;}
    .nav-section .row .navbar .navbar-toggler{top: -60px;}
}

@media(max-width: 479px){
    .profile-bodo img {max-width: 40px;max-height: 40px;}
    .nav-section .row .navbar .navbar-toggler{top: -54px;}
    .nav-section .row .main-logo{margin-bottom: 15px;margin-top: 10px;}
}

/* banner */
.hero-header{margin-bottom: 80px !important;}
.hero-header .row{align-items: stretch !important;}
.hero-header .row .col-lg-4{display: flex; flex-direction: column; padding-left: 53px;}
.hero-header .row .col-lg-4 .btn{margin-top: auto;}
.hero-header .row .col-lg-4 .btn.right-arrow{margin-top: 30px;}
.btn{padding: 1rem 4.5rem;}
.back-to-top{padding: 0;}
.hero-header .col-lg-8{padding-right: 0px;border-radius: 0 40px 40px 0; overflow: hidden;}
.hero-header .col-lg-8 img, .hero-header .col-lg-8 iframe, .hero-header .col-lg-8 video{aspect-ratio: 16 / 9;height: auto;width: 100%;max-width: 100%;}
.hero-header .container{padding-left: 0;}

@media(max-width: 1600px){
    .hero-header .row .col-lg-4 .btn.right-arrow {margin-top: 15px;}
    .hero-header .row .col-lg-4 .double-button-group{flex-direction: column;}
    .hero-header .row .col-lg-4 .double-button-group .btn + .btn{margin-left: 0;}
    .hero-header {margin-bottom: 40px !important;}
}

@media(max-width: 1399px){
    .hero-header .row .col-lg-4 .btn.right-arrow {margin-top: 15px;}
    .hero-header .row .col-lg-4 .double-button-group{flex-direction: column;}
    .hero-header .row .col-lg-4 .double-button-group .btn + .btn{margin-left: 0;}
    .hero-header {margin-bottom: 40px !important;}
}

@media(max-width: 1199px){
    .hero-header .col-lg-8{padding-right: 0px;}
}

@media(max-width: 991.98px){
    .hero-header .container{}
    .hero-header .row .col-lg-4{flex-direction: unset; flex-flow: row wrap;padding-left: 25px; margin-top: 40px;}
    .hero-header .row .col-lg-4 .btn{margin-right: 15px;}
    .hero-header.py-4{padding-top: 10px !important;}
    .nav-section .row .navbar .navbar-nav.py-4 {padding-top: 1rem !important; padding-bottom: 1rem !important; border: 0;}
    .hero-header .container {padding-left: 25px;}
    .hero-header .col-lg-8{border-radius: 40px;overflow: hidden;padding-left: 0; padding-right: 0;}
    .hero-header .row .col-lg-8{flex: 0 0 auto; width: 50%;border-radius: 0 15px 15px 0;}
    .hero-header .row .col-lg-4{flex: 0 0 auto; width: 50%;}
    .hero-header .row .col-lg-4 .double-button-group{flex-direction: row;}
}

@media(max-width: 767px){
    .hero-header .row .col-lg-8{flex: 0 0 auto; width: 50%;border-radius: 0 15px 15px 0;}
    .hero-header .row .col-lg-4{flex: 0 0 auto; width: 50%;}
    .hero-header .display-4 {font-size: 16px;margin-bottom: 10px !important;}
    .hero-header p{font-size: 12px;}
    .hero-header.py-4, .header-top, .nav-section, .solution-section, .testimonials-wrapper, .footer{overflow: hidden;}
    .brand-logo, .busyness-payment, .two-culumn-design{overflow: hidden;}
    .nav-section .row .navbar .navbar-nav.py-4 {padding-top: 0 !important; border: 0;}    
    .hero-header .row .col-lg-4 .double-button-group {flex-direction: row; align-items: center;}
    .hero-header .row .col-lg-4 .double-button-group .btn + .btn{margin-top: 0;}
}

@media(max-width: 670px){
    .hero-header .row .col-lg-8{flex: 0 0 auto; width: 66.66667%;border-radius: 0 15px 15px 0;}
    .hero-header .row .col-lg-4{flex: 0 0 auto; width: 33.33333%;}
    .hero-header .row .col-lg-4 .double-button-group {flex-direction: column;}
    .hero-header .row .col-lg-4 .double-button-group .btn + .btn{margin-top: 10px;}
}

@media(max-width: 570px){
    .hero-header .row .col-lg-8{flex: 0 0 auto; width: 50%;border-radius: 0 15px 15px 0;}
    .hero-header .row .col-lg-4{flex: 0 0 auto; width: 50%;}
}

@media(max-width: 480px){
    .hero-header.py-4 {padding-top: 0px !important;}
    .hero-header .row .col-lg-8{width: 100%;border-radius: 15px 15px 15px 15px;}
    .hero-header .row .col-lg-4{width: 100%;}
    .hero-header .row .col-lg-4 .double-button-group{flex-direction: row;}
    .hero-header .row .col-lg-4 .double-button-group .btn + .btn {margin-top: 0px;}
}

@media(max-width: 479px){
    .hero-header .row .col-lg-4{justify-content: center;}
    .hero-header{text-align: center;}
    .hero-header .row .col-lg-4 .double-button-group{flex-direction: column; margin-left: auto; margin-right: auto;}
    .hero-header .row .col-lg-4 .double-button-group .btn + .btn {margin-top: 10px;}
}

/* solution-section */
.solution-section{margin-bottom: 0px;}
.solution-section .h2{text-transform: uppercase; border-bottom: solid 1px rgba(0, 0, 0, 0.3); padding-bottom: 25px;margin-bottom: 25px; font-weight: 300;}
.solution-section .solution-category-item .image-box{width: 100%; aspect-ratio: 1 / 1; height: auto;max-width: 360px; margin-left: auto; margin-right: auto; position: relative; margin-bottom: 35px; border-radius: 100%; overflow: hidden;}
.solution-section .solution-category-item .image-box img{width: 100%; height: 100%; object-fit: cover;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.solution-section .solution-category-item:hover .image-box img{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.solution-section .solution-category-item .image-box{position: relative;}
.solution-section .solution-category-item .image-box:after{content: ""; background-color: rgba(15, 22, 101, .9); -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;border-radius: 100%;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; display: none; position: absolute; top: 0; left: 0; right: 0; bottom: 0;}
.solution-section .solution-category-item:hover .image-box:after{display: block;border-radius: 100%;}
.solution-section .solution-category-item .image-box .image-box-content{ text-align: center;
    padding: 60px;display: flex; 
    align-items: center;flex-direction: column;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
    position: absolute; top:0px; left: 0; right: 0; opacity: 0; z-index: 1; opacity: 0;transform: translateY(-50%);
}
.solution-section .solution-category-item:hover .image-box .image-box-content{opacity: 1; top: 50%;}
.solution-section .solution-category-item .image-box .image-box-content p{color: #fff; max-width: 240px;line-height: 1.5rem; font-size: 16px;}
.solution-section .solution-category-item .image-box .image-box-content .action-btn-outer{margin-top: 10px;}
.solution-section .solution-category-item .image-box .image-box-content .action-btn-outer .action-btn{display: block;}
.action-btn{}
.solution-section .solution-category-item:hover .image-box .action-btn:hover img{-webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

@media(max-width: 1600px){
    .solution-section .solution-category-item .image-box{max-width: 300px;margin-bottom: 25px;}
    .solution-section .h2{padding-bottom: 10px; margin-bottom: 15px;}
    .solution-section .solution-category-item .image-box .image-box-content{padding: 30px;}
    .solution-section .solution-category-item .image-box .image-box-content .action-btn-outer {margin-top: 0px;}
}

@media(max-width: 1399px){
    .solution-categorys.mt-5{margin-top: 0px !important;}
    .solution-section .solution-category-item .image-box{max-width: 250px;margin-bottom: 25px;}
    .solution-section .h2{padding-bottom: 10px; margin-bottom: 15px;font-size: 22px;}
    .solution-section .solution-category-item .image-box .image-box-content{padding: 30px;}
    .solution-section .solution-category-item .image-box .image-box-content p{line-height: 1.1rem; font-size: 13px;}
    .solution-section .solution-category-item .image-box .image-box-content .action-btn-outer {margin-top: 0px;}
    .solution-section .solution-category-item .image-box .action-btn-outer img{max-width: 25px;}
}

@media(max-width: 1199px){
    .solution-section .col-lg-12{margin-top: 30px;}
    .solution-section .solution-category-item .image-box .image-box-content p{line-height: 1.3; margin-bottom: 0;}
}

@media(max-width: 767px){
    .solution-categorys.mt-5{justify-content: center;display: flex;flex-flow: row wrap;}
    .solution-categorys.mt-5 .col-6{width: 70%; max-width: 450px;}
    .solution-section .solution-category-item .image-box{max-height: 50vh; width: auto;}
    .solution-section .h2{padding-bottom: 0px;border: 0;}
    .solution-section .solution-category-item .image-box .image-box-content p {line-height: 1.2; font-size: 11px;}
    .solution-category-item{margin-bottom: 0px;flex: 0 0 auto; width: 33.33333%;}    
}

@media(max-width: 570px){
    .solution-category-item{margin-bottom: 40px;flex: 0 0 auto; width: 100%;}
    .solution-category-item:last-child{margin-bottom: 0px;}
}

@media(max-width: 479px){
    .solution-categorys.mt-5 .col-6{width: 100%;}
    .solution-section .solution-category-item:hover .image-box img {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    .solution-section .solution-category-item .image-box .image-box-content .action-btn-outer {margin-top: 10px;}
    .solution-section .h2{padding-bottom: 15px; margin-bottom: 15px;}
}


/* testimonials */
.testimonials-wrapper{ background: #f6f4e8; padding: 100px 0 100px; position: relative;margin-top: 0px;}
.testimonials-wrapper:after{content: ""; display: block; position: absolute; right: 80px; top: 0; width: 196px; height: 159px; background-size: 100% auto; background-image: url(../images/quotation-close-bg.png);}
.testimonial .pic{width: 116px; height: 116px; overflow: hidden; border-radius: 100%; margin-right: 25px;}
.testimonial .pic img{max-width: 100%; max-height: 100%;}
.testimonial-pic-outer{display: flex; align-items: center; padding-left: 60px;}
.testimonial .testimonial-content{}
.testimonial .title{}
.testimonial .post{}
.testimonial .description{padding: 10px 60px 20px;position: relative;margin: 40px 0;}
.testimonial .description:before,
.testimonial .description:after{content: ""; display: block;width: 34px;height: 29px;position: absolute;}
.testimonial .description:before{background:url(../images/quotation-open.png) no-repeat center; top: 0; left:0px; background-size: 100% auto;}
.testimonial .description:after{background:url(../images/quotation-close.png) no-repeat center; bottom: 0; right:0px; background-size: 100% auto;}
.owl-dots{position: absolute; bottom: -80px;left: 180px;}
.owl-dot{background-color: #2d2d2d;opacity: 0.4; width: 20px; height: 20px; border-radius: 100%; border:solid 4px #f6f4e8;display: inline-block; margin: 0 10px;}
.owl-dot.active{background-color: #0f1965;border-color: #0f1965; opacity: 1;}
.left-lestimonial img{max-width: 100%; height: auto;}

@media(max-width: 1399px){
    .testimonials-wrapper:after{width: 120px; height: 97px;}  
    .testimonial .description{margin: 40px 0 20px;}
    .owl-dots{bottom: -60px;}
    .owl-dot{margin: 0 5px;}
}

@media(max-width: 1199px){  
    .owl-dots{bottom: -60px;}
    .testimonial .pic{width: 80px;height: 80px;margin-right: 20px;}
    .testimonials-wrapper{padding: 80px 0 80px;}
}

@media(max-width: 991.98px){
    .testimonials-wrapper:after {width: 80px;height: 64px;right: 40px;}
    .testimonials-wrapper{padding: 80px 0 80px;}
    .testimonial .description {margin: 0px 0 10px;padding: 5px 30px 12px;}
    .testimonial .description:before, .testimonial .description:after{width: 24px; height: 24px;}
    .owl-dots{left: 50px;}
    .owl-dot{width: 12px; height: 12px; border-width: 2px;}
    .testimonial{ text-align: center; } 
} 

@media(max-width: 767px){
    .testimonials-wrapper .col-md-4{margin-bottom: 25px;}
    .owl-dots {left: 50%;transform: translateX(-50%);}
}

/* brand logo */
.brand-logo{background-color: rgba(215, 215, 207, .5);}
.slick-slide {margin: 0px 20px;}
.slick-slide img {max-width: 100%;vertical-align: middle;}
.slick-slider{position: relative;display: block;box-sizing: border-box;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none; user-select: none;-webkit-touch-callout: none;-khtml-user-select: none;-ms-touch-action: pan-y; touch-action: pan-y;-webkit-tap-highlight-color: transparent;}
.slick-list{position: relative;display: block;overflow: hidden;margin: 0;padding: 0;}
.slick-list:focus{outline: none;}
.slick-list.dragging{cursor: pointer;cursor: hand;}
.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track{position: relative;top: 0;left: 0;display: block;}
.slick-track:before,
.slick-track:after{display: table; content: '';}
.slick-track:after{clear: both;}
.slick-loading .slick-track{visibility: hidden;}
.slick-slide{display: none;height: 100%;min-height: 1px;}
[dir='rtl'] .slick-slide{float: right;}
.slick-slide img{display: inline;}
.slick-slide.slick-loading img{display: none;}
.slick-slide.dragging img{pointer-events: none;}
.slick-initialized .slick-slide{display: inline-block; vertical-align: middle; text-align: center;}
.slick-loading .slick-slide{visibility: hidden;}
.slick-vertical .slick-slide{display: block;height: auto;border: 1px solid transparent;}
.slick-arrow.slick-hidden {display: none;}

@media(max-width: 1399px){
    .brand-logo.py-5{padding-top: 0rem !important;padding-bottom: 0rem !important;}
    .brand-logo .display-4{margin-bottom: 0 !important;}
}

/* busyness payment */
.busyness-payment, .two-culumn-design{padding: 100px 0 100px;}
.busyness-content{padding-left: 75px;}
.busyness-payment img, .two-culumn-design img{width: 100%; height: auto; border-radius: 40px;}

@media(max-width: 1399px){    
    .busyness-content {padding-left: 40px;}
    .busyness-payment, .two-culumn-design{padding: 80px 0 80px;}
}

@media(max-width: 1199px){    
    .busyness-content {padding-left: 30px;}
    .busyness-payment, .two-culumn-design {padding: 3rem 0;}
}

/* footer */
.footer{background-color: #2c2c2c;}
.top-footer{background: url(../images/footer-top-bg.jpg) no-repeat 0 0; background-size: cover;}
.footer-logo{background-color: rgba(0, 0, 0, 0.58); display: flex; align-items: center; justify-content: center;}
.footer .footer-links{width: 100%; display: flex;align-items: flex-start; justify-content: center;}
.footer .footer-link{list-style: none; display: flex; flex-direction: column; width: 17%;}
.footer .footer-link li{/*margin-left: 50px;*/}
.footer .footer-link h6{color: #fff; font-weight: 600 !important;}
.footer .footer-link ul{padding-left: 0; margin-bottom: 0;list-style: none;}
.footer .footer-link li a{font-weight: 300; margin: 10px 0; display: block; color: #bbbaba;}
.footer .footer-link li a:hover{color: #fff;}
.footer .col-lg-9{padding-top: 80px; padding-bottom: 80px;}
.copyright{background-color: #161616;}
.footer .copyright .row{align-items: center;}
.footer-logo .img-fluid{max-width: 90%;}

@media(max-width: 1399px){
    .footer .footer-link{width: 20%;}
    .footer .col-lg-9 {padding-top: 60px;padding-bottom: 60px;padding-left: 60px;}
}

@media(max-width: 991.98px){
    .footer .col-lg-9 {padding-top: 40px;padding-bottom: 0px;padding-left: 40px;}
    .footer .footer-links{justify-content: flex-start; flex-flow: row wrap;}
    .footer .footer-link {width: 33.33%;margin-bottom: 40px;}
    .footer .copyright .row{flex-flow: row wrap;}
    .copyright-para{order: 3; width: 100%;margin-top: 15px; padding-top: 15px; border-top: solid 1px #2c2c2c;}
    .social-section{order: 2; width: 100%;text-align: center !important;}
    .select-cuntry{order: 1; width: 100%;}
}

@media(max-width: 767px){
    .footer .container{padding-left: 0px; padding-right: 0px;}
    .social-section .d-sm-inline-flex{display: inline-flex;}
    .footer .copyright{padding-bottom: 0;}
    .footer .footer-link {width: 50%; margin-bottom: 25px;}
    .footer-logo{padding: 20px;}
    .btn-lg-square.btn{width: 28px; height: 28px;font-size: 12px;}
    .back-to-top{bottom: 20px;}
    .social-section{width: 100%; text-align: center;}
}

@media(max-width: 480px){    
    .select-cuntry{width: 100%;margin-bottom: 20px; margin-top: 20px; text-align: center;}
    .social-section{width: 100%;text-align: center; margin-bottom: 20px;}
}

@media(max-width: 479px){
    .select-cuntry{margin-top: 0;}
    .social-section{margin-bottom: 10px;}
}

.home{background-image: url(../images/banner-bg.png); background-repeat: no-repeat; background-position: top 15px center; background-size: 50% auto;}


@media(max-width: 1399px){
    body, p {font-size: 16px;}
    .display-4 {font-size: 2.5rem;}
    .btn {padding: 0.7rem 2.5rem; font-size: 16px;}
    .btn.py-3 {padding-top: 0.7rem !important; padding-bottom: 0.7rem !important;}
    .btn.right-arrow .right-arrow-icon{width: 16px; margin-left: 10px; height: 16px;}
    .btn.right-arrow:hover .right-arrow-icon{background-size: 100% auto;}
    h1, .h1 {font-size: 1.8rem;}
    h4, .h4 {font-size: 1.2rem;}
    .back-to-top {padding: 0;}
}

@media(max-width: 1199px){
    body, p {font-size: 15px; line-height: 1.3;}
    h1, .h1 {font-size: 1.5rem;}
    h4, .h4 {font-size: 1rem;}
    .display-4 {font-size: 1.8rem;}
    .btn {padding: 0.5rem 2.5rem; font-size: 16px;}
    .btn.py-3 {padding-top: 0.5rem !important; padding-bottom: 0.5rem !important;}
    .back-to-top {padding: 0;}
}

@media(max-width: 991.98px){
    body, p {font-size: 15px; line-height: 1.3;}
    h1, .h1 {font-size: 1.2rem;}
    .display-4 {font-size: 1.8rem;}
    .btn {padding: 0.5rem 2rem; font-size: 15px;}
    .btn.py-3 {padding-top: 0.5rem !important; padding-bottom: 0.5rem !important;}
    .back-to-top {padding: 0;right: 20px;}
}

@media(max-width: 479px){
    body, p{font-size: 14px;}
    .display-4, .display-6{text-align: center;}
}



/* resources page */
.resources-wrapper{}
.resources-wrapper .resources-img{text-align: center;}
.resources-wrapper .resources-img img{max-width:500px;}
.gray-bg{background-color: rgba(215, 215, 207, 0.4);}

/* ------ contact form */
.contact-form-outer{padding: 100px 0;}
.contact-form-outer .container{display: flex; align-items: center; justify-content: center;}
.contact-form-outer h2{margin-bottom: 60px; text-align: center;}
.comon-form{margin: 0 auto; max-width: 750px;}
.comon-form .form-group .form-control{margin-bottom: 0px;
    height: 60px;
    border-radius: 40px;
    font-size: 18px;
    outline: none;
    padding: 0 20px;
    border: solid 1px rgba(84,84,84,0.68);
    width: 100%;
    color: #000;
    font-family: 'Signika Negative', sans-serif;
}
.comon-form .form-group textarea.form-control {
    padding: 13px 35px;
    font-family: 'Signika Negative', sans-serif;
    min-height: 150px;
    min-width: 100%;
    height: calc(100% - 18px);
    border-radius: 15px;
}
.comon-form .row{display: flex; justify-content: space-between; align-items: stretch;}
.comon-form .row .left-side{padding-right: 30px;width: 50%;}
.comon-form .row .right-side{padding-left: 30px;width: 50%;}
.comon-form .row .form-group{margin-bottom: 18px;}
.comon-form .row .right-side .form-group{height: 100%;}
.comon-form .row #submit{margin-left: auto; margin-right: auto;width: 60%;margin-top: 20px; }
.comon-form .form-group.company-name .form-control{background-image: url(../images/input-company-name.png); background-repeat: no-repeat; background-position: 36px center;padding-left: 75px;}
.comon-form .form-group.person .form-control{background-image: url(../images/input-person.png); background-repeat: no-repeat; background-position: 36px center;padding-left: 75px;}
.comon-form .form-group.phone .form-control{background-image: url(../images/input-phone.png); background-repeat: no-repeat; background-position: 36px center;padding-left: 75px;}
.comon-form .form-group.call .form-control{background-image: url(../images/input-call.png); background-repeat: no-repeat; background-position: 36px center;padding-left: 75px;}
.comon-form .form-group.glob .form-control{background-image: url(../images/input-glob.png); background-repeat: no-repeat; background-position: 36px center;padding-left: 75px;}
.comon-form .form-group.email .form-control{background-image: url(../images/input-email-icon.png); background-repeat: no-repeat; background-position: 36px center;padding-left: 75px;}
.comon-form .lang-select .btn-select{padding-left: 35px;}

@media(max-width: 768px){
    .contact-form-outer {padding: 60px 0;}
}

/* select dropdown */
.subjectpicker, .genderpicker, .cuntrypicker, .emailpicker{display: none;}
#selectBox, #genderBox, #cuntryBox{padding-left: 0px;}
#selectBox img, .btn-select img, #genderBox img, #cuntryBox img, #emailBox img{width: 21px; vertical-align: middle;}
#selectBox li, #genderBox li, #cuntryBox li{list-style: none; padding: 5px 20px; cursor: pointer;border-radius: 25px; list-style: none;}
#selectBox li:hover, #genderBox li:hover, #cuntryBox li:hover{background-color: #0f1965; color: #fff;}
#selectBox li img, #genderBox li img, #cuntryBox li img, #emailBox li img{margin: 5px 0;}
#selectBox li span, .btn-select li span{margin-left: 15px;}

/* item list */
.lang-select, .gender-select, .cuntry-select, .email-select{position: relative;}
.b, .genderb, .cuntryb, .emailb{
    display: none;
    width: 100%;box-shadow: 3px 3px 5px rgba(0, 0, 0, .1);
    border: 1px solid rgba(84,84,84,0.68);
    border-radius: 25px;
    background: #fff;
    position: absolute;
    top: 100%;z-index: 9;
}
.open{display: show !important;}
.btn-select, .genderbtn-select, .cuntrybtn-select, .emailbtn-select{
  margin-bottom: 0px;
    height: 60px;
    border-radius: 40px;
    font-size: 16px;
    outline: none;
    padding: 0 20px;
    border: solid 1px rgba(0,0,0,0.32);
    width: 100%;
    color: #333;
    font-family: 'Signika Negative', sans-serif;
    background: url(../images/down-arrow.png) no-repeat right transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    background-position-x: calc(100% - 25px) 
}
.gender .genderbtn-select, .cuntrybtn-select, .emailbtn-select{background-position-x: calc(100% - 15px); padding-right: 10px; }
.gender .genderb, .cuntryb, .emailb{min-width: 100px;}
.gender #genderBox, #cuntryBox{margin-top: 1rem;margin-bottom: 1rem;}
.btn-select li, .genderbtn-select li, .cuntrybtn-select li, .emailbtn-select li{
  list-style: none;
  float: left;
  padding-bottom: 0px;
}

.btn-select:hover li, .genderbtn-select:hover li, .cuntrybtn-select:hover li{
  margin-left: 0px;
}
.form-left-img{width: 20%; border-radius: 25px; overflow: hidden;}
.form-right-img{width: 20%; border-radius: 25px; overflow: hidden;}
.form-left-img img, .form-right-img img{max-width: 100%; height: auto;}

.cuntrybtn-select li{background-image: url(../images/input-glob.png);height: 30px; line-height: 30px; background-repeat: no-repeat;background-position: 0px center; padding-left: 36px;}

@media(max-width: 1499px){
    .comon-form .form-group.company-name .form-control,
    .comon-form .form-group.person .form-control,
    .comon-form .form-group.phone .form-control,
    .comon-form .form-group.glob .form-control,
    .comon-form .form-group.email .form-control,
    .comon-form .form-group.call .form-control{background-position: 20px center; padding-left: 55px;padding-right: 10px;}
    .comon-form .form-group .form-control, .btn-select, .genderbtn-select, .cuntrybtn-select{height: 50px;}
    .comon-form .lang-select .btn-select {padding-left: 22px;}
}

@media(max-width: 1024px){
    .form-left-img, .form-right-img{display: none;}
    .contact-form-outer .col-lg-6{max-width: 80%; width: 80%;}
    .comon-form .form-group .form-control, .btn-select, .genderbtn-select, .cuntrybtn-select{height: 50px; font-size: 16px;}
    .contact-form-outer h2{margin-bottom: 40px;}
    .comon-form .form-group.email .form-control, 
    .comon-form .form-group.phone .form-control, 
    .comon-form .form-group.person .form-control, 
    .comon-form .form-group.company-name .form-control,
    .comon-form .form-group.call .form-control{padding-left: 60px;background-position: 25px center;}
}
@media(max-width: 768px){
    .comon-form .form-group .form-control, .btn-select, .genderbtn-select, .cuntrybtn-select{height: 44px; font-size: 15px;}
}

.nav-section .text-md-end .profile-bodo{padding: 8px 30px;color: #fff; background-color: var(--primary-bg); border-color: var(--primary-bg);}
.double-button-group{display: flex;}
.double-button-group .btn{padding:12px 40px !important;}
.double-button-group .btn + .btn{margin-left: 20px;}

.hero-header .row .col-lg-4 .double-button-group{margin-top: auto; /*flex-direction: column;*/}
.hero-header .row .col-lg-4 .double-button-group .btn{padding:12px 40px !important;}
.hero-header .row .col-lg-4 .double-button-group .btn + .btn{/*margin-left: 0;*/}
.btn.right-arrow{padding:12px 40px;}

@media(max-width: 1399px){
    .btn.right-arrow {padding: 8px 30px;}
    .hero-header .row .col-lg-4 .double-button-group .btn {padding: 8px 30px !important;}
}

@media(max-width: 1199px){
    .nav-section .text-md-end .profile-bodo {padding: 5px 15px; font-size: 15px;}
}

@media(max-width: 991.98px){
    .hero-header .row .col-lg-4 .double-button-group .btn {padding: 8px 25px !important; margin-top: 0;}
    .double-button-group .btn{padding:8px 25px !important;}
}

@media(max-width: 767px){
    .hero-header .row .col-lg-4 .double-button-group .btn {padding: 3px 15px !important;}
    .hero-header .row .col-lg-4 .btn.right-arrow {margin-top: 10px;}
}

@media(max-width: 480px){
    .double-button-group .btn {padding: 8px 30px !important;}
    .hero-header .row .col-lg-4 .double-button-group .btn {padding: 8px 30px !important;}
}

/* login-form */
.login-form-outer{padding: 80px 0;}
.login-para{max-width: 60%; margin-left: auto; margin-right: auto; text-align: center;margin-bottom: 40px;}
.login-para p{font-size: 30px;color: #000;}
.login-form-innr{background: #fff; border-radius: 10px; border: solid 1px rgba(0, 0, 0, 0.40); padding: 50px 35px 50px;}
.resend-timer{text-align: center; margin-bottom: 50px;}
.login-form-innr .veryfication-email{margin-bottom: 30px;}
.login-form-innr .veryfication-email > p { text-align: center; }
.login-form-innr .veryfication-email:after, 
.login-form-innr .veryfication-email:before{content:""; display:block; height:0; line-height:0; font-size:0; clear:both; overflow:hidden;}
.text-field{margin-bottom: 25px;height: 60px; border-radius: 40px;font-size: 18px;border: 0; outline: none; padding:0 25px 0 64px;border: solid 1px rgba(84,84,84,0.68);width: 100%;}
.enter-otp .text-field{border: 0; text-align: center; padding-left: 0; outline: none; border-bottom: solid 1px rgba(0,0,0,0.32);width: 100%;border-radius: 0;height: 36px; margin-bottom: 0;}
.login-form-innr .enter-otp{margin-bottom: 30px;}
.login-form-innr .enter-otp p { text-align: center; }
.login-form-innr .button-outer{}
.button-outer .button{width: 100%;}
.button-outer .button:disabled{background: #cccccc;}
.email .text-field{background: url(../images/input-email-icon.png) no-repeat 28px center;}
.company-name .text-field{background: url(../images/input-company.png) no-repeat 28px center;}
.customer-name .text-field{background: url(../images/input-customer.png) no-repeat 28px center;}
.phone-number .text-field{background: url(../images/input-number.png) no-repeat 28px center;}
.customer{margin-top: 33px; padding-top: 30px;border-top: solid 1px rgba(84,84,84,0.68); text-align: center;}
.sign-account{max-width: 585px;margin-left: auto;margin-right: auto;}
.sign-account h4{text-align: center;margin-bottom: 35px;}
.customer a{border-bottom: solid 1px #0065e1;}

@media(max-width: 1399px){
    .login-para{max-width: 100%;}
    .login-form-outer{max-width: 100%;}
    .login-para p{font-size: 26px;}
}

@media(max-width: 991.98px){
    .login-form-outer .login-form-image{text-align: center;}
    .login-form-outer .login-form-image img{max-height: 100vh;}
}

/* arijit */
.message-data, .msg-response{font-weight: 500; font-size:12px;}
.error-message, .msg-response{color: #ff4243;}
.success-message{color: #007e34;}
.company-name, .customer-name, .phone-number, .email {position: relative;}
.email .message-data, .aplication-form .message-data {position: absolute; left: 15px;bottom: 5px;}
.btn-primary:disabled, .btn-primary.disabled{border-color: transparent !important;}

/* lead-generation form */
.lead-generation{background-color: rgba(235, 235, 235, 0.49);}
.lead-generation .form-control{background-color: transparent;}
.custom-checkbox{display: flex;align-items: flex-start;}
.culumn-btn-group{flex-direction: column;}
.double-button-group.culumn-btn-group .btn + .btn{margin-left: 0; margin-top: 15px;}
.name-gender .col-sm-2, .col-sm-3.glob-outer{padding-right: 0;}
.name-gender .col-sm-5.firstname{padding-right: 0;}
.custom-checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 40px;
}

.custom-checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 21px;
  height: 21px;
  left: 0;
  margin-left: 0px; top: 5px;
  background-image: url(../images/check-bg.png);
}

.custom-checkbox input[type="checkbox"] {
 /** opacity: 0;**/
  z-index: 1;position: absolute;
}

.custom-checkbox input[type="checkbox"]:checked + label::before {
    background-image: url(../images/checked-bg.png);
}
.inner-banner-content{position: relative;}
.inner-banner-content .banner-tittle{position: absolute; background: radial-gradient(rgba(0,0,0,.54), transparent); display: flex; align-items: center; justify-content: center; top: 0; right: 0; bottom: 0; left: 0;}
.inner-banner-content .banner-tittle .display-8{color: #fff;margin-bottom: 0;background: rgba(0, 0, 0, .5);padding: 0px 10px; border-radius: 7px;}
.inner-banner-content .banner-tittle .display-1{color: #fff;margin-bottom: 0;}

@media(max-width: 767px){
    .name-gender .col-sm-5.firstname, .name-gender .col-sm-2, .col-sm-3.glob-outer{padding-right: calc(var(--bs-gutter-x) / 2);}
}

/* features-list */
.step-features{background-color: #0f1a65; padding: 50px 0;}
.features-list{padding-left: 0; margin-bottom: 0; display: flex;width: 100%; justify-content: space-between;}
.features-list li{list-style: none; text-align: center; width: 20%;}
.features-list li .features-image{margin-left: auto;margin-right: auto; padding-top: 56.25%; position: relative; width: 60%; margin-bottom: 30px;}
.features-list li .features-image:after{content: ""; width: 40px; height: 28px;     position: absolute;
    top: 50%;
    right: -40%;
    margin-top: -14px; background: url(../images/next-right.png) no-repeat 0 0;}
.features-list li:last-child .features-image:after{display: none;}
.features-list li .features-image a{position:absolute;top: 0;left: 0;bottom: 0;right: 0;
  text-align: center;border: solid 2px rgba(255, 255, 255, 0.39);border-radius: 100%;display: flex; align-items: center;justify-content: center;}
.features-list li .features-content{}
.features-list li .features-content h5, .features-list li .features-content h5 a{color: #fff;}

@media(max-width: 1199px){
    .features-list li .features-image a{padding: 25px;}
    .features-list li:last-child .features-image a{padding: 20px;}
    .features-list li .features-image:after{width: 28px; height: 20px;margin-top: -10px;background-size: 100% auto;}
}

@media(max-width: 991.98px){
    .features-list li .features-image a {padding: 15px;}
    .features-list li:last-child .features-image a {padding: 10px;}
    .features-list li .features-image{margin-bottom: 15px;}
    .features-list li .features-content h5, .features-list li .features-content h5 a{font-size: 15px;}
    .features-list li .features-image:after {width: 20px; height: 16px;margin-top: -8px; background-size: 100% auto;}
}

@media(max-width: 767px){    
    .features-list li .features-content h5, .features-list li .features-content h5 a {font-size: 12px;}
    .features-list li .features-image:after {width: 16px;height: 12px;margin-top: -6px;background-size: 100% auto;}
}

@media(max-width: 560px){
    .features-list li .features-image a {padding: 10px;}
    .features-list li:last-child .features-image a {padding: 6px;}
    .features-list li .features-image {margin-bottom: 10px;}
    .features-list li .features-image:after{right: -45%;}
}

@media(max-width: 480px){
    .features-list{flex-flow: row wrap; justify-content: center; flex-direction: column;}
    .features-list li{width: 100%; margin-bottom: 60px;padding-bottom: 60px;position: relative;}
    .features-list li:last-child{margin-bottom: 0; padding-bottom: 0;}
    .features-list li .features-image{}
    .features-list li .features-image {margin-bottom: 25px;}
    .features-list li .features-content h5, .features-list li .features-content h5 a {font-size: 20px;}
    .features-list li .features-image:after{display: none;}
    .features-list li:after{content: "";
    width: 40px;
    height: 28px;
    position: absolute;
    top: 100%;
    right: 50%;
    transform: rotate(90deg);
    margin-right: -14px;
    margin-top: -20px;
    background: url(../images/next-right.png) no-repeat 0 0;}
    .features-list li:last-child:after{display: none;}
}

/* blog list */
.blog-grid-item ul{display: flex; flex-flow: row wrap; justify-content: flex-start; align-items: flex-start;margin-right: -1%; margin-left: -1%;}
.blog-grid-item ul li{width: 31.33%; margin-right: 1%; margin-left: 1%;list-style: none;margin-bottom: 115px;}
.blog-grid-item ul li .btn{font-family: 'Quicksand', sans-serif; font-weight: 400;}
.blog-grid-item ul li .product-image{margin-bottom: 30px;border-radius: 25px; overflow: hidden;}
.blog-grid-item ul li .product-date{background: url(../images/calender.png) no-repeat; margin-bottom: 15px; padding-left: 32px;}

.blog-product-outer .asPaginator li{border: 0; margin: 0 4px;}
.blog-product-outer .asPaginator li:first-child {border-left: 0;}
.blog-product-outer .asPaginator li a {
    padding: 0;
    color: #000;
    width: 40px;
    height: 40px;
    border: solid 1px #cdcdcd;
    border-radius: 100%;
    text-align: center;
    line-height: 40px;
    font-family: 'Quicksand', sans-serif; font-weight: 600;
    cursor: pointer;
}
.blog-product-outer .asPaginator .asPaginator_active{background: transparent;}
.blog-product-outer .asPaginator .asPaginator_active a{background: #0f1965; color: #fff;}
.blog-product-outer .asPaginator li.asPaginator_ellipsis a{line-height: 30px;}
.asPaginator{text-align: center;}
.asPaginator ul{display: inline-block;}
.blog-product-outer .asPaginator li.asPaginator-prev a{background: url(../images/prev-icon.png) no-repeat center;font-size: 0;cursor: pointer;}
.blog-product-outer .asPaginator li.asPaginator-prev:hover a{background: url(../images/prev-icon-h.png) no-repeat center #0f1965;}
.blog-product-outer .asPaginator li.asPaginator-prev.asPaginator_disable a{cursor: default;}
.blog-product-outer .asPaginator li.asPaginator-next a{background: url(../images/next-icon.png) no-repeat center;font-size: 0;cursor: pointer;}
.blog-product-outer .asPaginator li.asPaginator-next:hover a{background: url(../images/next-icon-h.png) no-repeat center #0f1965;}

.blog-product-outer .asPaginator li.asPaginator-next.asPaginator_disable a{cursor: default;}
.blog-product-outer .asPaginator li:hover a{background: #0f1965; color: #fff;}
.blog-grid-item{margin-top: 80px;}

@media(max-width: 1799px){
    .blog-product-innr:before{width: 120px;height: 400px;background-size: 100% auto;margin-top: -200px;}
    .blog-product-innr:after{width: 100px; height: 410px;background-size: 100% auto;top: -40px;}
}

@media(max-width: 1680px){
    .blog-product-innr:before{width: 90px; height: 300px;margin-top: -150px;}
    .blog-product-innr:after{width: 70px; height: 290px;}
}

@media(max-width: 1399px){
    .blog-product-innr:before {width: 50px;height: 166px;margin-top: -83px;}
    .blog-product-innr:after {width: 44px;height: 180px;top: -100px;}
    .blog-grid-item {margin-top: 40px;}
}

@media(max-width: 1199px){
    .blog-product-innr:before {display: none;}
    .blog-product-innr:after {display: none;}
    .blog-banner .caption h2{font-size: 36px;}
    .blog-banner .caption {padding: 120px 0 170px;}
    .blog-banner p{font-size: 16px;}
    .blog-grid-item {margin-top: 0px;}
    .blog-banner .banner-content {min-height: 500px;}
}

@media(max-width: 1024px){
    .blog-banner .caption h2 {font-size: 32px; margin-bottom: 15px;}
    .blog-grid-item ul li .product-image {margin-bottom: 20px;}
    .blog-grid-item ul li .btn-outer {margin-top: 25px;}
    .blog-grid-item ul li{margin-bottom: 60px;}
}

@media(max-width: 768px){
    .blog-banner .caption h2 {font-size: 24px; margin-bottom: 10px;}
    .blog-banner .caption {padding: 90px 0 170px;}
    .blog-banner{background-size: cover;}
    .blog-banner .banner-content {min-height: 400px;}
    .blog-grid-item {margin-top: 60px;}
}

@media(max-width: 767px){
    .blog-grid-item ul li{width: 48%;}
    .blog-banner .caption {padding: 40px 0 140px;}
    .blog-banner .banner-content {min-height: 310px;}
}

@media(max-width: 480px){
    .blog-grid-item ul{margin-right: 0;margin-left: 0;}
    .blog-grid-item ul li{width: 100%;}
    .blog-grid-item ul li .product-image img{width: 100%; height: auto;}
}

#emailBox{padding: 10px 0px;}
#emailBox li{list-style: none; text-align: left; padding: 10px 30px;}
.login-section-outer .email-select img, .login-section-outer #emailBox li img{margin-right: 5px;}
.login-section-outer .email .text-field{background-image: none; padding-left: 30px;}


.form-check-inline { margin: 0 0 16px; display: inline-block; }
.form-check-inline .form-check-input[type="checkbox"] { display: inline-block; width: 20px; float: left; margin: 4px 8px 0 0; }
.form-check-inline label.form-check-label { display: inline-block; width: calc(100% - 30px); float: left; }

.term-wrapper ul, .term-wrapper ol{list-style: none;}

/* coockis */
.cookie-content {border-top: solid 5px var(--primary-bg); /*position: fixed;*/ top: 0; left: 0; padding: 15px 40px; width: 100%; background-color: #161616; z-index: 10000; }
.cookie-content .center { display: flex; align-items: center !important; justify-content: space-between; padding: 0 !important; }
.cookie-content label { }
.cookie-content h3{color: #fff;font-weight: 400;}
.cookie-content label p { color: #fff;margin-bottom: 0;}
.cookie-content .cookie-btn { display: flex; align-items: center; padding-left: 40px;}
.cookie-content .cookie-btn a.more-info {white-space: nowrap;margin-right: 10px;margin-left: 10px;}
.cookie-content .cookie-btn a.accept-bttn { }
.cookie-content .cookie-btn a.accept-bttn:hover{ }

@media(max-width: 991px){
    .cookie-content .center{flex-direction: column;}
    .cookie-content .cookie-btn{padding-left: 0px;width: 100%; margin-top: 15px;}
    .cookie-content .cookie-btn a.more-info{margin-left: 0px;}
}

@media(max-width: 360px){
    .cookie-content .cookie-btn{flex-direction: column;}
    .cookie-content .cookie-btn a.more-info{margin-bottom: 10px;}
    .cookie-content label p{text-align: center;}
    .cookie-content h3{text-align: center;}
}

.login-form-innr .form-check-inline{width: 100%;}
.case-studies-banner{background: url(../images/case-studies-banner.jpg) no-repeat top center;}

















#reports-table_wrapper #reports-table.dataTable tbody th, #reports-table_wrapper #reports-table.dataTable tbody td {
    padding: 15px 10px !important;
}