@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');

:root {
  --pure-white: #ffffff;
  --soft-white: #f9f9fa;
  --cool-gray: #f2f2f3;
  --light-gray: #dbdbdb;
  --medium-gray: #dbdbdb;
  --slate-grey: #616161;
  --charcoal-gray: #333333;
  --ink-black: #232325;
  --jet-black: #0f0f0f;
  --pure-black: #000000;
  --blue: #223dff;
  --blue-hover: #001DF0;
}
*{
  font-family: "Mona Sans", sans-serif;
  box-sizing: border-box;
}
.text-white {
  color: var(--pure-white) ;
}
.bg-white {
  background-color: var(--pure-white) ;
}
.text-black {
  color: var(--pure-black) ;
}
.text-charcoal-gray {
  color: var(--charcoal-gray) ;
}
.text-soft-white{
    color: var(--soft-white) ;
}
.text-medium-gray{
    color: var(--medium-gray) ;
}
.text-ink-black {
  color: var(--ink-black) ;
}
.text-slate-grey {
  color: var(--slate-grey) ;
}
.bg-soft-white {
  background-color: var(--soft-white) ;
}
.py100{
    padding-top: 100px;
    padding-bottom: 100px;
}
.px50{
    padding-left: 50px;
    padding-right: 50px;
}
.fs-72{
    font-size: 72px;
    line-height: 86px;
}
.fs-64{
    font-size: 64px;
    line-height: 72px;
}
.fs-14{
    font-size: 14px;
    line-height: 20px;
}
.fs-36{
    font-size: 36px;
    line-height: 44px;
}
.fs-18{
    font-size: 18px;
    line-height: 28px;
}
.fs-16{
    font-size: 16px;
    line-height: 24px;
}
.fs-48{
    font-size: 48px;
    line-height: 56px;
}
.fs-22{
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
}
.fs-28{
    font-size: 28px;
    line-height: 36px;
}
.fs-60{
    font-size: 60px;
}
.mb-8{
    margin-bottom: 8px;
}
.mb-16{
    margin-bottom: 16px;
}
.mb-24{
    margin-bottom: 24px;
}
.mb-64{
    margin-bottom: 64px;
}
.mb-48{
    margin-bottom: 48px;
}
.fw-400{
    font-weight: 400;
}
.container{
    max-width: 1622px;
    margin: 0 auto;
    padding: 0 16px;
}
.mx-768{
    max-width: 850px;
    margin: 0 auto;
    padding: 0 16px;
}
.mx-796{
    max-width: 796px;
}
.mx-814{
    max-width: 846px;
    margin: 0 auto;
    padding: 0 16px;
}
.bg-jet-black{
    background-color: var(--jet-black);
}
.banner_bg{
    height: calc(100dvh - 124px - 85px);
    min-height: 550px;
}
.gap-8{
    gap: 8px;
}
.pt100{
    padding-top: 100px;
}
.button_blue{
    background-color: var(--blue);
    color: var(--pure-white);
    border: none;
    border-radius: 0;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    width: fit-content;
    text-decoration: none;
    font-weight: 600;
}
.button_blue:hover{
    background-color: var(--blue-hover);
    color: var(--pure-white);
}
.text-cool-gray{
    color: var(--cool-gray);
}

.button_gray,.button_gray:hover{
    background-color: var(--light-gray);
    color: var(--pure-black);
}
.button_black{
    background: var(--charcoal-gray);
    border: 1px solid var(--slate-grey);
}
.button_black:hover{
    background: var(--slate-grey);
    border: 1px solid var(--charcoal-gray);
}
.button_gray img{
    filter: brightness(0);
}
.button_white{
    background-color: var(--pure-white);
    color: var(--pure-black);
    border: 1px solid var(--medium-gray);
    padding: 15px 32px;
}
.button_white:hover{
    background-color: var(--pure-black);
    color: var(--pure-white);
}
.button_white:hover img{
    filter: brightness(0) invert(1);
}
.img60{
    height: 60px;
    width: 60px;
}
.mb-6{
    margin-bottom: 6px;
}
.mx-820{
    max-width: 820px;
}
.py50{
    padding: 50px 0;
}
.video{
    position: absolute;
    height: 100%;
    right: 0;
    bottom: 0;
}
.img24{
    width: 24px;
    height: 24px;
}
.exploreBtn img{
    filter: brightness(0) invert(0);
}
.grid-8{
    grid-template-columns: repeat(8, 1fr);
    gap:1px;
    background-color: var(--light-gray);
}
.brand_padding{
    padding: 16px 8px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 16px;
}
.text-jet-black{
    color: var(--jet-black);
}
.mb-40{
    margin-bottom: 40px;
}
.mx-447{
    max-width: 447px;
}
.mb-50{
    margin-bottom: 50px;
}
.mx-988{
    max-width: 988px;
}
.serviceGrid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
a{
    text-decoration: none;
}
.gap-24{
    gap: 24px;
}
.img50{
    width: 50px;
    height: 50px;
    background-color: transparent !important;
}
.serviceCard{
    padding: 20px;
    border: 1px solid var(--medium-gray);
    height: 100%;
    transition: all 0.3s ease;
}
.exploreBtn{
    color: var(--pure-black);
    padding: 10px 0 ;
    display: flex;
    align-items: center;
}
.serviceCard:hover{
    background-color: var(--pure-white);
}
.serviceCard:hover .exploreBtn{
    color: var(--blue);
}
.serviceCard:hover .exploreBtn img{
    filter: brightness(1) invert(0);
}
.grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.featureBox{
    padding: 20px;
    border: 1px solid var(--charcoal-gray);
    transition: all 0.3s ease;
}
.img48{
    width: 48px;
    height: 48px;
}
.gap-40{
    gap: 40px;
}
.featureBox:hover{
    background-color: var(--jet-black);
    border: 1px solid var(--ink-black);
}
.counterBox{
    background-color: var(--soft-white);
    border: 1px solid var(--medium-gray);
    padding: 40px;
}
.darkcountersection .counterBox{
    background-color: var(--jet-black);
    border: 1px solid var(--charcoal-gray);
}
.darkcountersection{
    background-color: var(--pure-black);
}
.darkcountersection .text-jet-black ,.darkcountersection .text-black{
    color: var(--pure-white) !important;
}
.darkcountersection .text-ink-black {
    color: var(--soft-white);
}
.mx-480{
    /* max-height: 480px; */
    height: 100%;
    /* min-height: 480px; */
    /* max-width: 1290px; */
    margin: 0 16px;
}
.mx-480 .w-100 img{
        aspect-ratio: 645 / 480;
        object-fit: cover;
        height: 100%;
    }
