﻿html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    /*font-family: "Jost", sans-serif;*/
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    background-color: #FDFEFF;
}


:root {
    --primary-color: #3FC0B5;
    --secondary-color: #3C65F5;
    --body-font-color: #635959;
    --white-color: #ffffff;
    --black-color: #000000;
    --heading-colors: #151C25;
    --light-bg: #FAFBFF;
    --footer-bg: #0b0916;
    --innersubtitle: #0c043d;
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #3FC0B5 #061314e6;
}

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width:7px;
  }

  *::-webkit-scrollbar-track {
    background: #061314e6;
  }

  *::-webkit-scrollbar-thumb {
    background-color:#3FC0B5;
    border-radius: 0px;
    border: 0px groove #ffffff;
  }
/* ===== Scrollbar CSS ===== */
/* Header Css Start*/
#header {
    padding:20px 0 15px;
    border-bottom:1px solid #838383;
    /* height:100px;*/
}

.bshadow {
    box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    background-color: #061314e6;
    padding: 10px 0 5px !important;
}

.extra-mrt {
    margin-top: 100px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    font-size: calc(13px + (18 - 13) * ((100vw - 300px) / (1920 - 300)));
    color: var(--white-color);
    white-space: nowrap;
    transition: 0.8s;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size:13px;
  line-height:0;
  font-weight:600;
  margin-left:5px;
  margin-top:2px;
  color:#fff;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--primary-color)!important;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: -30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 0px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /*box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.75);*/
    transition: 0.3s;
}

.navbar .dropdown ul li {
   min-width: 200px;
    /*height: 48px;*/
    padding: 0;
    border-bottom:1px solid #bebebec9;
}

.navbar .dropdown ul a {
   padding: 10px 15px;
   text-transform: none;
   font-size: 16px;
   color:var(--black-color);

}

.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul {
    background-color:var(--white-color);

}
.navbar .dropdown ul li a {
    color: var(--body-font-color);
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color:var(--white-color)!important;
  background-color: var(--primary-color);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
    .navbar a, .navbar a:focus{
        padding:10px 18px;
    }
}

.brand-logo img {
    max-width: 190px;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: var(--white-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .big-box {
        margin-bottom: 15px !important;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(4 12 21 / 77%);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
   top: 55px;
   right: 15px;
   bottom: 15px;
   left: 15px;
   padding: 10px 0;
   background-color: var(--primary-color);
   overflow-y: auto;
   transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
   padding: 10px 20px;
   font-size: 15px;
   color: var(--white-color);
   border-bottom: 1px solid #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
   color: #fff !important;
 }

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
   margin: 15px;
}

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 0px 4px;
        padding: 0px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: var(--white-color);
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

.navbar-mobile .dropdown ul li {
     min-width: 200px;
     padding:0;

  
}

.navbar-mobile .dropdown ul a {
     padding: 10px 10px;
}

.navbar-mobile .dropdown ul a i {
   font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--white-color)!important;
  background-color: var(--primary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.nav-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.dropdown-menu.show {
    display: block;
    min-width: 180px;
    background-color: #313333;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 14px;
    font-weight: 400;

}

.dropdown-menu .nav-link {
    padding: 0;
    margin: 0;
}


.navbar-nav .nav-link {
    color: #fff;
}

.dropend .dropdown-toggle {
    color: salmon;
    margin-left: 1em;
}

.dropdown-item:hover {
    background-color: lightsalmon;
    color: #fff;
}

.dropdown .dropdown-menu {
    display: none;
}

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;
}

@media screen and (min-width: 769px) {
    .dropend:hover > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }

    .dropend .dropdown-toggle {
        margin-left: 0.5em;
    }
}

/* Header Css Start*/
/* Common Btns*/
.header-right {
    display: flex;
    justify-content: end;
}

.header-btn {
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
    color: #ffff;
    font-weight: 500;
    padding: 12px 25px;
    text-decoration: none;
    border: 0;
    border-radius: 40px;
    margin-bottom: 0;
    text-align: center;
    background: linear-gradient(270deg, #43BEA3 0%, #3CC2D1 100%);
    display: inline-block;
}
    .header-btn:hover {
        background: linear-gradient(90deg, rgba(63, 192, 181, 1) 0%, rgba(37, 46, 47, 1) 100%);
    }


.btns-holder {
    display: flex;
    justify-content: space-between;
    max-width:370px;
    margin: 20px 0 10px;
}
.arw-btn {
    font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1920 - 300)));
    text-decoration: none;
    color: var(--white-color);
    font-weight: 500;
    padding: 12px 25px;
    border: 0;
    transition: 0.8s;
    background: linear-gradient(270deg, #43BEA3 0%, #3CC2D1 100%);
    border-radius: 53px;
    display: inline-block;
}
.arw-btn svg{
    margin-left:12px;
    transform: rotate(310deg);
}
 .arw-btn:hover {
   background: rgb(63,192,181);
   background: linear-gradient(90deg, rgba(63,192,181,1) 0%, rgba(37,46,47,1) 100%);
   color: var(--white-color);
 }
/* Common Btns*/
/* Spacers Start */
.section-bg {
  background-color: #FAFBFF;
}
.space-p-t {
    padding-top:80px;
}

.space-p-b {
    padding-bottom:80px;
}

.space-p-tb {
    padding:80px 0;
}

.space-m-t {
    margin-top:80px;
}

.space-m-b {
    margin-bottom:80px;
}

.space-m-tb {
    margin:80px 0;
}

/* Spacers End */

