@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.allcode_section {
    overflow-x: hidden;
}

.allcode_section::-webkit-scrollbar {
    display: none;
}

.allcode_section {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

:root {
    --ButtonColor: #064BD1;
    --teamColor: #1E60DF;
    --color: #fff;
    --textColor: #0B59EF;
    --textDark: #818181;
    --footerBg: #280606;
}
a{
    text-decoration: none;
}
img.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

img.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* Navbar section */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 30px 100px;
    z-index: 1000;
}

header.sticky {
    padding: 10px 80px 1px 80px;
    background: rgba(154, 170, 197, 0.85);
}

header .logo {
    position: relative;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.6s;
}

.logo img {
    height: 48px;
}

.header__logo {
    color: #eeee;
    font-weight: 600;
}

.nav__list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav__item {
    position: relative;
    list-style: none;
}

.nav__item a {
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    transition: 0.6s;
}

.nav__link {
    padding: 10px;
    color: #eeee;
    font-weight: 600;
}

.nav__link:hover {
    color: var(--teamColor);
}

.header__close,
.header__toggle {
    display: none;
}

header.sticky .logo,
header.sticky ul li a {
    color: #ffffff;
}

.enrollBtn {
    border-radius: 6px;
    background: var(--ButtonColor);
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 5px 5px 5px 5px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.enrollBtn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.enrollBtn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.enrollBtn:hover span {
    padding-right: 25px;
}

.enrollBtn:hover span:after {
    opacity: 1;
    right: 0;
}

/* Home section */

.home {
    width: 100%;
    height: 350px;
    background-image: url('images/aboutUs/aboutBannerImg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.arrow_Img {
    position: absolute;
    height: 180px;
    right: 100px;
    top: 330px;
    z-index: -1000;
}

.home h1 {
    margin-left: 80px;
    color: var(--color);
    margin-top: 100px;
    font-weight: 600;
}

.paginationLink {
    display: flex;
    position: absolute;
    right: 150px;
    top: 300px;
}

.paginationLink a {
    color: var(--color);
    text-decoration: none;
}

.aboutUsTxt h5 {
    font-weight: 700;
}

/* about us section css */
.about_section {
    margin-top: 150px;
    position: relative;
}

.responsive_img {
    display: none;
}

.about_us_img img {
    --_g: 10% /45% 45% no-repeat linear-gradient(#000 0 0);
    --m:
        left var(--_i, 0%) top var(--_g),
        bottom var(--_i, 0%) left var(--_g),
        top var(--_i, 0%) right var(--_g),
        right var(--_i, 0%) bottom var(--_g);
    -webkit-mask: var(--m);
    mask: var(--m);
    filter: grayscale();
    transition: .3s linear;
    cursor: pointer;
}

.about_us_img img:hover {
    --_i: 10%;
    filter: grayscale(0);
}


.about_us_img img {
    height: 70vh;
}

.head_bg {
    border-radius: 30px;
    background: var(--color);
    box-shadow: 6px 16px 34px 0px rgba(177, 177, 177, 0.25);
    width: 260px;
    padding: 5px 20px;
    text-align: center;
}

.head_bg h5 {
    color: var(--teamColor);
    font-size: 20px;
    font-weight: 600;
}

.header {
    width: 80%;
}

.header h1 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
}

.header h1 span {
    color: var(--textColor);
}

.about_txt_sction .card {
    border-left: 3px solid var(--teamColor);
    border-radius: 0px !important;
    border-right: 0px;
    border-bottom: 0px;
    border-top: 0px;
}

.about_txt_sction .card .card-body h4 span {
    color: var(--textColor);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
}

.about_txt_sction .card .card-body h4 {
    font-size: 16px;
    color: var(--textDark);
    line-height: 30px;
}

.tecnical_section {
    display: flex;
}

.tecnical_section img {
    height: 50px;
}

.tecnical_section h5 {
    font-weight: 700;
    font-size: 17px;
}

.tecnical2 {
    margin-left: 25%;
}

.about_btn button {
    box-shadow: 6px 16px 24px 0px rgba(85, 85, 85, 0.25);
    border-radius: 6px;
    background: var(--ButtonColor);
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding: 5px 5px 5px 5px;
    width: 170px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.about_btn button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.about_btn button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.about_btn button:hover span {
    padding-right: 25px;
}

.about_btn button:hover span:after {
    opacity: 1;
    right: 0;
}

/* Company history section css */
.company_section {
    position: relative;
    margin-top: 150px;
}

.company_section_bg img {
    height: 100vh;
    width: 100%;
    margin-top: 150px;
}

.company_section_txt {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
}

.company_history_img img {
    height: 65vh;
}

.company_section h4 {
    text-align: center;
    font-size: 35px;
    font-weight: 600;
}

.newBeginning h4 {
    text-align: left;
    font-size: 28px;
    font-weight: 600;
}

.newBeginning p {
    color: var(--textDark);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
}

/* It solution css*/
.itSolution {
    background-image: url('images/aboutUs/itSolution_bg.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 60vh;
    margin-top: 150px;
    display: flex;
    align-items: center;
}

.heading_Itsolution {
    width: 40%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.heading_Itsolution h1 {
    font-size: 40px;
    font-weight: 600;
    color: var(--color);
    text-align: center;
    line-height: 50px;
}

.heading_Itsolution p {
    font-size: 18px;
    font-weight: 500;
    color: var(--color);
    text-align: center;
    line-height: 35px;
}

/* counting_section css */
.counting_section_bg {
    font-family: sans-serif;
    width: 100%;
    background-image: url('images/aboutUs/counting_bg.webp');
    background-size: cover;
    background-position: center;
    margin-top: -80px;
    padding: 52px 10px 52px 10px;
}

.counting_img img {
    height: 70px;
}

.counting_section_bg h2 {
    font-size: 30px;
    font-weight: 500;
    color: var(--textColor);
}

.counting_section_bg h6 {
    font-size: 16px;
    font-weight: 500;
    color: var(--textColor);
}

/* testimonial_section css */
.testimonial_section {
    background-image: url('images/aboutUs/Testimonials_bg.webp');
    background-size: cover;
    background-position: center;
    height: auto;
    margin-top: 150px;
    padding: 100px 0px 30px 0px;
}

.txt_testimonial h1 {
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
}

.txt_testimonial p {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    color: var(--textDark);
}

.slider_txt {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 33px 0px rgba(172, 172, 172, 0.25);
    width: 92%;
    padding: 25px 25px;
}

.slider-container {
    position: relative;
}

.slider_txt p {
    color: var(--textDark);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.client_img img {
    height: 60px;
}

.client_data h6 {
    font-size: 16px;
}

.client_data p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #000;
}

.next,
.pre {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: #fff;
    fill: #FFF;
    filter: drop-shadow(-2px 1px 22px rgba(172, 172, 172, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.arrow_div {
    position: absolute;
    bottom: -20px;
    right: 70px;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-scrollbar {
    display: none !important;
}

/* business solution section css */
.business_solution_section {
    background-image: url('images/aboutUs/business_solution_bg.webp');
    background-size: cover;
    background-position: center;
    height: auto;
    margin-top: 100px;
    padding: 80px 0px 80px 0px;
}

.business_solution_head {
    border-radius: 30px;
    background: var(--color);
    box-shadow: 6px 16px 34px 0px rgba(177, 177, 177, 0.25);
    width: 310px;
    padding: 5px 20px;
    text-align: center;
}

.business_solution_head h5 {
    color: var(--teamColor);
    font-size: 20px;
    font-weight: 600;
}

.business_solution_txt h1 {
    font-size: 40px;
    font-weight: 500;
    line-height: 55px;
}

.business_solution_txt p {
    color: var(--textDark);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
}

/* footer section css */
footer {
    font-family: 'Lora', serif;
}

.footer_bg {
    background-image: url('images/footer_bg.webp');
    background-size: cover;
    background-position: center;
    height: auto;
    margin-top: 100px;
    padding: 10px 0px 5px 0px;
}

.footer_logo img {
    height: 55px;
}

.footer_logo p {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-top: 15px;
}

.wrapper {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wrapper .icon {
    position: relative;
    background: #ffffff;
    color: #064BD1;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 32px;
    height: 32px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before,
.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before,
.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before,
.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before,
.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #333333;
    color: #ffffff;
}

.footer_txt h6 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-top: 40px;
}

.underLine {
    height: 3px;
    width: 40px;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.footer_txt ul {
    padding: 0;
}

.footer_txt ul a {
    text-decoration: none;
}

.footer_txt ul li {
    list-style: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.bottom_nav {
    display: flex;
    justify-content: space-between;
    color: #fff;
    flex-wrap: wrap;
}
.bottom_nav a{
    color: #fff;
}
/* Media qurey section */

@media all and (max-width:900px) {

    /* navbar css */
    body.overflow-hidden {
        overflow: hidden;
    }

    header {
        height: 48px;
        justify-content: space-between;
        padding: 0 28px;
    }

    .logo a {
        font-size: 0.9rem;
    }

    .header__toggle {
        display: inline;
        color: #eeee;
        font-size: 24px;
    }

    .header__close {
        position: absolute;
        right: 24px;
        display: block;
        font-size: 24px;
        border-radius: 50%;
        z-index: 1000;
    }

    .header__close:hover {
        background-color: #00adb5;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: #222831;
        color: #eeee;
        width: 40%;
        height: 100vh;
        padding: 24px 0;
        z-index: 1000;
        transition: 0.5s;
        border-radius: 0 0 0 50%;
        z-index: 1000;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
    }

    .show {
        right: 0;

    }

    .nav__item {
        margin: 2rem 0;
    }

    /* banner section  */
    .home {
        width: 100%;
        height: 35vh;
        background-image: url('images/aboutUs/aboutBannerImg.webp');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
    }

    .arrow_Img {
        position: absolute;
        height: 150px;
        right: 100px;
        top: 330px;
        z-index: -1000;
    }

    /* about us section css */
    .about_section {
        margin-top: 100px;
        position: relative;
    }

    .responsive_img {
        display: flex;
        justify-content: center;
    }

    .responsive_img img {
        height: 35vh;
    }

    .about_txt_sction {
        margin-top: 50px;
    }

    .about_us_img {
        display: none;
    }

    .left_arrow {
        height: 70px;
        width: 50px;
        position: absolute;
        bottom: 200px;
        display: none;
    }

    .right_arrow {
        height: 70px;
        width: 50px;
        position: absolute;
        top: 100px;
        left: 555px;
        display: none;
    }

    /* Company history section css */
    .company_section_txt {
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
    }

    .company_history_img {
        display: flex;
        justify-content: center;
    }

    .company_history_img img {
        height: 40vh;
    }

    .newBeginning p {
        color: var(--textDark);
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
    }

    /* It solution css*/
    .itSolution {
        background-image: url('images/aboutUs/itSolution_bg.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        height: 40vh;
        margin-top: 450px;
        display: flex;
        align-items: center;
    }

    .heading_Itsolution {
        width: 80%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    /* counting_section css */
    .counting_section_bg {
        font-family: sans-serif;
        width: 100%;
        background-image: url('images/aboutUs/counting_bg.webp');
        background-size: cover;
        background-position: center;
        margin-top: -80px;
        padding: 52px 10px 52px 10px;
    }

    .counting_img img {
        height: 70px;
    }

    .counting_area {
        margin-top: 20px;
    }

    .counting_section {
        display: flex;
        justify-content: center;
    }

    /* testimonial_section css */
    .testimonial_section {
        background-image: url('images/aboutUs/Testimonials_bg.webp');
        background-size: cover;
        background-position: center;
        height: auto;
        margin-top: 150px;
        padding: 100px 0px 30px 0px;
    }

    .txt_testimonial h1 {
        font-size: 40px;
        font-style: normal;
        font-weight: 500;
        line-height: 60px;
        letter-spacing: 1.16px;
        text-align: center;
    }

    .txt_testimonial p {
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 146%;
        letter-spacing: 0.78px;
        color: var(--textDark);
        text-align: center;
    }

    /* business solution section css */
    .business_solution_section {
        background-image: url('images/aboutUs/business_solution_bg.webp');
        background-size: cover;
        background-position: center;
        height: auto;
        margin-top: 100px;
        padding: 80px 0px 30px 0px;
    }

    .business_solution_head {
        border-radius: 30px;
        background: var(--color);
        box-shadow: 6px 16px 34px 0px rgba(177, 177, 177, 0.25);
        width: 310px;
        padding: 5px 20px;
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .business_solution_head h5 {
        color: var(--teamColor);
        font-size: 20px;
        font-weight: 600;
    }

    .business_solution_txt h1 {
        font-size: 54px;
        font-weight: 500;
        line-height: 141.5%;
        text-align: center;
    }

    .business_solution_txt p {
        color: var(--textDark);
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 154%;
        letter-spacing: 0.78px;
        text-align: center;
    }

    .Explore_btn {
        display: flex;
        justify-content: center;
    }

    .business_img {
        display: flex;
        justify-content: center;
    }

    .business_img img {
        height: 40vh;
        margin-top: 50px;
    }

    /* footer section css */
    .footer_bg {
        background-image: url('images/footer_bg.webp');
        background-size: cover;
        background-position: center;
        height: auto;
        margin-top: 100px;
        padding: 100px 0px 20px 0px;
    }

    .res_col {
        display: none;
    }
}


@media all and (max-width:700px) {
    /* navbar css */

    body.overflow-hidden {
        overflow: hidden;
    }

    .logo img {
        height: 40px;
    }

    header {
        height: auto;
        justify-content: space-between;
        padding: 10px 20px 10px 20px;
    }

    .logo a {
        font-size: 0.9rem;
    }

    .header__toggle {
        display: inline;
        color: #eeee;
        font-size: 26px;
    }

    .header__close {
        position: absolute;
        right: 24px;
        display: block;
        font-size: 24px;
        border-radius: 50%;
        z-index: 1000;
    }

    .header__close:hover {
        background-color: #00adb5;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        /* Initially off-screen */
        background-color: #222831;
        color: #eeee;
        width: 100%;
        height: 100vh;
        padding: 24px 0;
        z-index: 1000;
        transition: 0.5s;
        /* Smooth transition */
        border-radius: 0 0 0 0%;
        z-index: 1000;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        margin-left: 10%;
    }

    .show {
        right: 0;
        /* Move the menu into view */
    }

    .nav__item {
        margin: 1.5rem 0;
    }

    header.sticky {
        padding: 10px 25px 10px 25px;
        background: rgba(154, 170, 197, 0.85);
    }

    .enrollBtn {
        border-radius: 6px;
        background: var(--ButtonColor);
        border: none;
        color: #FFFFFF;
        text-align: center;
        font-size: 15px;
        font-weight: 600;
        padding: 5px 5px 5px 5px;
        width: 200px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px;
    }

    /* banner section */
    .home {
        height: 35vh;
    }

    .arrow_Img {
        position: absolute;
        height: 150px;
        right: 80px;
        top: 180px;
        z-index: -1000;
    }

    .home h1 {
        margin-left: 30px;
        color: var(--color);
        margin-top: 50px;
        font-weight: 600;
    }

    .paginationLink {
        display: flex;
        position: absolute;
        right: 20px;
        top: 230px;
    }

    .aboutUsTxt h5 {
        font-weight: 700;
        font-size: 20px;
    }

    .myP {
        padding: 2%;
    }

    .enrollBtn {
        border-radius: 10px;
        background-color: var(--ButtonColor);
        border: none;
        color: #FFFFFF;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        padding: 5px 5px 5px 5px;
        width: 210px;
        transition: all 0.5s;
        cursor: pointer;
        margin: 5px;
        margin-top: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    /* about section  */
    .head_bg {
        border-radius: 30px;
        background: var(--color);
        box-shadow: 6px 16px 34px 0px rgba(177, 177, 177, 0.25);
        width: 260px;
        padding: 5px 20px;
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .head_bg h5 {
        color: var(--teamColor);
        font-size: 16px;
        font-weight: 600;
    }

    .header {
        width: 94%;
        text-align: center;
    }

    .header h1 {
        font-size: 26px;
        font-weight: 700;
    }

    .header h1 br {
        display: none;
    }

    .about_txt_sction .card {
        border-left: 2px solid var(--teamColor);
    }

    .about_txt_sction .card .card-body h4 span {
        color: var(--textColor);
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 44px;
    }

    .about_txt_sction .card .card-body h4 {
        font-size: 14px;
        color: var(--textDark);
        line-height: 30px;
    }

    .tecnical_section {
        display: flex;
    }

    .tecnical_section img {
        height: 45px;
    }

    .tecnical_section h5 {
        font-weight: 700;
        font-size: 14px;
    }

    .tecnical2 {
        margin-left: 20%;
    }

    .about_btn button {
        border-radius: 6px;
        background: var(--ButtonColor);
        border: none;
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 600;
        margin-top: 20px;
        padding: 6px 5px 6px 5px;
        width: 150px;
        transition: all 0.5s;
        cursor: pointer;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    /* Company history section css */
    .company_section {
        position: relative;
        margin-top: 100px;
    }

    .company_history_img img {
        height: 40vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .company_section_bg img {
        display: none;
    }

    .company_section h4 {
        text-align: center;
        font-size: 26px;
        font-weight: 800;
    }

    .newBeginning h4 {
        text-align: center;
        font-size: 26px;
        font-weight: 600;
        line-height: 40px;
    }

    .newBeginning p {
        color: var(--textDark);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px;
        text-align: center;
    }

    /* It solution css*/
    .itSolution {
        background-image: url('images/aboutUs/itSolution_bg.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        height: 45vh;
        margin-top: 1700px;
        display: flex;
        align-items: center;
    }

    .heading_Itsolution {
        width: 90%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .heading_Itsolution h1 {
        font-size: 26px;
        font-weight: 800;
        color: var(--color);
        text-align: center;
        line-height: 40px;
    }

    .heading_Itsolution h1 br,
    .heading_Itsolution p br {
        display: none;
    }

    .heading_Itsolution p {
        font-size: 14px;
        font-weight: 500;
        color: var(--color);
        text-align: center;
        line-height: 30px;
    }

    /* counting_section css */
    .counting_section {
        padding: 0px 30px 0px 30px;
    }

    .counting_section_bg {
        font-family: sans-serif;
        width: 100%;
        background-image: none;
        background-size: cover;
        /* background-position: center; */
        margin-top: 20px;
        padding: 52px 10px 52px 10px;
    }

    .counting_img img {
        height: 50px;
    }

    .counting_section_bg h2 {
        font-size: 25px;
        font-weight: 500;
        color: var(--textColor);
    }

    .counting_section_bg h6 {
        font-size: 14px;
        font-weight: 500;
        color: var(--textColor);
    }

    .counting_card {
        margin-top: 30px;
    }

    /* testimonial_section css */
    .testimonial_section {
        background-image: none;
        background-size: cover;
        background-position: center;
        height: auto;
        margin-top: 50px;
        padding: 30px 0px 30px 0px;
    }

    .txt_testimonial h1 {
        font-size: 26px;
        font-style: normal;
        font-weight: 500;
        line-height: 40px;
    }

    .txt_testimonial p {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 30px;
        color: var(--textDark);
    }

    .slider_txt {
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0px 4px 33px 0px rgba(172, 172, 172, 0.25);
        width: 100%;
        padding: 25px 25px;
    }

    .slider_txt p {
        color: var(--textDark);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 30px;
    }

    .client_img img {
        height: 50px;
    }

    .client_data h6 {
        font-size: 14px;
    }

    .client_data p {
        margin: 0;
        padding: 0;
        font-size: 12px;
        color: #000;
    }


    /* business solution section css */
    .business_solution_section {
        background-image: url('images/aboutUs/business_solution_bg.webp');
        background-size: cover;
        background-position: center;
        height: auto;
        margin-top: 50px;
        padding: 30px 0px 30px 0px;
    }

    .business_solution_head {
        border-radius: 20px;
        background: var(--color);
        box-shadow: 6px 16px 34px 0px rgba(177, 177, 177, 0.25);
        width: 280px;
        padding: 5px 20px;
        text-align: center;
    }

    .business_solution_head h5 {
        color: var(--teamColor);
        font-size: 16px;
        font-weight: 600;
    }

    .business_solution_txt h1 {
        font-size: 26px;
        font-weight: 500;
        line-height: 40px;
    }

    .business_solution_txt p {
        color: var(--textDark);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 30px;
    }

    .business_img {
        display: none;
    }

    /* footer section css */
    .footer_bg {
        background-image: url('images/footer_bg.webp');
        background-size: cover;
        background-position: center;
        height: auto;
        margin-top: 50px;
        padding: 10px 0px 10px 0px;
    }

    .footer_logo img {
        height: 50px;
    }

    .footer_logo p {
        font-size: 16px;
        color: #fff;
        font-weight: 600;
        margin-top: 20px;
    }

    .footer_txt ul li {
        list-style: none;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
    }

    .footer_txt h6 {
        font-size: 20px;
        color: #fff;
        font-weight: 600;
        margin-top: 20px;
    }

    .bottom_nav {
        display: block;
        margin: 10px;
    }

    .bottom_nav h6 {
        text-align: center;
        font-size: 14px;
    }
}