.p-40{
    padding: 40px;
}
.grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.numberbox{
    position: relative;
    overflow: hidden;
}
.numberbox:hover,.process_card.numberbox{
    background-color: var(--blue);
}
.numberbox:hover > *,.process_card.numberbox{
    color: var(--pure-white) !important;
}
.absoluteNumber{
    font-size: 160px;
    position: absolute;
    background: linear-gradient(107.08deg, #FFFFFF 16.27%, #223DFF 78.06%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px var(--Pure-White, #FFFFFF);
    text-stroke: 1px var(--Pure-White, #FFFFFF); 
    white-space: nowrap;
    left: -12px;
    top: 200px;
    transition: all 0.5s ease;
    mix-blend-mode: overlay;
}
.process_card .absoluteNumber{
    top: 300px;
    left: 50%;
    font-size: 225px;
    width: 100%;
    transform: translateX(-50%);
}
.z-1{
    z-index: 1;
}
.numberbox:hover .absoluteNumber{
    top: 50px;
}
.process_card.numberbox .absoluteNumber,.process_card.numberbox:hover .absoluteNumber{
    top: 120px;
}
.workborder{
    border-width: 1px 0px 1px 1px;
    border-style: solid;
    border-color: var(--medium-gray);
    background-color: var(--soft-white);
}
.blue_badge{
    background-color: var(--blue);
    padding: 8px;
    color: var(--pure-white);
    width: fit-content;
}
.slider_button{
    margin-bottom: 140px;
}
.slider_button .slick-arrow { 
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--pure-black);
    border-radius: 50%;
    top:  calc(100% + 40px) ;
}
.slider_button_white .slick-arrow{
    background-color: var(--pure-white);
    border-color: var(--pure-black);
}
.client_slide_button .slick-arrow { 
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--pure-black);
    border-radius: 50%;
    background-color: var(--blue)
}
.client_slide_button .slick-next{
    right: -105px;
}
.client_slide_button .slick-prev{
    left: -105px;
    transform: translate(0,-50%) rotate(180deg);
}
.slider_button .slick-arrow.slick-disabled {
    background-color: var(--cool-gray);
    border-color: var(--cool-gray);
    opacity: 0.3;
 }
.slider_button .slick-arrow::before,
.client_slide_button .slick-arrow::before{
    content: none;
}
.slider_button .slick-next{
    left: calc(16% + 76px);
    transform: rotate(0deg);
}
.slider_button .slick-prev{ 
    transform: rotate(180deg);
    left: 16%;
}
.py160{
    padding: 161px 0 ;
}
.mx-554{
    max-width: 554px;
}
.countRightBorder {
    padding-right: 36px;
    margin-right: 36px;
    border-right: 1px solid rgba(10, 17, 74, 0.2);
}
.mt-24{
    margin-top: 24px;
}
.our_client_card{
    background-color: var(--ink-black);
    border: 1px solid var(--charcoal-gray);
    padding: 20px 40px;
}
.bg_full{
    background-repeat: no-repeat;
    background-size: cover;
}

.mx-620{
    position: relative;
}
.our_client_slider .slick-slide {
    margin: 0 12px; 
}
.our_client_slider .slick-list {
    margin: 0 -12px; 
}
.industry_slider .slick-slide ,.experties_slider .slick-slide {
    margin: 0 15px; 
}
.industry_slider .slick-list, .experties_slider .slick-list {
    margin: 0 -15px; 
}

.industry_slider .slick-list, .experties_slider .slick-list {
    overflow: unset;
}
.gap-6{
    gap: 6px;
}
.our_client_slider .slick-track,.industry_slider .slick-track ,.experties_slider .slick-track {
    display: flex !important;
}
.our_client_slider .slick-slide,.industry_slider .slick-slide, .experties_slider .slick-slide {
    height: inherit !important;
    display: flex;
}
.our_client_slider .slick-slide > div ,.industry_slider .slick-slide > div, .experties_slider .slick-slide > div {
    display: flex;
    flex: 1;
}
.workslider  .slick-slide > div,.workslider  .slick-slide > div >div{
    height: 100%;
}
.bg-cool-gray{
    background-color: var(--cool-gray);
}
.grid-6{
    display: grid;
    grid-template-columns: repeat(6,1fr);
}
.process_card.numberbox:nth-child(even){
    justify-content: start;
}
.process_card.numberbox .fs-22:first-child{
    display: none;
}
.process_card{
    background-color: var(--cool-gray);
    border-right: 1px solid var(--medium-gray);
    padding: 20px;
    min-height: 334px;
    max-height: 334px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.process_card:nth-child(even){
    margin-top: 90px;
    justify-content: end;
}
.custom-list {
    list-style: none;
    padding: 0;
}
.gap-16{
    gap: 16px;
}
.custom-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}
.custom-list img {
    width: 24px;
    height: 24px;
}
.industry_card{
    padding: 32px;
    background-color: white;
    border: 1px solid var(--light-gray);
    text-align: start;
}
.slider_button_white .slick-next{
    left: 76px;
    transform: rotate(0deg);
}
.slider_button_white{
    margin-bottom: 100px;
}
.slider_button_white .slick-prev{ 
    transform: rotate(180deg);
    left: 0;
}
.bg_developer{
    background-repeat: no-repeat;
    background-size: cover;
    padding: 183px 0;
    position: relative;
    background-position: center;
}
.bg-soft-gray{
    background-color: var(--soft-white);
}
.developerimage{
    position: absolute;
    height: 100%;
    right: 70px;
    top: 0;
}
.w-369{
    width: 369px;
}
.newsbadge{
    padding: 4px 8px;
    background-color: var(--pure-white);
    border: 1px solid var(--slate-grey);
    position: absolute;
    right: 13px;
    top: 13px;
}
.newsCard{
    padding: 20px;
    border: 1px solid var(--medium-gray);
    background-color: var(--pure-white);
}
.customaccordion .accordion-button[aria-expanded="true"]{
    padding-bottom: 0;
}
.customaccordion .accordion-button{
    background-color: transparent;
    color: var(--jet-black) ;
    box-shadow: none;
    transition: all 0.3s;
    padding: 32px 0;
}
.customaccordion .accordion-item{
    border: none;
    border-bottom: 1px solid var(--light-gray);
}
.customaccordion .accordion-body{
    padding: 16px 0 32px;
}
.bgvideo{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* Footer */
.contactleft{
    padding: 16px;
    border-width: 1px 0px 1px 1px;
    border-style: solid;
    border-color: var(--charcoal-gray);
    background-color: var(--pure-black)
}
.p-32{
    padding: 32px;
}
.contactright{
    padding: 32px;
    border: 1px solid var(--ink-black);
    background-color: var(--jet-black);

}
.flexImageContact > img {
    max-width: 50px;
    max-height: 50px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.flexImageContact > img:nth-child(2),
.flexImageContact > img:nth-child(3) {
    margin-left: -10px;
}
input,textarea,select{
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid var(--slate-grey) !important;
    background-color: transparent;
    color: var(--pure-white);
    padding:18px 16px;
    width: 100%;
    font-size: 16px;
}
input:focus,textarea:focus{
    background-color: var(--charcoal-gray);
}
.select-wrapper { position: relative; }
.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--slate-grey);
    border-radius: 0;
    cursor: pointer;
}
.custom-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 24px;
    height: 24px;
    transition: transform 0.25s ease;
    background-color: var(--jet-black);
    pointer-events: auto;
}
.select-wrapper.open .custom-arrow,
.select-wrapper:focus-within .custom-arrow {
  transform: translateY(-50%) rotate(180deg);
}
.file-upload-wrapper {
  border: 1px solid var(--slate-grey);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  display: none;
}
.gap-64{
    gap: 64px;
}
.file-upload-text {
  flex: 1;
  color: var(--slate-grey);
  cursor: pointer;
}

