/*-------------------------------------------
>>> Infince Theme css/style.css
---------------------------------------------*/

/* Core */
:root{
    --infince-dark-blue: #020D2B;
    --infince-theme-blue: #1E4780;
    --infince-theme-yellow:#FF9D00;
    --infince-btn-black:#1A1919;
    --infince-body-gray:#555555;
}
body{
    font-family: "Source Sans 3", sans-serif!important;
}
/* Core */

/* bs change */
@media (min-width: 1300px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1280px;
    }
}
/* bs change */

/* page components */
.infince-header .navbar-toggler{
    border: 0;
}
.navbar-toggler-icon{
    background-image: none!important;
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--infince-dark-blue);
    width: 0;
    height: 0;
}
.navbar-toggler.collapsed .navbar-toggler-icon:before {
    content: "\e908";
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon:before {
    content: "\e909";
}
.navbar-toggler:focus{
    box-shadow: none;
}
.navbar-toggler-icon {
    transition: transform 0.3s ease;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    transform: rotate(180deg);
}
.infince-btn{
    padding: 11px 16px;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
    height: 48px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    justify-content: center;
}
.infince-btn div{
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.infince-btn span{
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--infince-theme-blue);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
}
.infince-btn:hover span {
    width: 225%;
    height: 562.5px;
}
.infince-btn--primary{
    background-color: var(--infince-btn-black);
    color: #fff;
}
.infince-btn--secondary{
    border:1px solid var(--infince-btn-black);
    color: var(--infince-btn-black);
}
.infince-btn--secondary span{
    background-color: #D9E4FB;
}
.infince-btn--primary.icon i{
    color: #fff;
}
.infince-btn.icon{
    gap: 10px;
    align-items: center;
}
.infince-btn.icon i{
    font-size: 24px;
}
p{
    font-size: 1.25rem;
    color: var(--infince-body-gray);
}
h1{
    font-size: 2.875rem;
    color: var(--infince-dark-blue);
    font-weight: 600;
}
h1 span{
    color: var(--infince-theme-blue);
    font-weight: 800;
}
img{
    max-width: 100%;
    height: auto;
}
/* header */
.infince-nav .nav-item{
    padding: 0 16px;
    line-height: 1.5;
}
.infince-nav .nav-link{
    color: var(--infince-dark-blue);
    font-weight: 500;
}
.navbar-nav .nav-link.active{
    color: var(--infince-theme-blue);
    font-weight: 700;
}
.infince-header{
    padding: 16px 20px;
    transition: all 0.3s;
}
.infince-header.fixed{
    background-color: #fff;
    transition: all 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 2px 4px 21px 0px rgba(52, 83, 130, 0.14);
}
.inf-head-logo{
    width: 150px;
    height: auto;
}
/* header ends*/

/* banner*/
/*.infince-home-banner{
    background: linear-gradient(180deg, #E2F6FC 14.25%, rgba(255, 255, 255, 0.00) 100%);
    padding: 32px 0 48px 0;
}*/
.infince-header {
    background: #E2F6FC;
}
.infince-banner-main {
    margin-top: 32px;
}
.infince-banner-main .infince-banner-image img{
    width: 100%;
    max-width: 100%;
}
.infince-banner-data p{
    color: var(--infince-dark-blue);
    margin-top: 24px;
    margin-bottom: 0;
}
.infince-banner-data h1{
    position: relative;
    padding-bottom: 24px;
}
.infince-banner-data h1:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 6px;
    background-color:var(--infince-theme-yellow);
    border-radius: 50px;
}
/* banner ends*/

