@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Navbar CSS  */

.navbar {
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0px;
    z-index: 9999;
}

.navStyle {
    box-shadow: 3px 1px 3px gray !important;
}


.logo {
    width: auto;
    height: 46px;
}

.navbar .navbar-nav .nav-item {
    margin: 0px 10px;
}

.navbar .collapse {
    display: flex;
    justify-content: flex-end;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: #000;
    font-family: Arial;
    letter-spacing: 1px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

    .navbar .navbar-nav .nav-item .nav-link:hover {
        color: #4A5EE5;
    }




.navbar .navbar-nav .nav-item:hover .drop_menus {
    display : block;
}

 .drop_menus {
    display : none;
    border: 1px solid #efefef;
    min-width: 256px;
    position: absolute;
    top: 100%;
    border-radius: 6px;
    padding: 0px 10px 10px;
    background : #fff;
    z-index : 999;
}

 .navbar .navbar-nav .nav-item:hover {
    display : block;
}

    .drop_menus a {
        display: block;
        color: black;
        font-size : 14px ;
        padding : 6px 0px;
    }

    .drop_menus a:hover {
        color: #4A5EE5;
    }


.innerSubMenu {
    height : 0;
    overflow: hidden;
    transition : 200ms linear;
}

    .innerSubMenu ul {
     display: flex;
    flex-direction: column;
    gap: 8px;
    }

     .innerSubMenu ul li a {
        color : black;
    }

     .rotate-icon {
    transition: transform 200ms linear;
    font-size: 14px
}

.rotate-icon-down {
    transform: rotate(90deg);
}


.active_navbar_lnk {
    color: #4A5EE5 !important;
}

.offcanvas.offcanvas-end {
    width: 300px;
}

@media screen and (max-width:991px) {
    .desktop_navbar {
        display: none;
    }
}

@media screen and (min-width:992px) {
    .offcanvas_nav {
        display: none;
    }
}




/* Banner Section CSS  */


.banner_section {
    margin-top: 90px;
    padding: 18px 0px 0px;
}
    /* new upadte the home page banner start */
    .banner_section .banner_cont {
        position: relative;
    }

        .banner_section .banner_cont::before {
            content: "";
            width: 260px;
            height: 90%;
            position: absolute;
            left: 8px;
            top: 0;
            border: 1px solid #f66135;
            box-shadow: 0px 0px 10px 0px #28517959;
            border-radius: 25px;
        }

        /* new upadte the home page banner start */


        .banner_section .banner_cont .heading {
            color: #000;
            font-family: Arial;
            font-size: 47px;
            font-weight: 400;
            line-height: 60px;
            /* new update start */
            position: relative;
            left: 10%;
            margin-top: 22px;
            background-color: #ffff;
        }

        .banner_section .banner_cont .desc {
            width: 58%;
            color: #4D4848;
            font-family: Manrope;
            font-size: 18px;
            font-weight: 400;
            position: relative;
            left: 280px;
            line-height: 1.6;
        }

        .banner_section .banner_cont .home_btn {
            position: relative;
            left: 280px;
        }

        .banner_section .banner_cont p span {
            background: linear-gradient(96.2deg, rgb(255, 230, 112) 10.4%, rgb(255, 100, 100) 43.8%, rgb(0, 93, 219) 105.8%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 38px;
        }



@-webkit-keyframes upNdown {
    0% {
    }

    50% {
        transform: translate(-10px);
    }

    100% {
    }
}

@keyframes upNdown {
    0% {
    }

    50% {
        transform: translate(-10px);
    }

    100% {
    }
}

.consult_btn button {
    width: 215px;
    height: 50px;
    border-radius: 11px;
    background: #000;
    border: none;
    color: white !important;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    justify-content: space-around !important;
    justify-content: center;
    align-items: center !important;
}

.service_btn button {
    width: 155px;
    height: 50px;
    border-radius: 11px;
    background: #000;
    border: none;
    color: white !important;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    justify-content: space-around !important;
    justify-content: center;
    align-items: center !important;
}

.intro_btn button {
    width: 155px;
    height: 50px;
    border-radius: 11px;
    background: #000;
    border: none;
    color: white !important;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    justify-content: space-around !important;
    justify-content: center;
    align-items: center !important;
}

.consult_btn button p {
    margin: 0;
}

.service_btn button p {
    margin: 0;
}

.intro_btn button p {
    margin: 0;
}

.consult_btn button:hover {
    background-color: #4A5EE5;
    border: none;
}

.service_btn button:hover {
    background-color: #4A5EE5;
    border: none;
}

.intro_btn button:hover {
    background-color: #4A5EE5;
    border: none;
}

.consult_btn button:hover svg {
    -webkit-animation: upNdown 2s infinite linear;
    animation: upNdown 0.6s infinite linear;
}

.service_btn button:hover svg {
    -webkit-animation: upNdown 2s infinite linear;
    animation: upNdown 0.6s infinite linear;
}

.intro_btn button:hover svg {
    -webkit-animation: upNdown 2s infinite linear;
    animation: upNdown 0.6s infinite linear;
}



.banner_section .banner_img img {
    height: 600px;
    float: right;
}

@media screen and (max-width:1436px) {
    .banner_section .banner_cont::before {
        width: 230px;
        height: 82%;
    }

    .banner_section .banner_cont .heading {
        font-size: 40px;
    }

    .banner_section .banner_cont .desc {
        width: 59%;
        font-size: 16px;
        left: 246px;
    }

    .banner_section .banner_cont .home_btn {
        left: 246px;
    }
}

@media screen and (max-width:1030px) {
    .banner_section .banner_cont .heading {
        font-size: 35px !important;
        line-height: 50px;
    }

    .banner_section .banner_cont .desc {
        font-size: 16px;
        width: 56%;
    }

    .banner_section .banner_cont p span img {
        width: 200px;
        height: 30px;
    }
}

@media screen and (max-width:992px) {
    .banner_section .banner_cont .heading {
        font-size: 45px !important;
    }

    .banner_section .banner_cont .desc {
        font-size: 19px;
        width: 72%;
    }
}

@media screen and (max-width:830px) {
    .banner_section {
        margin-top: 130px !important;
    }

        .banner_section .banner_cont p span img {
            width: 120px;
            height: 20px;
        }

    .consult_btn button {
        width: 195px;
        height: 55px;
    }
}

@media screen and (max-width:768px) {
    .banner_section .row {
        flex-direction: column !important;
    }

        .banner_section .row .banner_cont {
            width: 100%;
        }

        .banner_section .row .banner_img {
            width: 100%;
        }

    .banner_section .banner_cont .heading {
        /*font-size: 25px !important;
        line-height: 30px;*/
        font-size: 40px !important;
        line-height: 1.1;
        width: 71%;
    }

    .banner_section .banner_cont p span {
        font-size: 32px;
    }

    .banner_section .banner_cont .heading br {
        display: none;
    }

    .banner_section .banner_cont::before {
        width: 213px;
        height: 94%;
    }

    .banner_section .banner_cont .desc {
        font-size: 17px;
        width: 66%;
        left: 233px;
    }

    .banner_section .banner_cont .home_btn {
        left: 233px;
    }

    .banner_section .banner_cont p span img {
        width: 100px;
        height: 15px;
    }

    .consult_btn button {
        width: 195px;
        height: 55px;
    }
}

@media screen and (max-width:600px) {

    .banner_section .banner_cont {
        min-height: 330px;
    }

        .banner_section .banner_cont::before {
            width: 180px;
            height: 94%;
        }

        .banner_section .banner_cont .heading {
            font-size: 30px !important;
            width: 95%;
            line-height: 1.2;
        }

        .banner_section .banner_cont p span {
            font-size: 25px;
        }

        .banner_section .banner_cont .desc {
            font-size: 17px;
            width: 89%;
            left: 44px;
            background: #fff;
        }

        .banner_section .banner_cont .home_btn {
            position: absolute;
            left: auto;
            right: 9px;
            bottom: 0;
        }

    .banner_section .banner_img {
        margin-top: 20px;
    }

        .banner_section .banner_img img {
            height: 400px;
        }
}

@media screen and (max-width:372px) {
    .banner_section .banner_cont .heading {
        font-size: 22px !important;
    }

    .banner_section .banner_cont .desc {
        font-size: 14px !important;
    }

    .banner_section .banner_cont::before {
        width: 159px;
        height: 91%;
    }
}
/* Brand Section CSS */

.brands_section {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .brands_section .brand_main .microsoft:hover img {
        content: url('/content/assets/images/microsoft_color.png');
    }

    .brands_section .brand_main .glooker:hover img {
        content: url('/content/assets/images/glooker_color.png');
    }

    .brands_section .brand_main .hubspot:hover img {
        content: url('/content/assets/images/hubspot.png');
    }

    .brands_section .brand_main .azure:hover img {
        content: url('/content/assets/images/azure_color.png');
    }

    .brands_section .brand_main .quick_books:hover img {
        content: url('/content/assets/images/quick_books_color.png');
    }

    .brands_section .brand_main .gcloud:hover img,
    .brands_section .brand_main .gcloud:hover span img {
        content: url('/content/assets/images/google_cloud_color.png');
    }


    .brands_section .brand_main .gcloud:hover img,
    .brands_section .brand_main .gcloud:hover span img {
        display: none;
    }

    .brands_section .brand_main .gcloud:hover span img {
        display: block;
    }

.brand_slider {
    overflow: hidden;
}

@media screen and (max-width:600px) {

    .brands_section .brand_main .brand-item {
        width: 15%;
        display: flex;
        justify-content: center;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow: hidden;
    }
}

@media screen and (max-width:830px) {
    .brands_section .brand_main .brand-item {
        width: 200px;
    }

        .brands_section .brand_main .brand-item img {
            width: 45px !important;
        }

    .brands_section {
        margin-top: 10px;
    }
}

@media screen and (max-width:1030px) {

    .brands_section .brand_main .brand-item img {
        width: 65px;
    }
}





/* Intro section CSS  */


.intro_section {
    margin-top: 100px;
}

    .intro_section .intro_left {
        padding-right: 150px;
    }

        .intro_section .intro_left .what_we_do {
            padding: 10px 14px;
            width: 140px;
            text-align: center;
            border-radius: 5px;
            background: #E4EFFF;
            color: #4D96FF;
            font-family: Manrope;
            font-size: 13px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        .intro_section .intro_left h1 {
            color: #000;
            font-family: Arial;
            font-size: 50px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            margin-top: 10px;
        }

        .intro_section .intro_left .head {
            font-size: 25px;
        }

        .intro_section .intro_left .desc {
            font-size: 20px;
        }

        .intro_section .intro_left .consult_btn p {
            color: white;
            font-family: Arial;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
        }

@media screen and (max-width:830px) {
    .intro_section {
        margin-top: 50px;
    }

        .intro_section .intro_left {
            padding: 10px !important;
        }

            .intro_section .intro_left h1 {
                font-size: 30px;
            }

        .intro_section .intro_img {
            margin-top: 20px;
        }
}

.intro_section .intro_img img {
    /*height: 500px;*/
}

@media screen and (max-width:1030px) {
    .intro_section .intro_img {
        margin-top: 100px;
    }
}

@media screen and (max-width:600px) {
    .intro_section .intro_img img {
        height: 400px;
    }
}




/* Services section CSS  */
.services_section {
    margin-top: 100px;
}

    .services_section .services_caption {
        padding: 0 280px;
    }

@media screen and (max-width:1030px) {
    .services_section .services_caption {
        padding: 0 20px;
    }
}

.services_section .services_caption h1 {
    color: #000;
    text-align: center;
    font-family: Arial;
    font-size: 53.501px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.services_section .services_caption p {
    color: #5C5C5C;
    text-align: center;
    font-family: Manrope;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
}

.services_section .services .vertical-line {
    width: 5px;
    height: 63px;
    flex-shrink: 0;
    background: #5C5C5C;
}

.services_section .services .services_cnt {
    border-left: 2px solid gray;
    height: 368px;
}

    .services_section .services .services_cnt .head {
        color: #0F3775;
        font-family: Arial;
        font-size: 19.729px;
        font-style: normal;
        font-weight: 400;
    }

    .services_section .services .services_cnt h2 {
        color: #000;
        font-family: Arial;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
    }

    .services_section .services .services_cnt .desc {
        color: #4D4848;
        font-family: Manrope;
        font-size: 19px;
        font-style: normal;
        font-weight: 400;
    }

.services_section .services_img {
    border-radius: 28px;
    background: linear-gradient(180deg, #71F2FF 0%, #6B24D6 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    padding: 20px;
}

    .services_section .services_img img {
        display: flex;
        width: 577px;
        height: 397px;
        padding-bottom: 1.325px;
        justify-content: flex-end;
        align-items: center;
        flex-shrink: 0;
    }


@media screen and (max-width:600px) {
    .services_section {
        margin-bottom: 0px !important;
    }
}



@media screen and (max-width:1030px) {

    .services_section .services_caption p br {
        display: none;
    }

    .services_section .services_caption h1 {
        font-size: 40px;
    }

    .services_section .services .vertical-line {
        height: 35px;
    }

    .services_section .services .services_cnt {
        height: 100%;
    }

    .services_section .services_img {
        margin-top: 20px;
    }
}

@media screen and (max-width:600px) {
    .services_section .services_img {
        width: 100%;
    }

        .services_section .services_img img {
            height: 100%;
            width: 100%;
        }
}



/* Project CSS  */
.project_section .project_main {
    background: url('/content/assets/images/project_bg1.png');
    height: 520px;
    position: relative;
    z-index: 99;
}

    .project_section .project_main .project_details {
        display: flex;
        position: relative;
        top: 280px;
    }

@media screen and (max-width:768px) {
    .project_section .project_main .project_details {
        top: 200px;
    }
}

.project_section .project_main .project_details_btn {
    position: relative;
    top: 280px;
    display: flex;
    justify-content: end;
}



@media screen and (max-width:820px) {
    .project_section .project_main .project_details_btn {
        top: 70px;
    }

    .project_section .project-2 .project2-details_btn {
        position: relative !important;
        top: -240px !important;
    }

    .project_section .project-3 .project_details_btn3 {
        position: relative !important;
        top: -240px !important;
    }

    .project_section .project-4 .project_details_btn4 {
        position: relative !important;
        top: -140px !important;
    }
}

@media screen and (max-width:768px) {
    .project_section .project_main .project_details_btn {
        top: 200px;
    }

    .project_section .project-2 .project2-details_btn {
        position: relative !important;
        top: -9px !important;
    }

    .project_section .project-3 .project_details_btn3 {
        position: relative !important;
        top: -15px !important;
    }

    .project_section .project-4 .project_details_btn4 {
        position: relative !important;
        top: 75px !important;
    }
}

.project_section .project_main .project_details_btn svg {
    cursor: pointer;
}

    .project_section .project_main .project_details_btn svg:hover circle {
        stroke: #4A5EE5;
    }

    .project_section .project_main .project_details_btn svg:hover path {
        stroke: #4A5EE5;
    }



.project_section .project_main .project_details h1 {
    color: #FFF;
    font-family: Arial;
    font-size: 60px;
    font-weight: 400;
}

.project_section .project_main .project_details h2 {
    color: #FFF;
    font-family: Arial;
    font-size: 40px;
    font-weight: 400;
}

.project_section .project_main .project_details p {
    color: #D9D9D9;
    font-family: Manrope;
    font-size: 19px;
    font-weight: 400;
}


.project1_accordian {
    position: relative;
    top: 350px;
    left: 100px;
    z-index: 999999;
    height: 505px !important;
    width: 100%;
    display: none;
}

@media screen and (max-width:830px) {
    .project1_accordian {
        top: 197px;
    }
}



@media screen and (max-width:1030px) {
    .project1_accordian,
    .project2_accordian,
    .project3_accordian,
    .project4_accordian {
        left: 0 !important;
        height: 100% !important;
        margin-bottom: 100px !important;
    }

        .project1_accordian .left-side,
        .project2_accordian .left-side,
        .project3_accordian .left-side,
        .project4_accordian .left-side {
            width: 100% !important;
        }

        .project1_accordian .right-side,
        .project2_accordian .right-side,
        .project3_accordian .right-side,
        .project4_accordian .right-side {
            width: 100% !important;
            height: 180px !important;
        }

        .project1_accordian .left-side p,
        .project2_accordian .left-side p,
        .project3_accordian .left-side p,
        .project4_accordian .left-side p {
            width: 100% !important;
        }

        .project1_accordian .right-side .mobile_ico,
        .mobile_ico2,
        .mobile_ico3 {
            display: none !important;
        }

        .project2_accordian .right-side .mobile_ico,
        .mobile_ico2,
        .mobile_ico3 {
            display: none !important;
        }

        .project3_accordian .right-side .mobile_ico,
        .mobile_ico2,
        .mobile_ico3 {
            display: none !important;
        }

        .project4_accordian .right-side .mobile_ico,
        .mobile_ico2,
        .mobile_ico3 {
            display: none !important;
        }

        .project1_accordian .right-side .circle_hidden_phone {
            display: none !important;
        }

        .project2_accordian .right-side .circle_hidden_phone {
            display: none !important;
        }

        .project3_accordian .right-side .circle_hidden_phone {
            display: none !important;
        }

        .project4_accordian .right-side .circle_hidden_phone {
            display: none !important;
        }
}

@media screen and (max-width:600px) {

    .project1_accordian .left-side ul,
    .project2_accordian .left-side ul,
    .project3_accordian .left-side ul,
    .project4_accordian .left-side ul {
        font-size: 13px !important;
    }

    .project1_accordian .right-side,
    .project2_accordian .right-side,
    .project3_accordian .right-side,
    .project4_accordian .right-side {
        width: 100% !important;
        height: 130px !important;
    }

    .project1_accordian .left-side .horizontal_line,
    .project2_accordian .left-side .horizontal_line,
    .project3_accordian .left-side .horizontal_line,
    .project4_accordian .left-side .horizontal_line {
        width: 390px !important;
    }
}

@media screen and (max-width:414px) {
    .project1_accordian .left-side .horizontal_line,
    .project2_accordian .left-side .horizontal_line,
    .project3_accordian .left-side .horizontal_line,
    .project4_accordian .left-side .horizontal_line {
        width: 290px !important;
    }
}

@media screen and (max-width:830px) {
    .project4_accordian {
        top: 50px !important;
    }
}

.project2_accordian {
    position: relative;
    top: 50px;
    left: 100px;
    z-index: 999999;
    height: 500px;
    width: 100%;
    display: none;
}

.project3_accordian {
    position: relative;
    top: 50px;
    left: 100px;
    z-index: 999999;
    height: 650px;
    width: 100%;
    display: none;
}

.project4_accordian {
    position: relative;
    top: 100px;
    left: 100px;
    z-index: 999999;
    height: 500px;
    width: 100%;
    display: none;
}

.project1_accordian .left-side h6 {
    color: #000;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.project2_accordian .left-side h6 {
    color: #000;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.project3_accordian .left-side h6 {
    color: #000;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.project4_accordian .left-side h6 {
    color: #000;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.project1_accordian .left-side .horizontal_line {
    background: #000;
    height: 1.5px;
    width: 422px;
}

.project2_accordian .left-side .horizontal_line {
    background: #000;
    height: 1.5px;
    width: 422px;
}

.project3_accordian .left-side .horizontal_line {
    background: #000;
    height: 1.5px;
    width: 422px;
}

.project4_accordian .left-side .horizontal_line {
    background: #000;
    height: 1.5px;
    width: 422px;
}

.project1_accordian .left-side p {
    margin-top: 10px;
    width: 319px;
    color: #5C5C5C;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.project2_accordian .left-side p {
    margin-top: 10px;
    width: 319px;
    color: #5C5C5C;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.project3_accordian .left-side p {
    margin-top: 10px;
    width: 319px;
    color: #5C5C5C;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.project4_accordian .left-side p {
    margin-top: 10px;
    width: 319px;
    color: #5C5C5C;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}


.project1_accordian .right-side {
    border-radius: 23px;
    background: #0A2540;
    width: 501px;
    height: 365px;
    padding: 20px;
}

.project2_accordian .right-side {
    border-radius: 23px;
    background: #0A2540;
    width: 501px;
    height: 365px;
    padding: 20px;
}

.project3_accordian .right-side {
    border-radius: 23px;
    background: #0A2540;
    width: 501px;
    height: 365px;
    padding: 20px;
}

.project4_accordian .right-side {
    border-radius: 23px;
    background: #0A2540;
    width: 501px;
    height: 365px;
    padding: 20px;
}

.project1_accordian .right-side .mobile_ico {
    position: relative;
    top: -80px;
}

.project2_accordian .right-side .mobile_ico {
    position: relative;
    top: -80px;
}

.project3_accordian .right-side .mobile_ico {
    position: relative;
    top: -80px;
}

.project4_accordian .right-side .mobile_ico {
    position: relative;
    top: -80px;
}

.project1_accordian .right-side .mobile_ico img {
    width: 150px;
}

.project2_accordian .right-side .mobile_ico img {
    width: 150px;
}

.project3_accordian .right-side .mobile_ico img {
    width: 150px;
}

.project4_accordian .right-side .mobile_ico img {
    width: 150px;
}

.project1_accordian .right-side .mobile_ico2 {
    position: relative;
    top: -272px;
}

.project2_accordian .right-side .mobile_ico2 {
    position: relative;
    top: -272px;
}

.project3_accordian .right-side .mobile_ico2 {
    position: relative;
    top: -272px;
}

.project4_accordian .right-side .mobile_ico2 {
    position: relative;
    top: -272px;
}

.project1_accordian .right-side .mobile_ico2 img {
    width: 150px;
}

.project2_accordian .right-side .mobile_ico2 img {
    width: 150px;
}

.project3_accordian .right-side .mobile_ico2 img {
    width: 150px;
}

.project4_accordian .right-side .mobile_ico2 img {
    width: 150px;
}

.project1_accordian .right-side .mobile_ico3 {
    position: relative;
    top: -272px;
}

.project2_accordian .right-side .mobile_ico3 {
    position: relative;
    top: -272px;
}

.project3_accordian .right-side .mobile_ico3 {
    position: relative;
    top: -272px;
}

.project4_accordian .right-side .mobile_ico3 {
    position: relative;
    top: -272px;
}

.project1_accordian .right-side .mobile_ico3 img {
    width: 150px;
}

.project2_accordian .right-side .mobile_ico3 img {
    width: 150px;
}

.project3_accordian .right-side .mobile_ico3 img {
    width: 150px;
}

.project4_accordian .right-side .mobile_ico3 img {
    width: 150px;
}

.project1_accordian .right-side .bottom_ico {
    position: relative;
    top: -158px;
}

.project2_accordian .right-side .bottom_ico {
    position: relative;
    top: -158px;
}

.project3_accordian .right-side .bottom_ico {
    position: relative;
    top: -158px;
}

.project4_accordian .right-side .bottom_ico {
    position: relative;
    top: -158px;
}

.project-2 {
    background-color: white;
    padding: 60px 20px !important;
}


    .project-2 .project2-details h1 {
        color: #000;
        font-family: Arial;
        font-size: 60px;
        font-weight: 400;
    }

    .project-2 .project2-details h2 {
        color: #000;
        font-family: Arial;
        font-size: 40px;
        font-weight: 400;
    }

    .project-2 .project2-details p {
        color: #000;
        font-family: Manrope;
        font-size: 19px;
        font-weight: 400;
    }

.project_section .project-2 .project2-details_btn svg {
    cursor: pointer;
}

    .project_section .project-2 .project2-details_btn svg:hover circle {
        stroke: #4A5EE5;
    }

    .project_section .project-2 .project2-details_btn svg:hover path {
        stroke: #4A5EE5;
    }

.project-3 {
    background-color: #0A2540;
    padding: 60px 0px;
    position: relative;
    z-index: 9999;
}

    .project-3 .project_details3 h1 {
        color: #FFF;
        font-family: Arial;
        font-size: 60px;
        font-weight: 400;
    }

    .project-3 .project_details3 h2 {
        color: #FFF;
        font-family: Arial;
        font-size: 40px;
        font-weight: 400;
    }

    .project-3 .project_details3 p {
        color: #D9D9D9;
        font-family: Manrope;
        font-size: 19px;
        font-weight: 400;
    }


    .project-3 .project_details_btn3 svg {
        cursor: pointer;
    }

        .project-3 .project_details_btn3 svg:hover circle {
            stroke: #4A5EE5;
        }

        .project-3 .project_details_btn3 svg:hover path {
            stroke: #4A5EE5;
        }

.project_section .project-4 {
    background: url('/content/assets/images/project_bg2.png');
    height: 390px;
    background-position: bottom;
    position: relative;
    z-index: 99999;
}

@media screen and (min-width: 1921px) and (max-width: 3000px) {
    .project_section .project-4 {
        background-position: center !important;
    }

    .project_section .project_main {
        background-position: center !important;
    }
}

@media screen and (max-width:830px) {
    .project_section .project-4 {
        background-position: center;
    }
}

.project_section .project-4 .project_details4 {
    display: flex;
    position: relative;
    top: 80px;
}

    .project_section .project-4 .project_details4 h1 {
        color: #FFF;
        font-family: Arial;
        font-size: 60px;
        font-weight: 400;
    }

    .project_section .project-4 .project_details4 h2 {
        color: #FFF;
        font-family: Arial;
        font-size: 40px;
        font-weight: 400;
    }

    .project_section .project-4 .project_details4 p {
        color: #D9D9D9;
        font-family: Manrope;
        font-size: 19px;
        font-weight: 400;
    }

.project_section .project-4 .project_details_btn4 {
    position: relative;
    top: 80px;
    display: flex;
    justify-content: end;
}

    .project_section .project-4 .project_details_btn4 svg {
        cursor: pointer;
    }

        .project_section .project-4 .project_details_btn4 svg:hover circle {
            stroke: #4A5EE5;
        }

        .project_section .project-4 .project_details_btn4 svg:hover path {
            stroke: #4A5EE5;
        }


@media screen and (max-width:600px) {
    .project_section .project_main .project_details {
        width: 70%;
    }

    .project_section .project_main .project_details_btn {
        width: 30%;
    }

    .project_section .project_main {
        height: 570px;
    }

        .project_section .project_main .project_details h2 {
            font-size: 25px;
        }

        .project_section .project_main .project_details p {
            font-size: 13px;
        }

    .project-2 .project2-details {
        width: 70%;
    }

    .project-3 .project_details3 {
        width: 70%;
    }

    .project-2 .project2-details_btn {
        width: 30%;
    }

    .project-3 .project_details_btn3 {
        width: 30%;
    }

    .project-2 .project2-details h2 {
        font-size: 25px;
    }

    .project-3 .project_details3 h2 {
        font-size: 25px;
    }

    .project-2 .project2-details p {
        font-size: 13px;
    }

    .project-3 .project_details3 p {
        font-size: 13px;
    }

    .project-3 .project_details3 {
        font-size: 25px;
    }

    .project_section .project_main .project_details h1 {
        font-size: 40px;
    }

    .project-2 .project2-details h1 {
        font-size: 40px;
    }

    .project-3 .project_details3 h1 {
        font-size: 40px;
    }

    .project_section .project_main .project_details .project_name1 {
        margin-left: 10px !important;
    }

    .project-2 .project2-details .project_name2 {
        margin-left: 10px !important;
    }

    .project-3 .project_details3 .project_name3 {
        margin-left: 10px !important;
    }

    .project_section .project-4 .project_details4 {
        width: 70%;
    }

    .project_section .project-4 .project_details_btn4 {
        width: 30%;
    }

    .project_section .project-4 .project_details4 h1 {
        font-size: 40px;
    }

    .project_section .project-4 .project_details4 h2 {
        font-size: 25px;
    }

    .project_section .project-4 .project_details4 p {
        font-size: 13px;
    }

    .project_section .project-4 .project_details4 .project_name4 {
        margin-left: 10px !important;
    }

    .project_section .project-4 {
        height: 400px;
    }
}


/* Testimonial  */

.testimonial_section {
    padding-top: 50px;
    width: 100%;
    position: relative;
    background: #ffff;
    padding: 100px 0px;
    /* min-height: 80vh;*/
}

@media screen and (max-width:1040px) {
    .testimonial_section {
        background: #ffff;
        padding-top: 100px !important;
        /*min-height: 100vh;*/
    }
}
/* --------------------------------------------------------------------------------*/

.testimonial_section .testimonial_head {
    display: flex;
    justify-content: center;
}

    .testimonial_section .testimonial_head h2 {
        color: #000;
        text-align: center;
        font-family: Arial;
        font-size: 53px;
        font-style: normal;
        font-weight: 500;
        line-height: 115%;
    }

@media screen and (max-width:600px) {
    .testimonial_head h2 {
        font-size: 40px !important;
    }
}

.testimonial_section .testimonial_head p {
    color: #50565C;
    text-align: center;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.testimonial_section .testimonial_main {
    width: 100%;
    display: flex;
    column-gap: 30px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 20px;
}

@media screen and (max-width:600px) {
    .testimonial_section .testimonial_main {
        flex-direction: column;
        flex-wrap: wrap !important;
        align-items: start;
        overflow: hidden !important;
    }

        .testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile {
            width: 100%;
        }

            .testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile .testimonial_details {
                display: none;
            }

        .testimonial_section .testimonial_main .testimonials_profile_main {
            display: flex;
            margin-top: 20px;
        }

            .testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile {
                width: 95px !important;
            }

    .testimonial_section .testimonial_main {
        flex-direction: column-reverse !important;
    }
}

@media screen and (max-width:390px) {
    .testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile {
        width: 85px !important;
    }
}

@media screen and (max-width:360px) {
    .testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile {
        width: 80px !important;
    }
}


.testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile {
    width: 270px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 25px;
    cursor: pointer;
    opacity: 0.6;
}

@media screen and (max-width:1030px) {
    .testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile {
        width: 220px;
    }
}

@media screen and (max-width:830px) {
    .testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile {
        width: 250px;
    }
}

.testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile:hover {
    opacity: 1;
}

.testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile_active {
    opacity: 1;
}

.testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile .testimonial_img {
    padding: 3px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #AD54EA;
    display: flex;
    justify-content: center;
}

/* ===================================================================================================================*/

.active_testimonial p {
    line-height: 1.5 !important;
    letter-spacing: 0.5px !important;
    font-size: 20px !important;
}

.testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile .testimonial_details h6 {
    color: #000;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.testimonial_section .testimonial_main .testimonials_profile_main .testimonial_profile .testimonial_details p {
    color: #7E7E7E;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.testimonial_section .testimonial_main .testimonial_boxes {
    transition: 0.6s linear;
}

    .testimonial_section .testimonial_main .testimonial_boxes .testimonial_box {
        /* transform: scale(.8); */
        transition: 0.4s ease-in-out;
        flex-shrink: 0 !important;
    }

    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial {
        transform: scale(1);
        width: 637px !important;
        height: 360px !important;
        padding: 20px !important;
        border-radius: 30.251px !important;
        background: #E6FCF1 !important;
    }


@media screen and (max-width:830px) {
    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial {
        width: 450px !important;
    }

        .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_1 p {
            font-size: 20px !important;
        }

        .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_2 p {
            font-size: 20px !important;
        }

        .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_3 p {
            font-size: 20px !important;
        }

        .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_4 p {
            font-size: 20px !important;
        }
}

@media screen and (max-width:770px) {
    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial {
        width: 400px !important;
        height: 360px !important;
    }

        .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_1 p {
            font-size: 16px !important;
        }

        .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_2 p {
            font-size: 16px !important;
        }

        .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_3 p {
            font-size: 16px !important;
        }

        .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_4 p {
            font-size: 16px !important;
        }

    .active_testimonial p {
        font-size: 17px !important;
    }
}

@media screen and (max-width: 710px) {
    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial {
        width: 350px !important;
        height: 415px !important;
    }
}

@media screen and (max-width:600px) {
    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial {
        width: 490px !important;
        height: 335px !important;
        padding: 10px !important;
    }

        .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_1 p {
            font-size: 18px !important;
            padding: 10px !important;
        }

        .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_2 p {
            font-size: 18px !important;
            padding: 10px !important;
        }

        .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_3 p {
            font-size: 18px !important;
            padding: 10px !important;
        }

        .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_4 p {
            font-size: 16px !important;
            padding: 10px !important;
        }
}


@media screen and (max-width:530px) {
    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial {
        width: 431px !important;
        height: 342px !important;
    }
}

@media screen and (max-width:465px) {
    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial {
        width: 380px !important;
        height: 324px !important;
    }

    .active_testimonial p {
        font-size: 15px !important;
    }
}

@media screen and (max-width:412px) {
    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial {
        width: 342px !important;
        height: 320px !important;
    }

    .active_testimonial p {
        font-size: 14px !important;
    }
}

@media screen and (max-width:360px) {
    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial {
        width: 310px !important;
    }
}


.testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_1 {
    height: 100%;
    width: 100%;
    background: #E6FCF1 !important;
}

    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_1 p {
        color: #50565C;
        font-family: Manrope;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 129.49%;
    }

.testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_2 {
    height: 100%;
    width: 100%;
    background: #E6FCF1 !important;
}

    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_2 p {
        color: #50565C;
        font-family: Manrope;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 129.49%;
    }

.testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_3 {
    height: 100%;
    width: 100%;
    background: #E6FCF1 !important;
}

    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_3 p {
        color: #50565C;
        font-family: Manrope;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 129.49%;
    }

.testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_4 {
    height: 100%;
    width: 100%;
    background: #E6FCF1 !important;
}

    .testimonial_section .testimonial_main .testimonial_boxes .active_testimonial .testimonial_4 p {
        color: #50565C;
        font-family: Manrope;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 129.49%;
    }

.active_testimonial p {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.testimonial_section .testimonial_main .testimonial_1 {
    width: 348px;
    height: 210px;
    flex-shrink: 0;
    padding: 20px;
    border-radius: 16.527px;
    background: #F8F8F8;
}

.testimonial_section .testimonial_main .testimonial_2 {
    width: 348px;
    height: 210px;
    flex-shrink: 0;
    padding: 20px;
    border-radius: 16.527px;
    background: #F0F7FE;
}

.testimonial_section .testimonial_main .testimonial_3 {
    width: 348px;
    height: 210px;
    flex-shrink: 0;
    padding: 20px;
    border-radius: 16.527px;
    background: #F8F8F8;
}

.testimonial_section .testimonial_main .testimonial_4 {
    width: 348px;
    height: 210px;
    flex-shrink: 0;
    padding: 20px;
    border-radius: 16.527px;
    background: #F0F7FE;
}

.testimonial_section .testimonial_main .testimonial_1 .ratings {
    display: flex;
    justify-content: end;
}

.testimonial_section .testimonial_main .testimonial_2 .ratings {
    display: flex;
    justify-content: end;
}

.testimonial_section .testimonial_main .testimonial_3 .ratings {
    display: flex;
    justify-content: end;
}

.testimonial_section .testimonial_main .testimonial_4 .ratings {
    display: flex;
    justify-content: end;
}

.testimonial_section .testimonial_main .testimonial_1 p {
    color: #50565C;
    font-family: Manrope;
    font-size: 12.019px;
    font-style: normal;
    font-weight: 400;
    line-height: 129.49%;
    padding: 20px 10px;
}

.testimonial_section .testimonial_main .testimonial_2 p {
    color: #50565C;
    font-family: Manrope;
    font-size: 12.019px;
    font-style: normal;
    font-weight: 400;
    line-height: 129.49%;
    padding: 20px 10px;
}

.testimonial_section .testimonial_main .testimonial_3 p {
    color: #50565C;
    font-family: Manrope;
    font-size: 12.019px;
    font-style: normal;
    font-weight: 400;
    line-height: 129.49%;
    padding: 20px 10px;
}

.testimonial_section .testimonial_main .testimonial_4 p {
    color: #50565C;
    font-family: Manrope;
    font-size: 12.019px;
    font-style: normal;
    font-weight: 400;
    line-height: 129.49%;
    padding: 20px 10px;
}


/* -----------------  contact form media ---------- */
@media screen and (max-width:1442px) {
    .contact_main_div {
        margin: 0px auto !important;
        width: 95% !important;
    }

        .contact_main_div .contact_information_div .social_icons .social_img a svg {
            height: 44px;
            width: 44px;
        }
}


/* Contact form  CSS*/

.contact_form {
    margin-top: 50px;
}

    .contact_form .form_heading {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
    }

        .contact_form .form_heading h2 {
            color: #000;
            text-align: center;
            font-family: Arial;
            font-size: 60px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

.contact_main_div {
    width: 145vh;
    margin-left: 100px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.25);
}

.contact_information_div {
    border-radius: 20px;
    background: #F2F9FF;
}


.contact_main_div .contact_information_div h3 {
    color: #000;
    font-family: Arial;
    font-size: 25.412px;
    font-style: normal;
    font-weight: 500;
}

.contact_main_div .contact_information_div p {
    color: #50565C;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-top: 10px;
}

.contact_main_div .contact_information_div .cnt_detail p {
    margin-top: 20px;
    color: #50565C;
    font-family: Manrope;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

    .contact_main_div .contact_information_div .cnt_detail p span {
        margin-right: 10px;
    }

.contact_main_div .contact_information_div .social_icons {
    display: flex;
    justify-content: center;
    padding: 0px 20px;
    margin-top: 30%;
    gap: 20px;
}

    .contact_main_div .contact_information_div .social_icons .social_img a svg {
        height: 42px;
        width: 42px;
    }

    .contact_main_div .contact_information_div .social_icons .social_img a:hover svg rect {
        stroke: #4A5EE5 !important;
    }

    .contact_main_div .contact_information_div .social_icons .social_img a:hover svg path {
        stroke: #4A5EE5 !important;
    }


.contact_main_div .input_main .input_div {
    display: flex;
    justify-content: space-around;
}

.contact_main_div .input_main .textarea_div {
    display: flex;
    justify-content: space-around;
    margin-top: 60px !important;
}

    .contact_main_div .input_main .textarea_div .privacy {
        display: flex;
        justify-content: space-between;
        margin-top: -20px;
    }


        .contact_main_div .input_main .textarea_div .privacy .content .lock_svg {
            margin-left: 28px;
            display: flex;
            justify-content: flex-start;
        }

@media screen and (max-width:600px) {
    .contact_main_div .input_main .textarea_div .privacy .content .lock_svg {
        margin: 0px !important;
    }
}

.contact_main_div .input_main .textarea_div .privacy .content .privacy_btn {
    margin-left: 10px;
}

    .contact_main_div .input_main .textarea_div .privacy .content .privacy_btn a {
        text-decoration: none;
    }

.contact_main_div .input_main .textarea_div .privacy .content p {
    color: #666;
    font-family: Manrope;
    font-size: 15px;
    font-weight: 400;
}

    .contact_main_div .input_main .textarea_div .privacy .content p a {
        color: #666;
        font-family: Manrope;
        font-size: 15px;
        font-weight: 400;
    }

@media screen and (max-width:600px) {
    .contact_main_div .input_main .textarea_div .privacy .content p {
        font-size: 13px;
    }

        .contact_main_div .input_main .textarea_div .privacy .content p a {
            font-size: 13px;
        }

    .contact_main_div .input_main .textarea_div .privacy .content .lock_svg svg {
        height: 30px;
        width: 30px;
    }

    .contact_main_div .contact_information_div .social_icons .social_img a svg {
        height: 40px;
        width: 40px;
    }

    .contact_form .form_heading h2 {
        font-size: 40px;
    }
}

.contact_main_div .input_main .textarea_div .privacy .content p a:hover {
    color: #4A5EE5;
}

.contact_main_div .input_main .textarea_div textarea {
    border: none;
    border-bottom: 2px solid #666 !important;
    width: 100%;
}

    .contact_main_div .input_main .textarea_div textarea:focus {
        border-bottom: 2px solid #009788 !important;
    }

.contact_main_div .input_main .input_fields input {
    border-bottom: 1px solid #666 !important;
    width: 100%;
    height: 38px;
    border: none;
    padding: 20px 0;
    color: #666;
    font-family: Manrope;
    font-size: 15px;
    font-weight: 400;
    border-radius: 0px;
}

    .contact_main_div .input_main .input_fields input:focus {
        border-bottom: 2px solid #009788 !important;
    }

.contact_main_div .input_main .form_btn {
    display: flex;
    justify-content: flex-end;
    padding-right: 70px;
}

    .contact_main_div .input_main .form_btn button {
        border-radius: 8px;
        background: #000;
        width: 177.882px;
        height: 54.635px;
        flex-shrink: 0;
        color: #FFF;
        font-family: Arial;
        font-size: 15px;
        font-weight: 400;
    }

        .contact_main_div .input_main .form_btn button:hover {
            background-color: #F2F9FF;
            border: 1px solid #4A5EE5;
            color: #4A5EE5;
        }


@media screen and (max-width:1400px) {
    .contact_main_div .input_main .form_btn {
        justify-content: center;
    }
}

@media screen and (max-width:1030px) {

    .contact_main_div .contact_information_div .social_icons {
        margin-top: 10px !important;
        justify-content: flex-start !important;
    }

    .contact_information_div {
        margin-top: 23px;
        width: 100%;
    }

    .contact_main_div .input_main {
        width: 100%;
    }
}

@media screen and (max-width:767px) {
    .contact_main_div .input_main .input_div {
        margin-top: 0px !important;
    }

    .contact_main_div .input_main .textarea_div {
        margin-top: 40px !important;
    }

        .contact_main_div .input_main .textarea_div textarea {
            margin-top: 50px;
        }

    .contact_main_div .input_main .input_div .input_fields {
        margin-top: 20px;
    }

    .contact_information_div {
        margin-top: 23px;
    }
}

.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
    font-size: 16px;
    cursor: text;
    top: -45px;
}

.form__field:placeholder-shown ~ .form__label_textarea {
    font-size: 16px;
    cursor: text;
    top: -80px;
}

label,
.form__field:focus ~ .form__label {
    position: relative;
    top: -50px;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: #9b9b9b;
}

.form__label_textarea,
.form__field:focus ~ .form__label_textarea {
    position: relative;
    top: -90px;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: #9b9b9b;
}

.form__field:focus ~ .form__label {
    color: #009788;
}

.form__field:focus ~ .form__label_textarea {
    color: #009788;
}



/* Footer CSS  */

.footer_section {
    margin-top: 100px;
    background-color: #F2F9FF;
    padding: 60px 0px 0px 0px;
    height: 900px;
}

    .footer_section h6 {
        color: #000;
        font-family: Arial;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .footer_section ul {
        padding: 0px;
    }

        .footer_section ul li {
            list-style: none;
        }

            .footer_section ul li a {
                text-decoration: none;
                color: #5C5C5C;
                font-family: Manrope;
                font-size: 15px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
            }

                .footer_section ul li a:hover {
                    color: #4A5EE5;
                }

    .footer_section .horizontal_line {
        display: flex;
        justify-content: center;
    }

        .footer_section .horizontal_line hr {
            width: 95%;
            opacity: 0.2;
            background: rgba(0, 0, 0, 0.51);
        }

    .footer_section .company_detail p {
        color: #5C5C5C;
        font-family: Arial;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
        width: 90%;
    }

    .footer_section .info_secttion h5 {
        color: #000;
        font-family: Arial;
        font-size: 21.126px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
    }

    .footer_section .info_secttion ul li a {
        color: #5C5C5C;
        font-family: Manrope;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
    }

        .footer_section .info_secttion ul li a:hover {
            color: #4A5EE5;
        }

    .footer_section .footer_social svg:hover {
        cursor: pointer;
    }

        .footer_section .footer_social svg:hover rect {
            stroke: black;
        }

        .footer_section .footer_social svg:hover path {
            stroke: black;
        }

    .footer_section .copyright p {
        color: #5C5C5C;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 199.49%;
    }

@media screen and (max-width:600px) {
    .footer_section {
        height: 2180px !important;
    }

        .footer_section .industry-item {
            flex-direction: column;
        }
}


@media screen and (max-width:1030px) {
    .footer_section {
        height: 950px;
    }

        .footer_section .horizontal_line hr {
            width: 95%;
        }

        .footer_section .info_secttion_main {
            padding: 10px !important;
        }

        .footer_section .footer_social {
            padding: 10px !important;
        }

        .footer_section .copyright {
            padding: 10px !important;
            justify-content: center !important;
        }

        .footer_section .company_detail {
            padding: 10px !important;
        }
}

@media only screen and (max-width:830px) {
    .footer_section {
        height: auto !important;
    }

        .footer_section .company_detail {
            align-items: start !important;
            flex-direction: column;
        }

        .footer_section .info_secttion_main {
            justify-content: start !important;
            align-items: start !important;
            margin: 0;
            padding: 0;
        }

        .footer_section .footer_social {
            justify-content: start !important;
            align-items: start !important;
            margin: 0;
            padding: 0;
        }

        .footer_section .copyright {
            justify-content: start !important;
            margin: 0;
            padding: 0;
        }
}

/*@media only screen and (max-width:768px) {
    .footer_section {
        height: 950px !important;
    }

        .footer_section .footer_social {
            padding: 0 !important;
        }

            .footer_section .footer_social .social_divvv {
                gap: 3px !important;
            }
}*/

@media only screen and (max-width:576px) {
    .contact_main_div {
        width: 46vh;
    }
}

@media screen and (max-width:600px) {
    .footer_section {
        height: auto !important;
    }

        .footer_section .footer_social {
            padding: 10px !important;
        }
}

@media screen and (max-width:414px) {
    .footer_section {
        height: 247vh !important;
    }
}

@media screen and (max-width:390px) {
    .footer_section {
        height: 260vh !important;
    }
}

@media screen and (max-width:375px) {
    .footer_section {
        height: 330vh !important;
    }
}

@media screen and (max-width:360px) {
    .footer_section {
        height: 300vh !important;
    }
}






/*Blog section */

.blog_section {
    padding: 0px 0px 60px;
    height: 100%;
    position: relative;
    overflow: hidden !important;
    background: #ffff;
}

/* .blog_section .blog-left-side-img {
        background-image: url('/content/blog_bg.png');
        background-position: right;
        background-size: cover;
        background-repeat: no-repeat;
        height: 130vh;
    }*/

@media screen and (max-width:1030px) {
    .blog_section .blog-left-side-img {
        height: 80vh;
    }
}

@media screen and (max-width:830px) {
    .blog_section .blog-left-side-img {
        height: 95vh;
    }
}

@media screen and (max-width:600px) {
    .blog_section .blog-left-side-img {
        display: none;
    }
}

.blog_section .blog_slider_row {
    background: linear-gradient(40deg, #c3c3c391, #ffffffc9), url(https://img.freepik.com/free-vector/paper-style-white-monochrome-background_52683-67582.jpg?t=st=1717134604~exp=1717138204~hmac=5ec3bca…&w=1380);
    background-size: cover;
    background-position: center;
}

.blog_section .right-side-content {
    padding: 7rem 15rem 7rem 7rem;
    min-height: 1008px;
}

    .blog_section .right-side-content .right-side-content-inner {
        max-width: 45rem;
    }

@media screen and (max-width:600px) {
    .blog_section .right-side-content .right-side-content-inner h2 {
        font-size: 1.5rem !important;
    }

    .blog_section .right-side-content {
        padding: 2rem !important;
    }
}

.blog_section .right-side-content .right-side-content-inner h2 {
    font-size: 3rem;
    font-weight: 600;
}

@media screen and (max-width : 1200px) {
    .blog_section .right-side-content .right-side-content-inner h2 {
        font-size: 2rem !important;
    }
}

.blog_section .right-side-content .right-side-content-inner p {
    color: gray;
    font-size: .9rem;
    font-weight: 600;
    margin-top: 1rem;
}

.blog_section .right-side-content .right-side-content-inner .our_gradient_lnks {
    margin-top: 2.5rem;
    border-bottom: 2px solid #000;
    width: 11rem;
    height: 2.3rem;
}

    .blog_section .right-side-content .right-side-content-inner .our_gradient_lnks a {
        color: #000;
        font-size: .9rem;
        font-weight: 600;
        padding: .7rem 0rem .7rem 0;
    }

        .blog_section .right-side-content .right-side-content-inner .our_gradient_lnks a:hover {
            padding-left: .7rem;
            transition: all .2s;
        }

.blog_section .blog-card-main {
    position: absolute;
    top: 26rem;
}

@media screen and (max-width : 992px) {
    /*  .blog_section .blog-card-main {
        position: absolute;
        top: 9rem;
    }*/

    .blog_section .right-side-content {
        padding: 4rem 15rem 7rem 7rem;
    }

    .blog_section .blog_card_btns {
        display: none;
    }

        .blog_section .blog_card_btns .left_blog_btn {
            /* top: 35rem !important; */
            left: 45% !important;
        }

        .blog_section .blog_card_btns .right_blog_btn {
            /* top: 35rem !important;  */
            left: 65%;
        }
}

@media screen and (max-width:600px) {
    .blog_section .blog-card-main {
        top: 24rem;
    }

    .blog_section .right-side-content {
        min-height: 843px;
    }

    .blog_section .blog-card-main .blog-card-row {
        width: 177rem !important;
    }
}

.blog_section .blog-card-main .blog-card-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 4rem;
    margin-left: 2rem;
    margin-right: 2rem;
    overflow-x: auto;
}

    .blog_section .blog-card-main .blog-card-row .blog-card {
        width: 22rem !important;
        border-radius: 1rem;
        background: #FFF;
        box-shadow: 0 1px 2px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        transition: all 0.3s cubic-bezier(.25,.8,.25,1);
        padding: 1rem;
        margin-bottom: 1rem;
    }

        .blog_section .blog-card-main .blog-card-row .blog-card a {
            color: #000;
        }

        .blog_section .blog-card-main .blog-card-row .blog-card:hover {
            box-shadow: 0 10px 10px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
        }

        .blog_section .blog-card-main .blog-card-row .blog-card img {
            width: 100%;
            height: 9rem;
        }

        .blog_section .blog-card-main .blog-card-row .blog-card .blog-content {
            margin-top: 1rem;
        }

            .blog_section .blog-card-main .blog-card-row .blog-card .blog-content h6 {
                font-size: 1rem;
                line-height: 1.5rem;
            }

                .blog_section .blog-card-main .blog-card-row .blog-card .blog-content h6:hover {
                    text-decoration: underline;
                }

            .blog_section .blog-card-main .blog-card-row .blog-card .blog-content p {
                font-size: 1.125rem;
                line-height: 1.75rem;
            }

                .blog_section .blog-card-main .blog-card-row .blog-card .blog-content p span {
                    font-size: 2rem;
                    color: #F66135;
                }

        .blog_section .blog-card-main .blog-card-row .blog-card .blog-author {
            margin-top: 3rem;
        }

            .blog_section .blog-card-main .blog-card-row .blog-card .blog-author h6 {
                font-size: 1rem;
                font-weight: 700;
            }

            .blog_section .blog-card-main .blog-card-row .blog-card .blog-author p {
                font-size: .9rem;
                line-height: 1.75rem;
            }

.blog_section .blog_card_btns {
    display: flex;
    justify-content: center;
    width: 10rem;
}

    .blog_section .blog_card_btns button {
        background: none;
        border: 2px solid #c3c3c3;
        border-radius: 50%;
        padding: .3rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .blog_section .blog_card_btns button i {
            font-size: 2rem;
            color: #F66135;
        }

.blog_section .blog_card_btns {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%);
}

    /* .blog_section .blog_card_btns .left_blog_btn {
        position: absolute;
        left: 55%;
        top: 56rem;
    }

        .blog_section .blog_card_btns .left_blog_btn:hover {
            left: 54.5%;
        }

    .blog_section .blog_card_btns .right_blog_btn {
        position: absolute;
        left: 59%;
        top: 56rem;
    } */

    .blog_section .blog_card_btns .right_blog_btn:hover {
        left: 59.5%;
    }

@media screen and (max-width:600px) {
    .blog_section .blog-card-main .blog-card-row {
        margin-left: 0.8rem;
    }

    .blog_section .blog_card_btns .left_blog_btn {
        border: 2px solid #c3bfbf;
        top: 50rem !important;
        left: 42% !important;
    }

    .blog_section .blog_card_btns .right_blog_btn {
        border: 2px solid #c3bfbf;
        top: 50rem !important;
        left: 55% !important;
    }
}

/*@media screen and (max-width:1030px) {
    .blog_section .blog_card_btns .left_blog_btn {
        left: 45%;
    }

        .blog_section .blog_card_btns .left_blog_btn:hover {
            left: 53%;
        }

    .blog_section .blog_card_btns .right_blog_btn {
        left: 57%;
    }

        .blog_section .blog_card_btns .right_blog_btn:hover {
            left: 65%;
        }
}

    */


.blog_section .portfolio_details {
    height: auto;
    background: #000;
    border-radius: 1rem;
    margin-top: -2rem;
    padding: 8rem 4.5rem;
}

@media screen and (max-width:1030px) {
    .blog_section .portfolio_details {
        /* margin-top: 11rem;*/
        height: auto;
    }
}

@media screen and (max-width:992px) {
    .blog_section .blog_card_btns {
        top: 36%;
    }

    .blog_section .portfolio_details {
        margin-top: -6rem;
    }
}

@media screen and (max-width:830px) {
    .blog_section .portfolio_details {
        margin-top: -8rem;
        height: auto;
    }
}

@media screen and (max-width:600px) {
    .blog_section .portfolio_details {
        margin-top: 5rem;
        height: 100%;
        padding: 20px;
    }

    .blog_section .blog_card_btns {
        top: 41%;
    }
}

@media screen and (max-width:556px) {
    .blog_section .blog_card_btns {
        top: 37%;
    }
}

@media screen and (max-width:556px) {
    .blog_section .blog_card_btns {
        display: none;
    }
}

.blog_section .portfolio_details .left-side {
    border-right: 1px solid gray;
}

    .blog_section .portfolio_details .left-side h2 span {
        color: #F66135;
    }

    .blog_section .portfolio_details .left-side h2 {
        color: #FFF;
        font-size: 2.5rem;
        line-height: 3rem;
        font-weight: 600;
    }

    .blog_section .portfolio_details .left-side p {
        font-size: 1.25rem;
        line-height: 1.875rem;
        font-weight: 400;
        color: #C2C7CC;
    }

    .blog_section .portfolio_details .left-side .trophy_cabinate_btn {
        margin-top: 8rem;
        border-bottom: 2px solid #F66135;
        width: 14.7rem;
        padding-bottom: .6rem;
    }

@media screen and (max-width:1030px) {
    .blog_section .portfolio_details .left-side .trophy_cabinate_btn {
        margin-top: 2rem;
    }
}

.blog_section .portfolio_details .left-side .trophy_cabinate_btn a {
    font-size: 1.20rem;
    line-height: 1.875rem;
    font-weight: 500;
    color: #F66135;
    padding: 0.7rem 0;
}

    .blog_section .portfolio_details .left-side .trophy_cabinate_btn a:hover {
        padding-left: 1rem;
        transition: all .2s;
    }

@media screen and (max-width:1030px) {
    .blog_section .portfolio_details .left-side .round-circle .round-circle-inner {
        align-items: center;
        gap: 3rem;
    }

    .blog_section .portfolio_details .left-side .round-circle {
        margin-top: 2rem;
    }
}

@media screen and (max-width:830px) {
    .blog_section .portfolio_details .left-side .round-circle .rounded-text {
        width: 10rem !important;
        height: 10rem !important;
    }

    .blog_section .portfolio_details .left-side .round-circle .rounded-text2 {
        width: 10rem !important;
        height: 10rem !important;
    }

    .blog_section .portfolio_details .left-side .round-circle .rounded-text3 {
        width: 10rem !important;
        height: 10rem !important;
    }
}


.blog_section .portfolio_details .left-side .round-circle .rounded-text {
    width: 13rem;
    height: 13rem;
    text-transform: lowercase;
    letter-spacing: .7rem;
    word-spacing: .9rem;
    transform: rotate(-103deg);
    color: gray !important;
    font-weight: bold;
    z-index: -1;
}

.blog_section .portfolio_details .left-side .round-circle .rounded-text2 {
    width: 13rem;
    height: 13rem;
    text-transform: lowercase;
    letter-spacing: .5rem;
    word-spacing: .5rem;
    transform: rotate(-103deg);
    color: gray !important;
    font-weight: bold;
    z-index: -1;
}

.blog_section .portfolio_details .left-side .round-circle .rounded-text3 {
    width: 13rem;
    height: 13rem;
    text-transform: lowercase;
    letter-spacing: 1rem;
    word-spacing: .9rem;
    transform: rotate(-103deg);
    color: gray !important;
    font-weight: bold;
    z-index: -1;
}


@keyframes rotating {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.blog_section .portfolio_details .left-side .round-circle .rotating {
    animation: rotating 22s linear infinite;
}

@keyframes coloring {
    0% {
        fill: gray;
    }

    35% {
        fill: gray;
    }

    75% {
        fill: gray;
    }

    100% {
        fill: gray;
    }
}

.blog_section .portfolio_details .left-side .round-circle .rotating .coloring {
    animation: coloring 22s linear infinite;
}

.blog_section .portfolio_details .left-side .round-circle .delivered-projects {
    position: absolute;
    top: 3.3rem;
    left: 4rem;
}

    .blog_section .portfolio_details .left-side .round-circle .delivered-projects h5 {
        color: #FFF;
        font-size: 2.5rem;
        font-weight: 600;
    }

    .blog_section .portfolio_details .left-side .round-circle .delivered-projects h6 {
        color: #FFF;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5rem;
        margin-left: 2rem;
    }

@media screen and (max-width:830px) {
    /*
        .blog_section .portfolio_details .left-side .round-circle .delivered-projects {
        left: 3rem;
    }
       */

    .blog_section .portfolio_details .left-side .round-circle .delivered-projects h5 {
        font-size: 1.6rem;
        text-align: center;
    }

    .blog_section .portfolio_details .left-side .round-circle .delivered-projects h6 {
        font-size: .7rem;
        margin: 0;
    }
}


.blog_section .portfolio_details .left-side .round-circle .industry-sectors {
    position: absolute;
    top: 3.3rem;
    left: 3.5rem;
}

    .blog_section .portfolio_details .left-side .round-circle .industry-sectors h5 {
        color: #FFF;
        font-size: 2.5rem;
        font-weight: 600;
    }

    .blog_section .portfolio_details .left-side .round-circle .industry-sectors h6 {
        color: #FFF;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5rem;
        margin-left: 2rem;
    }


@media screen and (max-width:830px) {
    .blog_section .portfolio_details .left-side .round-circle .industry-sectors {
        left: 3rem;
    }

        .blog_section .portfolio_details .left-side .round-circle .industry-sectors h5 {
            font-size: 1.6rem;
            margin: 0 !important;
            text-align: center;
        }

        .blog_section .portfolio_details .left-side .round-circle .industry-sectors h6 {
            font-size: .7rem;
            margin: 0;
        }
}

.blog_section .portfolio_details .left-side .round-circle .client-rating {
    position: absolute;
    top: 3rem;
    left: 3rem;
}

    .blog_section .portfolio_details .left-side .round-circle .client-rating h5 {
        color: #FFF;
        font-size: 2.5rem;
        font-weight: 600;
    }

    .blog_section .portfolio_details .left-side .round-circle .client-rating h6 {
        color: #FFF;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5rem;
        margin-left: 2rem;
    }

@media screen and (max-width:830px) {
    .blog_section .portfolio_details .left-side .round-circle .client-rating {
        left: 4rem !important;
    }

        .blog_section .portfolio_details .left-side .round-circle .client-rating h5 {
            font-size: 1.6rem;
            margin: 0 !important;
            text-align: center;
        }

        .blog_section .portfolio_details .left-side .round-circle .client-rating h6 {
            font-size: .7rem;
            margin: 0 !important;
            text-align: center;
        }
}

@media screen and (max-width:600px) {
    .blog_section .portfolio_details .left-side .round-circle .round-circle-inner {
        flex-wrap: wrap;
        justify-content: center;
        align-items: baseline;
        gap: 23px;
    }

    .blog_section .portfolio_details .left-side .round-circle .rotating {
        width: 8rem !important;
        height: 8rem !important;
    }

    .blog_section .portfolio_details .left-side .round-circle .delivered-projects {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

        .blog_section .portfolio_details .left-side .round-circle .delivered-projects h5 {
            font-size: 16px;
        }

        .blog_section .portfolio_details .left-side .round-circle .delivered-projects h6 {
            font-size: 10px;
        }

    .blog_section .portfolio_details .left-side .round-circle .industry-sectors {
        position: absolute;
        left: 52%;
        top: 54%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

        .blog_section .portfolio_details .left-side .round-circle .industry-sectors h5 {
            font-size: 16px;
        }

        .blog_section .portfolio_details .left-side .round-circle .industry-sectors h6 {
            font-size: 10px;
        }

    .blog_section .portfolio_details .left-side .round-circle .client-rating {
        position: absolute;
        left: 52% !important;
        top: 54%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

        .blog_section .portfolio_details .left-side .round-circle .client-rating h5 {
            font-size: 16px;
        }

        .blog_section .portfolio_details .left-side .round-circle .client-rating h6 {
            font-size: 10px;
        }
}

@media screen and (max-width:1030px) {
    .blog_section .portfolio_details .right-side {
        margin-top: 2rem;
    }
}

.blog_section .portfolio_details .right-side .award-card {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

    .blog_section .portfolio_details .right-side .award-card p {
        color: #FFFFFFFF;
        text-align: center;
        font-size: 1rem;
        margin-top: 1rem;
        filter: contrast(70%);
    }

@media screen and (max-width:600px) {
    .blog_section .portfolio_details .right-side .award-card p {
        font-size: 14px !important;
    }
}

/*Team section*/

.team_section_main {
    height: auto;
    border-top-left-radius: 40%;
    border-top-right-radius: 40%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    background: #eee;
    overflow: hidden;
    margin: -16rem -10rem 0 -10rem;
    padding: 20rem 30rem;
}


@media screen and (max-width:1440px) {
    .team_section_main {
        border-top-left-radius: 0%;
        border-top-right-radius: 0%;
        border-bottom-right-radius: 0%;
        border-bottom-left-radius: 0%;
        margin: -16rem -10rem 0 -10rem;
    }
}

@media screen and (max-width:1030px) {
    .team_section_main {
        border-radius: 0;
        margin: 0;
        padding: 4rem 0rem;
        height: auto;
    }
}

@media screen and (max-width:830px) {
    .team_section_main {
        border-radius: 0;
        margin: 0;
        padding: 4rem 0rem;
        height: auto;
    }
}

@media screen and (max-width:600px) {
    .team_section_main {
        height: 100%;
    }
}

.team_section_main .head {
    display: flex;
    justify-content: center;
}

    .team_section_main .head h2 {
        color: #000 !important;
        font-size: 2.7rem;
        font-weight: 600;
        text-align: center;
        font-family: sans-serif;
    }

@media screen and (max-width:600px) {
    .team_section_main .head h2 {
        font-size: 1.7rem;
    }
}

.team_section_main .feature-section {
    display: flex;
    justify-content: center;
    margin-top: 2.2rem;
}


    .team_section_main .feature-section .check-items {
        display: flex;
        justify-content: space-between;
        gap: .7rem;
        margin-bottom: 2rem;
    }

@media screen and (max-width:1030px) {
    .team_section_main .feature-section .check-items {
        justify-content: flex-start !important;
        gap: 1rem;
    }
}


.team_section_main .feature-section .check-items .check-box i {
    font-size: 1.5rem;
    color: #F66135;
}

.team_section_main .feature-section .check-items .content h6 {
    font-size: 1.3rem;
    font-weight: 800;
}

.team_section_main .feature-section .check-items .content p {
    font-size: 1rem;
    font-weight: 500;
}

.team_section_main .team-images {
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.team-details-inner img {
    width: 210px;
}

@media screen and (max-width:600px) {
    .team_section_main .team-images {
        flex-wrap: wrap;
        gap: 30px;
        width: 100%;
    }

        .team_section_main .team-images .team-details {
            width: auto !important;
            text-align: center;
        }

            .team_section_main .team-images .team-details .team-details-inner h6 {
                font-size: 14px;
                margin-top: 5px;
            }
}

@media screen and (max-width:1030px) {
    .team_section_main .team-images .team-details .team-details-inner img {
        width: 9rem;
    }
}

@media screen and (max-width:830px) {
    .team_section_main .team-images .team-details .team-details-inner img {
        width: 8rem;
    }
}

@media screen and (max-width:600px) {
    .team_section_main .team-images .team-details .team-details-inner img {
        width: 9rem;
    }
}

.team_section_main .team-images .team-details .team-details-inner h6 {
    font-size: 1.3rem;
    line-height: 2rem;
    font-weight: 700;
    color: #C2C7CC;
    text-align: center;
    margin-top: 1rem;
}

.team_section_main .call_btn {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

    .team_section_main .call_btn h3 {
        font-size: 2.6rem;
        font-weight: 700;
        color: #C2C7CC;
    }

@media screen and (max-width:600px) {
    .team_section_main .team-images .team-details .team-details-inner h6 {
        font-size: 14px;
        margin-top: 5px;
    }

    .team_section_main .call_btn h3 {
        font-size: 1.3rem;
    }
}

.team_section_main .call_btn a {
    width: 10rem;
    margin-top: 1rem;
    background: #16A87A;
    padding: .7rem;
    border-radius: .3rem;
    color: #FFF;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.team_section_main .stepper-main {
    margin-top: 11rem;
}

@media screen and (max-width:1030px) {
    .team_section_main .stepper-main {
        margin-top: 6rem;
    }
}

.team_section_main .stepper-main .left-side h2 {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 700;
    color: #000;
}

@media screen and (max-width:600px) {
    .team_section_main .stepper-main .left-side h2 {
        font-size: 1.9rem;
    }
}

.team_section_main .stepper-main .left-side img {
    width: 30rem;
    margin-top: 2rem;
    position: absolute;
}

@media screen and (max-width:1450px) {
    .team_section_main .stepper-main .left-side img {
        display: none;
    }
}


.team_section_main .stepper-main .right-side .step-icon img {
    position: relative;
    z-index: 1;
}

@media screen and (max-width:1030px) {
    .team_section_main .stepper-main .right-side {
        margin-top: 3rem;
    }

        .team_section_main .stepper-main .right-side .stepper-item {
            margin-bottom: 2.5rem !important;
        }
}

@media screen and (max-width:830px) {
    .team_section_main .stepper-main .right-side .stepper-item {
        margin-bottom: 2rem !important;
    }
}

.team_section_main .stepper-main .right-side .stepper-item {
    margin-bottom: 2rem;
}

.team_section_main .stepper-main .right-side .content h6 {
    text-transform: uppercase;
    font-size: .9rem;
    font-weight: 600;
    color: #687580;
}

.team_section_main .stepper-main .right-side .content h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
}

.team_section_main .stepper-main .right-side .content p {
    font-size: .9rem;
    font-weight: 400;
}

.team_section_main .stepper-main .right-side .s_call_btn {
    margin-top: 2rem;
    margin-left: 4.1rem;
}

    .team_section_main .stepper-main .right-side .s_call_btn a {
        width: 10rem;
        margin-top: 1rem;
        background: #F66135;
        padding: .7rem;
        border-radius: .3rem;
        color: #FFF;
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
    }

.team_section_main .stepper-main .right-side .dashed-border {
    width: 1px;
    height: 31rem;
    border-color: #bdbdbd;
    border-style: dashed;
    border-right-width: 2px;
    position: absolute;
    left: 2.2rem;
}

@media screen and (max-width:600px) {
    .team_section_main .stepper-main .right-side .dashed-border {
        height: 55.4rem;
    }
}

.team_section_main .stepper-main .right-side .dashed-border-horizontal {
    width: 2rem;
    height: 1px;
    border-color: #bdbdbd;
    border-style: dashed;
    border-bottom-width: 2px;
    position: absolute;
    left: 2.5rem;
    bottom: .9rem;
}



@media screen and (max-width : 580px) {
    p {
        font-size: 16px !important;
    }

    .showcase_subhead {
        font-size: 14px !important;
    }

    .blog_section {
        padding: 0px 0px !important;
    }

    .project_section .project-4 .project_details4 {
        top: 19px;
    }

    .team_section_main .team-images .team-details {
        margin: 0px auto;
    }
}