.file-upload-name {
    flex: 1;
    color: var(--slate-grey);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.delete-button {
  background: none;
  border: none;
  color: #ccc;
  font-size: 16px;
  cursor: pointer;
  display: none;
}

.delete-button:hover {
  color: red;
}
.footergrid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.contact_button{
    color: var(--pure-white) !important;
    display: flex;
    align-items: center;
    gap: 4px;
    display: block;
}
.fw-500{
    font-weight: 500;
}
.gap-12{
    gap:12px
}
.topborder{
    border-top: 8px solid var(--blue);
    padding: 16px 24px 24px;
    background-color: var(--jet-black);
}

.footerAddress{
    background-color: var(--jet-black);
    padding: 24px;
    height: 100%;
}
.mx-720{
    max-width: 720px;
}
.footergrid3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.hover-text-white{
    transition: all 0.3s ease;
}
.hover-text-white:hover{
    color: var(--pure-white);
}
.divider{
    background-color: var(--charcoal-gray);
    margin: 0;
    height: 1px;
    width: 100%;
}
    /* Header */
    
/*  header start  */
header{
    position: sticky;
    top: 0;
}
.navbar > .container {
  display: block;
}
.navbar > .container > .row {
  align-items: center;
}

.lowerheader .navbar-nav .nav-link.active {
  color: #0068a0;
}
.lowerheader ul.navbar-nav > li:not(:last-of-type) {
  margin-right: 27px;
}
.lowerheader .main-sub-menu > li > a {
  font-weight: 700;
}
.lowerheader .main-sub-menu li {
  list-style: none;
}
.lowerheader .main-sub-menu ul {
  padding: 0;
}
.lowerheader .main-sub-menu {
  right: 0;
}
.navbar-brand {
  padding: 0;
  margin: 0;
  display: inline-block;
}
.col-custom {
  display: inline-block;
}
.col-custom-btn {
  margin-left: 75px;
  float: right;
}

/* header right start */
/* Ensure Bootstrap dropdown opens on hover for large screens */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease;
       
    }

    .navbar .dropdown-menu {
        display: block; /* keep in the DOM for JS tab switching */
        opacity: 0;
        visibility: hidden;
        border: none;
        overflow: hidden;
        background-color: black;
        /* transform: translateY(10px); */
    }
}
.dropdown-toggle.show img ,.dropdown:hover .dropdown-toggle img{
    transform: rotate(180deg);
    transition: all 0.3s ease;
}
.nav-item .dropdown-toggle.open > .dropdown-menu,.nav-item .dropdown-toggle.show > .dropdown-menu {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease-in-out;
}
.nav-link{
    color: var(--pure-white) !important;
    font-size: 16px;
    padding: 31px 0 ;
}
.rightarrowimg{
    display: none;
}
.tablinks.active .rightarrowimg{
    display: block;
}
.tablinks.active .fs-22{
    color: var(--blue);
    font-weight: 500;
}
.tablinks .fs-22{
  font-size: 18px;
  line-height:28px ;
}
.tablinks{
  padding: 12px 24px;
}
.links .fs-18,.headerBlogpost .fs-18{
    font-size: 16px;
    line-height: 24px;
}