/* footer */
footer.infince-footer{
    background-color: #102752;
    padding: 40px 20px 0px 20px;
}
footer.infince-footer .infince-ft-col p{
    color: #B7BECB;
    font-size: 1rem;
}
.ft-row{
    padding: 15px 0 0 0;
    border-top: 1px solid #405275;
    margin-top: 10px;
    align-items: center;
}
.infince-ft-col h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}
.infince-ft-col ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.infince-ft-col ul li a, .ft-links a{
    color: #B7BECB;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}
.infince-ft-col ul li a:hover,.ft-links a:hover{
    transition: all 0.3s;
    color: #fff;
}
.ft-awards{
    display: flex;
    gap: 16px;
}
.infince-ft-col .ft-menu a{
    color: #B7BECB;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}
.infince-ft-col .ft-menu a:hover{
    transition: all 0.3s;
    color: #fff;
}
.infince-ft-col .ft-menu li{
    margin-bottom: 15px;
}
.infince-ft-col .ft-address li{
    margin-bottom: 20px;
}
.infince-ft-col .ft-address li a{
    display: flex;
    align-items: center;
    gap: 8px;
}
.infince-ft-col .ft-address li a i{
    font-size: 20px;
}
.infince-ft-col .ft-social{
    display: flex;
    gap: 8px;
}
.infince-ft-col .ft-social li a{
    width: 32px;
    height: 32px;
    background-color: #B7BECB;
    border-radius: 50px;
    color: #102752;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.infince-ft-col .ft-social li a:hover{
    background-color: #fff;
    color: #102752;
}
.ft-links{
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}
.ft-reserve p{
    font-size: 14px;
    color: #B7BECB;
}
.ft-reserve{
    text-align: center;
}
/* footer ends*/

/* media */
@media(max-width:1200px){
    .ft-reserve{
        text-align: left;
    }
}
@media(max-width:992px){
    .infince-nav {
        align-items: flex-start !important;
        padding: 16px;
        background-color: #fff;
        border-radius: 12px;
        margin-top: 16px;
    }
    .infince-nav .nav-link{
        padding:0;
    }
    .infince-nav .nav-item{
        padding: 0;
    }
    .infince-nav .dropdown-menu{
        border: 0;
    }
    .infince-nav .nav-link{
        font-size: 20px;
    }
    .infince-nav .dropdown-item{
        font-size: 20px;
    }
    .infince-nav .nav-item {
        padding: 10px 0;
        width: 100%;
    }
    .infince-nav .nav-item:first-child{
        padding-top: 0;
    }
    .infince-nav .nav-item:last-child{
        padding-bottom: 0;
    }
    .infince-nav .nav-item a.infince-btn{
        width: 100%;
        justify-content: center;
    }
}
@media(max-width:576px){
    .infince-btn-group{
        flex-direction: column;
    }
    .ft-reserve{
        text-align: left;
        margin-top: 16px;
    }
    .ft-reserve p{
        flex-direction: column;
        gap: 12px;
        display: flex;
    }
    .infince-ft-col .ft-social li a{
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .infince-home-banner{
        padding: 0px 0 48px 0;
    }
    .ft-awards{
        flex-wrap: wrap;
    }
    /*.ft-awards img{
        width: 25%;
    }*/
}
/* media ends*/

/*----- Developers css starts -----*/
.infince-header .container{
    padding: 0px;
}
.infince-footer .container{
    padding: 0px;
}

/* Top Nav Menu */
.infince-nav .menu-item{
    padding: 0 16px;
    line-height: 1.5;
}
.infince-nav .menu-item a{
    color: var(--infince-dark-blue);
    font-weight: 500;
    text-decoration: none;
    padding: 8px;
}
.navbar-nav .menu-item.current-menu-item a{
    color: var(--infince-theme-blue);
    font-weight: 700;
}

.infince-navbar li.top-nav-btn{
    list-style: none;
}
.infince-navbar li{
    list-style: none;
}
/* for submenu */
.infince-nav li.menu-item-has-children {
    position: relative; /* Needed for absolute positioning of the submenu */
}
.infince-nav > li.menu-item-has-children > a:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
/* sub-menu on big screen */
@media(min-width:991px){
        .infince-nav li.menu-item-has-children > .sub-menu {
            display: none; /* Initially hide the submenu */
            position: absolute;
            top: 28px; /* Position below the parent link */
            left: 0;
            background-color: #fff; /* Example background color */
            padding: 10px 0;
            z-index: 10; /* Ensure it appears above other elements */
            min-width: 240px; /* Adjust as needed */
            border: 1px solid rgba(0, 0, 0, 0.176);
            border-radius: 6px;
        }
        .infince-nav .sub-menu .sub-menu {
            left: 100% !important;
            top: 0px !important;
        }
}
/* sub-menu on small screen */
@media(max-width:992px){
        .infince-nav li.menu-item-has-children > .sub-menu {
            display: none;
            position: relative;
            top: 100%;
            left: 0;
            background-color: #fff;
            padding: 10px 0;
            z-index: 10;
            min-width: 200px;
        }
}
.infince-nav li.menu-item-has-children:hover > .sub-menu {
    display: block; /* Show the submenu on hover */
}

.infince-nav li.menu-item-has-children > .sub-menu li a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: #333; /* Example text color */
}

.infince-nav li.menu-item-has-children > .sub-menu li a:hover {
    background-color: #f0f0f0;
}

/* Arrow for dropdown triggers within sub-menus (pointing right) */
.infince-nav li.menu-item-has-children .sub-menu li.menu-item-has-children > a:after {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    content: "";
    border-top: .3em solid transparent;
    border-left: .3em solid;
    border-bottom: .3em solid transparent;
    border-right: 0;
    right: 16px;
    position: absolute;
    top: 16px;
}

.infince-nav .sub-menu .menu-item{
    padding: 0 0px;
}


/* Home page */
.faq .e-n-accordion-item[open] .e-n-accordion-item-title { border-radius: 15px 15px 0px 0px; }
.faq .e-n-accordion-item{ box-shadow: 0px 10px 40px 0px #00000008; }
.hearexpert .e-n-tabs-heading { margin-left: 45%; }
.hearexpert .premium-blog-post-container { background: url(/wp-content/uploads/bg-1.png) bottom right/ contain no-repeat; }
.hearexpert .premium-blog-post-outer-container:first-child .premium-blog-post-container,
.hearexpert .premium-blog-post-outer-container:first-child .premium-blog-content-wrapper{ background-color: #D6D2F1 !important; }
.hearexpert .premium-blog-post-outer-container:last-child .premium-blog-post-container,
.hearexpert .premium-blog-post-outer-container:last-child .premium-blog-content-wrapper{ background-color: #F2DDD9 !important; }
.home-tab .e-n-tabs-heading { box-shadow: 0px 4px 21px 0px #4F72A71A; border-radius: 16px; padding: 10px; background: #FFFFFF; }
.hearexpertsection h2 { font-family: Source Sans 3, sans-serif; font-weight: 500; font-size: 36px; line-height: 54px; letter-spacing: 2%; color: #020D2B; }
.hearexpertsection h2 span { font-weight: 800; color: #1E4780;}
.hearexpertsection .ressec{ min-height: 150px; box-shadow: 0px 4px 21px 0px #4F72A71F;  border-radius: 16px; padding: 30px; background: #779a2747 url(/wp-content/uploads/bg-1.png) bottom right/ contain no-repeat;}
.hearexpertsection .resouces-row {display: flex;}
.hearexpertsection .col-12:first-child .ressec{ background: #D6D2F1 url(/wp-content/uploads/bg-1.png) bottom right/ contain no-repeat; }
.hearexpertsection .col-12:last-child .ressec{ background: #F2DDD9 url(/wp-content/uploads/bg-1.png) bottom right/ contain no-repeat;  }
.customtabs { padding: 0px; }
.customtabs ul#pills-tab { background: #FFFFFF; box-shadow: 0px 4px 21px 0px #4F72A71A; border-radius: 13px; display: inline-flex; width: auto; justify-content: flex-start; align-items: center; padding: 10px; }
.customtabs .nav-pills .nav-link { color: #555555; font-family: Source Sans 3, sans-serif; font-weight: 500; font-size: 18px;  line-height: 100%; letter-spacing: 0%; padding-left: 42px; position: relative;  margin-right: 6px; }
.customtabs .nav-pills .nav-link:before { content: ""; width: 20px; height: 20px; position: absolute; left: 15px; top: 6px; background: url(/wp-content/uploads/All.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills .nav-link.active{ color: #2E448C; background: #E8ECF9; border-radius: 12px; padding: 12px 15px 12px 40px; }
.customtabs .nav-pills .nav-link.active:before { background: url(/wp-content/uploads/Widget.svg) bottom right/ contain no-repeat; top: 10px; }
.customtabsapplist article { box-shadow: 0px 4px 16px 0px #F3F3F34D; border: 2px solid #E9EEF4; background: #FFFFFF; border-radius: 16px; padding: 10px 14px 15px; min-height: 239px; margin-bottom: 25px; display: flex; flex-direction: column; justify-content: space-between; }
.customtabsapplist article img { height: 64px; width: auto; margin-bottom: 6px; }
.customtabsapplist article h2, .customtabsapplist article h2 a { color: #020D2B; font-family: Source Sans 3, sans-serif; font-weight: 600; font-size: 18px; line-height: 100%; letter-spacing: 0%; }
.customtabsapplist article p { color: #555555; font-family: Source Sans 3, sans-serif; font-weight: 400; font-size: 18px; line-height: 26px; letter-spacing: 0%; margin-bottom: 8px; }
.customtabsapplist  div.learnmorebtn a { color: #3D76CC; font-family: Source Sans 3, sans-serif; font-weight: 600; font-size: 16px; line-height: 120%; letter-spacing: 0.5%; vertical-align: middle; display: block; }
.customtabs .nav-pills #pills-crm-tab:before { background: url(/wp-content/uploads/Layers-Minimalistic-1.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-crm-tab.active:before { background: url(/wp-content/uploads/CRM-blue.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-management-tab:before { background: url(/wp-content/uploads/Document-1.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-management-tab.active:before { background: url(/wp-content/uploads/content-management-blue.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-forum-tab:before { background: url(/wp-content/uploads/Chat-Line-1.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-forum-tab.active:before { background: url(/wp-content/uploads/Chat-blue.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-project-tab:before { background: url(/wp-content/uploads/Settings-Minimalistic-1.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-project-tab.active:before { background: url(/wp-content/uploads/Settings-blue.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-ecommerce-tab:before { background: url(/wp-content/uploads/ecommerce.png) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-ecommerce-tab.active:before { background: url(/wp-content/uploads/Bag-blue.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-scattered-tab:before { background: url(/wp-content/uploads/Scattered-Tools_-Line-icon.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-scattered-tab.active:before { background: url(/wp-content/uploads/Sidebar-Code.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-remote-tab:before { background: url(/wp-content/uploads/Hashtag-Square.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-remote-tab.active:before { background: url(/wp-content/uploads/Limited-Access.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-overload-tab:before { background: url(/wp-content/uploads/Widget-3.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-overload-tab.active:before { background: url(/wp-content/uploads/Platform-Overload.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-risk-tab:before { background: url(/wp-content/uploads/Shield-Warning.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-risk-tab.active:before { background: url(/wp-content/uploads/Data-Risks.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-decentralized-tab:before { background: url(/wp-content/uploads/Settings.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-decentralized-tab.active:before { background: url(/wp-content/uploads/Decentralized-Control_.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-Downloadables-tab:before { background: url(/wp-content/uploads/Downloadables-Outline.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-Downloadables-tab.active:before { background: url(/wp-content/uploads/Download-Square.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-Whitepapers-tab:before { background: url(/wp-content/uploads/File-Text.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-Whitepapers-tab.active:before { background: url(/wp-content/uploads/Case-Studies.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-Videos-tab:before { background: url(/wp-content/uploads/Videocamera-Record.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-Videos-tab.active:before { background: url(/wp-content/uploads/Videos.svg) bottom right/ contain no-repeat;}
.customtabs .nav-pills #pills-Blogs-tab:before { background: url(/wp-content/uploads/Documents-Minimalistic.svg) bottom right/ contain no-repeat; }
.customtabs .nav-pills #pills-Blogs-tab.active:before { background: url(/wp-content/uploads/Blogs.svg) bottom right/ contain no-repeat;}

.operationsection .ressec h2 { font-family: Source Sans 3, sans-serif; font-weight: 600; font-size: 34px; line-height: 42px; letter-spacing: 2%; color: #020D2B; padding-bottom: 10px; }
.operationsection .ressec h3 { font-weight: 500; font-size: 20px; padding-bottom: 10px; color: #1E4780;}
.operationsection .ressec p { font-family: Source Sans 3, sans-serif; font-weight: 400; font-size: 20px; line-height: 34px; letter-spacing: 0%; color: #020D2B; }
.viewall-applast a { border: 1px solid #1A1919; height: 47px; border-radius: 12px; padding: 11px 16px; color: #1A1919; font-family: Source Sans 3, sans-serif; font-weight: 600; font-size: 18px; line-height: 127%; display: inline-block; }
.customtabsapplist .viewall-applast article { justify-content: center; background: #093FA3 url(/wp-content/uploads/New-bg.png) bottom right/ cover no-repeat; }
.customtabsapplist article .viewall-appbtn h2 { font-size: 20px; line-height: 30px; margin-bottom: 25px; color: #fff;}
.viewall-applast a{ color: #fff; border: 1px solid #fff; }
.viewall-applast a:hover { background-color: #1E4780; color: #FFFFFF; border-color: #1E4780; transition: all 0.3s; }
.operationsection .ressec span{ font-weight: 600; font-size: 18px; line-height: 127%; color: #1A1919; }

.hearexpertsection .customtabs.float-right { text-align: right; position: absolute; right: 0px; top: 40px; }
.hearexpertsection { position: relative; }
.hearexpertsection div#pills-tabContent { padding-top: 20px; }
.hearexpertsection .ressec p { color: #020D2B; font-family: Source Sans 3, sans-serif; font-weight: 600; font-size: 20px; line-height: 30px; }
.hearexpertsection .ressec span { color: #395168; font-family: Source Sans 3, sans-serif; font-weight: 500; font-size: 16px; line-height: 100%; }
.hearexpertsection #pills-Videos .ressec{ position: relative; }
.hearexpertsection #pills-Videos  .ressec aside { position: absolute; bottom: 40px; left: 40%; width: 80px;}
.faq.elementor-widget-n-accordion .e-n-accordion-item[open] > summary.e-n-accordion-item-title .e-n-accordion-item-title-text{ font-weight: 600 !important; }

.infince-header.white-header { background: #fff; }

.applistingpagesec .e-con .elementor-widget { width: 100%; }

.apps-cpt-layout .cpt-sidebar { margin-right: 20px; }
.apps-cpt-layout .cpt-sidebar a { display: block; }
.apps-cpt-layout .cpt-main { border-radius: 24px;  background: #FFFFFF; padding: 27px 24px 20px; }

.cpt-top-filters { display: flex; border: 1px solid #E3EFFA; align-content: center; box-shadow: 2px 4px 21px 0px #34538224; border-radius: 15px; margin: -100px auto 40px; width: 85%; height: 99px; background: #fff; }
.cpt-top-filters .searchappsinput, .cpt-top-filters select { border: 1px solid #DFE5EE; border-radius: 8px; padding: 10px 16px; background: #fff; height: 44px; margin-right: 20px; font-weight: 400; font-size: 16px; line-height: 100%; color: #707070; width: 100%; }
.cpt-top-filters form#ajax-cpt-filter { margin: auto; padding: 0px 20px; position: relative; width: 100%; }
.cpt-top-filters .searchappsinput{ padding-left: 40px; }
.cpt-top-filters .searchapps{ position:relative; }
.cpt-top-filters .searchapps:before { content: ""; width: 20px; height: 20px; position: absolute; left: 25px; top: 12px; background: url(/wp-content/uploads/search.svg) bottom left/ contain no-repeat; }
.cpt-top-filters .searchappsinput:focus, .cpt-top-filters select:focus { outline: none; }

/*.cpt-top-filters select { appearance: none; z-index:999;}
.cpt-top-filters .appcatsec{ position: relative; }
.cpt-top-filters .appcatsec:after { content: ""; width: 20px; height: 20px; position: absolute; right: 30px; top: 12px; background: url(/wp-content/uploads/select.svg) bottom right/ contain no-repeat; }*/

button.commonbtnblack { border: 1px solid #1A1919; background: #1A1919; padding: 8px 16px; color: #fff; border-radius: 12px; font-weight: 700; font-size: 18px; width: 100%; }
button.commonbtnblack:hover { background-color: #1E4780; color: #FFFFFF; border-color: #1E4780; transition: all 0.3s; }

.cpt-top-filters .searchappsinput:hover, .cpt-top-filters select:hover, .cpt-top-filters .searchappsinput:focus, .cpt-top-filters select:focus{ box-shadow: 0px 4px 21px 0px #4F72A71A; }
.customtabsapplist article:hover { box-shadow: 0px 4px 21px 0px #4F72A71A; }

.cpt-sidebar h4 { color: #1E4780; font-weight: 700; font-size: 28px; line-height: 46px; margin-bottom: 32px; }
.cpt-sidebar ul#cpt-category-list { list-style: none; padding: 0px 25px 0px 0px; }
.cpt-sidebar ul#cpt-category-list li a { color: #707070; font-size: 20px; font-weight: 400; line-height: 24px; margin-bottom: 18px; }
.cpt-sidebar ul#cpt-category-list li a.active { position: relative; background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%); padding: 8px 8px 8px 45px; border-radius: 8px; gap: 8px; color: #1E4780; font-weight: 600; font-size: 18px; }
.cpt-sidebar ul#cpt-category-list li a.active:after{ content: ""; width: 20px; height: 20px; position: absolute; left: 15px; top: 9px; background: url(/wp-content/uploads/arrow.svg) bottom right/ contain no-repeat;  }

.custom-select-wrapper { position: relative; }
.custom-select { -webkit-appearance: none; -moz-appearance: none; appearance: none; }
.custom-select-wrapper::after { content: '\25BC'; position: absolute; top: 50%; right: 25px; transform: translateY(-50%); pointer-events: none; color: #020D2B; font-size: 12px; }

.customtabsapplistinner h2 { font-weight: 700; font-size: 28px; line-height: 100%; color: #020D2B; margin: 10px 0px; }
.customtabsapplistinner p { font-weight: 400; font-size: 20px; line-height: 30px; color: #555555; margin-bottom: 25px; }
span.appfilter-error { text-align: center; color: #e22328; width: 100%; position: absolute; }

.elementor-element.topsechome { display: inline-flex; width: auto !important; max-width: max-content; }
.topsechome .elementor-element.e-flex.e-con-boxed.e-con.e-child { width: auto !important; }

.digital-workplace-slider h3.elementor-image-box-title { margin-bottom: 15px; color: #183966; font-family: "Source Sans 3",Sans-serif; font-size: 25px; font-weight: 600; text-align: center; }
.digital-workplace-slider p.elementor-image-box-description { color: #666666; font-family: "Source Sans 3",Sans-serif; font-size: 20px; font-weight: 400; padding: 0px 25px; text-align: center; }
.digital-workplace-slider .elementor-image-box-content { width: 100%; }
.digital-workplace-slider figure.elementor-image-box-img { width: 60%; margin: 0 auto 20px !important; }
.digital-workplace-slider .elementor-widget-container { padding: 20px; }
.digital-workplace-slider button.slick-arrow { position: absolute; bottom: 0; font-size: 0px;  width: 40px; height: 40px; z-index: 1; border: 0; }
.digital-workplace-slider  button.slick-prev.slick-arrow { background: url(/wp-content/uploads/homeGroupleft.png) no-repeat; left: 45%; bottom: -10%;  margin: 0 auto; background-size: contain; outline: 0; }
.digital-workplace-slider  button.slick-next.slick-arrow { background: url(/wp-content/uploads/hometestiGroupright.png) no-repeat; bottom: -10%; right: 45%; margin: 0 auto; background-size: contain; outline: 0; }
.digital-workplace-slider .rightbordergray:after { content: ''; height: 65%; width: 1px; position: absolute; right: 0; top: 20%; background-color: #CACACA45; }
.homeworkborder .elementor-widget-wrap .elementor-widget-container:hover { background: #FFFFFF; box-shadow: 0 4px 50px 3px rgba(130, 130, 130, 0.08); border-radius: 20px; }
.digital-workplace-slider{max-width: 100%;}
.designheading .headingbnr { position: relative; z-index: 0; width: fit-content; width: -moz-max-content; }
.designheading .headingbnr:before { content: ""; position: absolute; height: 18px; background: #E5F6FE; width: 100%; bottom: 0px; }
.designheading .headingbnr span{ position: relative; z-index: 9999; display:flex; }
.designheading .headingbnr.headingbnr2 span{ padding-left: 10px; }
.designheading .headingbnr2.headingbnr3 span { padding-left: 0px; }
.designheading1 .elementor-heading-title { margin: 0 auto; }
.designheading1 .headingbnr{ margin: 0 auto; width:fit-content; }
.designheading1 .headingbnr span{ text-align: center; width:fit-content; }
.designheading1 .headingbnr:before{ left: 0px; right:0px; }
.designheading2 .headingbnr { margin: 0 auto; }
.designheading2 .headingbnr:before { left: 0; right: 0; }
.homedigitalwork .designheading2 .elementor-heading-title{ display: flex; text-align: center; margin: 0 auto;  width: fit-content; }
.resouces-row .ressec img.sp-no-webp { max-width: 560px; }


.infincegooglecompare .infi-compare-data .col-infince, 
.infincegooglecompare .infi-compare-head .col-infince { width: 30%; }
.infincegooglecompare .col-workspace.googleworkplace { width: 75%; padding-top: 48px; padding-bottom: 0px; }
.infincegooglecompare span.comprckd { color: #101C38CC; background-size: contain; background-position: center;  background-repeat: no-repeat; width: 24px; height: 24px; display: block; margin: auto; }
.infincegooglecompare span.comprckd-true { background-image: url(/wp-content/uploads/check.png); }
.infincegooglecompare span.comprckd-false { background-image: url(/wp-content/uploads/false.png); }
.google-alt-reqbtn .elementor-button-icon svg { width: 14px; }
.infincegooglecompare .firstcmprrow div.col-infince,
.infincegooglecompare .firstcmprrow div.col-workspace{ padding: 5px 0px 30px; width: 33.33%;}
.infincegooglecompare .firstcmprrow span { background: #F4F4F4; padding: 6px 16px; border-radius: 50px; font-size: 16px; line-height: 20.16px; color: #222222; }
.infincegooglecompare .firstcmprrow .col-infince span { background: none; }
.infincegooglecompare .pricingmodel { color: #E6202A;font-size: 20px; font-weight: 800; line-height: 25px; }
.infincegooglecompare .pricingmodel span { color: #222222; display: block; font-size: 14px; font-weight: 400; padding-top: 6px; }

.infincegooglecompare .col-workspace, .infincegooglecompare .col-infince { padding-bottom: 0px; }
.infincegooglecompare .infi-compare-head { border-bottom: 1px solid #E0E0E0; }
.infincegooglecompare .infi-compare-data.firstcmprrow{ padding-top: 20px; border-bottom: none; }
.infincegooglecompare .infi-compare-head figure img { height: 35px; width: auto; }
.infincegooglecompare .infi-compare-head.stickytable figure img { height: 25px; }
.infi-compare-head.stickytable { top: 90px; z-index: 2; }
.infi-compare-head.stickytable .firstcmprrow div.col-infince, 
.infi-compare-head.stickytable .firstcmprrow div.col-workspace { padding: 8px 0px; }
.infi-compare-head.stickytable .col-workspace, 
.infi-compare-head.stickytable .col-infince { padding: 14px 0px 5px; }
.infi-compare-head.stickytable .infi-compare-data.firstcmprrow{ padding-top: 0px; }
.infi-compare-head.stickytable .firstcmprrow span{ font-size: 14px; }

.infi-compare-section.infincesharepointcompare { background: #F7F7FC;  border-radius: 48px; padding: 25px 15px; }
.infincesharepointcompare .infi-compare-head { background: #F7F7FC; z-index: 9;}
.infincesharepointcompare .infi-compare-head .col-data { padding: 34px 0px; }
.infincesharepointcompare .infi-compare-head .col-data h2 { padding-left: 20px; font-family: Source Sans 3; font-size: 24px; font-weight: 700; line-height: 32.78px; color: #183966; }
.infincesharepointcompare .infi-compare-data .col-data p { padding-left: 20px; }
.infincesharepointcompare .infi-compare-head .col-infince, 
.infincesharepointcompare .infi-data-wrapper .col-infince,
.infincesharepointcompare .infi-data-wrapper .infi-compare-data:nth-of-type(even) .col-infince { background: #E3F4FB; width: 34%; margin-right: 25px; }
.infincesharepointcompare .infi-compare-head .col-workspace, 
.infincesharepointcompare .infi-data-wrapper .col-workspace { background: #fff;  width: 34%; }
.infincesharepointcompare .infi-data-wrapper .col-infince, 
.infincesharepointcompare .infi-data-wrapper .col-workspace  { font-family: Source Sans 3; font-size: 16px; font-weight: 500; line-height: 26px; text-align: left; }
.infincesharepointcompare .infi-data-wrapper .col-infince { color: #181818; padding: 0px; }
.infincesharepointcompare .infi-compare-head .col-workspace { border-radius: 34px 34px 0px 0px; }
.infincesharepointcompare .infi-compare-data .col-data, 
.infincesharepointcompare .infi-compare-head .col-data { width: 30%; margin-right: 25px; align-items: center; display: flex;}
.infincesharepointcompare .infi-compare-data ul { padding: 25px; margin-bottom: 0px; }
.infincesharepointcompare .infi-compare-data li { font-family: Source Sans 3; font-size: 18px; font-weight: 400; line-height: 26px; text-align: left; padding-bottom: 10px; list-style: none; position: relative; padding-left: 30px; }
.infincesharepointcompare .infi-compare-data li:after{ content: ""; background-image: url(/wp-content/uploads/checkmark-green.png); width: 20px; height: 20px; position: absolute; top: 4px; left: 0px; background-size: contain; background-repeat: no-repeat; }
.infincesharepointcompare .infi-compare-data { border-bottom: none; align-items: stretch;}
.infincesharepointcompare .infi-compare-head .col-infince { border-radius: 34px 34px 0px 0px; }
.infincesharepointcompare .infi-data-wrapper .infi-compare-data:last-child .col-infince, 
.infincesharepointcompare .infi-data-wrapper .infi-compare-data:last-child .col-workspace { border-radius: 0px 0px 34px 34px; }
.infincesharepointcompare  div.col-infince,
.infincesharepointcompare  div.col-data,
.infincesharepointcompare  div.col-workspace { position: relative; }
.infincesharepointcompare  div.col-infince:after,
.infincesharepointcompare  div.col-data:after,
.infincesharepointcompare  div.col-workspace:after {content: "";background-image: url(/wp-content/uploads/Line24.png);margin:auto;width: 84%; height: 2px;position: absolute;bottom: 0px;left: 8%;background-size: contain;background-repeat: no-repeat;}
.infincesharepointcompare  div.col-data:after {background-image: url(/wp-content/uploads/Line9.png);}
.infincesharepointcompare  div.col-workspace:after {background-image: url(/wp-content/uploads/Line6.png);}
.infincesharepointcompare .infi-compare-data:last-child div.col-data:after{ background-image: none; }

.sharepointtabs a.elementor-toggle-title { display: flex; }
.sharepointtabs a.elementor-toggle-title span { padding-right: 20px; font-weight: 700; }

.sharepoint-snap-tabs .elementor-tab-title { font-family: Source Sans 3; font-size: 20px; font-weight: 700; line-height: 30px; text-align: left; }
.sharepoint-snap-tabs .elementor-tab-title.elementor-active { background: #2568EF !important; border-radius: 68px; }
.sharepoint-snap-tabs .elementor-tab-title.elementor-active:after { content: ''; position: absolute; right: 10px !important; top: 6px !important; background-image: url(/wp-content/uploads/2024/09/next.png); background-repeat: no-repeat; height: 58px ; width: 58px !important; background-size: 100%; }
.sharepoint-snap-tabs .elementor-tabs-content-wrapper { background: #fff; border-radius: 32px; padding: 0px 5px 0px 80px; margin-left: -85px; margin-top: -40px;  margin-bottom: -40px; }
.sharepoint-snap-tabs .elementor-tabs-content-wrapper .train-tab-row2 { color: #181818; font-family: Source Sans 3; font-size: 16px; font-weight: 500; line-height: 26px; }

.sharepointslider button.slick-arrow { position: absolute; top: -50px; right: 20px; color: transparent; border: none; background: transparent; height: 0px; }
.sharepointslider button.slick-prev.slick-arrow { right: 45px; }
.sharepointslider button.slick-arrow:before { content: ''; background: url(/wp-content/uploads/arrow-right.png) no-repeat; height: 40px; width: auto; background-size: contain !important; display: flex; }

.sharepointslider button.slick-next.slick-arrow:before { background: url(/wp-content/uploads/blue-right.png) no-repeat; }
.sharepointslider button.slick-prev.slick-arrow:before { background: url(/wp-content/uploads/blue-left.png) no-repeat; height: 33px; }

.sharepointslider button.slick-prev.slick-disabled.slick-arrow:before { background: url(/wp-content/uploads/arro-left.png) no-repeat; height: 33px; }
.sharepointslider button.slick-next.slick-disabled.slick-arrow:before { background: url(/wp-content/uploads/arrow-right.png) no-repeat; }


/****** New Style *****/
@media (min-width: 1200px){
    .infi-compare-section .container {
        max-width: 1240px;
    }
}
.infi-compare-section {
    padding: 48px 0;
    position: relative;
}
.infi-compare-head {
    display:-webkit-box;
    display:-ms-flexbox;
    display: flex;
    width: 100%;
    position: sticky;
    top: 74px;
    background-color: #fff;
}
.infi-compare-head .col-data{
    width: 50%;
}
.infi-compare-head .col-workspace , .infi-compare-head .col-infince {
    width: 25%;
    text-align: center;
    padding-top: 34px;
    padding-bottom: 34px;
}
.infi-compare-head .col-infince{
    background-color: #E3F4FB;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
}
.infi-compare-data{
    display:-webkit-box;
    display:-ms-flexbox;
    display: flex;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid #E0E0E0;
}
.infi-compare-data .col-data{
    width: 50%;
}
.infi-compare-data .col-workspace , .infi-compare-data .col-infince{
    width: 25%;
    text-align: center;
}
.infi-compare-data .col-infince{
    background-color: #E3F4FB;
    padding: 18px 0;
}
.infi-data-wrapper .infi-compare-data:nth-of-type(even) .col-infince {
    background-color:#F1FAFD;
}
.infi-compare-data .col-data p{
    font-size: 18px;
    font-weight: 600;
    color: #101c38CC;
    margin: 0;
    text-transform: capitalize;
}
.infi-compare-data .col-data h3{
    color: #050518;
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}
.heght-48{
    height: 48px;
}
.infi-compare-data .compare-tag{
    font-size: 16px;
    font-weight: 700;
    color: #050518;
    padding: 8px;
    border-radius: 4px;
    background-color: #F5FFF6;
    display: inline-block;
}
.compare-normal-tag{
    color: #3B3B47;
    font-size: 18px;
    font-weight: normal;
}
.infi-compare-data .compare-tag span{
    font-size: 18px;
}
.infi-compare-head figure{
    padding-left: 15px;
    padding-right: 15px;
}
.infi-compare-head .col-data,.infi-compare-data .col-data{
    padding-right: 15px;
}
.infi-compare-head figure img{
    max-width: 100%;
    height: auto;
}
.infi-compare-databottom p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    padding: 25px 20px 0px;
}
.gwasecond li.elementor-icon-list-item:after {
    content: "";
    width: 13px !important;
    height: 13px;
    position: absolute !important;
    left: 0px !important;
    top: 5px;
    border: solid 2px #6884ab !important;
    border-radius: 50%;
}
.gwasecond li.elementor-icon-list-item {
    position: relative !important;
    padding-left: 20px !important;
}
.gwasecond span.elementor-icon-list-icon {
    display: none !important;
}
.gwasecond span.elementor-icon-list-text {
    padding-right: 18px;
}
.mkb-single-content .mkb-article-text ol {
    margin: 0 0 15px 15px;
    padding: 0px;
}
.mainbtn.mainbtnmedium .elementor-button-link .elementor-button-text:after {
    top: 8px;
}
.mkb-root .mkb-single-content .mkb-article-text figure.wp-block-table.alignleft{
      text-align: left;
}
.mkb-root .mkb-single-content__text .mkb-article-text a {
    color: #3737f4 !important;
}
.gwa-highlight {
    margin: 20px 0px 0px;
}
.gwa-highlight p {
    color: #e02328;
    font-weight: 700;
    font-size: 20px;
}
.infi-compare-head .col-infince .gwa-highlight p {
    padding-top: 4px;
}
.dwibannerhead .elementor-heading-title span {
    color: #00f9b7;
    font-weight: 600;
    letter-spacing: 0.8px;
}
.dwibannerhead ul {
    margin: 0px;
    padding: 0px;
}
.dwibannerhead li {
    color: #c2b143;
    text-shadow: 0 0 #5e6736;
    font-size: 18px;
    font-weight: 500;
    list-style: none;
    background: #1c363d;
    width: auto;
    border-radius: 60px;
    padding: 5px 15px 5px 40px;
    position: relative;
    margin: 6px 20px 14px 0px;
    display: table;
}
.dwibannerhead ul li:before {
    content: "";
    background-image: url(/wp-content/uploads/yellowtick.svg);
    width: 16px;
    height: 16px;
    position: absolute;
    left: 15px;
    top: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}
.dwicorebundle {
    display: block;
    width: 100%;
}
.dwicorebundle div.innercoresingle {
    background: #fff;
    border-radius: 10px;
    padding: 45px 25px 15px;
    box-shadow: 0px 2px 4px 0px rgb(182 176 176 / 50%);
    margin: 45px 20px 10px 0;
    min-height: 130px;
    position: relative;
}
.dwicorebundle .innercoresingle h2 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #183966;
}
.dwicorebundle div.innercoresingle img.coreimage {
    position: absolute;
    top: -40px;
    width: 75px;
}
.dwicorebundle  button.slick-arrow {
    position: absolute;
    bottom: 0;
    font-size: 0px;
    width: 40px;
    height: 40px;
    z-index: 1;
    border: 0;
}
.dwicorebundle button.slick-prev.slick-arrow {
    background: url(/wp-content/uploads/homeGroupleft.png) no-repeat;
    right: 75px;
    top: -20px;
    margin: 0 auto;
    background-size: contain;
    display:none;
}
.dwicorebundle button.slick-next.slick-arrow {
    background: url(/wp-content/uploads/hometestiGroupright.png) no-repeat;
    top: -20px;
    right: 20px;
    margin: 0 auto;
    background-size: contain;
}

.dwicorebundle .col-12{
  padding-right: 20px;
    padding-left: 20px;
}

.tooltip-new { position: relative; width: auto !important;}
.tooltip-new .tooltiptext { visibility: hidden; width: 200px; background-color: #fff; text-align: center; border-radius: 6px; padding: 10px 10px; position: absolute; z-index: 1; bottom: 100%; left: 50%; margin-left: -100px; background: #fff; color: #4f4c8f; box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.31); font-size: 12px; font-weight: 600; line-height: 20px; opacity: 0; transition: opacity .5s; font-family: 'Source Sans 3', sans-serif !important;}
.tooltip-new .tooltiptext::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -11px; border-width: 5px; border-style: solid; border-color: #fff transparent transparent transparent; box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.31);}
.tooltip-new:hover .tooltiptext { visibility: visible; opacity: 1;}
.sharepointslider .slick-slide .elementor-widget-container { min-height: 282px; }

.privacy_policy{ font-size: 16px; line-height: 28px; color: #101c38CC;}
.privacy_policy h2.elementor-heading-title img{ margin-right: 15px; vertical-align: baseline;}
.privacy_policy p{ padding-left: 26px; font-family: "Source Sans 3", sans-serif !important; color: #020D2B; }
.privacy_policy  .elementor-widget-heading{ margin-bottom: 10px !important; }
.privacy_policy ul.main-text{ margin: 0; padding: 20px 0 0 45px;}
.privacy_policy ul.main-text li{ list-style-type: none; position: relative; margin-bottom: 20px; font-family: "Source Sans 3", sans-serif !important;}
.privacy_policy ul.main-text li:after{ width: 8px; height: 8px; background: #d8d8d8; position: absolute; content: ''; top: 11px; left: -20px; transform: rotate(45deg);}
ul.main-text1 li{ font-family: "Source Sans 3", sans-serif !important; list-style-type: none; position: relative; line-height: 36px !important;font-size:18px;}
ul.main-text1 li::after { position: absolute;  content: ''; display: inline-block; transform: rotate(45deg); width: 9px; height: 14px; border-bottom: 3px solid #35c71c; border-right: 3px solid #35c71c; left: -20px; top: 10px; }

.contact-right-form .rdname,
.contact-right-form select {
    width: 100% !important;
    height: 42px !important;
    border-radius: 8px !important;
    border: solid 1px #D4D4D4 !important;
    background-color: #fff !important;
    padding: 2px 14px;
}

.contact-right-form .rdemail {
    width: 100% !important;
    height: 42px !important;
    border-radius: 8px !important;
    border: solid 1px #D4D4D4 !important;
    background-color: #fff !important;
    padding: 2px 14px;
}
.contact-right-form .rdphone {
    width: 100% !important;
    height: 42px !important;
    border-radius: 8px !important;
    border: solid 1px #D4D4D4 !important;
    background-color: #fff !important;
    padding: 2px 14px;
    margin-left: 2%;
}
.contact-right-form .row div p{
    margin-bottom: 24px;
}
.contact-right-form input, .contact-right-form select{
    font-family: Source Sans 3;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #303030;
}
.contact-right-form select::placeholder, .contact-right-form select option:first-child { color: #303030bf; }
.contact-right-form .wpcf7-submit {
    border: 1px solid #1A1919;
    background: #1A1919;
    border-radius: 12px;
    padding: 11px 36px;
    height: 45px;
    font-family: Source Sans 3;
    font-weight: 600;
    font-size: 18px;
    line-height: 127%;
    color: #fff;
}
.contact-right-form .contact-text{ color: #707070; font-family: Source Sans 3; font-size: 14px; line-height: 22px; }
.contact-right-form .contact-text a { font-weight: 600; color: #3D76CC; }
.contact-right-form .wpcf7-not-valid-tip{ font-family: Source Sans 3; font-size: 13px; line-height: 20px; }
.contact-right-form .wpcf7-response-output { text-align: center; margin: 20px 0px; }

.contact-right-form input:focus, .contact-right-form select:focus,
.contact-right-form input:active, .contact-right-form select:active
.contact-right-form input:hover, .contact-right-form select:hover,
.contact-right-form input:focus-visible, .contact-right-form select:focus-visible{ border: solid 1px #D4D4D4 !important; box-shadow: 0px 4px 21px 0px #4F72A71A;}

/** casestudy **/
.casestudytab .elementor-tab-title {
    background-color: #f5f8fd;
    border-radius: 50px 0px 0px 50px;
    margin-bottom: 22px;
    padding: 10px !important;
}
.casestudytab .elementor-tab-title a{
    padding: 8px;
    display: flex;
    align-items: center;
}
.casestudytab .elementor-tab-title a span {
    opacity: 0.2;
    font-size: 35px;
    font-weight: 700;
    padding-right: 12px;
}
.casestudytab .elementor-tab-title:last-child{
    margin-bottom: 0px;
}

.casestudytab .elementor-tab-title.elementor-active {
    background-color: #2e6bc7;
}

.casestudytab .elementor-tabs-wrapper {
    border-right: 4px solid #2e6bc7;
}

.casestudytab .elementor-tabs-content-wrapper {border-radius: 0px 8px 8px 0px;padding: 15px 15px 0px;}

.casestudytab .elementor-tabs-content-wrapper ul li {
    list-style: none;
    background: #f6f7f9;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
}
.casestudytab .elementor-tabs-content-wrapper ul.withimage li {
    display:flex;
}
.casestudytab .elementor-tabs-content-wrapper ul.withimage li img {
    height: 50px;
    padding-right: 12px;
    margin: auto;
}

.casestudytab .elementor-tabs-content-wrapper ul {
    padding: 0px;
}
.casestudytab .elementor-widget-tabs .elementor-tab-content{
    padding: 0px 5px;
}
.spancount {
    position: relative;
}

.spancount span {
    position: absolute;
    bottom: 5px;
    right: 20px;
    opacity: 0.2;
    font-size: 35px;
    font-weight: 700;
}
.casestudytab .elementor-tabs-content-wrapper ul li p {
    padding: 5px 7px;
    margin-bottom: 0px;
}
/** casestudy **/

.casestudybnr {
    min-height: 300px;
}
.casestudybnr .innerbnrrow {
    padding: 120px 10px 45px 10px;
}



@media(max-width:1280px){
    .viewall-applast a{ font-size: 16px; padding: 11px 8px; }
    .customtabsapplist article .viewall-appbtn h2{ font-size: 18px; }
    .infi-compare-section .container {
        max-width: 1240px;
    }
    .infi-compare-section {
        padding: 48px 25px;
    }
}

@media(max-width:1024px){
    .customtabs ul#pills-tab { margin-bottom: 30px !important;}
    .hearexpertsection .customtabs.float-right { position: relative; top: 0px; }
    .operationsection .resouces-row { flex-direction: column-reverse; gap: 35px; padding: 20px 10px 0px; }
    .customtabs .nav-pills .nav-link, .customtabs .nav-pills .nav-link.active{ font-size: 18px; padding: 20px 5px 20px 27px;}
    .customtabs .nav-pills .nav-link:before, .customtabs .nav-pills .nav-link.active:before{ width: 16px; height: 16px; left: 8px; top: 20px;}
    .cpt-top-filters{ width: 100%; }
    .apps-cpt-layout .cpt-main { padding: 30px 25px; }
    .cpt-sidebar ul#cpt-category-list { padding: 0px 25px 25px; margin-bottom: 10px; }
    .designheading .headingbnr.headingbnr2 span { padding-left: 0px; }
    .homedigitalwork .designheading2 .elementor-heading-title { display: block; }

    .infincegooglecompare .firstcmprrow span{ font-size: 12px; padding: 6px 8px;}
    .infi-compare-data .col-data h3{ font-size: 20px; }
    .infi-compare-data .col-data p { font-size: 16px; line-height: 23px;}
    .infincegooglecompare span.comprckd { width: 18px; height: 18px; }
    .infincegooglecompare .compare-normal-tag { font-size: 12px; margin: 0 5px; }
    .sharepointslider button.slick-arrow{ top: 0px; }
    .pricing-min-usr span{ display: block; }

}

@media(max-width:768px){
    .infince-header div#navbarNavDropdown { align-items: flex-start !important; padding: 16px; background-color: #fff; border-radius: 12px; margin-top: 16px; }
    .infince-header .infince-nav .menu-item a { font-size: 20px; font-weight: 500; }
    .infince-header .infince-nav { padding: 0px; }
    .infince-header .infince-nav .menu-item { padding: 0px 0px 10px; }
    .infince-header .infince-nav { margin-bottom: 20px; }
    .infince-header .infince-btn.icon { width: 100%; }
    .hearexpertsection .ressec{ min-height: 200px; padding: 15px; }
    .hearexpertsection .customtabs ul#pills-tab { width: 100%; }
    .cpt-top-filters{ height: auto; padding: 20px 0px 30px; }
    #ajax-cpt-filter .row{ gap: 15px; }

    .digital-workplace-slider button.slick-prev.slick-arrow { left: 40%; }
    .digital-workplace-slider button.slick-next.slick-arrow { right: 40%; }
    .resouces-row .ressec img.sp-no-webp { max-width: 100%; }

    .infi-compare-head.stickytable .firstcmprrow span{ font-size: 12px; padding: 5px;}
    .infi-compare-head.stickytable { top: 80px; }
    .infi-compare-data .compare-tag span,
    .infi-compare-data .compare-normal-tag span{
        display:block;
    }
    .infi-compare-data .compare-tag{
        margin: 0 15px;
    }
    .compare-normal-tag{
        margin: 0 15px;
    }
    .gwa-highlight p span { 
        display: block; 
    } 
    .gwa-highlight p {  
        font-size: 16px;  
        line-height: 24px;  
    } 
    .infi-compare-head .col-infince .gwa-highlight p {  
        padding-top: 0px; 
    } 
    .infi-compare-head .col-workspace .gwa-highlight p {  
        padding-top: 5px; 
    } 
    .dwicorebundle .innercoresingle h2 {  
      font-size: 16px;  
      line-height: 25px;  
    } 
    .dwicorebundle div.innercoresingle img.coreimage {  
        width: 65px;  
    } 
    .dwicorebundle div.innercoresingle {  
        padding: 26px 5px 0px 15px; 
        margin: 40px 20px 10px 0; 
        min-height: 115px;  
    } 
    .dwibannerhead li { 
      font-size: 16px;  
    } 
    .dwicorebundle .col-12 {  
        padding-right: 25px;  
    } 
    .infi-compare-section {
        padding: 48px 15px;
    }
    .sharepointslider .slick-slide .elementor-widget-container { min-height: auto; }
}   

@media(max-width:767px){
    .customtabs .nav-pills .nav-link:before, .customtabs .nav-pills .nav-link.active:before { width: 20px; height: 20px; left: 12px; top: 14px;}
    .customtabs .nav-pills .nav-link, .customtabs .nav-pills .nav-link.active{ padding: 15px 10px 15px 40px; }
    .customtabs ul#pills-tab { display: block; text-align: left; }
    .customtabsapplist article, .hearexpertsection .ressec{ min-height: auto; padding: 20px; }
    .hearexpertsection .ressec{ margin-bottom: 20px; }
    .infince-home-banner{ padding: 0px; }
    .operationsection .ressec span{ font-size: 16px; }
    .viewall-applast article{ min-height: 220px; }
    .customtabsapplist article .viewall-appbtn h2 { font-size: 20px; }
    .viewall-applast a { font-size: 18px; padding: 11px 16px; } 
    .cpt-sidebar ul#cpt-category-list { padding: 0px 0px 15px; margin-bottom: 0px; }
    .apps-cpt-layout .cpt-main { padding: 20px; border-radius: 20px; }
    span.appfilter-error { font-size: 12px; left: 0px; bottom: -20px; }
    .elementor-element.topsechome { display: block; width: 100% !important; max-width: none; }

    .digital-workplace-slider button.slick-prev.slick-arrow { left: 35%;}
    .digital-workplace-slider button.slick-next.slick-arrow { right: 35%; }
    .digital-workplace-slider button.slick-prev.slick-arrow, 
    .digital-workplace-slider button.slick-next.slick-arrow { bottom: -45px; }
    .digital-workplace-slider button.slick-prev.slick-arrow, 
    .digital-workplace-slider button.slick-next.slick-arrow { bottom: -45px; }

    .infincegooglecompare .infi-compare-data .col-data { width: 180px; padding: 0px 2px; }
    .infincegooglecompare  .container { padding: 0px; }
    .infincegooglecompare .infi-compare-head .col-data { width: 150px; padding-right: 0px; }
    .infincegooglecompare .pricingmodel { font-size: 14px; line-height: 15px; }
    .infincegooglecompare .pricingmodel span {font-size: 9px; padding-top: 3px;}
    .infincegooglecompare .stickytable .firstcmprrow div.col-workspace { background: #F4F4F4; border-right: 1px solid #E0E0E0; padding: 5px 0px; }
    .infincegooglecompare .firstcmprrow span { padding: 0px; }
    .infincegooglecompare .firstcmprrow div.col-infince { padding: 18px 0px; }
    .infincegooglecompare .firstcmprrow .col-infince span { background-color: #E3F4FB; }
    .infincegooglecompare .infi-compare-head .col-infince { width: 27%; }
    .infincegooglecompare .infi-compare-head { top: 85px; }
    .infincegooglecompare .infi-compare-head figure { padding: 5px; }
    .infincegooglecompare .col-workspace.googleworkplace {padding: 15px 0px 0px;}
    .infincegooglecompare .infi-compare-head .col-infince { padding: 15px 0px; }
    .infincegooglecompare .infi-compare-head .googleworkplace figure { padding: 0px 30px; }
    .infincegooglecompare .infi-compare-data .col-infince { padding: 15px 0px; }
    .infincegooglecompare .infi-compare-data .col-data p { font-size: 14px; line-height: 20px; }
    .infincegooglecompare .infi-compare-data .col-data h3 { font-size: 16px; line-height: 23px; }    
    .infincegooglecompare .infi-compare-data.firstcmprrow .col-data { width: 163px; } 
    .infincegooglecompare .infi-compare-head figure img,
    .infincegooglecompare .infi-compare-head.stickytable figure img{ width: auto; height: auto; }
    .infincegooglecompare .firstcmprrow div.col-infince, .infincegooglecompare .firstcmprrow div.col-workspace{ padding: 5px 0px; }
    .infincegooglecompare .infi-compare-data.firstcmprrow{ padding-top: 0px; }


    .infi-compare-section.infincesharepointcompare { padding: 20px 0px; }
    .infincesharepointcompare .infi-compare-data li { padding: 5px 0px 5px 13px; font-size: 14px; line-height: 24px; }
    .infincesharepointcompare .infi-compare-data ul { padding: 5px; }
    .infincesharepointcompare .infi-compare-data .col-data, 
    .infincesharepointcompare .infi-compare-head .col-data { width: 25%; margin-right: 0px; }
    .infincesharepointcompare .infi-compare-data .col-data p { padding-left: 0px; font-size: 14px; }
    .infincesharepointcompare .infi-compare-head .col-data h2 { font-size: 20px; padding-left: 0px; }
    .infincesharepointcompare .infi-compare-head .col-infince, 
    .infincesharepointcompare .infi-data-wrapper .col-infince, 
    .infincesharepointcompare .infi-data-wrapper .infi-compare-data:nth-of-type(even) .col-infince { margin-right: 10px; width: 36%; height: auto; }
    .infincesharepointcompare .infi-compare-data li:after { width: 12px; top: 10px; }
    .infincesharepointcompare .infi-compare-head .col-workspace, 
    .infincesharepointcompare .infi-data-wrapper .col-workspace { width: 36%; height: auto; }
    .infincesharepointcompare .infi-compare-head { top: 60px; }

    .sharepoint-snap-tabs .elementor-tabs-content-wrapper { padding: 20px; }
    .sharepoint-snap-tabs .elementor-tab-title.elementor-active{ position:relative; }
    .sharepoint-snap-tabs .elementor-tab-title.elementor-active:after { height: 30px !important; width: 30px !important; }
    .sharepoint-snap-tabs .elementor-tab-title { background: #435e91; margin-top: 20px; border-radius: 34px; }
    .sharepointslider .slick-list { width: 100%; }

    .plt-tickpoint .tooltip-new .tooltiptext { right: 0px; left: -50px; bottom: 30px; width: 200px; padding: 5px;}
    .plt-tickpoint .tooltip-new .tooltiptext::after { left: 87%; }

    .infi-compare-databottom p {
       text-align: center;
       font-size: 16px;
      line-height: 28px;
      padding: 15px 0px 0px;
    }
    .infi-compare-head .col-data,.infi-compare-data .col-data {
        width: 40%;
        padding-right: 5px;
    }
    .infi-compare-head .col-workspace, .infi-compare-head .col-infince, .infi-compare-data .col-workspace, .infi-compare-data .col-infince{
        width: 30%; 
    }
    .infi-compare-data .col-data p{
        font-weight: 400;
        font-size: 16px;
        line-height: 23px;
    }
    .infi-data-wrapper {
        position: relative;
    }
    .infi-compare-data .col-data h3{
        font-size: 18px;
    }
    .infi-compare-head{
        z-index: 2;
    }
    .infi-compare-data .col-workspace, .infi-compare-data .col-infince{
        height: 100%;
    }
    .infi-compare-data .col-infince {
        padding: 30px 0;
    }
    .infi-compare-data .compare-tag{
        margin: 0 10px;
        font-size: 14px;
        padding: 6px;
    }
    .compare-normal-tag {
      font-size: 14px;
    }
    .infi-compare-head .googleworkplace figure {
        padding: 0px 5px;
    }
    .infi-compare-head .col-workspace .gwa-highlight p {  
        padding-top: 0px; 
    } 
    .dwibannerhead li { 
      width: 100%;  
    } 
    .dwicorebundle div.innercoresingle{ 
      min-height: 90px; 
    } 
    .dwicorebundle .col-12 {  
        padding-right: 45px;  
    } 
    .dwicorebundle button.slick-prev.slick-arrow, 
    .dwicorebundle button.slick-next.slick-arrow{ 
         top: -10px;  
    }
    .whitepapper-form .elementor-widget-container .elementor-shortcode input.contact-us {
        width: 100%;
    }
}
@media(max-width:400px){
    .infi-compare-data .col-infince {
        padding: 60px 0;
    }
    .gwa-highlight p {  
        font-size: 14px;  
        line-height: 22px;  
    } 
    .dwibannerhead li { 
        font-size: 15px;  
    }
}

/*-------------------------------------------
>>> Infince Theme css/devstyle.css
---------------------------------------------*/

.page-nav{
    position: sticky !important;
    top: 90px;
    z-index: 9 !important;
}

.page-nav li a span{
    font-family: "Source Sans 3", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    fill: #020D2B;
    color: #020D2B;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 11px 11px 11px 11px;
    padding: 5px 15px 5px 15px;
    background-color: transparent;
    border-color: transparent;
}
@media (max-width:767px){
    .page-nav li a span{
        font-size: 12px;
    }
}
.page-nav li:hover a span{
        background-color: #fdfdfd8a;
    border-color: #bdd2e666;
}

.page-nav li.active a span{
        background-color: #FBFDFF;
    border-color: #BDD2E6;
        box-shadow: 0px 3.5px 29.71px 0px #5B5D5F14;
}

/*------ Intranet Page ------*/
/*--- Intranet-Testimonial ---*/
.intra_say_slider .post-wrapper{
    padding: 36px;
    border: 2px solid #EDF2FA;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0px 4px 21px 0px #4F72A717;
}
.intra_say_slider img.custphoto{
    width: 140px;
}
.intra_say_slider p.testi{
    font-family: "Source Sans 3", Sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #555555;
    margin-bottom: 14px;
}
.intra_say_slider .details{
    display: flex;
    column-gap: 43px;
}
.intra_say_slider .custname{
    font-family: "Source Sans 3", Sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #020D2B;
    margin-bottom: 8px;
}
.intra_say_slider .desig{
    font-family: "Source Sans 3", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #020D2B;
    margin-bottom: 0px;
}
.intra_say_slider .col-right{
    position: relative;
}
.intra_say_slider img.quotesimg{
    position: absolute;
    bottom: 0px;
  right: 30%;
}
@media (max-width:767px){
    .intra_say_slider img.quotesimg{
        display: none;
    }
}
.intra_say_slider .slick-arrow{
    background: transparent;
    border: none;
    color: transparent;
}
.intra_say_slider .slick-prev:before{
    content: url(/wp-content/uploads/intra-say-prev-ico-01.png);
}
.intra_say_slider .slick-next:before{
    content: url(/wp-content/uploads/intra-say-next-ico-01.png);
}
.intra_say_slider .slick-prev{
    position: absolute;
    top: -70px;
    right: 70px;
        width: 48px;
    height: 48px;
    padding: 0px;
}

.intra_say_slider .slick-next{
    position: absolute;
    top: -70px;
    right: 0px;
    width: 48px;
    height: 48px;
    padding: 0px;
}
.intra_say_slider .slick-dots{
    display: flex;
    column-gap: 8px;
    justify-content: center;
    margin-top: 30px;
}
.intra_say_slider .slick-dots li{
    list-style: none;
}
.intra_say_slider .slick-dots li button:not([aria-selected=true]) {
    border-radius: 100px;
    border: 0px;
    color: #DAE2EE;
    background: #DAE2EE;
    width: 8px;
    height: 8px;
    font-size: 0px;
    padding: 0;
}
.intra_say_slider .slick-dots li button[aria-selected=true] {
    border-radius: 100px;
    border: 0px;
    color: #004CBE;
    background: #004CBE;
    width: 76px;
    height: 8px;
    font-size: 0px;
    padding: 0;
}

/*----- image-box on mobile -----*/
@media (max-width:767px){
    .imgboxmob .elementor-image-box-wrapper{
        display: flex;
        column-gap: 12px;
    }
}

/*===--- Blog listing Page ---===*/
body.single-post .blog-featured-section .blog-listing-left label span.pl-2.pt-1 {
    display: none;
}
body.page-template-blog .blog-single .post-wrapper{
    min-height: 585px;
}
/*.blog-featured-section {
    max-width: 95%;
    padding: 120px 40px 15px;
    margin: auto;
}
*/
@media (max-width: 1440px){
    .blog-banner {
        padding: 150px 60px;
    }
    .blog-featured-section {
        padding: 50px 60px 15px;
        max-width: 90%;
    }
}
@media (max-width: 1280px){
    .blog-banner {
        padding: 150px 60px;
    }
    .blog-single {
        padding: 0px 60px;
    }
    .blog-featured-section {
        padding: 120px 60px 15px;
    }
    body.page-template-blog .blog-single .post-wrapper { min-height: 615px; }
}
@media (max-width: 1024px){
    .blog-banner {
        padding: 12% 2% 7%;
    }
    .blog-single {
        margin-top: -40px;
        padding: 2%;
    }
    .blog-featured-section {
        padding: 12% 2% 2%;
    }
    .blog-contact figure img {
        width: 55%;
    }
}

@media (max-width: 768px){
    .blog-banner {
        padding: 18% 2% 7%;
    }
    .blog-featured-section {
        padding: 15% 2% 2%;
    }
}


/*blog start*/
/*.blog-banner{ margin-top: 0px; background-color: transparent; color: #FFF; padding: 50px 0px 150px 0px; background-image: linear-gradient(180deg, #E2F6FC 0%, #FFFFFF 100%); }*/
.blog-banner{
    margin-top: 0px; 
    color: #FFF; padding: 50px 60px 150px 60px;
    background-color: #093FA3;
    background-image: url(/wp-content/uploads/CTA-2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.blog-banner h1{ font-family: "Source Sans 3", Sans-serif; font-size: 46px; font-weight: 600; font-style: normal; line-height: 54px; color: #fff; background-image: url(/wp-content/uploads/mau-underline-01.png); background-repeat: no-repeat; background-position-x: left; background-position-y: bottom; margin-bottom: 50px;}
.blog-banner label{ display: flex; font-weight: 700; font-family: "Source Sans 3", Sans-serif; font-size: 16px; cursor: text; color: #fff; }
.blog-banner .blog-banner-contant a title{ display: block; font-weight: 800; font-family: "Source Sans 3", Sans-serif; font-size: 30px; line-height: 34px; max-width: 90%; color: #fff;}
.blog-banner .blog-banner-contant a{ color: #fff; }
.blog-banner .blog-banner-contant a:hover{ text-decoration: none; }
.blog-banner p{ display: block;font-weight: 400;font-family: "Source Sans 3", sans-serif; font-size: 18px; line-height: 29px; color:#fff; }
.blog-banner ul.categry_ul{ padding-left: 0px;}
.blog-banner ul.categry_ul li{ list-style: none; background: #E8ECF9; border-radius: 12px; color: #2E448C; display: inline-block; font-family: "Source Sans 3", Sans-serif; padding: 4px 12px; font-size: 14px; font-weight: 600;}
.blog-banner .main-blue-btn{ background-color: #1A1919; font-family: "Source Sans 3", Sans-serif; font-size: 14px; font-weight: 600; border-style: solid; border-width: 1px 1px 1px 1px; border-color: #1A1919; border-radius: 12px 12px 12px 12px; padding: 14px 16px 14px 16px; display: inline-block;}
.blog-banner .main-blue-btn:hover{background-color: #1E4780; border-color: #1E4780;}
.blog-banner .slick-arrow.slick-prev {background: url(images/prev.png) no-repeat;right: 50px;}
.blog-banner .blog-banner-contant{ padding-left: 10px;}
.blog-banner-contant label span{ display: block;  font-size: 14px; color: #9f9f9f; margin-top: -2px !important;}
.blog-banner .slick-arrow.slick-next { background: url(images/next1.png) no-repeat;right: 0px;}
.blog-banner .slick-arrow { position: absolute; bottom:40px;font-size: 0px;width: 32px;height: 32px; z-index: 1;border: 0;}
.blog-single .post-wrapper { background-color: #fff; border-radius: 10px; box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.2); margin-bottom: 16px; overflow: hidden; position: relative;}
.blog-single .post-wrapper figure img{ height: 270px; width: 100%; object-fit: cover;object-position: top left;}
.blog-single .post-content{ padding: 10px 25px 25px 25px;}
.blog-single .post-content h2, .blog-single .post-content h2 a{ display: block; font-weight:800;font-family: "Source Sans 3", sans-serif; font-size: 16px; color: #020D2B; line-height: 20px; padding-top: 12px; transition: all 0.3s;}
.blog-single .post-content h2 a{ padding-top: 0 !important; outline: none !important;}
.blog-single .post-content h2 a:hover{ text-decoration: none; color: #2121b3;}
.blog-single .post-content p{ display: block; font-weight: 500;font-family: "Source Sans 3", sans-serif; font-size: 16px; color: #555555; line-height: 26px; }
.blog-single label{ display: flex; font-weight: 700;font-family: "Source Sans 3", sans-serif; font-size: 16px; padding-bottom: 12px; color: #1E4780; cursor: text; transform: all 0.2s;}
.blog-single label span{ display: block; font-size: 14px; color: #555555; margin-top: -2px !important;}
.blog-single { margin-top: -100px;}
.blog-single label.border-bottom{ border-bottom: solid 1px #9797972e;}
.blog-single a.read, .blog-featured-section a.read{ background-color: #1A1919; font-family: "Source Sans 3", Sans-serif; font-size: 14px; font-weight: 600; border-style: solid; border-width: 1px 1px 1px 1px; border-color: #1A1919; border-radius: 12px 12px 12px 12px; padding: 8px 10px 8px 10px; display: inline-block; color: #ffffff !important; display: block; width: max-content; margin-top: 10px;}
.blog-single a.read:hover , .blog-featured-section a.read:hover { background-color: #1E4780; border-color: #1E4780; text-decoration: none; }
.blog-featured-section { padding-top: 120px; padding-bottom: 15px;}
.blog-featured-section label{ display: flex; font-weight: 700;font-family: "Source Sans 3", sans-serif; font-size: 16px; color: #183966; cursor: text;}
.blog-featured-section .blog-listing-left h2, .blog-featured-section .blog-listing-left h2 a{ text-decoration: none; display: block; font-weight:700; font-family: "Source Sans 3", sans-serif; font-size: 30px; color: #183966; line-height: 34px; padding-top: 12px; max-width: 100%; transition: all 0.3s;}
.blog-featured-section .blog-listing-left h2 a:hover{ color: #1E4780; text-decoration: none; }
.blog-featured-section .blog-listing-left h1{ font-family: "Source Sans 3", sans-serif;font-weight: 600; font-size: 40px; color: #1E4780; line-height: 43px; padding-top: 12px; max-width: 100%;}
.blog-featured-section .blog-listing-left p{ display: block; font-weight: 400; font-family: "Source Sans 3", sans-serif; font-size: 18px; color: #555555; line-height: 30px; margin-top: 1rem;}
.blog-featured-section .blog-listing-left ul{ padding-left: 0px;}
.blog-featured-section .blog-listing-left ul li{ margin-right: 8px; list-style: none; background: #E8ECF9; border-radius: 12px; color: #2E448C; display: inline-block; font-family: "Source Sans 3", Sans-serif; padding: 4px 12px; font-size: 14px; font-weight: 600;}
.blog-featured-section .post-content{ padding: 20px 20px; border: #97979742 solid 1px; border-bottom-left-radius:10px; border-bottom-right-radius:10px;}
.blog-featured-section .blog-listing-left figure{ margin: 0 0 0rem; max-height: 380px; overflow: hidden;}
.blog-featured-section .top-image figure{ margin: 0 0 0rem; height: 480px; overflow: hidden;}
.blog-featured-section .blog-listing-left{ margin-bottom: 30px;}
.recent-posts h3{ font-family: "Source Sans 3", sans-serif;font-weight: 600;font-size: 24px; color: #183966;}
.recent-posts ul{ padding-left: 0px;}
.recent-posts ul li{ list-style: none;  border-bottom: solid 1px #9797974d; padding-bottom: 12px; margin-bottom: 12px; }
.recent-posts ul li a{ font-weight: 700;font-family: "Source Sans 3", sans-serif; font-size: 16px; color: #183966; transition: all 0.2s; }
.recent-posts ul li a:hover{ text-decoration: none; color: #2121b3;}
.blog-contact{ margin: 0 auto; background: #fbfbfb; text-align: center; padding: 40px 0 60px 0; margin-top: 30px;}
.blog-contact figure img{ width: 100%; }
.blog-contact p{ font-weight: 400; font-family: "Source Sans 3", sans-serif; font-size: 18px; line-height: 26px; color: #555555; margin: 0 20px 10px 20px;}
.blog-contact .main-blue-btn{background-color: #1A1919; font-family: "Source Sans 3", Sans-serif; font-size: 14px; font-weight: 600; border-style: solid; border-width: 1px 1px 1px 1px; border-color: #1A1919; border-radius: 12px 12px 12px 12px; padding: 14px 16px 14px 16px; color: #ffffff;}
.blog-contact .main-blue-btn:hover{background-color: #1E4780; border-color: #1E4780;}
.blog-social li{ list-style: none; display: inline-block; padding: 0px 4px; padding-right: 0px;}
.blog-social title{ display: block; font-size: 14px; color: #101c38b8;font-weight: 700;font-family: "Source Sans 3", sans-serif;  text-align: right; padding-bottom: 15px;}
.blog-social{ float: right; padding-top: 70px;}
.blog-featured-section .post-content-detail{ line-height: 29px; } 
.blog-featured-section .post-content-detail h2, .blog-featured-section .post-content-detail h2 span{ font-weight: 800 !important; font-family: "Source Sans 3", sans-serif; font-size: 26px; line-height: 31px; color: #183966; padding-top: 0px;}
.blog-featured-section .post-content-detail span.read-more{ font-size: 16px; font-weight: 600;font-family: "Source Sans 3", sans-serif;text-decoration: underline; display: flex;  color: #101c38b8;}
.blog-featured-section .post-content-detail span.read-more a{ color: #1663f9; padding-left: 5px;     text-decoration: underline;}
.blog-featured-section .blog-listing-left .post-content-detail ul, .blog-featured-section .blog-listing-left .post-content-detail ol{ padding-left: 0; margin-top: 20px; }
.blog-featured-section .blog-listing-left .post-content-detail li{ background:transparent; padding: 0; position: relative; padding-left: 22px; display: block !important; font-size: 1rem;}
.blog-featured-section .blog-listing-left .post-content-detail li::before { content: ""; position: absolute; left: 0;top: 10px;background-image: url(images/next.png); background-position: left top; width: 10px; height: 10px;}
.blog-featured-section .blog-listing-left .post-content-detail li title{ font-weight: 800;font-family: "Source Sans 3", sans-serif; font-size: 18px; color: #183966; display: block;}
.blog-featured-section .blog-listing-left .post-content-detail li p{ margin-top: .5rem;}
.blog-featured-section .blog-listing-left .post-content-detail img { width: 100% !important; height: 100% !important; }
.blog-testimonial{ background: url("/wp-content/themes/infince/images/testi-waves.png") top left no-repeat #F4F9FC; border:solid 1px #E3E9ED; border-radius: 15px; padding: 30px 30px; position: relative; display: flow-root; padding-bottom: 10px;}
.blog-testimonial article{ display: flex; align-items: center;}
.blog-testimonial a{ color: #1663f9; font-size: 16px; font-weight: 600; transition: all 0.2s; font-family: "Source Sans 3", sans-serif; float: right; margin-left: auto; position: relative; z-index: 2;}
.blog-testimonial a:hover{ color: #2121b3; text-decoration: none;}
.blog-testimonial label{ display: block; color: #183966;  font-size: 18px; font-weight: 700;  font-family: "Source Sans 3", sans-serif;  float: left; padding-top: 7px;}
.blog-testimonial span{ color: #101c38CC;  font-size: 16px; font-weight: 600;  font-family: "Source Sans 3", sans-serif;}
.blog-testimonial figure{ float: left; display: inline-block; padding-right: 20px;}
.blog-testimonial figure img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover;}
.blog-testimonial p{ display: block; font-weight: 500; font-family: "Source Sans 3", sans-serif; font-size: 18px; color: #101c38CC; line-height: 29px;}
.blog-single.bottom-blog{ margin: 0; padding-top: 20px;}
.blog-single.bottom-blog .slick-arrow { background: #f4f9fc; border: 1px solid #e3e9ed; border-radius: 50%; position: absolute; top:0px; font-size: 0px; width: 36px; height: 36px; z-index: 1; cursor: pointer; transition: all 0.2s;}
.blog-single.bottom-blog .slick-arrow.slick-prev { right: 55px; }
.blog-single.bottom-blog .slick-arrow.slick-prev::after { position: absolute; content: ''; border: solid #183966; border-width: 0 2px 2px 0; display: inline-block; padding: 5px; transform: rotate(135deg); top: 11px; left: 14px;}
.blog-single.bottom-blog .slick-arrow.slick-next { right: 15px;}
.blog-single.bottom-blog .slick-arrow.slick-next::after { position: absolute; content: ''; border: solid #183966; border-width: 0 2px 2px 0; display: inline-block; padding: 5px; transform: rotate(-45deg); top: 11px; left: 9px;}
.blog-single.bottom-blog .slick-arrow:hover { background: #2121b3; border: 1px solid #2121b3;}
.blog-single.bottom-blog .slick-arrow.slick-prev:hover::after, .blog-single.bottom-blog .slick-arrow.slick-next:hover::after { border: solid #fff; border-width: 0 2px 2px 0;}
.blog-single.bottom-blog h3{ display: block; position: relative; top: 40px; left: 0; font-size: 28px; color: #183966;font-weight: 800;  font-family: "Source Sans 3", sans-serif;  }
.blog-single.bottom-blog .slick-initialized .slick-slide { display: block;  padding-top: 70px;  padding-bottom: 50px;}
.blog-single.bottom-blog figure{ margin: 0 0 0rem;}
.blog-single.bottom-blog .post-wrapper{ box-shadow: none;}
.slick-slide{ outline: none!important;}
body.single-post .blog-featured-section{padding-top: 50px; padding-bottom: 15px; background-image: linear-gradient(180deg, #E2F6FC 0%, #FFFFFF 15%);}
.blog-featured-section .blog-listing-left label span{ display: block; font-size: 14px; color: rgb(112 112 112 / 70%); padding-top: 2px !important;}
.blog-featured-section .blog-listing-left p strong em{ padding-left: 5px; font-style: inherit;}
.blog-featured-section .blog-listing-left p strong{ font-weight: 600;}
.blog-featured-section .blog-listing-left a{ color: #3D76CC; transform: all 0.2s; transition: all 0.2s; font-size: 18px;}
.blog-featured-section .blog-listing-left a:hover{ color: #3D76CC; text-decoration: none;}
.blog-featured-section .blog-listing-left h3 strong, .blog-featured-section .blog-listing-left h3 b{ font-weight: 800; font-family: "Source Sans 3", sans-serif;font-size: 20px;color: #183966;}
.blog-featured-section .blog-listing-left figure img{ width: 100%;}
.wp-pagenavi{ display: flex; justify-content: center; margin-bottom: 30px;}
.wp-pagenavi span.pages{ width: 110px; color: #101c38CC; font-size: 16px; background: none !important; }
.wp-pagenavi a, .wp-pagenavi span{ background: #f7f7f7; display: flex; width: 40px; height: 40px; justify-content: center; align-items: center; color: #101c38CC; padding: 0 !important; border: 0 !important; outline: none !important; font-size: 14px; transition: all 0.2s;}
.wp-pagenavi a:hover, .wp-pagenavi span:hover{ background: #eee; }
.wp-pagenavi span.current{ color: #1663f9 !important; }
.wp-pagenavi a.first, .wp-pagenavi a.last{ width: 80px; }
body.page-template-blog .wp-pagenavi span.pages{ display: none; }
.blog-banner .container{ padding: 0px; }
.blog-single .container{ padding: 0px; }
.blog-featured-section .container{ padding: 0px; }
/*blog ends */ 

/**** style added to correct header menu when latest bootstrap added */
.pt-1, .py-1 {
    padding-top: 0.25rem!important;
}
.pl-3, .px-3 {
    padding-left: 1rem!important;
}
.pl-2, .px-2 {
    padding-left: 0.5rem!important;
}
.pr-2, .px-2 {
    padding-right: 0.5rem!important;
}
.mr-3, .mx-3 {
    margin-right: 1rem!important;
}
.ml-5, .mx-5 {
    margin-left: 3rem!important;
}
.pr-3, .px-3 {
    padding-right: 1rem!important;
}
a {
    text-decoration: none;
}
.text-right {
    text-align: right!important;
}
.ml-auto, .mx-auto {
    margin-left: auto!important;
}
header .nav-link {
    display: block;
    padding: 0.5rem 1rem;
}
header form.form-inline.ml-5 {
    margin-left: 20px !important;
}
header .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a {
    font-size: 18px;
}
#myModalclick .modal-footer .col-xl-9,
#myModalclick .modal-footer .col-xl-3{
      margin: 0px !important;
}
#myModalclick .modaldialogmarket button.close{
  top: 0px;
}
.blog-slider .col-xl-6.col-lg-6.col-md-6.col-sm-6.col-12 {
    padding: 0px 15px;
}


.blogside-subscribe-form {
    box-shadow: 0px 2px 15px 0px rgb(204 204 204 / 50%);
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
    padding: 10px 15px 10px;
    border-radius: 10px;
    max-width: 500px;
}

.blogside-subscribe-form input.wpcf7-form-control.wpcf7-text.wpcf7-email {
    height: 42px !important;
    border-radius: 6px !important;
    border: solid 1px #f2f2f2 !important;
    background-color: #f6f6f6 !important;
    padding: 2px 15px;
    border-radius: 10px;
    width: 100%;    
}

.blogside-subscribe-form input.wpcf7-form-control.has-spinner.wpcf7-submit {
    min-width: 167px;
    height: 46px;
    border-radius: 4px !important;
    box-shadow: 0 2px 24px 0 rgb(164 164 164 / 50%) !important;
    background-color: #1663f9;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    border: 0 !important;
    padding: 0 30px;
    cursor: pointer;
    transition: all .4s;
    width: 170px;
    margin-top: 20px;
}
.blogside-subscribe-form  .wpcf7-form p { margin-bottom: 0px; }
.newsletterform { position: relative; }
.newsletterform input.wpcf7-email.form-control { background: transparent; font-size: 17px; }
.newsletterform input.wpcf7-form-control.has-spinner.wpcf7-submit {
    position: absolute;
    top: 17px;
    right: -4px;
    padding: 12px 12px 12px 0;
    transition: all .4s;
    background-image: url(../images/newsletter-btn.svg);
    background-repeat: no-repeat;
    font-size: 0px;
    border: 0;
    background-color: transparent;
    width: 50px;
    height: 40px;
    min-width: 35px;
    min-height: 35px;
    background-size: contain;
    margin: 0;
}
.newsletterform h2 { font-size: 20px; line-height: 26px; padding: 8px 0px 0px; color: #183966; font-family: "Source Sans 3", sans-serif; font-weight: 600; font-style: normal; }
.page-template-blog-php .wpcf7 form .wpcf7-response-output, body.single-post .wpcf7 form .wpcf7-response-output{ margin: 0px; }
.newsletterform p{ padding-bottom: 0px; position: relative;}
.newsletterform span.wpcf7-spinner { position: absolute; top: 30px; right: -5px; }
.blog-contacthcsticky .blog-contact { padding: 5px 0 15px; margin-top: 12px; }
.newsletterform .main-blue-btn{ padding: 5px 15px; }


.prc-feature-box {
    border-style: solid;
    border-width: 2px;
    border-color: #bfe4fc;
    margin: 0px 10px;
    padding: 20px 15px;
    border-radius: 10px;
    background-image: linear-gradient(#f9fbff, #f6faff);
}
.prc-feature-box-big .prc-feature-box{ min-height: 708px; }
.prc-feature-box-small .prc-feature-box1{ min-height: 215px; }
.prc-feature-box-small .prc-feature-box2{ min-height: 325px; }

.prc-feature-box h2 {
    font-size: 28px;
    line-height: 35px;
    padding-bottom: 15px;
    width: 78%;
}
.prc-feature-box ul.prc-feature-box-ul li {
    list-style: none;
    position: relative;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #4C4C4C;
    padding-bottom: 4px;
}
ul.prc-privacy li{
    list-style: none;
    position: relative;
    color: #4C4C4C;
    padding-bottom: 4px;
}
.prc-feature-box ul.prc-feature-box-ul li:before,
ul.prc-privacy li:before {
    position: absolute;
    content: "";
    top: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -30px;
    background-image: url(../images/mark_1.png);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
}
.prc-feature-box ul.prc-feature-box-ul li:nth-child(1):before,
ul.prc-privacy li:nth-child(1):before{
    background-image: url(../images/mark_1.png);
}
.prc-feature-box ul.prc-feature-box-ul li:nth-child(2):before,
ul.prc-privacy li:nth-child(2):before{
    background-image: url(../images/mark_2.png);
}
.prc-feature-box ul.prc-feature-box-ul li:nth-child(3):before,
ul.prc-privacy li:nth-child(3):before{
    background-image: url(../images/mark_3.png);
}
.prc-feature-box ul.prc-feature-box-ul li:nth-child(4):before,
ul.prc-privacy li:nth-child(4):before{
    background-image: url(../images/mark_4.png);
}
.prc-feature-box ul.prc-feature-box-ul li:nth-child(5):before,
ul.prc-privacy li:nth-child(5):before{
    background-image: url(../images/mark_5.png);
}

.prc-feature-box ul.prc-feature-box-ulsub li:before,
.prc-feature-box ul.prc-feature-box-ulsub li:nth-child(n):before {
    background: none;
}
ul.prc-feature-box-ulsub {
    padding: 0px;
}
.prc-feature-box ul.prc-feature-box-ulsub li{
    font-size: 16px;
    line-height: 28px;
}
.prc-feature-box .click-to-top{ display: inline; padding-left: 8px;}
.prc-featureinfo{ display: none; }
.click-to-top span.prc-featureinfo{ font-size: 16px; line-height: 26px; width: 185px; }
#exit-popup .wpcf7 form.spam .wpcf7-response-output { color: #fff; }

ul.withlisttickblue.withlisttick li:before { background-image: url(../images/point_icon.png); }

/* shortcode */
.shortsection a, .shortsection a:hover{
        text-decoration: none;
    }
    .shortsection .clearfix{
        clear: both;
    }
    .shortsection.bg-primary {
        background: url('/wp-content/uploads/CTA-2.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;
        padding: 90px 0;
        color: #fff;
        min-height: 200px;
        height:  auto;
    }
    .shortsection.bg-info {
        background: url('/wp-content/uploads/CTA-2.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;
        padding: 90px 0;
        color: #fff;
        min-height: 200px;
        height:  auto;
    }
    .shortsection.bg-info1 {
        background: url('/wp-content/uploads/CTA-2.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left bottom;
        padding: 50px 20px;
        color: #fff;
        min-height: 200px;
        height:  auto;
    }
    .shortsection .btn{
        display: inline-block;
        font-weight: 400;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 1px solid transparent;
        padding: 0.7rem 1.75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: 0.5rem;        
    }
    .shortsection .btn-info{
        color: #fff;
        background-color: #1A1919;
        border-color: #1A1919;
    }
    .shortsection .btn-info1 {
        color: #fff;
        background-color: #1A1919;
        border-color: #1A1919;
    }
    .shortsection .btn-info2 {
        color: #fff;
        background-color: #1A1919;
        border-color: #1A1919;
    }
    .shortsection .btn-info:hover, .shortsection .btn-info1:hover .shortsection .btn-info2:hover {
        background-color: #1E4780;
        border-color: #1E4780;
    }
    .shortsection .col-md-6{
        float: left;
        width: 50%;
    }
    .shortsection .text-left{
        text-align: left;
    }
    .shortsection .text-right{
        text-align: right;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .shortsection .container{
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
    .shortsection h2, .shortsection p, .shortsection a{
        color:  #fff !important;
    }
    .shortsection .text-right img, .blog-featured-section .blog-listing-left .post-content-detail .shortsection .text-right img {
        height: auto !important;
    }
    section.shortsection.blogfooter.bg-info1 {
        margin-bottom: 35px;
    }
/* shortcode */

body.single-post .blog-testimonial article a{
    display: none;
}

/*===--- Video Listing Page ---===*/

.resource-block img {
   height: auto;
    max-width: 100%;
    border: none;
    -webkit-border-radius: 0;
}

.content-video {
    margin: 10px 0px 20px 0px;
}

.pagination-video .page-numbers{
   border: 1px solid #cfcdcd;
    width: 25px;
    height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 3px;
    margin-left: 7px;
    color: #3a40d1;
    text-decoration: none;
    font-weight: 600;
}

.pagination-video {
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    text-align: center;
}

.pagination-video .prev.page-numbers{
    color: #9d9d9d;
    font-size: 13px;
    border: none; 
    width: auto;
}

.pagination-video .next.page-numbers{
    color: #9d9d9d;
    font-size: 13px;
    border: none;
    width: auto;
}

.pagination-video span.page-numbers{
   color: #fff;
    background: #1663f9;
    border-color: #1663f9;
}
.video-listing{
    padding:50px 60px;
}

.video-wrapper{
    margin-bottom: 20px;
}
.video-listing-content{
    padding: 20px 0px;
}

.video-listing-content p{
    display: block;
    font-size: 12px;
    color: rgb(112 112 112 / 70%);
   font-weight: 700;
   margin-bottom: 10px;
}

.video-listing-content a{
    font-weight: 700;
    font-size: 20px;
    color: #183966;
}
.video-listing-content a:hover{
    text-decoration: none;
    color: #183966;
}
.video-listing-content ul li {
        
    list-style: none;
    background: #F3F3F3;
    border-radius: 12px;
    color: #101c38CC;
    display: inline-block;
    font-family: "Source Sans 3", sans-serif;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px; 
}

.video-listing-content ul{
    padding-left: 0px;
    margin-top: 15px;
}

.video-img-wrapper{
    position: relative;
}

.video-overlay{
    position: absolute;
    background: rgb(23 23 23 / 35%);
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.time-block{
    background: rgb(0 0 0 / 68%);
    color: #fff;
    padding: 2px 10px;
    font-size: 14px;
    border-radius: 4px;
    position: absolute;
    bottom: 7px;
    right: 7px;
}

.video-title-header{
    display: flex;
    margin-bottom: 20px;
}

.video-title-header .filter-dropdown{
    margin-left: auto;
}

.video-title-header .filter-dropdown {
    color: #000;
    font-size: 14px;
    position: relative;
    align-items: center;
    display: flex;
}

.video-title-header .filter-dropdown  img{
    margin-right: 10px;
}

.video-title-header h2{
    color: #183966;
    font-family: "Source Sans 3", Sans-serif;
    font-size:32px;
    font-weight: bold;
}
.videofilterbox .selectwrap {
    /*margin-top: 20px;*/
}
.videofilterbox .form-group.clearfix {
    margin: 0 auto;
}
.videofilterbox .selectboxtop, .videofilterbox .selectbox-content {
    width: 290px;
}
.videofilterbox .videofiltersubmitbox {
    right: 5px;
}
.video-title-header h2 {
    font-size: 30px;
    line-height: 35px;
    text-align: center;
}
.video-listing {
    padding: 50px 0px;
}
.form-group li {
    list-style: none;
}

ul .form-group{
    padding:0px;
}
.resource-temp{
    padding: 0px;
}
.resource-temp .container{
    padding: 0px;
}

/****** Filter starts *****/
.videofilterbox .videofiltersubmitbox {
    position: absolute;
    text-align: right;
    width: 50px;
    padding: 0;
    top: -11px;
    right: -40px;
}
.videofilterbox .videofiltersubmit, .videofiltersubmit img {
    border: 0;
    width: 48px;
    height: 38px;
    border-radius: 0px 5px 5px 0px;
    max-width: max-content;
}
.videofilterbox button.videofiltersubmit {
    background: transparent;
    margin-top: 10px;
}
.videofilterbox .videofilter-title-header .filter-dropdown img {
    margin-right: 10px;
}


/*new filter*/

.videofilterbox.video-title-header {
    justify-content: space-between;
}

@media (max-width: 767px) {
    .videofilterbox.video-title-header {
        flex-direction: column;
    }
    .resource-temp {
        padding: 0px 20px;
    }
    .videofilterbox .form-group.clearfix
    {
        margin-right: 55px;
    }
}
.videofilterbox .selectbox { width:100%; display:inline-block;}
.videofilterbox .selectbox-title.form-control { padding-left: 45px; border: none;
    border-radius: 5px 0px 0px 5px;
    box-shadow: 1px 0px 3px 3px rgb(200 197 197 / 40%);}
.videofilterbox .selectbox-content { 
  border:none; min-height:335px; display:none; border-top: none;position: absolute;
    z-index: 9;
    opacity: 1;
    width: 267px;
    background: #fff;     
    border-radius: 5px;
    box-shadow: 0px 0px 11px 0px #ccc;
    margin-top: 20px;
  }


.videofilterbox .selectbox-content::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 40px;
    box-sizing: border-box;
    border: 7px solid black;
    border-color: transparent transparent #ffffff #ffffff;
    transform-origin: 0 0;
    transform: rotate( 134deg);
    box-shadow: -3px 3px 3px 0 rgb(200 197 197 / 40%);
}


.videofilterbox .selectbox-content ul { list-style:none; margin:0px; padding:20px; cursor: pointer;  position: relative; }
.videofilterbox .selectbox-content ul li { padding-top:5px; width:100%; display:inline-block;}
.videofilterbox .selectbox-content ul li:last-child { border-bottom:none;}
.videofilterbox .selectbox-content ul li:first-child { border-top:none;}
.videofilterbox .selectbox-content .input-group {padding: 5px;}
.videofilterbox .loadbutton {
    padding: 10px;
}
.videofilterbox .loadbutton .btn-primary {
    padding-top: 8px;
    padding-bottom: 8px;
}
.videofilterbox #box {
    height: 34px;
}
/***** INPUT FORM STYLES *****/
.videofilterbox .form-horizontal .control-label {
  text-align: left; }

.videofilterbox .control-label-pad .control-label {
  padding-top: 0px; }

.videofilterbox .form-control {
  border-radius: 0;
  border: 1px solid #d5d5d5;
  background-color: white;
  height: 38px;
  color: #555555;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0); 
}
.videofilterbox .form-control:focus {
    border-color: #fbc52d;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(251, 197, 45, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(251, 197, 45, 0.6); 
  }

.videofilterbox .form-control[disabled],
.videofilterbox .form-control[readonly], 
.videofilterbox fieldset[disabled] .form-control {
  background-color: #dddddd; 
}
.videofilterbox .form-control[disabled]:focus, 
.videofilterbox .form-control[readonly]:focus, 
.videofilterbox fieldset[disabled] .form-control:focus {
    border: none;
    box-shadow: none; 
  }

.videofilterbox .input-group-addon {
  border-radius: 0;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #091d3a;
  background-color: #e6e6e6;
  border: 1px solid #d5d5d5; }

.videofilterbox .form-group .control-label {
  color: #535353; }

/*select style*/
.videofilterbox .selectwrap {
  position: relative;
  float: left;
  width: 100%; 
}
.videofilterbox   .selectwrap:after {
    content: "\f0d7";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    text-align: center;
    line-height: 36px;
    position: absolute;
    width: 26px;
    height: 36px;
    background: white;
    left: 14px;
    top: 1px;
    pointer-events: none;
    color: #1663f9; 
}

.videofilterbox .selectbox-content button.btn.btn-default {
    height: 34px;
}
.videofilterbox .form-group.clearfix {
    margin-right: 45px;
}
.videofilterbox .selectboxtop {
    width: 220px;
}
.videofilterbox .selectbox-content input[type="checkbox"]:checked + label::after {
   content: '';
   position: absolute;
   width: 10px;
   height: 5px;
   background: rgba(0, 0, 0, 0);
   top: 11px;
   left: 4px;
   border: 3px solid #1663f9;
   border-top: none;
   border-right: none;
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   -o-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
   transform: rotate(-45deg);
}

.videofilterbox .selectbox-content input[type="checkbox"] {
   line-height: 2.1ex;
}

.videofilterbox .selectbox-content input[type="radio"],
.videofilterbox .selectbox-content input[type="checkbox"] {
    position: absolute;
    left: -999em;
}

.videofilterbox .selectbox-content input[type="checkbox"] + label {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.videofilterbox .selectbox-content input[type="checkbox"] + label::before {
   content: "";
   display: inline-block;
   vertical-align: -25%;
   height: 2ex;
   width: 2ex;
   background-color: white;
   border: 1px solid rgb(166, 166, 166);
   border-radius: 4px;
   box-shadow: inset 0 2px 5px rgba(0,0,0,0.25);
   margin-right: 0.5em;
   margin-bottom: 3px;
}
div.loadingvideofilter {
    z-index: 999999;
}
.errorvideofilter {
  color: red;
  padding-top: 10px;
}
/**** filter ends ****/

/* loader */

div.loadingtrydemo{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 16, 16, 0.5);
}

@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes uil-ring-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.uil-ring-css {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
}
.uil-ring-css > div {
  position: absolute;
  display: block;
  width: 160px;
  height: 160px;
  top: 20px;
  left: 20px;
  border-radius: 80px;
  box-shadow: 0 6px 0 0 #fff;
  -ms-animation: uil-ring-anim 1s linear infinite;
  -moz-animation: uil-ring-anim 1s linear infinite;
  -webkit-animation: uil-ring-anim 1s linear infinite;
  -o-animation: uil-ring-anim 1s linear infinite;
  animation: uil-ring-anim 1s linear infinite;
}
/*loader */


/*** case study ***/




.innerbanner {
    background-color: #0f1a38;
    background-image: url(https://www.infince.com/wp-content/uploads/2022/09/shape-trimmed.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    position: relative;
    box-sizing: border-box;
    width: 100%;
}
.innerbnrcontainer {
    max-width: 1120px;
    min-height: 250px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
.innerbnrrow {
    align-content: center;
    align-items: center;
    padding: 70px 10px 60px 10px;
    margin: 10px auto;
}
.innerbannercontent {
    width: 100%;
    margin: 10px auto;
    text-align: center;
}
.innerbannercontent h1 {
    margin-bottom: 20px;
    font-size: 45px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 58px;
}
.containercase {
    padding-bottom: 60px;
}
.backgroundcase {
    background-image: url(../images/Ovel-Pattern-Reachout.png);
    background-size: 17%;
    background-repeat: no-repeat;
    background-position: left -9%;
}
.case_listing {
    padding: 52px 0px;
}
.casewrap-content {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.case_listing .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 8px;
    max-height: 415px;
    min-height: 415px;
}
.case_listing .card a {
    height: 250px;
    text-decoration: none!important;
}
.case_listing img.card-img-top {
    height: 100%;
    max-height: 100%;
    width: 100%;
    object-fit: cover;
}
.relatedposts .card-body, .caselist .card-body {
    position: relative;
    flex: 1 1 auto;
    padding: 30px !important;
    box-shadow: 0px 2px 4px 0px rgb(211 208 208 / 50%);
    border-radius: 8px;
}
.card-body .card-title {
    font-size: 20px;
    color: #183966;
    font-weight: 600;
    line-height: 30px;
}
.card-body p {
    color: #101c38CC;
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
}
.case-read {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    text-align: center;
    background: linear-gradient(180deg, #c5c5c50a, white);
    height: 98%;
    align-items: center;
}
a.normalbutton.halfbutton.caseread {
    color: #fff;
    padding: 8px 20px;
    background-color: #1663F9;
    min-width: 142px;
    height: 40px;
    line-height: 23px;
    position: relative;
    top: 70%;
    border-radius: 5px;
    font-weight: 600;
}
.caselist a.normalbutton.halfbutton.caseread {
    padding: 12px 20px;
}

.container.pagination-video.cus-pagination nav.navigation.pagination {
    justify-content: center;
}

.infin-casestudy .containercase{
    padding-right: 60px;
    padding-left: 60px;
}
.infin-casestudy .container{
    padding: 0px;
}

/*** case study end ***/

/*----- Whitepapers Page -----*/
.infin-whitepaper .blog-featured-section{
    padding-top: 50px;
}

/*----- Guides Page -----*/
.guide .nav-pills .nav-link {
    border-radius: 0.25rem;
    font-size: 17px;
    font-weight: 600;
    padding: 0.5rem 2rem;
    border:solid 1px #4895FF;
    margin: 0px 20px;
    color: #4895FF;
    margin-left: 0px;

}

.guide{padding: 40px 0px;}
.guide .nav-pills .nav-link.active {
    color: #fff;
    border:solid 1px #4895FF;
    color: #4895FF;
    background-color: transparent;
}
.guide .block{
    background: #F8FBFF;
    border: solid 1px #EFEFEF;
    display: flex;
    border-radius: 15px;
    margin-bottom: 25px;
padding: 25px 25px;
}
.guide .block li{list-style: none; font-size: 16px; color: #556987; display: inline-block; font-weight: 500; padding-right: 15px;}  
.guide .block  p{ font-size: 16px; font-weight: 500; color: #485973;}
.guide .block span{
    background: rgba(72, 149, 255, 0.1);
    border: 1px solid rgba(72, 149, 255, 0.5);
    border-radius: 4px;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 12px;
    line-height: 28px;
    color: #4895FF;
    }
    .guide  .nav-pills  .default .nav-link{color: #B8B8B8; border: solid 1px #B8B8B8;}
    .guide .block article{padding: 0px 0px 0px 25px;}
    .guide .block title{ font-size: 20px; font-weight: 600; color: #1E4780; display: block;}
    .guide  .nav-pills  .clear.nav-link{color: #485973; border:none;}
.guide .block figure img{ width: 100%; border-radius: 5px;}
.guide .block article ul{ padding-left: 0px;}
.guide .block li img { padding-right: 5px;}
@media (max-width:767px) {
    .guide .block{display: block;}
    .guide ul.nav{display: block;}
    .guide .nav-pills .nav-link{margin-bottom: 20px;}
    .guide .block article { padding: 20px 0px 0px; }
}

.feature-icons-wraper{ margin: 0 0 0 -11px; padding: 0; display: flex; } .feature-icons-wraper li{ margin: 0; padding: 0;list-style-type: none;position: relative;border-radius: 50%;width: 50px;height: 50px;transition: all 0.4s;display: flex;justify-content: center;align-items: center; } .feature-icons-wraper li:hover { background: #E8F8FF;} .feature-icons{ display: flex; width: 34px; height: 34px; } .feature-icons-tooltip{ visibility: hidden; width: 70px; text-align: center; border-radius: 6px; padding: 4px; position: absolute; z-index: 1; bottom: 100%; left: 50%; margin-left: -35px; background: #fff; color: #4f4c8f; box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.31); font-size: 12px; font-weight: 600; line-height: 20px; opacity: 0; transition: opacity .5s; font-family: "Source Sans 3", sans-serif !important;} .feature-icons-tooltip::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: #fff transparent transparent transparent; box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.31);} .feature-icons-wraper li:hover .feature-icons-tooltip { visibility: visible; opacity: 1;}

/*=====----- Why Infince Page -----=====*/

.slider-box{ border-radius: 8px !important; box-shadow: -20px 2px 53px 0 rgba(194, 194, 194, 0.5) !important;}
.map_bg{ background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(245,245,245,1) 100%) !important;}
.get_started_free .elementor-button{ box-shadow: 0 2px 24px 0 rgba(59,57,89,0.50) !important; text-shadow:none; font-family:Outfit;}
.box-content .elementor-widget { margin-bottom: 10px !important; }
.learn_more .elementor-button{ box-shadow: 0 2px 24px 0 rgba(59,57,89,0.50) !important; text-shadow:none; font-family:Outfit;}
.why-slider ul{ margin: 0 5%; padding: 0; width: 90%;}
.why-slider ul li{ margin: 0; padding: 0; list-style-type: none; background:#fff url("/wp-content/uploads/2020/09/side-element.png") no-repeat top right; width: 100%; height: 198px; display: flex; border-radius: 10px; box-shadow: -20px 2px 53px 0 rgba(194,194,194,0.50);}
.silder-img{}
.slider-txt{ padding: 40px 60px 30px 30px; font-size:18px;}
.slider-txt h2{ margin: 0 0 20px 0; font-family: "Source Sans 3", sans-serif; font-size: 22px; font-weight: bold; color: #183966; }
#custom_infince_slider .owl-controls .owl-page { display: inline-block;}
#custom_infince_slider .owl-controls .owl-page span { background: #DBD9FF; border-radius: 20px; display: block; height: 16px; margin: 5px 4px; opacity: 1; width: 16px; border: 3px solid #fff;}
#custom_infince_slider .owl-controls .owl-page.active span { background: #6159E6; border-radius: 20px; display: block; height: 16px; margin: 5px 4px; opacity: 1; width: 16px; border: 3px solid #DBD9FF;}
#custom_infince_slider .owl-pagination{ text-align:center; margin-top: 10px;}
.silder-img { width: 250px; height: 198px;}
.silder-img img{ height: 198px !important; max-width: 250px !important;}
.box-section-terms .elementor-widget-container{ border:1px solid #e3e9ed; background:#f4f9fc !important; border-radius: 15px; padding: 15px 20px !important; }
.box-section-terms .elementor-widget-container p{ margin: 0 !important; padding: 0 !important; }

/*=====----- Release Note -----=====*/

.release-note .elementor-widget-container .elementor-accordion .elementor-accordion-item .elementor-tab-content h6 { font-size: 18px; margin: 20px 0 20px 0; font-family: "Source Sans 3", sans-serif; color: #183966; font-weight: 400;}
.release-note .elementor-widget-container .elementor-accordion .elementor-accordion-item .elementor-tab-content { color: #101c38 !important; font-size: 16px !important; padding: 20px !important; background: #f4f9fc; }
.release-note .elementor-accordion-icon-opened svg, .release-note .elementor-accordion-icon-closed svg{ margin-top: -8px; }

/* help */
.mkb-root.mkb-container{ padding:3rem 15px 3rem 15px !important; }
.kb-topic .kb-topic__articles li a{ white-space: inherit !important; overflow: visible !important; }
.mkb-page-header .mkb-page-title { font-size: 36px !important; font-family: "Source Sans 3", sans-serif !important; text-shadow: none !important; color: #183966 !important; margin-bottom: 20px !important;}
.kb-topic .kb-topic__inner .kb-topic__title a .kb-topic__title-icon { display: none !important; }
.kb-search__input-wrap.mkb-search-theme__minerva .kb-search__input{ border: solid 1px #CDDCE6 !important; border-radius: 5px !important; color: #101c38CC; width: 325px; height: 40px !important; line-height: 40px; font-family: "Source Sans 3", sans-serif; font-size: 14px;}
.kb-search .kb-search__icon, .kb-search .kb-search__clear-icon{ color: #CDDCE6 !important; top: 4px !important; }
.kb-topic .kb-topic__articles ul{ font-size: 14px !important; margin-bottom: 20px !important; font-family: "Source Sans 3", sans-serif !important;}
.kb-topic .kb-topic__articles ul li{ padding-left: 15px; margin-bottom: 10px !important; }
.kb-topic .kb-topic__articles ul li::before { content: ''; background: #776eff !important; width: 7px; height: 7px; position: absolute; border-radius: 50%; left: 0; top: 5px !important; margin-right: 10px;}
.kb-topic__articles ul li a { font-family: "Source Sans 3", sans-serif !important; font-size: 14px !important; font-weight: 400 !important; color: #101c38 !important; }
.mkb-breadcrumbs li a{ color: #101c38 !important;}
.kb-topic__title a.kb-topic__title-link { text-shadow: none !important; font-family: "Source Sans 3", Sans-serif !important;}
.kb-topic .kb-topic__show-all{ color: #1663f9 !important; font-size: 14px !important; font-family: "Source Sans 3", sans-serif !important; font-weight: 500 !important; bottom: 10px !important; }
.kb-topic .kb-topic__show-all:hover{ color: #2121b3 !important; }
.mkb-anchors-list{ background: #f4f9fc !important; font-weight: 500 !important;}
.mkb-root .mkb-article-header a{ color: #101c38 !important; line-height: 26px !important; transition: all 0.2s;}
.mkb-root, .mkb-taxonomy-description, .mkb-page-description, .mkb-root .mkb-article-text{ font-weight: 400; color: #101c38 !important; line-height: 30px; }
.mkb-root h4{ color: #183966 !important; padding-right: 50px !important; }
.mkb-article-text blockquote { margin:20px 0; background: #F4F9FC; border: 1px solid #E3E9ED; border-left: 5px solid #6C63FF; padding: 50px 100px 50px 50px; border-left: 5px solid #6C63FF; font-size: 16px; font-weight: 500; color: #101c38CC; position: relative; font-style: italic; }
.mkb-article-text blockquote::after { content: '"'; position: absolute; right: 50px; top: 50px; color: #E3E9ED; font-size: 100px; line-height: 100px; font-family: "Source Sans 3", Sans-serif !important;}
.mkb-article-list-container.article-list-layout-1col{ background: #f4f9fc !important; padding: 30px 20px !important; margin:0 !important; }
.mkb-article-item--simple .mkb-entry-header{ border-bottom: none !important; }
.mkb-article-item--simple > .mkb-entry-header > .mkb-entry-title > a{ color: #183966 !important; font-family: "Source Sans 3", sans-serif !important; font-size: 16px !important;}
.mkb-article-item--simple .mkb-entry-header::before{ background-color: #776eff !important; }
.mkb-breadcrumbs__label{ margin-right: 0 !important; }
.mkb-pagination ul li{ color: #101c38 !important; }
.mkb-pagination ul li a{ color: #101c38 !important; font-size: 14px; transition: all 0.2s !important; text-decoration: none !important; font-weight: 400 !important; outline: none !important; }
.mkb-pagination ul li a:hover{ box-shadow: none !important; background: #eee; }
.mkb-pagination ul li.active{ color: #1663f9 !important; font-weight: bold; }
.mkb-related-articles .mkb-related-articles__list a{ color: #1663f9 !important; }
.mkb-related-articles .mkb-related-articles__list a:hover{ color: #2121b3 !important; }


.mkb-breadcrumbs { margin: 0px !important; }
.page .mkb-page-header, .mkb-archive .mkb-page-header, .mkb-search .mkb-page-header { margin-bottom: 30px !important; }
.kb-topic .kb-topic__inner .kb-topic__title, .kb-topic .kb-topic__inner .kb-topic__title a {
    color: #183966 !important;
    font-size: 22px !important;
    line-height: 35px;
    font-weight: 400;
    margin-bottom: 15px;
}
.kb-topic .kb-topic__articles li .kb-topic__list-article-title {
    line-height: 28px;
    font-size: 16px;
}
.kb-topic .kb-topic__articles ul li:before {
    top: 10px;
}
.kb-topic .kb-topic__inner {
    padding: 20px 10px 20px 0px;
}
.mkb-home-topics .kb-topic a {
    font-size: 16px !important;
}
.mkb-breadcrumbs__list li {
    line-height: 30px;
    font-size: 16px;
}
.mkb-related-articles .mkb-related-articles__list a {
    color: #101c38;
    font-size: 16px;
    font-weight: 400;
}
.mkb-article-extra__rating-likes-block .mkb-article-extra__like, .mkb-article-extra__rating-likes-block .mkb-article-extra__dislike{
    font-size: 16px;
}
.mkb-single-content__text p { font-size: 18px; }
ul.mkb-anchors-list__container li .mkb-anchors-list__item-link {
    font-size: 15px;
}
.mkb-article-item--simple .mkb-entry-header { margin-bottom: 0px !important; }

.mkb-root.mkb-container { margin-bottom: 20px; }
.kb-topic__description { font-size: 16px; line-height: 25px; }
.mkb-widget-global.mkb_recent_topics_widget ul li a{
    color: #183966;
    line-height: 30px !important;
    font-size: 16px;
}
.mkb-root h2.mkb-widget-title {
    color: #183966 !important;
    font-size: 20px;
}
.mkb-root.mkb-container {
    max-width: 100% !important;
    width: 85% !important;
    padding: 5% !important;
    height: auto !important;
    min-height: 100%;
}
.mkb-container {
    min-height: 100% !important;
    width: 100% !important;
}
.kb-topic .kb-topic__show-all { position: relative !important; }
body.single-portfolio span.wpcf7-not-valid-tip {
    display: none;
}


/* help */




/* faq */
.faq-wrapper{ padding-bottom: 40px;}
 
.faq-left-wrapper { background: url("images/faq-sec-image.png") no-repeat bottom left #fff; height: 100%; }
.faq-left-wrapper .nav{ display: block; border: solid 1px #E3E9ED;}
.faq-left-wrapper .nav li{ display: block; background: #F4F9FC; height: 75px; border-bottom: solid 1px #D9E7F0; }
.faq-left-wrapper .nav li a{ line-height: 60px; text-decoration: none; font-size: 16px; font-family: "Source Sans 3", sans-serif; font-weight: 400; color: #183966; outline: none; transition: all 0.2s; }
.faq-left-wrapper .nav li a:hover{ color: #6C63FF;}
.faq-left-wrapper .nav a.nav-link.active{ background: #FFF; border-right: solid 5px #6C63FF; color: #183966; border-bottom: solid 1px #D9E7F0;  border-radius: 0;  height: 75px; position: relative; right: -1px;}
.faq-left-wrapper .nav a.nav-link.active .icon{ color: #6C63FF;}
.faq-left-wrapper .nav a.nav-link .icon{ padding-right: 16px; font-size: 24px; position: relative;top: 5px;}
.faq-left-wrapper .nav a.nav-link .icon:hover{ color: #6C63FF;}
.faq-left-wrapper .nav li:last-child{ border-bottom: 0;}

.faq-right-wrapper {}
.faq-right-wrapper .faq-heading{ display: flex; justify-content: space-between;}
.faq-right-wrapper .faq-heading h1{ font-family: "Source Sans 3", sans-serif; font-weight: bold; font-size: 40px; color: #183966;}
.faq-right-wrapper .faq-search{ position: relative;}
.faq-right-wrapper .faq-search button{ position: absolute; right: 5px; background: none; border:0; top: 4px;}
.faq-right-wrapper .faq-search  input{ border:solid 1px #CDDCE6; border-radius: 6px; color: #101c38CC; width: 325px; height: 40px; line-height: 40px; padding-left: 15px; font-weight: 500; font-family: "Source Sans 3", sans-serif; font-size: 14px;}
.faq-right-wrapper .faq-search  input::placeholder{ font-size: 14px; font-weight: 400; color: #9F9F9F; position: relative; top:-1px;}


/* faq */

/* faq old*/
.kb-faq {position: relative;margin-left: auto;margin-right: auto;max-width: 100%;}
/*.mkb-home-faq{ padding-top: 3rem; padding-bottom: 3rem; padding-left: 15px; padding-right: 15px; }*/
.fn-kb-faq-container .mkb-section-title{ text-align: left !important; }
.fn-kb-faq-container .mkb-section-title h3{ font-weight: bold !important; font-size: 40px!important; color: #183966!important;}
.kb-faq .kb-faq__filter{ width: 325px !important; position: absolute; right: 0;}
ul.kb-faq__questions-list > li.kb-faq__questions-list-item > a.fn-kb-faq-link > span.kb-faq__question-title { font-family: "Source Sans 3", sans-serif !important;}
.kb-faq .kb-faq__category-title{ font-size: 30px !important; color: #183966; font-family: "Source Sans 3", Sans-serif !important; }
.kb-faq .kb-faq__questions .kb-faq__question-title { outline: none !important; font-size: 20px !important; font-family: "Source Sans 3", sans-serif !important; padding: 25px 50px 25px 0px !important; font-weight: 500 !important; background: none !important; color: #183966 !important; border-radius: 0 !important; border-bottom: 1px solid #e3e9ed !important; border-left: none !important;  border-right: none !important;  border-top: none !important;}
.kb-faq .kb-faq__questions .kb-faq__question-title:hover{ background: none !important; }
.kb-faq .kb-faq__questions .kb-faq__question-toggle-icon, .kb-faq .kb-faq__questions .kb-faq__question-toggle-icon-open{ left: auto !important; right: 20px !important; color: #504ba8 !important; }
.kb-faq .kb-faq__questions .kb-faq__question-title .fa-plus-circle::before { content: "\f067" !important;}
.kb-faq .kb-faq__questions .kb-faq__question-title .fa-minus-circle::before { content: "\f068" !important;}
.kb-faq .kb-faq__filter input.kb-faq__filter-input { font-family: "Source Sans 3", sans-serif !important; font-size: 16px !important; height: 40px !important; border: solid 1px #CDDCE6 !important; border-radius: 5px !important; box-shadow: none !important; padding: 10px 16px 10px 16px !important; min-width: 250px !important; background: #fff !important; color: #101c38 !important;}
/*.kb-faq .kb-faq__filter .kb-faq__filter-clear, .kb-faq .kb-faq__filter .kb-faq__filter-icon { color: #CDDCE6 !important; right: 14px !important; top: -8px !important;}*/
.kb-faq .kb-faq__questions .kb-faq__answer .kb-faq__answer-content{ background: #F4F9FC !important; border: 0 !important; border-radius: 0 !important; color: #101c38 !important; font-size: 16px !important; margin-top: 25px !important; padding: 15px 20px !important; line-height: 29px !important;}
.kb-faq .kb-faq__questions ul.kb-faq__questions-list li.kb-faq__questions-list-item a{ outline: none !important; color: #1663f9 !important; }
.kb-faq .kb-faq__no-results { margin-bottom: 25px; font-size: 16px !important;}
/* faq old*/

/*----- Pricing page -----*/

.pricing-box:hover .pricing-btn .elementor-button{
    background-color: #1A1919 !important;
    color: #ffffff !important;
}
.pricing-box:hover .pricing-btn .elementor-button:hover{
    background-color: #1E4780 !important
}

/*----- Home page -----*/
.mob-height-auto .elementor-widget-container{
    height: auto !important;
}

/*-------------------------------------------
>>> Infince Theme css/devstyle.css END
---------------------------------------------*/

.img-height-fit .elementor-widget-container{
    max-height: fit-content;
}


.casestudytab .elementor-tabs-content-wrapper ul li p {
    padding: 5px 7px;
    margin-bottom: 0px;
}
@media (min-width:1024px){
    .infince-header{
        padding: 16px 60px !important;
    }
}

/*----- Contact Us Page -----*/
.cont-form .cfname, 
.cont-form .cfemail,
.cont-form .cfphone,
.cont-form .cfcomp,
.cont-form .cfmsg
{
    width: 100%;
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    padding: 14px;
    font-family: "Source Sans 3", Sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #303030;
}
.cont-form .cfinfo{
    margin-top: 38px;
    margin-bottom: 20px;
    font-family: "Source Sans 3", Sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #707070;
}
.cont-form .cfinfo a{
    color: #3D76CC;
    font-weight: 600;
}
.cont-form .cfbtn{
    font-family: "Source Sans 3", Sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 127%;
    color: #FFFFFF;
    background-color: #1A1919;
    padding: 11px 36px;
    border: 1px solid #1A1919;
    border-radius: 12px;
    width: 170px;
    transition: 0.3s ease-in-out;
}
.cont-form .cfbtn:hover{
    background-color: #1e4780;
    border: 1px solid #1e4780;
}
.cont-form .wpcf7-not-valid{
    border: 1px solid #dc3232 !important;
}
.cont-form .wpcf7-not-valid-tip{
    display: none;
}
.cont-form .wpcf7-response-output{
    font-family: "Source Sans 3", Sans-serif;
}
/*----- Homepage -----*/
.home-flow-arrow .elementor-widget-container{
        height: auto !important;
    }

.resouces-row{
    row-gap: 20px;
}

.operationsection .ressec p{
    color: #555555 !important;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .infince-nav .navbar-nav > .menu-item > a {
        padding: 0px !important;
    }
}

@media (max-width:830px){
.kb-topic__inner{
    height: auto !important;
}

/*--- Top Menu - mobile ---*/
@media (max-width: 991px){
    .infince-nav > li.menu-item-has-children > a:after{
        transform: rotate(270deg);
    }
    .infince-nav li.menu-item-has-children .sub-menu li.menu-item-has-children > a:after{
        transform: rotate(270deg);
    }
}