/* Common Text Style*/
.common-title {
    font-size: calc(24px + (40 - 24) * ((100vw - 300px) / (1920 - 300)));
    font-weight:500;
    color:var(--black-color);
}
.common-min-title {
    font-size: calc(22px + (38 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color:var(--black-color);
}
.common-title span{
    color:var(--primary-color);
}
.common-text {
    font-size: calc(16px + (17 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--body-font-color);
}
.comon-btn {
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 12px 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    position:relative;
}
.custom-bg{
    background-color:var(--primary-color);
}
.section-bg-dark {
    background-color: #D6E5FD;
}
.comon-small-title {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Common Text Style*/
/* Home Page Css Start  */
.main-banner {
    background-image: url(/assets/images/banners/home-banner.webp);
    padding-top: 200px;
    padding-bottom: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #151C25;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}

.main-banner::before {
    content:"";
    background: rgba(3, 3, 3, 0.67);
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:-1;

}

.main-banner h1{
    font-size: calc(28px + (60 - 28) * ((100vw - 300px) / (1920 - 300)));
    /*font-weight:400;*/
    color:var(--white-color);
}
.main-banner h1 span{
    background: linear-gradient(270deg, #43BEA3 0%, #3CC2D1 100%);
    font-weight:700;
    padding:2px 5px;
     color:var(--white-color);
}
.main-banner p{
    font-size: 20px;
    font-weight:400;
    color:var(--white-color);
}

.brand-logo-sec {
    position:relative;
    padding:60px 0;
}

.stragetic-box {
    margin-bottom: 25px;
    position: relative;
    background: #FFF;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
   /* min-height: 720px;*/
    min-height: 750px;
}
.stragetic-box span{
     font-size: 16px;
    font-weight:400;
    color:var(--primary-color);
}

.stragetic-box .common-min-title {
    font-size: calc(18px + (24 - 18) * ((100vw - 300px) / (1920 - 300)));
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #BEBEBE;
    min-height: 80px;
}

    .stragetic-box p {
        font-weight: 400;
        color: #000;
        /*     height:180px;
    overflow-y:auto;*/
    }
.stragetic-list{
    padding:0;
    margin:10px 0; 
    height:160px;
    overflow-y:auto;
}
.stragetic-list li{
    list-style:none;
    position:relative;
    font-weight:400;
    color:#3D3D3D;
    margin-bottom:12px;
    padding-left:20px;
}
.stragetic-list li::before{
    content:"+";
    position:absolute;
    left:0;
    top:0px;
    color:#000;
}
.stragetic-box a {
    color: #ffffff;
    border-radius: 50px;
    background-color: #3fc0b5;
    position: relative;
    margin-top: 15px;
    border: 0;
    text-decoration: none;
    padding: 12px 36px;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

    .stragetic-box a:hover {
        background: linear-gradient(90deg, rgba(63, 192, 181, 1) 0%, rgba(37, 46, 47, 1) 100%);
    }

.tragetic-box-cont {
    padding: 20px 29px;
}

.about-img-box{
    position:relative;
}
.about-img-box img{
    width:100%;
}
.about-img-box .about-img-box-text{
    background: linear-gradient(270deg, rgba(67, 190, 163, 0.90) 0%, rgba(60, 194, 209, 0.90) 100%);
    position:absolute;
    bottom:0px;
    height:25%;
    left:0;
    right:0;
    width:100%;
    padding:60px 20px 40px 20px;
    text-align:left;

}

.about-img-box .about-img-box-text span,
.about-img-box .about-img-box-text h2{
    padding-left:20%;
    padding-top:10px;
}
.progree-box {
    position:relative;
    margin-bottom:40px;
}
.progree-box .small-title{
    font-size: 18px;
    font-weight:500;
    color:var(--black-color);
}
.progree-box .progress{
    height:8px;
    width:95%;
    display:flex;
    align-items:center;
}
.progree-box .progress .progress-bar{
    background-color:var(--primary-color);
}
.progree-box span {
    font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
    color: var(--black-color);
    position: absolute;
    right: 0;
}
.tab-sec .nav .nav-link {
    font-size: calc(20px + (25 - 20) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
    color: var(--black-color);
    padding:10px 20px;
    border-radius:0;

}
.tab-sec .nav-pills .nav-link.active {
    border-bottom: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
}
.serv-box {
    position: relative;
    /*padding: 26px 0;*/
    margin: 15px 4px;
    transition: 1.7s all ease-in;
    cursor: pointer;
}
.serv-box .serv-box-img img{
    width:100%;
    position:relative;
    min-height:450px;
    object-fit:cover;
   
}
.serv-box .serv-box-text::before{
    content:'';
    background-image:url('/assets/images/serv-box-img-overlay.png');
    background-repeat:no-repeat;
    background-size:cover;
    position:absolute;
    bottom: 0;
    left: 0;
    width:100%;
    height:100%;
}
.serv-box .serv-box-text{
    background-image:url('/assets/images/serv-box-img-overlay.png');
    background-repeat:no-repeat;
    background-size:cover;
    position:absolute;
    left:0;
    right:0;
    padding:0 20px;
     bottom:0;
    text-align:center;
    width:100%;
    height:100%;
    z-index:999;
}
.serv-box .serv-box-text span{
     font-size: calc(22px + (24 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: var(--white-color);
    position:absolute;
    left:0;
    right:0;
    padding:0 20px;
    text-align:center;
    bottom:25px;

}
.serv-box .serv-box-text p{
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: var(--white-color);
    display:none;
    /*left:0;
    right:0;
    padding:0 20px;
    text-align:center;
    position:absolute;*/

}
.tab-sec {
    position: relative;
}
.tab-sec .service-slider-button {
    position: relative;
}
.tab-sec .service-slider-button button{
    background-color:var(--black-color);
    width:50px;
    height:50px;
    border:0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    position:relative;

}
/*.service-slider-button #sr-tl {
    position: absolute;
    bottom: 250px;
    left: -80px;
}
*/
.service-slider .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding: 1rem 0;
    list-style-type: none;
    position:relative;
    top:30px;
}
.service-slider  .slick-dots li {
	 margin: 0 0.25rem;
}
    .service-slider .slick-dots button {
        display: block;
        width: 12px;
        height: 12px;
        padding: 0;
        border: none;
        border-radius: 100%;
        background-color: #ccc;
        text-indent: -9999px;
    }
    .service-slider .slick-dots li.slick-active button {
        background-color: var(--primary-color);
    }
 
.tab-sec .service-slider-button button:hover {
    background-color: var(--primary-color);
}
.tab-sec .service-slider-button button i,
.tab-sec .service-slider-button button svg{
    filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(171%) hue-rotate(115deg) brightness(118%) contrast(100%);
}
.serv-box:hover .serv-box-text {
    background-image: url('/assets/images/serv-box-img-hover.png') !important;
}

.process-sec{
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}
.process-box {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0px 0px 24px rgba(64.28, 202.68, 233.75, 0.16);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    padding: 40px 25px 25px 25px;
    transition: 0.9s all linear;
    cursor: pointer;
    min-height: 515px;
}

.coreValue-sec .process-box {
    min-height: 530px;
}

.process-box .process-box-icon{
    background: linear-gradient(270deg, #43BEA3 0%, #3CC2D1 100%);
    border:0;
    border-radius:50%;
    width:118px;
    height:118px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto;
    

}
.process-box .process-box-text{
    margin-top:25px;
    min-height:150px;
    text-align:center;
}

.process-box .process-box-text span {
    font-size: calc(20px + (22 - 20) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 10px;
    display: block;
}

.process-box .process-box-text p{
    font-size: calc(13px + (18 - 13) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: #3D3D3D;
}
.process-box:hover{
    background: linear-gradient(270deg, #43BEA3 0%, #3CC2D1 100%);
    box-shadow:rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /*background-color:#43BEA3;*/
}
.process-box:hover .process-box-icon{
    background:var(--white-color);
}
.process-box:hover .process-box-icon img{
    filter: brightness(0) saturate(100%) invert(63%) sepia(8%) saturate(2796%) hue-rotate(125deg) brightness(104%) contrast(89%);
}

/*.hr-service .explore-item-box .explore-item-box-text {
    min-height: 434px;
}*/



.explore-item-box {
  /* height: 100%;*/
    /* max-height: 480px; */
    object-fit: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*max-width: 450px;*/
    margin:5px 10px;
    position: relative;
    /* padding: 40px 20px; */
    cursor: pointer;
    /*z-index: 20;*/
    min-height: 400px;
   
   
}
.explore-item-box::before {
    content:"";
    background-color:#000000a6;
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    opacity:0.8;
}
.explore-item-box .explore-item-box-text{
    /*padding:22% 20px 22% 20px ;*/
    /*width:100%;*/
    /*height:100%;*/
    position:absolute;
   /* display:flex;*/
    bottom:40px;
    transition:0.8s all ease-in-out;

}    
.explore-item-box h4{
    font-size: calc(18px + (24 - 18) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: var(--white-color);
   /* padding-bottom:10px;*/
    margin-bottom:5px;
    position:relative;
    padding:10px 22px;
    
}
.explore-item-box p{
    padding:10px 20px
}
.explore-item-box h4::before{
    content:"";
    width:80px;
    background-color:var(--white-color);
    height:1px;
    position:absolute;
    left:25px;
    bottom:0;
    z-index:99;

}

.explore-item-box:hover .explore-item-box-text {
    background-image: url('/assets/images/explore-hover.png');
    background-repeat: no-repeat;
    background-size: cover;
    /*margin-top: 0;*/
   /* height: 100%;*/
    /* width:100%;
    min-height: 480px;*/
    top: 0;
    bottom: 0;
    left: 0;
   transition:1.0s all linear;
   padding-top:30%;

}
.explore-nav-button{
    position:relative;
}
.explore-nav-button button{
    background-color:var(--primary-color);
    width:36px;
    height:36px;
    border:0;
    border-radius:50%;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99;
}
.explore-nav-button button svg,
.explore-nav-button button i{
   filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7476%) hue-rotate(124deg) brightness(119%) contrast(99%);
}
.explore-sec #exp-left{
    position:absolute;
    top:200px;
    left:-5%;
}
.explore-sec #exp-right {
    position: absolute;
    top: 200px;
    right: -5%;
}
.client-slider{
    padding-top:30px;
   
}
.client-item {
    position: relative;
    display: flex !important;
    align-items: flex-start;
    margin-top:30px;
}
.client-item .client-item-img{
     max-width:400px;
     margin-right:20px;
     position:relative;
     
}
.client-item .client-item-img img{
   /* width:100%;*/
    border-top-left-radius:40px;
    border-top-right-radius:40px;
    position:relative;
    max-width:400px;
}
.client-item .client-item-img::before{
    content:"\f10e";
    background-color:var(--primary-color);
    width:80px;
    height:80px;
    border:0;
    border-radius:50%;
    position:absolute;
    display:flex;
    align-items:center;
    justify-content:center;
    right:-30px;
    top:30px;
    z-index: 999;
    font-family: 'FontAwesome';
    color: #fff;
    font-size: 40px;
}
.client-item .client-item-text{
    max-width:850px;
    margin-left:auto;
}
.client-item .client-item-text p{
    font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color:#3D3D3D;
    margin-bottom:50px;
    padding-top:10px;
}
    .client-item .client-item-text span {
        display: block;
        font-size: calc(18px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 600;
        color: #222222;
    }
    .client-item .client-item-text em {
        font-size: calc(12px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        display: block;
        font-style: normal;
    }

.client-item-text h5 {
    font-size: calc(12px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
}
.clients-nav-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: right;
    margin-top: -50px;
}
.clients-nav-button button{
    background-color:var(--black-color);
    width:46px;
    height:46px;
    border:0;
    border-radius:10px 0;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99;
    margin:10px 10px;
    transition:0.5s ease;
}
    .clients-nav-button button:hover {
        background: linear-gradient(90deg, rgba(63, 192, 181, 1) 0%, rgba(37, 46, 47, 1) 100%);
    }
.clients-nav-button button svg,
.clients-nav-button button i{
   filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7476%) hue-rotate(124deg) brightness(119%) contrast(99%);
}
.explore-sec #exp-left{
    position:absolute;
    top:200px;
    left:-5%;
}
.explore-sec #exp-right {
    position: absolute;
    top: 200px;
    right: -5%;
}
.blog-box {
    position:relative;
}
.blog-box .blog-img img{
    width:100%;
    margin-bottom:25px;
}
.blog-box .blog-text h5{
    font-size:20px;
    font-weight:500;
    color:var(--black-color);
}
.blog-box .blog-text p{
    font-weight:400;
    color:#3D3D3D;
}
.blog-sidebar{
    position:relative;
    margin-bottom:15px;
}
.blog-sidebar span {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.blog-sidebar span::before{
    content:"";
    width:50px;
    background-color:var(--primary-color);
    height:2px;
    position:absolute;
    left:0;
    bottom:15px;

}
.blog-sidebar h5 {
    font-size: 18px;
    font-weight: 500;
    color:var(--black-color);
    margin-top:15px;
}
.blog-sidebar p {
    font-size:16px;
    font-weight: 400;
    color:#BEBEBE;
}
/*.serv-box:hover p{
    display:block;
}*/

.main-footer{
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
    position:relative;
}
.main-footer .arw-btn{
    background:transparent;
    color:var(--primary-color);
    border:1px solid var(--primary-color);
}
.main-footer .arw-btn:hover{
    background-color:var(--primary-color);
    color:var(--white-color);
}
.main-footer label{
     font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
    color:var(--black-color);
    margin:20px 0 40px;
}
.copyright {
    color: var(--black-color);
    margin-top: 20px;
    font-size: 24px;
    font-family: Poppins;
    font-weight: 400;
    letter-spacing: 4.80px;
}
/* Home Page Css End */
.accordian-sec {
    position: relative;
}

.accordian-sec .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.accordian-sec .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordian-sec .accordion-button::after {
    transition: all 0.5s;
}

/* Home Page Css End  */


.inner-banner {
    padding-top: 0px;
    padding-bottom: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #151C25;
    min-height: 380px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}

.inner-banner::before {
    content: "";
    background: rgba(3, 3, 3, 0.67);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

    .inner-banner h1 {
        color: white;
        font-size: calc(28px + (60 - 28) * ((100vw - 300px) / (1920 - 300)));
        font-family: Lato;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 0;
        margin-top: 40px;
    }

.mv-title {
    font-size: 80px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    word-wrap: break-word
}

.mv-box {
    max-width: 400px;
    margin: 0 auto;
}

.mv-section {
    position:relative;
}

.mv-section:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    height: 295px;
    width: 1px;
    background-color: #606060;
    top: 0;
    bottom: 0;
}


/* About Page Css End */
/* Partners Page Css End */
/* Feature Page Css Start */
/* Tabing Animation */


/* Contact Page Css Start */

.info {
    display: flex;
    gap: 12px;
    align-items:center;
   /* align-items: end;*/
}

.icon {
    background: linear-gradient(90deg, rgba(67, 190, 163, 1) 0%, rgba(60, 194, 209, 1) 100%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: #fff;
    font-size: 22px;
}
.info-content p,
.info-content a {
    color: #7B7979;
    font-size: 20px;
    font-weight: 400;
    text-decoration:none;
}
.form-sec p {
    color: #7B7979;
    font-size: 20px;
    font-weight: 400;
    margin:0;
}

.form-Div {
    border: 2px solid #0000002e;
    border-radius: 16px;
    padding: 50px 30px;
    margin-top: -270px;
    position: relative;
    z-index: 1000;
    background-color: #fff;
}

.cp-form {
    padding-top: 20px;
}

    .cp-form input {
        border-radius: 16px;
        border-color: #00000091;
        font-size: 12px;
        font-weight: 400;
    }

form.cp-form input {
    height: 46px;
    margin-bottom: 30px;
}

.cp-form .iti-group {
    height: 47px;
    margin-bottom: 30px;
}

.cp-form textarea {
    height: 150px;
    border-radius: 16px;
    border-color: #00000091;
    font-size: 12px;
    font-weight: 400;
    width: 100%;
    padding-top: 10px;
    padding-left: 10px;
}

.form-btn .cnt-btn {
    padding: 10px 30px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(67, 190, 163, 1) 0%, rgba(60, 194, 209, 1) 100%);
    color: #fff;
    border: none;
}


/*------------------ Industries ------------------*/

.slick-prev.slick-arrow {
    background: transparent;
    margin-left: -10px;
}

    .slick-prev.slick-arrow::before {
        color: #000;
        font-size: 30px;
    }

.slick-next.slick-arrow {
    background: transparent;
    margin-right: -10px;
}

    .slick-next.slick-arrow::before {
        color: #3fc0b5;
        font-size: 30px;
    }

.GenAi img {
    height: 90%;
    width: 100%;
}


/*--------------- Accounting & Finance -------------*/

.elevate-sec {
    max-width: 1920px;
    margin: 0 auto;
    /*background-color: #FDFEFF;*/
    position: relative;
}

/*.elevate-img {
    width: 46vw;
    height: 90%;
    position: absolute;
    left: 0;
    top: 30px;
}*/

.elev-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cfo-right-content{
    text-align:end;
}
.elev-rep-right {
    position: relative;
    padding-right: 20px 0 10px 0;
    border-bottom: 1px solid #BEBEBE;
   margin-bottom:25px;
   margin-right:40px;
}
.elev-rep-right:before {
    content: "";
    background-image: url(/assets/images/icons/check-mark.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 26px;
    height: 26px;
    right: -35px;
    top: 0px;
}

.elev-rep-right h5 {
    font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
    padding-right:0;
    position:relative;
}

.elev-rep-right p {
    font-weight: 400;
    color: #515151;
    font-size: 14px;
     padding-right:0;
}



.elev-rep h3 {
    font-size: calc(18px + (25 - 18) * ((100vw - 300px) / (1920 - 300)));
    font-weight:500;
}

.elev-rep p {
    font-weight: 400;
    color: #515151;
    font-size: 14px;
}

.elev-rep:before {
    content: "";
    background-image: url(/assets/images/icons/check-mark.png);
    background-repeat: no-repeat;
    background-size:contain;
    position: absolute;
    width: 26px;
    height: 26px;
    left: -35px;
    top: 21px;
}

.elev-rep {
    position: relative;
    border-bottom: 1px solid #BEBEBE;
    padding: 20px 0 10px 0px;
    margin-left: 40px;
    margin-right: 80px;
}

.elev-rep:last-child {
    border-bottom: none;
}

.elevt-img-text {
    position: absolute;
    bottom: 0;
    background: linear-gradient(270deg, #43BEA3 0%, #3cc2d1d9 100%);
    /*opacity: 0.8;*/
    width: 100%;
    padding: 20px 0;
}

.elevt-img-text h4 {
    color: #fff;
    font-weight: 200;
    text-transform: uppercase;
}

.elevt-img-text h3 {
 color: #fff;
 font-weight: 300;
 font-size: 36px;
}

    .elevt-img-text .elevt-headings {
        margin: 0 auto;
    }

.explore-nav-button #exp-left {
    position: absolute;
    top: 200px;
    left: -5%;
}

.explore-nav-button #exp-right {
    position: absolute;
    top: 200px;
    right: -5%;
}

.why-choose-sec {
 /*   max-width: 1920px;
    margin: 0 auto;*/
    position: relative;
}

/*.why-choose-img {
    width: 47vw;
    height: 84%;
    position: absolute;
    right: 0;
    top: 50px;
}*/

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*.why-choose-content {
    padding-top: 100px;
    padding-bottom: 110px;
    text-align: end;
}*/

.why-choose-points {
    position: relative;
    padding-top: 30px;
    padding-right:25px;
                          
   /* line-height: 30px;*/

}

    .why-choose-points p {
        font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        color: var(--black-color);
        text-align:right;
        padding-right:30px;
        position:relative;
        margin-bottom:15px;
    }

        .why-choose-points p:before {
            content: "";
            background-image: url(/assets/images/icons/check-mark.png);
            background-repeat: no-repeat;
            background-size: contain;
            position: absolute;
            width: 26px;
            height: 26px;
            right: -12px;
        }



/*-------------------- Audit --------------------------*/

/*.bestIn-sec {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}*/

/*.bestIn-Img {
    width: 40vw;
    height: 90%;
    position: absolute;
    right: 0;
    bottom: 0;
}*/

.best-Img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bestInContent {
   /* padding-top: 40px;*/
    max-width: 800px;
    margin-left: auto;
    padding-right: 20px;
}

.sCard-Content {
    border-left: 2px solid #e4e4e4;
    border-right: 2px solid #e4e4e4;
    border-bottom: 2px solid #e4e4e4;
    padding: 20px;
    height: 240px;
}

.services-card {
    box-shadow: 0px 0px 11px 13px #f8f8f8;
    border: 1px solid transparent;
    cursor:pointer;
    margin-bottom:30px;
    position:relative;
    
}
/*.services-card:hover{
    border:2px solid var(--primary-color);
}*/
.sCard-Content p {
    color: #797979;
}

.sCard-Img img {
    width: 100%;
}



.why-audit-sec {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    background-size:cover;
    background-repeat:no-repeat;
}


/*.why-audit-Img {
    width: 47vw;
    height: 70%;
    position: absolute;
    right: 0;
    top: 190px;
}

.audit-Img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}*/

.why-audit-content {
    max-width: 700px;
    margin-left: auto;
    padding-left: 10%;
    padding-right: 5%;
    /*    max-width: 700px;
    margin-left: auto;
    padding-left: 10%;
    margin-right: 20px;
    padding-right: 5%;*/
}
.why-choose-businessImg img{
    width:100%;
}

/*--------------- Digital Transformation ---------------*/

.why-choose-content {
    max-width: 700px;
    margin-left: auto;
    padding-left: 5%;
}


.digi-box {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0px 0px 24px rgba(64.28, 202.68, 233.75, 0.16);
    border-radius: 50px;
    position: relative;
    padding: 40px 25px 25px 25px;
    transition: 0.9s all linear;
    cursor: pointer;
    height: 390px;
    margin:14px;
}

    .digi-box:hover {
        background: linear-gradient(270deg, #43BEA3 0%, #3CC2D1 100%);
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .digi-box .digi-box-icon {
        background: linear-gradient(270deg, #43BEA3 0%, #3CC2D1 100%);
        border: 0;
        border-radius: 50%;
        width: 118px;
        height: 118px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .digi-box .digi-box-text {
        margin-top: 25px;
        min-height: 150px;
        text-align: center;
    }

        .digi-box .digi-box-text h3 {
            font-size: calc(20px + (22 - 20) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 600;
            color: var(--black-color);
            margin-bottom: 10px;
            display: block;
        }

        .digi-box .digi-box-text p {
            font-size: calc(13px +(18 - 13)*((100vw - 300px) /(1920 - 300)));
            font-weight: 400;
            color: #3D3D3D;
        }

    .digi-box:hover .digi-box-icon {
        background: var(--white-color);
    }

        .digi-box:hover .digi-box-icon img {
            filter: brightness(0) saturate(100%) invert(63%) sepia(8%) saturate(2796%) hue-rotate(125deg) brightness(104%) contrast(89%);
        }


.why-choose-businessImg {
    position: relative;
    width:100%
}

.choose-business-Img {
    height: 550px;
    object-fit: cover;
}

.why-choose-business-text {
    background-color: #3FC0B5;
    width: 250px;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
}

    .why-choose-business-text h5 {
        color: #fff;
        font-weight: 300;
        font-size: 28px;
    }

    .why-choose-business-text span {
        font-weight: 600;
    }

.why-bus {
    position: relative;
}

    .why-bus:before {
        content: "";
        background-image: url(/assets/images/icons/check-mark.png);
        background-repeat: no-repeat;
        background-size:contain;
        position: absolute;
        width: 26px;
        height: 26px;
        left: -34px;
        top: 3px;
    }

    .why-bus h5 {
        font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 500;
        color: var(--black-color);
    }

    .why-bus p {
        font-weight: 400;
        color: #515151;
        font-size: 14px;
    }


/*    ---------------- Customer Support ---------------------*/


.key-benefits-content {
    max-width: 700px;
    margin-left: auto;
    padding-left: 5%;
    padding-right: 0%;
}

.why-partner-content {
    max-width: 800px;
    /*margin-left: auto;*/
    padding-left: 5%;
    padding-right: 5%;
}

.hassel-content {
    position: relative;
}

    .hassel-content:before {
        content: "";
        position: absolute;
        left: 0px;
        top: 130px;
        width: 75px;
        height: 1px;
        background-color: #3fc0b5;
    }

    .hassel-content p {
        font-size: 18px;
        padding-top:10px;
    }

.trend-item-box {
        height: 100%;
    max-height: max-content;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 450px;
    margin: 0 12px;
    position: relative;
    padding: 0;
    cursor: pointer;
    z-index: 20;
    display: flex !important;
    align-items: center;
    min-height: 400px;
}

    .trend-item-box::before {
        content: "";
        background-color: #000000a6;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

    .trend-item-box .trend-item-box-text {
        padding: 22% 20px 22% 20px;
        position: relative;
    }

    .trend-item-box span {
        font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 400;
        color: var(--white-color);
        position: relative;
        padding-bottom: 5px;
        margin-bottom: 25px;
    }

    .trend-item-box:hover .trend-item-box-text {
        background-image: url('/assets/images/explore-hover.png');
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 0;
        /* width:100%;
        height:100%;
        min-height: 480px;*/
        top: 0;
       /* opacity:0.7;*/
    }

  /*  .trend-nav-button button {
        background-color: var(--primary-color);
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 50%;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99;
    }*/

        .trend-nav-button button svg,
        .trend-nav-button button i {
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7476%) hue-rotate(124deg) brightness(119%) contrast(99%);
        }

.trend-nav-button {
    position: relative;
    justify-content: end;
    display: flex;
    padding-top: 40px;
    gap: 16px;
}

    .trend-nav-button #trend-right {
        background-color: #0c0c0c;
        width: 40px;
        height: 40px;
        border-radius: 10px 0px;
        border: 0;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99;
        transition: 0.5s ease;
    }

    .trend-nav-button #trend-left {
        background-color: #0c0c0c;
        width: 40px;
        height: 40px;
        border-radius: 10px 0px;
        border: 0;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99;
        transition: 0.5s ease;
    }

        .trend-nav-button #trend-left:hover {
            background-color: #3fc0b5;
        }

    .trend-nav-button #trend-right:hover {
        background-color: #3fc0b5;
    }

/*.trend-sec #exp-left {
    position: absolute;
    top: 200px;
    left: -5%;
}

.trend-sec #exp-right {
    position: absolute;
    top: 200px;
    right: -5%;
}*/

.trend-item-box .trend-item-box-text {
    /* padding: 22px 20px 22px 20px;*/

    padding: 31% 5%;
    position: relative;
    /*height: 400px;*/
}

.trend-item-box-text span {
    font-size: calc(14px +(24 - 20)*((100vw - 300px) /(1920 - 300)));
    font-weight: 400;
    color: var(--white-color);
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 25px;
}

.trend-item-box-text h4 {
    font-size: calc(8px +(38 - 22)*((100vw - 300px) /(1920 - 300)));
    font-weight: 200;
    color: var(--black-color);
}


/*---------------- Blogs ----------------*/

.blog-title {
    font-size: calc(13px + (40 - 24) * ((100vw - 300px) / (1920 - 300)));
    padding-top: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #C2C2C2;
    width: 100%;
}

.blog-date {
    color: #3FC0B5;
    font-size: 18px;
    font-weight: 400;
    padding-top:10px;
}

.case-btn {
    /*font-size: calc(15px +(18 - 15)*((100vw - 300px) /(1920 - 300)));*/
    text-decoration: none;
    color: #3fc0b5;
    font-weight: 500;
    padding: 12px 25px;
    border: 1px solid #3fc0b5;
    transition: 0.8s;
    background: transparent;
    border-radius: 53px;
    display: inline-block;
}

    .case-btn:hover {
        color:#fff;
        background: linear-gradient(90deg, rgba(63, 192, 181, 1) 0%, rgba(37, 46, 47, 1) 100%);
    }

.case-mini {
    font-weight: 400;
    font-size: 16px;
    position: relative;
    padding-left: 35px;
}

    .case-mini:before {
        content: "";
        position: absolute;
        width: 26px;
        height: 1px;
        background-color: #000;
        left: 0px;
        top: 10px;
    }

.case-title {
    font-size: 20px;
}

.case-row {
    padding-bottom: 30px;
    border-bottom: 1px solid #C2C2C2;
}

/*--------------- FAQs ----------------*/

.accordion-item {
    margin-bottom: 16px;
    border-radius: 5px !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    border-left: 7px solid #5cc5c6;
}

.accordion-collapse:not(.collapsed) {
    border-left: 7px solid #5cc5c6;
}

.accordion-button:focus {
    box-shadow: none;
    border-left: 7px solid #5cc5c6;
}

.accordion-button:active {
    box-shadow: none;
    border-left: 7px solid #5cc5c6;
}

.accordion-button.collapsed {
    padding-top: 25px;
    padding-bottom: 20px;
    padding-left: 35px;
}

.accordion-button::after {
    background-image: url(/assets/images/plus.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 15px;
    height: 15px;
    opacity: 0.6;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(/assets/images/minus.png);
}


@media (min-width: 992px) {

    #header {
        padding: 0px 0 0px;
        border-bottom: 1px solid #838383;
        /* height: 100px; */
    }

    nav#navbar {
        padding: 0 0;
    }

    .navbar li {
        position: relative;
        padding: 23px 0px;
    }
    
}


    /* Contact Page Css End */
    /* Footer Css start here */
    /* Footer Css End here */


    @media(max-width:1400px) {

        /*---------- home ----------*/

        .stragetic-box {
            min-height: 770px;
        }

        .process-box {
            min-height: 544px;
        }

        .client-item .client-item-text {
            max-width: 670px;
        }

        /*---------- About ----------*/

        .coreValue-sec .process-box {
            min-height: 556px;
        }

        /*---------- Resources ----------*/

        .blog-title {
            padding-top: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid #C2C2C2;
            width: 100%;
            height: 110px;
        }

        /*------------ hr ------------*/

        .explore-nav-button #exp-left {
            left: -50px;
        }

        .explore-nav-button #exp-right {
            right: -50px;
        }

        /*------------ Digital -----------*/

        .digi-box {
            height: 400px;
        }

        /*---------- Customer Service --------*/

        .hassel-content:before {
            display: none;
        }

        .hassel-content p {
            padding-top: 4px;
        }
    }

    @media(max-width:1199px) {
        .main-banner {
            min-height: auto;
        }

        .header-right {
            display: none;
        }

        .client-item {
            display: grid !important;
            justify-content: center;
        }

            .client-item .client-item-img::before {
                right: 0;
            }

        .stragetic-box {
            min-height: 810px;
        }

        .process-box {
            min-height: 555px;
            backdrop-filter: none;
        }

        /*------------- About ------------*/

        .coreValue-sec .process-box {
            min-height: 460px;
            padding: 20px 12px 10px 12px;
        }

        .coreValue-sec .process-box-icon {
            width: 90px;
            height: 90px;
        }

        .coreValue-sec .process-box-text {
            margin-top: 10px;
        }

        /*---------- Resources ----------*/

        .blog-title {
            padding-top: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid #C2C2C2;
            width: 100%;
            height: 104px;
        }

        .case-btn {
            padding: 8px 10px;
            font-size: 14px;
        }

        .icon {
            width: 42px;
            height: 42px;
        }

        .info-content a {
            font-size: 18px;
        }

        .form-sec p {
            font-size: 16px;
        }

        /*---------- Audit ------------*/

        .sCard-Content {
            height: 270px;
        }

            .sCard-Content h3 {
                font-size: 22px;
            }

        /*----------- Digital Transf --------*/

        .hassel-content:before {
            display: none;
        }

        .digi-box {
            height: 460px;
        }

        /*----------- Customer Service ---------*/

        .hassel-content:before {
            display: none;
        }
    }

    @media(max-width:991px) {

        .form-Div {
            margin-top: 0px;
            padding: 10px 10px;
        }

        .form-sec p {
            font-size: 17px;
        }

        .clients-nav-button {
            margin-top: -70px;
        }

        .clients-nav-button {
            margin-top: -70px;
        }

        .process-box .process-box-icon {
            width: 100px;
            height: 100px;
        }

        .process-sec .process-box {
            padding: 20px 12px 12px 12px;
            min-height: 440px;
        }

        .main-footer label {
            margin: 10px 0 10px;
        }

        .copyright {
            margin-top: 0px;
            font-size: 18px;
        }

        .stragetic-box {
            min-height: 750px;
        }

        .client-item .client-item-img::before {
            right: -22px;
        }


        /*-------------- About ---------*/

        .space-p-t {
            padding-top: 40px;
        }

        .space-p-tb {
            padding: 40px 0;
        }

        .mv-section:after {
            right: 16px;
        }

        /*------------ Resources -----------*/

        .blog-title {
            height: 120px;
        }

        .case-btn {
            padding: 6px 6px;
            font-size: 12px;
        }

        .case-row {
            padding-bottom: 10px;
        }

        /*---------- hr -------------*/

        .explore-nav-button #exp-left {
            left: -40px;
        }

        .explore-nav-button button {
            width: 28px;
            height: 28px;
        }

        .explore-nav-button button {
            width: 28px;
            height: 28px;
        }

        .explore-nav-button #exp-right {
            right: -40px;
        }

        .elev-rep {
            margin-left: 28px;
            margin-right: 30px;
        }

        /*----------- Audit ---------*/
        .sCard-Content {
            height: 220px;
        }

        /*------------- Digital transf ---------*/

        .digi-box .digi-box-icon {
            width: 90px;
            height: 90px;
        }

        .digi-box {
            padding: 12px 4px 10px 4px;
            height: 370px;
        }

            .digi-box .digi-box-text {
                margin-top: 10px;
            }

                .digi-box .digi-box-text h3 {
                    font-weight: 500;
                    font-size: 18px;
                }

        .why-audit-content {
            padding-left: 0;
        }

        /*------------ Customer ----------*/

        .why-bus:before {
            width: 20px;
            height: 20px;
            left: -24px;
        }

        /*---------------- Accounting -----------*/

        .why-choose-points p {
            padding-right: 22px;
            margin-bottom: 6px;
        }
    }

    @media(max-width:767.5px) {

        .form-sec {
            padding: 40px 0px;
        }

        .process-box {
            min-height: auto;
        }

        .coreValue-sec .process-box {
            margin-top: 10px;
        }


        /*---------- About ------------*/

        .mv-box {
            max-width: 100%;
            margin: 0;
        }

        .mv-section:after {
            display: none;
        }

        .mv-title {
            font-size: 50px;
        }

        .space-p-tb {
            padding: 20px 0;
        }

        .coreValue-sec .process-box {
            min-height: auto;
        }

        .GenContent {
            padding-bottom: 10px;
        }

        /*------------ Resources -----------*/

        .blogs-sec {
            padding-top: 10px;
        }

        .blog-title {
            height: auto;
            padding: 10px 0;
        }

        .blog-date {
            padding-top: 0px;
            font-size: 14px;
        }

        /*----------- Audit command Compliance ----------*/

        .bestInContent {
            padding-bottom: 30px;
        }

        .sCard-Content {
            height: auto;
            padding: 10px;
        }

        /*        .why-audit-sec .elev-rep:before {
            top: 6px;
        }

        .why-audit-sec .elev-rep {
            margin-left: 10px;
            padding: 12px 0 4px 0px;
        }
*/
        .why-audit-Img {
            display: none;
        }

        /*------ Digital transf -----------*/

        .why-audit-content {
            padding-left: 6%;
        }

        .digi-box {
            height: auto;
            margin-bottom: 10px;
        }

        /*----------- Accounting Finance -------------*/

        .why-choose-content {
            margin-right: 10px;
        }

        .why-choose-points p:before {
            width: 20px;
            height: 20px;
            top: 2px;
        }

        .why-choose-points {
            padding-top: 4px;
            padding-right: 10px;
        }

            .why-choose-points p {
                padding-right: 14px;
                margin-bottom: 4px;
            }


        /*------------ Customer ------------*/

        .key-benefits-content {
            padding-left: 2%;
        }

        /*----------- CFO --------------*/

        .process-sec .process-box {
            min-height: auto;
        }
    }

@media(max-width:575.5px) {

    .comon-small-title {
        color: #03a295;
    }

    .common-text {
        color: #000000;
    }

    .space-p-b {
        padding-bottom: 10px;
    }

    .space-p-tb {
        padding: 10px 0;
    }

    /*--------------- home Page -----------------*/

        .main-banner {
            padding-top: 138px;
            background-position: 75%;
            padding-bottom: 50px;
            /*background-image: url(/assets/images/banners/home-banner-mob.webp) !important;*/
            background-image:none;
        }

            .main-banner h1 {
                font-size: 22px;
            }

            .main-banner p {
                font-size: 16px;
            }

        .arw-btn {
            font-size: 18px;
            padding: 8px 14px;
        }

        .brand-logo-sec {
            padding: 20px 10px;
        }

    .brand-logo img{
        max-width:140px;
    }

    .stragetic-box {
        min-height: auto;
        margin-bottom: 10px;
    }

        .tab-sec .nav .nav-link {
            font-size: 16px;
            padding: 6px 16px;
        }

        .tab-content p {
            padding-top: 10px;
        }

        .stragetic-box .common-min-title {
            margin-bottom: 8px;
            min-height: 56px;
        }

        .tragetic-box-cont {
            padding: 16px 16px;
        }

        .stragetic-box a {
            margin-top: 0px;
            padding: 6px 24px;
        }

        .progree-box {
            margin-bottom: 10px;
        }

        .slick-dots li button:before {
            display: block;
            width: 12px;
            height: 12px;
            padding: 0;
            border: none;
            border-radius: 100%;
            background-color: #484848;
            text-indent: -9999px;
            margin-top: 1px;
        }

        .explore-item-box .explore-item-box-text {
            padding: 2% 10px 2% 10px;
            bottom: 10px;
        }

        .explore-nav-button #exp-right {
            display: none;
        }

        .explore-nav-button #exp-left {
            display: none;
        }

        .client-item {
            margin-top: 0px;
        }

        .client-item {
            margin-top: 0px;
        }

            .client-item .client-item-img img {
                max-width: 260px;
            }

            .client-item .client-item-img::before {
                width: 50px;
                height: 50px;
                font-size: 26px;
                top: 20px;
                left: 230px;
            }

            .client-item .client-item-text p {
                margin-bottom: 10px;
            }

        .clients-nav-button {
            display: none;
        }

        .main-footer label {
            margin: 8px 0 0px;
            font-size: calc(16px + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
        }

        .copyright {
            margin-top: 0px;
            font-size: 12px;
        }

        .blog-box .blog-img img {
            margin-bottom: 10px;
        }

        .slick-prev.slick-arrow::before {
            display: none;
        }

        .process-sec {
            padding: 10px 0;
        }

        .slick-dots li.slick-active button:before {
            background-color: #41c0b7;
            border-radius: 24px;
        }

        .process-box .process-box-icon {
            width: 60px;
            height: 60px;
        }

        .process-box-icon img {
            width: 40px;
        }

        .process-box .process-box-text {
            margin-top: 6px;
            min-height: auto;
        }

            .process-box .process-box-text span {
                line-height: 20px;
            }

        /*--------------- About ---------------------*/


        .inner-banner {
            background-position: 70%;
            min-height: 250px;
        }

        .coreValue-sec .process-box {
            margin-top: 10px;
        }

        .space-p-t {
            padding-top: 10px;
        }

        p {
            font-size: 16px;
            margin-bottom: 2px;
        }

        .mv-title {
            font-size: 20px;
            font-weight: 500;
        }

        .coreValue-sec {
            text-align: center;
        }

            .coreValue-sec .process-box {
                padding: 10px 12px 10px 12px;
            }


        /*------------- Industries ----------*/

        .serv-box .serv-box-img img {
            min-height: auto;
        }

        .serv-box {
            margin: 6px 0px;
        }

        /*----------- Resources -----------*/

        .case-row {
            padding-bottom: 10px;
        }

        .elev-rep:before {
            width: 20px;
            height: 20px;
            left: -26px;
            top: 10px;
        }

        .elev-rep {
            margin-left: 20px;
            margin-right: 20px;
            padding: 10px 0 10px 0px;
        }

        /*-------------- Contact --------------------*/

        .form-sec {
            padding-top: 10px;
            padding-bottom: 10px;
        }

        .common-title {
            font-size: 20px;
        }

        .form-sec p {
            font-size: 14px;
        }

        .icon {
            width: 34px;
            height: 34px;
            font-size: 14px;
        }

        .info-content a {
            font-size: 15px;
        }

        .info {
            gap: 10px;
            align-items: baseline;
            padding-top: 4px !important;
            padding-bottom: 4px !important;
        }

        .cp-form {
            padding-top: 0px;
        }

        form.cp-form input {
            height: 34px;
            margin-bottom: 12px;
        }

        .cp-form .iti-group {
            height: 34px;
            margin-bottom: 12px;
        }

        .cp-form textarea {
            height: 80px;
        }

        .form-btn .cnt-btn {
            font-size: 12px;
            padding: 8px 12px;
        }

        .explore-item-box {
            min-height: 230px;
            margin: 5px 0px;
        }

        .explore-item-box h4 {
            padding: 8px 4px;
        }

        .explore-item-box p {
            padding: 10px 4px;
        }

        .explore-item-box h4::before {
            left: 6px;
        }

        /*----------- Audit command Compliance ----------*/

        .bestInContent {
            padding-right: 0px;
            padding-bottom: 10px;
        }

        .services-card {
            margin-bottom: 10px;
        }

        .sCard-Content {
            height: auto;
            padding: 10px;
        }

            .sCard-Content h3 {
                font-size: 16px;
            }


        /*------------------- Digital transf -------------*/
        .why-choose-business-text {
            width: 120px;
            padding: 4px 0;
        }

        .digi-box-icon img {
            width: 40px;
        }

        .digi-box .digi-box-icon {
            width: 60px;
            height: 60px;
        }

            .why-choose-business-text h5 {
                font-size: 18px;
            }

        .why-bus h5 {
            font-weight: 500;
            font-size: 18px;
        }

        .why-bus p {
            font-size: 14px;
        }

        .why-partner-content {
            padding-left: 2%;
        }

        .why-bus:before {
            left: -16px;
            top: 4px;
        }

        .why-audit-content {
            margin-right: 0;
        }

        .why-bus {
            padding-left: 10px;
            padding-top: 4px;
        }

        /*---------------- Customer Satisfaction ------------*/

        .trend-nav-button {
            padding-top: 10px;
            gap: 8px;
        }

            .trend-nav-button #trend-left {
                width: 32px;
                height: 32px;
            }

            .trend-nav-button #trend-right {
                width: 32px;
                height: 32px;
            }

        .hassel-content p {
            font-size: 14px;
        }

        .choose-business-Img {
            height: 100%;
        }
    }