.singlemenu.dropdown-menu{
    max-width: 800px !important;
}
.tabcontent{
    display: none;
}
.tab-content-middale{
    width: 100%;
    height: 100%;
    background-color: var(--cool-gray);
}
.mx-698{
    max-width: 698px;
}
.tab-content-left{
    padding: 20px 32px;
    background-color: var(--cool-gray);
}
.mb-32{
    margin-bottom: 32px;
}
.tab-content-right{
    min-height: 430px;
    overflow: hidden;
}
.links img,.links svg{
    display: none;
}
.headervideo{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
    right: -90px;
    top: -90px;
    transform: rotate(270deg);
}
.aiguidegrid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 24px;
}
.headerBlogpost{
    padding: 8px;
    border: 1px solid var(--medium-gray);
    position: relative;
}
.links:hover img,.links:hover svg{
    display: block;
}
.tab-content-right{
    background-color: var(--pure-black);
    padding: 34px 32px;
}
.links{
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
}
.links:last-child{
    border: none;
}
.alink{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;       
}
.tablinks.active{
    background-color: var(--cool-gray);
}
.menuname{
    padding: 32px 32px 24px 32px ;
}
.dropdown{
    position: static;
}
.dropdown-menu{
    width: 100%;
    max-width: 1060px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 0px;
    top:100% !important;
    margin: 0 auto !important;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--cool-gray);
}
.tab{
   min-width: 260px;
   background-color: var(--pure-white);
}
.tab-content-right{
  max-width: 380px;
}
.dropdown-toggle::after{
    content: none;
}
.dropdown-menu {
  display: none;
  transition: opacity 0.25s ease-in-out;
}
.navbar{
    padding: 0;
    background-color: var(--pure-black);
}
.navbar .button_blue{
    padding: 14.5px 24px;
}
.header-btn-main ul li {
  display: inline-block;
  margin-right: 10px;
}
.header-btn-main ul li:last-child {
  margin-right: 0;
}
.header-btn-main .header-btn {
  border: 1px solid #0068a0;
  padding: 9px 16px;
  display: inline-block;
  border-radius: 6px;
  color: #0068a0;
  line-height: normal;
}
.header-btn-main .header-btn:hover {
  text-decoration: none;
  background: #0068a0;
  color: #fff;
}
.header-btn-main .header-btn.header-btn-book {
  background: #0068a0;
  color: #fff;
}
.header-btn-main .header-btn.header-btn-book:hover {
  background: #015a8a;
  color: #fff;
}
.header-right-row {
  justify-content: flex-end;
  align-items: center;
}
.header-right-row .col-custom {
  width: auto;
}
.header-btn-main {
  padding-left: 10px;
}
.accordion-item:last-child {
    border-bottom: none;
}
.featureBox .text-soft-white{
    color: var(--slate-grey);
}
.featureBox:hover .text-soft-white{
    color: var(--soft-white);
}
.relativeVideo{
    position: relative;
    max-width: 750px;
    height: 750px;
    aspect-ratio: 1 / 1;
    width: 100%;
}
.lightbox{
    background-color: var(--soft-white) !important;
}
.lightbox .text-white{
    color: var(--pure-black) !important;
}
.lightbox .text-medium-gray,.lightbox .text-soft-white{
    color: var(--ink-black) !important;
}
.lightbox .featureBox{
    border: 1px solid var(--light-gray);
}
.lightbox .featureBox:hover{
    background-color: var(--cool-gray);
}
 .accordion-button:not(.collapsed)::after{
        background-image: var(--bs-accordion-btn-icon);
    }.center_button{
        margin-bottom: 0;
    }
    .grid-5{
        display: grid;
        grid-template-columns: repeat(5,1fr);
        gap: 1px;
        background-color: var(--ink-black);
    }
    .bg-jet-black{
        background-color: var(--jet-black);
    }
    .py24{
        padding: 24px 0 ;
        border-top: 1px solid var(--ink-black);
    }
    .h-25{
        height: 25px !important;
    }
    .px-10{
        padding: 0 10px;
    }
    .fullimage{
        height: 100%;
        width: 100%;
        position: absolute;

    }
    .card-content{
        padding: 20px;
        width: 100%;
        position: relative;
        z-index: 1;
        transform: translateY(61%);
        transition: all 0.5s;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .imgy50{
        height: 50px;
    }
    .grid-7{
        grid-template-columns: repeat(7,1fr);
    }
    ul{
        list-style: disc;
        margin: 0;
    }
    .more-content{
        display: flex;
        flex-direction: column;
        gap: 40px;
        font-size: 16px;
    }
    .more-content ul li{
        list-style: disc;
    }
    .more-content ul{
        list-style: disc;
        padding-left: 20px;
    }
    .hoverCard{
        overflow: hidden;
        border: 1px solid var(--medium-gray)
    }
    .hoverCard:hover .card-content{
        transform: translateY(0);
        background-color: var(--pure-white);
    }
     .threeline{
        height: 72px;
        overflow: hidden;
         -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        width: 100%;
        display: -webkit-box;
    }
    .grid-3{
        grid-template-columns: repeat(3,1fr);
    }
    .hoverimage{
        position: absolute;
        right: 0px;
        top: 0;
        transition: all 0.3s;
        mix-blend-mode: luminosity;
        width: 100%;
    }
    .text-light-gray{
        color: var(--light-gray);
    }
    .businessCard{
        padding: 24px;
        position: relative;
        height: 360px;
        background-color: var(--ink-black);
        transition: all 0.3s;
        overflow: hidden;
    }
    .businessCardInfo{
        display: flex;
        justify-content: end;
        flex-direction: column;
        transition: all 0.3s;
        height: 100%;
        transform: translateY(81px);
    }
    .businessCard:hover .hoverimage{
        mix-blend-mode: normal;
    }
    .businessCard:hover{
        background-color: var(--pure-white);
    }
    .businessCard:hover .text-light-gray{
        color: var(--ink-black);
    }
    .businessCard:hover .text-white{
        color: var(--pure-black) !important;
    }
    .businessCard:hover .businessCardInfo{
        transform: translateY(0);
    }
     .innovationImage{
        position: absolute;
        right: 0px;
        top: 0;
        transition: all 0.3s;
        width: 100%;
        height: 100%;
    }
    .innovationCard{
        padding: 24px;
        position: relative;
        height: 360px;
        background-color: var(--ink-black);
        transition: all 0.3s;
        overflow: hidden;
        border: 1px solid var(--slate-grey)
    }
    .innovationCardInfo{
        display: flex;
        justify-content: end;
        flex-direction: column;
        transition: all 0.3s;
        height: 100%;
        transform: translateY(81px);
    }
    .innovationCard:hover .innovationCardInfo{
        transform: translateY(0);
    }
    .p-20{
        padding: 32px 20px 20px;
    }
    .deliverbox{
        border: 1px solid var(--medium-gray);
        background-color: var(--soft-white);
    }
    .deliverbox:hover .button_white {
        background-color: var(--blue);
        color: var(--pure-white);
    }
    .deliverbox:hover .button_white img{
        filter: brightness(0) invert(1);
    }
    .overlay{
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;top: 0;
        background-color: #00000099;
        z-index: 1;
    }
    .sectionbg{
        /* height: 100dvh; */
        min-height: 750px;
    }
    .sectionbg video{
        position: absolute;
        height: 100%;
        object-fit: cover;
    }
    .mx-620{
        max-width: 620px;
    }
    .photogrid{
        display: grid;
        grid-template-columns: repeat(4,1fr);
    }
    .photogrid div:first-child {
        grid-column: 1/3;
        grid-row: 1/3;
    }
    .photogrid div img{
        filter: grayscale(1);
        transition: all 0.3s ease;
    }
    .photogrid div img:hover{
        filter: grayscale(0);
    }
    .photogrid div:nth-child(4) {
       grid-column: 3/5;
    }
    .pb50{
        padding-bottom: 50px;
    }
    .pt50{
        padding-top: 50px;
    }
    .pb150{
        padding-bottom: 150px;
    }
    .mx-320{
        max-width: 320px;
        width: 100%;
    }
    .mx-815{
        max-width: 815px;
        width: 100%;
    }
    .object-cover{
        object-fit: cover;
    }
    .startupbox{
        border: 1px solid var(--medium-gray);
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }
    .startupbox .startupimg{
        z-index: -1;
    }
    .our_client{
        background-repeat: no-repeat;
        background-size: cover;
    }
    .startupimg{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    .imgy50{
        text-align: center;
    }
    .imgy50 img{
        height: 100%;
    }
    .pt64{
        padding-top: 64px;
    }
    .mx-460{
        max-width: 460px;
    }
    .headergrid2{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        height: fit-content;
        column-gap: 48px;
    }
    .headergrid2 .links{
        padding: 22px 0 ;
    }
    .headergrid2  .links:nth-last-child(-n+2){
        border: none;
    }
    .flex-1{
        flex: 1;
    }
    .col-custom .common-btn{
        color: var(--pure-white) !important;
    }
    .common-btn .svgimg, .svgimgcontact::after {
        filter: brightness(0) invert(1);
    }   
    .mb0.slider_button{
        margin-bottom: 0;
    }
    .cursor-dot,
    .cursor-dot-outline {
      pointer-events: none;
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      opacity: 0;
      transform: translate(-50%, -50%);
      transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
      z-index: 999999;
    }
    
    .cursor-dot {
      width: 12px;
      height: 12px;
      background-color: var(--blue);
    }
    .cursor-dot-outline {
      width: 12px;
      height: 12px;
      background-color: #223dff66;
      border-radius: 50%;
      font-size: 0px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      left: -45px;
      top: -45px;
      font-weight: 600;
    }
    .viewproduct {
      background-color: var(--blue);
      width: 106px;
      height: 106px;
      font-size: 14px;
      line-height: 1.2;
      transform: translate(-50%, -50%) !important;
      color: var(--pure-white);
    }
  .viewproduct {
    transform: translate(-50%, -50%) !important;
  }
  .o0 {
    opacity: 0 !important;
  }
  .absolutea{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  .expandViewmore{
    position: relative;
  }
  .exploreMobileBtn {
    display: none;
  }
@media (max-width: 1700px) {
    .pb150 {
        padding-bottom: 100px;
    }
    .pt50 {
        padding-top: 32px;
    }
    .lowerheader ul.navbar-nav > li:not(:last-of-type){
        margin-right: 16px;
    }
    .container{
      max-width: 100%;
      margin: 0 110px;
      width: calc(100% - 220px);
    }
    .fs-72{
        font-size: 60px;
        line-height: 72px;
    }
    .fs-64{
        font-size: 54px;
        line-height: 60px;
    }
    .fs-14{
        font-size: 12px;
        line-height: 16px;
    }
    .fs-36{
        font-size: 30px;
        line-height: 38px;
    }
    .fs-18{
        font-size: 16px;
        line-height: 22px;
    }
    .fs-16, .more-content{
        font-size: 14px;
        line-height: 20px;
    }
    .fs-48{
        font-size: 36px;
        line-height: 44px;
    }
    .fs-22{
        font-size: 18px;
        line-height: 26px;
    }
    .fs-28{
        font-size: 22px;
        line-height: 30px;
    }
    .fs-60{
        font-size: 50px;
    }
    .mx-768 {
        max-width: 720px;
    }
    .grid-8{
        height: 105px !important;
    }
    .py100 {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .px50 {
        padding-left: 40px;
        padding-right: 40px;
    }
    .brand_padding img{
        height: 40px;
    }
    .brand_padding {
        padding: 12px 6px 10px;
        gap: 12px;
    }
    .sectionbg{
        min-height: 550px;
    }
    .nav-link{
        font-size: 14px;
        padding: 24px 0 ;
    }
    .navbar .button_blue {
        padding: 10.5px 20px;
    }
    .button_blue {
        font-size: 14px;
        line-height: 22px;
        gap: 6px;
        padding: 12px 24px;
    }
    .button_blue img,.nav-link img{
        height: 20px;
        width: 20px;
    }
    .navbar-brand img{
        height: 24px;
    }
   
    .gap-24 {
        gap: 18px;
    }
    .img24,.slider_button .slick-arrow img,.client_slide_button .slick-arrow img{
        width: 20px;
        height: 20px;
    }
    .client_slide_button .slick-prev {
        left: -82px;
    }
    .client_slide_button .slick-next {
        right: -82px;
    }
    .our_client_card{
        padding: 16px 32px;
    }
    .img48{
        width: 38px;
        height: 38px;
    }
    .img50{
        width: 40px;
        height: 40px;
    }
    .imgy50{
        height: 40px;
    }
    :root{
        --bs-body-font-size: 14px;
    }
    .serviceCard,.featureBox,.newsCard{
        padding: 16px;
    }
    .mb-64 {
        margin-bottom: 50px;
    }
    .gap-40 {
        gap: 25px;
    }
    .counterBox,.p-40{
        padding: 25px;
    }
    .absoluteNumber {
        font-size: 120px;
        left: -7px;
    }
    .numberbox:hover .absoluteNumber {
        top: 42px;
    }
    .slider_button .slick-arrow{
        height: 50px;
        width: 50px;
    }
    .slider_button .slick-next ,.slider_button_white .slick-next{
        left: calc(16% + 68px);
    }
    .slider_button .slick-arrow,.slider_button_white .slick-arrow{
        top: calc(100% + 25px);
    }
    .slider_button {
        margin-bottom: 100px;
    }
    .py160 {
        padding: 111px 0;
    }
    .client_slide_button .slick-arrow {
        width: 46px;
        height: 46px;
    }
    .process_card{
        padding: 16px;
        min-height: 250px;
        max-height: 250px;
    }
    .process_card:nth-child(even){
        margin-top: 90px;
        justify-content: end;
    }
    .process_card .absoluteNumber{
        top: 220px;
        font-size: 175px;
    }
    .process_card.numberbox .absoluteNumber,.process_card.numberbox:hover .absoluteNumber{
        top: 90px;
    }
    .mb-24{
        margin-bottom: 18px;
    }
    .mx-820 {
        max-width: 700px;
    }
    .py50 {
        padding: 30px 0;
    }
    .mb-6 {
        margin-bottom: 4px;
    }
    .img60 {
        height: 48px;
        width: 48px;
    }
    .gap-16 {
        gap: 12px;
    }
    .mb-48 {
        margin-bottom: 34px;
    }
    .mb-50{
        margin-bottom: 36px;
    }
    .slider_button_white .slick-next{
        left: 62px;
    }
    .industry_card{
        padding: 26px;
    }
    .slider_button_white {
        margin-bottom: 75px;
    }
    .bg_developer{
        padding: 130px 0;
    }
    .newsbadge {
        padding: 3px 6px;
        right: 11px;
        top: 11px;
    }
    .customaccordion .accordion-button{
        padding: 26px 0;
    }
    .contactleft,.contactright{
        padding: 26px;
    }
    .img32{
        width: 26px;
        height: 26px;
    }
    input, textarea, select{
        padding: 14px 12px;
        font-size: 14px;
    }
    .file-upload-wrapper{
        padding: 14px;
    }
    .gap-64 {
        gap: 52px;
    } 
    .pt64{
        padding-top: 52px;
    }  
    .topborder {
        border-top: 6px solid var(--blue);
        padding: 12px 18px 18px;
    }
    .footerAddress,.aiguidegrid{
        padding: 18px;
    }
    .banner_bg{
        min-height: 450px;
        height: calc(100dvh - 105px - 71px);
    }
     .mb-40{
        margin-bottom: 28px;
    }
    .w-369 {
        width: 300px;
    }
    .dropdown-menu{
        max-width: 900px !important;
    }
    .tab{
        min-width: 200px;
    }
    .tablinks .fs-22 {
        font-size: 14px;
        line-height: 24px;
    }
    .menuname {
        padding: 22px 22px 16px 22px;
        font-size: 14px;
    }
    .tablinks {
        padding: 09px 16px;
    }
    .rightarrowimg,.links .img24{
        width: 16px;
        height: 16px;
    }
    .tab-content-left{
        padding: 16px 22px;
    }
    .links{
        padding: 8px 0;
    }
    .links .fs-18 {
        font-size: 14px;
        line-height: 20px;
    }
    .tab-content-right{
        padding: 24px 22px;
        max-width: 300px;
        min-height: 350px;
    }
    .mb-32 {
        margin-bottom: 24px;
    }
    .mb-16{
        margin-bottom: 12px;
    }
    .headerBlogpost{
        padding: 6px;
    }
    .headerBlogpost .fs-18{
       font-size: 14px;
       line-height: 20px;
    }
    .py24{
       padding: 16px 0 ;
    }
    .h-25{
       height: 19px !important;
    }
    .hidesection .grid-5 img{
        padding: 0 10px;
    }
    .card-content{
        padding: 16px;
        transform: translateY(59%);
    }
    .businessCard,.innovationCard{
        height: 300px;
        padding: 20px;
    }
    .businessCardInfo,.innovationCardInfo{
        transform: translateY(68px);
    }
    .p-20 {
        padding: 24px 16px 16px;
    }
    .mx-796 {
        max-width: 600px;
    }
    .startupbox{
        padding: 16px;
    }
    .mx-320{
        max-width: 280px;
    }
    .mx-815{
        max-width: 700px;
    }
    .threeline{
        height: 80px;
        -webkit-line-clamp: 4;
    }
    .p-32 {
        padding: 24px;
    }
    .mx-460 {
        max-width: 360px;
    }
    .headergrid2 .links {
        padding: 16px 0;
    }
    .singlemenu.dropdown-menu{
        max-width: 600px !important;
    }
}
@media (max-width: 1299.98px) {
    .container{
        max-width: 100%;
        margin: 0 80px;
        width: calc(100% - 160px);
    }
    .process_card.numberbox .absoluteNumber,.process_card.numberbox:hover .absoluteNumber {
        top: 120px;
        font-size: 137px;
    }
     .mb-40{
        margin-bottom: 28px;
    }
    .card-content {
        padding: 16px;
        transform: translateY(calc(100% - 137px));
    }
    .mx-320{
        max-width: 240px;
    }
    .orb{
        min-width: 475px;
    }
}
@media (max-width: 1024px) {
    .hoverCard:hover .card-content,.hoverCard .card-content{
        background-color: transparent;
        transform: none;
    }
    .grid-7 {
       display: flex !important;
       justify-content: center;
       align-items: center;
       flex-wrap: wrap;
    }
    .businessCard {
        background-color: var(--pure-white) !important;
    }
    .businessCard .businessCardInfo,.innovationCardInfo  {
        transform: translateY(0);
    }
    .businessCard .text-white {
        color: var(--pure-black) !important;
    }   
    .businessCard .text-light-gray {
        color: var(--ink-black);
    }
    .businessCard .hoverimage {
        mix-blend-mode: normal;
    }
    .serviceGrid {
        display: block !important;
    }
    .serviceCard ,.businessCard{
        margin-right: 10px;
        width: calc(100% - 10px) !important;
    }
    .slider_button .slick-arrow,.client_slide_button  .slick-arrow{
        left: calc(50% - 30px);
        transform: translateX(-50%) rotate(180deg) ;    
    }
    .client_slide_button .slick-arrow{
        top: calc(100% + 25px);
    }
    .slider_button .slick-next,.client_slide_button  .slick-next{
        transform: translateX(-50%);
        left: calc(50% + 30px);
    }
    .py160{
        padding: 70px 0;
    }
    .py24{
        padding: 0;
    }
    .client_slide_button{
        position: relative;
    }
    .flexWrap{
        flex-wrap: wrap;
        text-align: center;
        justify-content: center !important;
    }
    .flexWrap .w-50{
        width: 100% !important;
        text-align: center;
    }
    .flexWrap .mx-554,.flexWrap .mx-447{
        margin-left: auto;
        margin-right: auto;
    }
    .gap-40 {
        gap: 20px;
    }
    .grid-4,.footergrid{
        grid-template-columns: repeat(2,1fr);
    }
    .grid-2{
        grid-template-columns: repeat(1,1fr);
    }
    .grid-5{
        grid-template-columns: repeat(1,1fr);
        margin: 0 !important;
    }
    .px-10{
        padding: 24px 16px;
    }
    .exploreMobileBtn {
        display: flex;
        margin-top: 10px;
        gap: 5px;
    }
    .exploreMobileBtn img{
        width: 15px;
        height: 15px;
    }
    .grid-2 .workborder {
        order: 2;
    }
    .grid-6{
        grid-template-columns: repeat(3,1fr);
        border-top: 1px solid var(--medium-gray);
        border-left: 1px solid var(--medium-gray);
    }
    .process_card:nth-child(even){
        margin-top: 0;
        justify-content: unset;
    }
    .process_card{
        border-bottom: 1px solid var(--medium-gray);
    }
    .industry_slider .slick-slide, .experties_slider .slick-slide{
        margin: 0 10px;
    }
    .developerimage {
        position: static;
        width: 100%;
        margin-top: 16px;
    }
    .bg_developer{
        padding: 70px 0 0 0;
    }
    .slider_button,.client_slide_button,.mb0.slider_button{
        margin-bottom: 100px;
    }
    .contactleft {
        border-width: 1px 1px 0 1px
    }
    .footerflex ,.footerrights{
        flex-direction: column;
    }
    .footerrights{
        gap: 20px;
    }
    .footerrights .d-flex{
        justify-content: center !important;
    }
    .workborder{
        border-width:0 1px 1px 1px;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .hoverimage{
        width: 70%;
    }
    .orb{
        position: absolute;
        overflow: hidden;
        left: -64%;
        bottom: 0;
    }
    .pymobile{
        padding: 50px 0;
        overflow: hidden;
        position: relative;
    }
    #business-slider.grid-3{
        grid-template-columns: repeat(1,1fr);
    }
    .flexbox.mb-48{
        margin-bottom: 18px;
    }
    .photogrid div img{
        filter: grayscale(0);
    }
    .numberbox,.darkcountersection .counterBox{
        background-color: var(--blue);
    }
    .numberbox > *{
        color: var(--pure-white) !important;
    }
    .numberbox .absoluteNumber{
        top: 43px;
    }
}
@media (max-width: 991.98px) {
    .flexbox{
        flex-direction: column;
    }
    .startupbox {
        max-width: 100%;
    }
    .mx-815{
        order: 1;
    }
    .mobileorder{
        order: 2;
    }
    .container{
        margin: 0 50px;
        width: calc(100% - 100px);
    }
    .mb-40 {
        margin-bottom: 25px;
    }
    .flexbrand > div{
        width: 90px;
    }
    .video{
        height: 50%;
    }
    .navbar-toggler{
        position: relative;
        padding: 0;
        height: 24px;
        width: 24px;
    }
    .navbar .container{
        height: 64px;
    }
    .navbar .container > .d-flex{
        height: 100%;
    }
     button.navbar-toggler .lines {
        position: absolute;
        width: 20px;
        height: 2px;
        background: white;
        border-radius: 100px;
        display: inline-block;
        transition: 0.3s ease;
        left: 0;
    }
     .navbar-collapse {
        position: absolute;
        top: calc(100%);
        z-index: 1;
        background-color: black;
        width: 100%;
        left: 0;
        height: calc(100vh - 57px);
        overflow-y: auto;
        padding-bottom: 16px;
    }
    button.navbar-toggler .bar1 {
        top: 3px;
    }
    button.navbar-toggler .bar2 {
        top: 10px;
    }
    button.navbar-toggler .bar3 {
        top: 17px;
    }
    button.navbar-toggler[aria-expanded="true"] .bar1 {
        transform: rotate(45deg) translate(3px, 7px);
    }
    button.navbar-toggler[aria-expanded="true"] .bar2 {
        opacity: 0;
    }
    button.navbar-toggler[aria-expanded="true"] .bar3 {
        transform: rotate(-45deg) translate(3px, -7px);
    }
    .grid-8{
        grid-template-columns: repeat(4,1fr);
        height: 100% !important;
    }
    .slider_button,.client_slide_button{
        margin-bottom: 100px;
    }
    .dropdown-menu{
        transform: none !important;
        height: unset !important;
    }
    .nav-link{
        padding: 16px 0 ;
    }
}
@media (max-width: 991.98px) {
    #navbarSupportedContent {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        z-index: 9999;
        overflow-y: auto;
        padding: 0;
        margin: 0;
        padding-bottom: 100px;
    }
    .mobile-menu-item:last-child{
        border: none !important;
    }
    .headervideo{
        width: unset;
        height: 100%;
    }
    .mobile-menu-promo{
        padding: 16px;
    }
    .tab-content-right .fs-28 {
        font-size: 22px;
        line-height: 28px;
    }
    .tab-content-right {
        padding: 16px;
        max-width: 100%;
        min-height: unset;
        border: 2px solid var(--ink-black);
        position: relative;
    }
    #navbarSupportedContent.collapse:not(.show) {
        display: none;
    }

    #navbarSupportedContent.collapsing {
        transition: none;
    }

    #navbarSupportedContent .mobile-menu-container {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-header .header-text {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 8px;
    }

    .mobile-menu-header .logo-section {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-header .logo-section img {
        width: auto;
        height: 32px;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-nav {
        list-style: none;
        padding: 0;
        margin: 0;
        flex: 1;
        padding:0 16px;
    }

    /* When a top-level section is open, hide other top-level items */
    .mobile-menu-nav.detail-mode > .mobile-menu-item { display: none; }
    .mobile-menu-nav.detail-mode > .mobile-menu-item.active-root { display: block; }
/* 
    .mobile-menu-item {
    } */
    
    .mobile-menu-link,
    .mobile-menu-accordion-toggle {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid var(--ink-black) !important;
        align-items: center;
        padding: 16px 0;
        color: var(--pure-white);
        text-decoration: none;
        font-size: 22px;
        cursor: pointer;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
    }

    .mobile-menu-link:hover,
    .mobile-menu-accordion-toggle:hover {
        color: var(--pure-white);
    }

    .mobile-menu-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
    }


    .mobile-menu-accordion-content {
        display: none;
        flex-direction: column;
        /* gap: 32px; */
    }

    .mobile-menu-accordion-content.active {
        display: flex;
    }
    .mobile-sub-menu-item{

        border-bottom: 1px solid var(--ink-black) !important;
    }
    .mobile-sub-menu-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        cursor: pointer;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
    }

    
    .mobile-sub-menu-content {
        display: none;
        background: var(--jet-black);
        flex-direction: column;
        gap: 32px;
        padding: 32px 16px;
        position: relative;
    }
    .flex32{
        gap: 32px;
        padding: 32px 16px;
        position: relative;
        background: var(--jet-black);
    }
    .mobile-sub-menu-content::after,.flex32::after,.mobile-sub-menu-content::before,.flex32::before{
        content: '';
        position: absolute;
        top: 0;
        left: -16px;
        height: 100%;
        background: var(--jet-black);
        width: 16px;
    }
    .mobile-sub-menu-content::after,.flex32::after{
        left: unset;
        right: -15px;
        width: 17px;
    }
    .mobile-sub-menu-content.active {
        display: flex;
    }

    .mobile-sub-menu-link {
        display: block;
        text-decoration: none;
        font-size: 16px;
        color: var(--pure-white);
    }

    .mobile-sub-menu-link:hover {
        color: #fff;
    }

   
}
@media (max-width: 767.98px) {
    .flexWrapmd{
        flex-wrap: wrap;
    }
    .policyflex{
        flex-direction: column;
        gap: 20px;
    }
    .w-369 {
        width: 250px;
    }
    .grid-3 {
        grid-template-columns: repeat(1, 1fr);
    }
    .serviceCard ,.businessCard{
        margin-right: 0px;
        width: 100% !important;
    }
    .businessCard{
        margin: 0 5px;
        width: calc(100% - 10px) !important;
    }
}
@media (max-width: 575.98px) {
    .grid-8{
        grid-template-columns: repeat(1,1fr);
        background-color: transparent;
        padding: 32px 0;
    }
     .grid-8 .bg-white:not(.brand_padding) .d-flex{
        justify-content: center;
        font-size: 22px;
        margin-bottom: 24px;
    }
    .brand_padding{
        border-bottom: 1px solid var(--light-gray);
        padding: 16px 6px;
    }
    .brand_padding:last-child{
        border: none;
    }
    .brand_padding .fs-18{
        display: none;
    }
    .container{
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .grid-7{
        flex-direction: column;
        gap: 0 !important;
    }
    .intellians{
        padding-top: 32px !important;
    }
    .intellians .container{
        padding: 0 16px !important;
    }
    .grid-7 .imgy50 {
        border-bottom: 1px solid var(--light-gray);
        padding: 16px 6px;
        height: unset;
        width: 100%;
    }
    .photogrid{
        grid-template-columns: repeat(1,1fr);
    }
    .photogrid div{
        grid-row: unset !important;
        grid-column: unset !important;
    }
    .grid-7 .imgy50 img{
        height: 40px;
    }
    .p-32 {
        padding: 16px;
    }
    .serviceCard,.mx-480{
        margin: 0 5px;
        width: calc(100% - 10px) !important;
    }
    .our_client_card{
        padding: 16px;
    }
    .customaccordion .accordion-body{
        font-size: 13px;
      }
    .grid-4,.grid-6,.footergrid{
        grid-template-columns: repeat(1,1fr);
    }
    .workslider {
        padding: 0 16px;
    }
    .footergrid3{
        flex-direction: column;
    }
    .fs-72{
        font-size: 36px;
        line-height: 44px;
    }
    .mx-768{
        max-width: 100%;
    }
    .fs-18,.bg_developer .fs-28{
        font-size: 14px;
        line-height: 20px;
    }
    .button_blue{
        padding: 12px 16px;
    }
    .banner_bg{
        height: calc(100dvh - 64px);
    }
    .px50 {
        padding-left: 16px;
        padding-right: 16px;
    }
    .fs-48,.bg_developer .fs-72,.footergrid3 .fs-28{
        font-size: 28px;
        line-height: 32px;
    }
    .fs-28{
        font-size: 18px;
        line-height: 22px;
    }
    .slider_button .slick-arrow,.img48,.client_slide_button .slick-arrow{
        height: 32px;
        width: 32px;
    }
    .slider_button .slick-arrow img,.client_slide_button .slick-arrow img{
        width: 13px;
        height: 13px;
    }
    .slider_button .slick-arrow, .client_slide_button .slick-arrow{
        left: calc(50% - 20px);
    }
    .slider_button .slick-next, .client_slide_button .slick-next{
        left: calc(50% + 20px);
    }
    .py100 ,.py160 {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .slider_button, .client_slide_button {
        margin-bottom: 70px !important;
    }
    .mb-64{
        margin-bottom: 24px;
    }
    .fs-64{
        font-size: 48px;
        line-height: 56px;
    }
    .fs-22 {
        font-size: 16px;
        line-height: 24px;
    }
    .counterBox {
        padding: 20px 40px;
    }
    .numberbox:hover .absoluteNumber {
        top: 43px;
    }
    .absoluteNumber {
        font-size: 101px;
    }
    .p-40{
        padding: 16px;
    }
    .workborder {
        align-items: start !important;
    }
    .fs-36{
        font-size: 22px;
        line-height: 30px;
    }
    .process_card {
        min-height: 100px;
        max-height: 100px;
        justify-content: center !important;
    }
    .process_card.numberbox .absoluteNumber,.process_card.numberbox:hover .absoluteNumber{
        top: 00px;
        font-size: 102px;
    }
    .process_card .fs-22{
        text-align: center;
    }
    .img60{
        height: 40px;
        width: 40px;
    }
    :root {
        --bs-body-font-size: 12px;
    }
    .industry_card {
        padding: 16px;
    }
    .flexsm{
        flex-direction: column;
        align-items: start !important;
    }
    ol, ul{
        padding-left: 18px;
    }
    .industry_card ul{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .customaccordion .accordion-body{
        padding: 16px 0 12px;
    }
    .customaccordion .accordion-button{
        padding: 12px 0;
    }
    .pt100{
        padding-top: 0px;
    }
    .pt100 .container{
        padding: 0;
    }
    .footerflex {
        padding:0 0px 32px; 
    }
    .footergrid{
        gap: 00;
    }
    .contactleft{
        padding: 32px 16px;
    }
    .contactleft .p-32:first-child{
        padding: 0;
      }
    .contactright{
        padding: 32px 16px;
    }
    .footergrid3{
        gap: 24px;
    }
    .gap-64 {
        gap: 32px;
    }
    .pt64{
        padding-top: 32px;
    }
}