
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root

{
    --primary-color: #0baccd;
    --secondary-color: #0a87a0;
    --optional-color: #ffaa31;
}

@font-face {
    font-family: Rubik;
    src: url(/fonts/Rubik-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: silver #ddd;
}

body {
    margin: 0;
    padding: 0;
    -font-family: Rubik;
    font-family: "Nunito", sans-serif;
    overflow-x: hidden;
    background-image: linear-gradient(#fff, #fff), url(../images/dot-bg.png);
}
/* For WebKit browsers */
::-webkit-scrollbar {
    width: 6px;
    /* thin vertical scrollbar */
    height: 6px;
    /* thin horizontal scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: rgba(100, 100, 100, 0.2);
    /* color of the scrollbar thumb */
    border-radius: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
    /* or use a light gray */
}
/* Optional: hide scrollbar when not hovering */
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(100, 100, 100, 0.7);
}

.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.py-6 {
    padding-block: 60px;
}

.cursor {
    width: 15px;
    height: 15px;
    border: 1px solid var(--secondary-color);
    position: fixed;
    border-radius: 50%;
    mix-blend-mode: multiply;
    z-index: 11;
}

.text-justify {
    text-align: justify;
    hyphens: auto;
}

.text-theme {
    color: var(--primary-color);
}

.text-theme2 {
    color: var(--secondary-color);
}

.text-hover {
    color: var(--secondary-color);
}

.optional-color {
    color: var(--optional-color);
}

.btn-theme {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color) 60%);
    color: #fff;
}

    .btn-theme:hover {
        background-color: var(--secondary-color);
        color: #fff;
    }

.btn-theme2 {
    background-color: #feaa31;
}

.bg-theme-gradient {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color) 60%);
    color: #fff;
    -transform: scale(0.3);
}

.bg-theme-light {
    background-color: #01a0c8 15;
}

.border-theme {
    border: 1px solid var(--primary-color);
    -box-shadow: 5px 5px 0 var(--secondary-color);
}

.bg-none {
    background-image: none !important;
}

#particles-js {
    position: absolute;
    -z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

    #particles-js canvas {
        opacity: 0.1;
    }

.breadcrumb-item a {
    color: var(--primary-color);
}

#back-to-top {
    -border: 1px solid red;
    position: fixed;
    right: -45px;
    bottom: 45px;
    display: inline-block;
    z-index: 9;
    width: 45px;
    height: 40px;
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50px 0 0 50px;
    transition: 0.7s ease;
    mix-blend-mode: multiply;
}
/*****Header Start*****/
/* header {
	 position: absolute;
	 left: 0;
	 right: 0;
}
 */
.header {
    position: relative;
    z-index: 1;
}

    .header .navbar-brand .logo {
        -filter: brightness(100) contrast(1.1);
    }

    .header .navbar-toggler {
        border: 0;
    }

        .header .navbar-toggler:focus {
            outline: 0;
            box-shadow: none;
        }

    .header .nav-item .nav-link {
        color: rgba(0, 0, 0, 0.8);
        margin-inline: 15px;
        position: relative;
        padding-inline: 0;
        font-size: 15px;
    }

        .header .nav-item .nav-link:hover {
            color: var(--primary-color);
        }

        .header .nav-item .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            background-color: var(--primary-color);
            height: 1px;
            transition: 1s;
        }

        .header .nav-item .nav-link:hover::before {
            width: 100%;
        }

    .header .nav-link.active {
        color: var(--primary-color);
    }

    .header .contact-btn {
        background-color: var(--primary-color);
        margin-left: 20px;
        border-radius: 50px;
        position: relative;
        overflow: hidden;
        z-index: 1;
        color: #fff !important;
    }

        .header .contact-btn::after {
            content: '';
            border-radius: 50px;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 0;
            background-color: var(--secondary-color);
            transition: 1s;
            z-index: -1;
        }

        .header .contact-btn:hover::after {
            width: 100%;
        }
/*****Header End*****/
#sidebar .nav-item .nav-link {
    border-bottom: 1px dashed #ddd;
    color: #333;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff !important;
    z-index: 9;
    transition-duration: 5s;
}

    .sticky-header .navbar-brand .logo {
        width: 100px;
    }
/*****Banner Start******/
/* .scroll-banner {
	 -border: 1px solid red;
	 -position: absolute;
	 top: 0;
	 height: 100vh;
	 background: linear-gradient(0deg, rgba(255, 255, 255, .09) 0, #34AAC530 100%);
}
 */
.banner {
    height: calc(100vh - 117px);
    color: #222;
    position: relative;
}

    .banner::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: -1;
        --opacity: 0.2;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7)), url(../images/robot.png);
        background-position: center center;
        background-size: contain;
    }

    .banner .tag-line {
        -border: 1px solid red;
        height: 100%;
        background: url(/images/circle1.png) no-repeat 90% center #0689a3 10;
        -background: url(/images/circle1.png) no-repeat 90% center #fff 98;
    }

        .banner .tag-line .circle-box img {
            filter: drop-shadow(0px 3px 6px #ddd);
            width: 100%;
            height: 350px;
            object-fit: contain;
        }

@media (min-width: 1200px) {
    .container {
        max-width: 92%;
        -border: 1px solid red;
    }
}
/******About-block********/
.about-block .second-img {
    width: 350px;
    border: 8px solid #fff;
    position: absolute;
    top: 45px;
    right: -95px;
    -border-radius: 15px;
}
/* .sec-title {
	 color: rgba(0, 0, 0, 1);
	 margin-top: 0;
	 margin-bottom: 0;
	 font-size: 35px;
	 font-weight: 700;
	 text-align: center;
	 margin-bottom: 50px;
	 position: relative;
	 margin-inline: auto;
	 -border: 1px solid red;
	 width: max-content;
}
 .sec-title::before, .sec-title::after {
	 content: '';
	 position: absolute;
	 width: 70px;
	 height: 1px;
	 background-color: var(--primary-color);
}
 .sec-title::before {
	 top: -7px;
	 left: 0;
}
 .sec-title::after {
	 bottom: -7px;
	 right: 0;
}
 .sec-title .left-dot {
	 -border: 1px solid red;
	 width: 10px;
	 height: 10px;
	 border-radius: 50px;
	 display: inline-block;
	 position: absolute;
	 top: -11px;
	 background-color: var(--primary-color);
}
 .sec-title .right-dot {
	 -border: 1px solid red;
	 width: 10px;
	 height: 10px;
	 border-radius: 50px;
	 display: inline-block;
	 position: absolute;
	 bottom: -11px;
	 background-color: var(--primary-color);
}
 */
.help-icon {
    border-radius: 100%;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: 10px;
    background-color: #fff;
}

.icon {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
}

    .icon img, .help-icon img {
        width: 50px;
    }
/* .process-design {
	 margin-bottom: 70px;
	 border: 1px solid red;
}
 */
/* .odd-box, .even-box {
	 border: 1px solid var(--secondary-color);
	 flex: 1 0 0;
	 text-align: center;
	 position: relative;
	 background-color: #fff;
	 padding: 20px 10px;
	 border-radius: 10px;
	 -box-shadow: 0px 1px 5px #ddd;
	 --angle: 0deg;
	 -border-image: linear-gradient(var(--angle), var(--secondary-color), var(--primary-color)) 1;
	 -animation: 5s rotate linear infinite;
}
 @keyframes rotate {
	 to {
		 --angle: 360deg;
	}
}
 @property --angle {
	 syntax: "<angle>";
	 initial-value: 0deg;
	 inherits: false;
}
 .odd-box:last-child::after {
	 border: none;
}
 .odd-box::after {
	 content: '';
	 position: absolute;
	 width: 100px;
	 height: 1px;
	 right: -100px;
	 top: 50%;
	 border: 1px solid var(--secondary-color);
}
 .even-box::after {
	 content: '';
	 position: absolute;
	 width: 0px;
	 height: 80px;
	 right: -100px;
	 top: -62%;
	 right: 60px;
	 z-index: -1;
	 border: 1px solid var(--secondary-color);
}
 .odd-box h4, .even-box h4 {
	 padding-top: 30px;
	 padding-bottom: 15px;
	 font-size: 20px;
}
 .odd-box span, .even-box span {
	 position: absolute;
	 top: -14px;
	 left: 50px;
	 padding-inline: 10px;
	 background-color: #fff;
	 font-size: 18px;
	 color: var(--secondary-color);
}
 .vector-icons::after {
}
 .vector-icons {
	 border: 1px solid var(--secondary-color);
	 width: 60px;
	 height: 60px;
	 background-color: #fff;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 border-radius: 50%;
	 margin: auto;
	 padding: 15px;
	 position: absolute;
	 top: -28px;
	 right: 30px;
}
 */
/*********work-process*********/
.work-process {
    padding: 40px 0;
    background: url(/images/dottedline.png) no-repeat center 60%;
    background-size: contain, cover;
}

    .work-process ul li {
        width: 20%;
        float: left;
    }

        .work-process ul li .blg {
            background-color: #fff;
            border-radius: 15px !important;
        }

        .work-process ul li .feature-box-title .section-title {
            position: relative;
            padding-bottom: 0px;
            margin-bottom: 0;
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            line-height: 30.5px;
        }

        .work-process ul li .feature-box-thumb {
            -border: 1px solid red;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: auto auto 10px;
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 5px silver inset;
        }

            .work-process ul li .feature-box-thumb img {
                width: 60px;
                height: 60px;
                object-fit: contain;
            }

        .work-process ul li .invisible-number {
            font-size: 40px;
            line-height: 50px;
            top: 5px;
            left: 15px;
            color: #fff;
            opacity: 0.85;
            position: absolute;
            font-weight: 600;
            right: inherit;
        }

        .work-process ul li:first-child .blg {
            box-shadow: 5px 5px #1379c7;
            background: linear-gradient(#67bafa, #0972c2);
        }

        .work-process ul li:nth-child(2) {
            transform: translateY(-35px);
        }

            .work-process ul li:nth-child(2) .blg {
                box-shadow: 5px 5px #0697b4;
                background: linear-gradient(#0db7da, #047288);
            }

        .work-process ul li:nth-child(3) .blg {
            box-shadow: 5px 5px #db8b09;
            background: linear-gradient(#fdb33c, #cf8103);
        }

        .work-process ul li:nth-child(4) {
            transform: translateY(-35px);
        }

            .work-process ul li:nth-child(4) .blg {
                box-shadow: 5px 5px #84489c;
                background: linear-gradient(#c17add, #783b91);
            }

        .work-process ul li:nth-child(5) {
            transform: translateY(35px);
        }

        .work-process ul li:last-child .blg {
            box-shadow: 5px 5px #c5166e;
            background: linear-gradient(#f33f99, #a30f59);
            -background-color: #d91c7a;
        }
/* .work-process ul li .feature-box-title .section-title {
	 position: relative;
	 padding-bottom: 0px;
	 margin-bottom: 0;
	 color: #fff;
	 font-weight: 700;
	 font-size: 16px;
	 line-height: 30.5px;
}
 */
/* .work-process ul li .feature-box-thumb {
	 -border: 1px solid red;
	 width: 100px;
	 height: 100px;
	 border-radius: 50%;
	 margin: auto auto 10px;
	 background-color: #fff;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 box-shadow: 0 2px 5px silver inset;
}
 */
/* .work-process ul li .feature-box-thumb img {
	 width: 60px;
	 height: 60px;
	 object-fit: contain;
}
 */
/* .work-process ul li .feature-box-title h6.invisible-number {
	 font-size: 40px;
	 line-height: 50px;
	 top: 5px;
	 left: 15px;
	 color: #fff;
	 opacity: 0.85;
	 position: absolute;
	 font-weight: 600;
	 right: inherit;
}
 */
/* @keyframes moving {
	 from {
		 -transform: translateY(0);
	}
	 to {
		 transform: translateY(-10px);
	}
}
 */
/******Our Journey*****/
.dev-process {
    background-color: #fff 99;
}

    .dev-process .step {
        color: #000;
        padding-right: 20px;
    }

        .dev-process .step h4 {
            font-size: 25px;
            font-weight: 700;
            padding-right: 15px;
            flex-shrink: 0;
            color: #0689a3;
        }

        .dev-process .step h6 {
            font-size: 19px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .dev-process .step p {
            font-size: 13px;
            line-height: 1.4;
            color: #7d7d7d;
        }

    .dev-process .arrow-line {
        border: 1.5px solid var(--secondary-color);
        width: 95%;
    }

        .dev-process .arrow-line .point {
            position: absolute;
            bottom: 0;
            -width: 2px;
            height: 50px;
            border: 1px solid;
            border-image-slice: 1;
            border-width: 1px;
            border-image-source: linear-gradient(to top, var(--secondary-color), #fff);
        }

            .dev-process .arrow-line .point::before {
                content: '';
                position: absolute;
                width: 15px;
                height: 15px;
                background-image: linear-gradient(to top, #0a87a0 50 0%, rgba(255, 255, 255, 0) 80%);
                left: -8px;
                border-radius: 50px;
                top: -16px;
            }

            .dev-process .arrow-line .point.point-1 {
                left: -1px;
                bottom: 0;
            }

            .dev-process .arrow-line .point.point-2 {
                left: 39%;
                bottom: 0;
            }

            .dev-process .arrow-line .point.point-3 {
                left: 78%;
                bottom: 0;
            }

            .dev-process .arrow-line .point.point-4 {
                left: 20%;
                top: 0;
                border-image-source: linear-gradient(to bottom, var(--secondary-color), #fff);
            }

                .dev-process .arrow-line .point.point-4::before {
                    background-image: linear-gradient(to bottom, #0a87a0 50 0%, rgba(255, 255, 255, 0) 80%);
                    top: initial;
                    bottom: -16px;
                }

            .dev-process .arrow-line .point.point-5 {
                left: 59%;
                top: 0;
                border-image-source: linear-gradient(to bottom, var(--secondary-color), #fff);
            }

                .dev-process .arrow-line .point.point-5::before {
                    background-image: linear-gradient(to bottom, #0a87a0 50 0%, rgba(255, 255, 255, 0) 80%);
                    top: initial;
                    bottom: -16px;
                }

        .dev-process .arrow-line::after {
            content: '';
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 13px solid var(--secondary-color);
            border-right: 10px solid transparent;
            position: absolute;
            right: -15px;
            top: -8px;
        }

.mb-60 {
    margin-bottom: 60px;
}
/* .arrow-line .point {
	 position: absolute;
	 bottom: 0;
	 -width: 2px;
	 height: 50px;
	 border: 1px solid;
	 border-image-slice: 1;
	 border-width: 1px;
	 border-image-source: linear-gradient( to top, var(--secondary-color), rgb(255, 255, 255, 0.15));
}
 */
/* .arrow-line .point::before {
	 content: '';
	 position: absolute;
	 width: 15px;
	 height: 15px;
	 background-image: linear-gradient( to top, #0a87a050 0%, rgba(255, 255, 255, 0) 80%);
	 left: -8px;
	 border-radius: 50px;
	 top: -16px;
}
 */
/* .arrow-line .point.point-1 {
	 left: -1px;
	 bottom: 0;
}
 */
/* .arrow-line .point.point-2 {
	 left: 39%;
	 bottom: 0;
}
 */
/* .arrow-line .point.point-3 {
	 left: 78%;
	 bottom: 0;
}
 */
/* .arrow-line .point.point-4 {
	 left: 20%;
	 top: 0;
	 border-image-source: linear-gradient( to bottom, var(--secondary-color), rgb(255, 255, 255, 0.15));
}
 */
/* .arrow-line .point.point-5 {
	 left: 59%;
	 top: 0;
	 border-image-source: linear-gradient( to bottom, var(--secondary-color), rgb(255, 255, 255, 0.15));
}
 */
/* .arrow-line .point.point-4::before, .arrow-line .point.point-5::before {
	 background-image: linear-gradient( to bottom, #0a87a050 0%, rgba(255, 255, 255, 0) 80%);
	 top: initial;
	 bottom: -16px;
}
 */
/****Process end****/
/****Technologies******/
.tech-image-filter {
    overflow: hidden;
    padding-block: 50px;
}

    .tech-image-filter .nav.nav-pills {
        display: inline-flex;
        padding: 10px 0px;
        border-radius: 50px;
    }

        .tech-image-filter .nav.nav-pills .nav-link {
            color: #333;
            padding-inline: 20px;
            font-size: 17px;
            font-weight: 500;
            border-radius: 50px;
            position: relative;
        }

            .tech-image-filter .nav.nav-pills .nav-link:hover {
                background-color: #fff;
                color: var(--secondary-color);
            }

            .tech-image-filter .nav.nav-pills .nav-link.active {
                background-color: #fff;
                color: var(--secondary-color);
            }

                .tech-image-filter .nav.nav-pills .nav-link.active::after {
                    content: '';
                    position: absolute;
                    width: 15px;
                    height: 2px;
                    background-color: var(--primary-color);
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                }

    .tech-image-filter .image-track a {
        background: #eff8f9;
        padding: 25px;
        display: block;
        border-radius: 10px;
        text-align: center;
        text-decoration: none;
        color: #333;
        margin-bottom: 15px;
    }

    .tech-image-filter .image-track img {
        width: 100%;
        height: 80px;
        object-fit: contain;
        margin: 0px 0 15px;
    }
/* .tech-image-filter .nav.nav-pills {
	 -border: 1px solid red;
	 display: inline-flex;
	 padding: 10px 0px;
	 -background-color: rgb(1, 160, 200, 1);
	 border-radius: 50px;
}
 */
/* .tech-image-filter .nav-pills .nav-link {
	 color: #333;
	 padding-inline: 20px;
	 -background-color: #056f8580;
	 font-size: 17px;
	 font-weight: 500;
	 border-radius: 50px;
	 -border: 1px solid #f0f0f0;
	 position: relative;
	 -box-shadow: 0 0px 2px silver;
}
 */
/* .tech-image-filter .nav-pills .nav-link:hover, .tech-image-filter .nav-pills .nav-link.active {
	 background-color: #ffffff;
	 color: var(--secondary-color);
	 -border: 1px solid var(--secondary-color);
}
 */
/* .tech-image-filter .nav-pills .nav-link.active::after {
	 content: '';
	 position: absolute;
	 width: 15px;
	 height: 2px;
	 background-color: var(--primary-color);
	 bottom: 0;
	 left: 50%;
	 transform: translateX(-50%);
}
 */
/* .image-track {
	 -display: inline-flex;
	 flex-wrap: wrap;
	 overflow: hidden;
	 gap: 0px 20px;
	 -animation: scrollLeft 20s linear infinite;
}
 */
/* .image-track:hover {
	 animation-play-state: paused;
}
 */
/* .image-track a {
	 -border: 1px solid #f0f0f0;
	 background: #EFF8F9;
	 -background-image: none;
	 -background-image: linear-gradient(137deg, #F7FBFC 0%, #F7FBFC 100%);
	 padding: 25px;
	 display: block;
	 border-radius: 10px;
	 text-align: center;
	 text-decoration: none;
	 color: #333;
	 margin-bottom: 15px;
}
 */
/* .image-track img {
	 width: 100%;
	 height: 80px;
	 object-fit: contain;
	 margin: 0px 0 15px;
}
 */
/*****Technology Scroll Start*****/
.technologies-icon {
    -border: 1px solid red;
    width: 100%;
    position: absolute;
    bottom: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

    .technologies-icon .inner-icon {
        -background-color: #fff;
        padding: 10px;
        width: 60px;
        height: 60px;
        text-align: center;
        border-radius: 10px;
    }

        .technologies-icon .inner-icon img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            filter: drop-shadow(1px 1px 1px #333);
        }

.technology-img-slider {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 40%, white 60%, transparent);
    mask: linear-gradient(90deg, transparent, white 40%, white 60%, transparent);
}

    .technology-img-slider img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-inline: 10px;
        display: block;
        margin-bottom: 0;
    }

    .technology-img-slider .scroller__inner {
        padding-block: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        width: max-content;
        flex-wrap: nowrap;
        animation: scroll var(--_animation-duration, 80s) var(--_animation-direction, forwards) linear infinite;
    }

    .technology-img-slider[data-speed="fast"] {
        --_animation-duration: 20s;
    }

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}
/* .technology-img-slider[data-animated="true"] .scroller__inner {
	 width: max-content;
	 flex-wrap: nowrap;
	 animation: scroll var(--_animation-duration, 80s) var(--_animation-direction, forwards) linear infinite;
}
 */
/* .technology-img-slider[data-direction="right"] {
	 --_animation-direction: reverse;
}
 */
/* .technology-img-slider[data-direction="left"] {
	 --_animation-direction: forwards;
}
 */
/* .technology-img-slider[data-speed="slow"] {
	 --_animation-duration: 60s;
}
 */
/* .technology-img-slider img {
	 width: 100px;
	 height: 100px;
	 object-fit: contain;
	 margin-inline: 10px;
	 display: block;
	 margin-bottom: 0;
}
 */
/*****Technology Scroll End*****/
/*****Testimonial****/
.testimonial-area {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

    .testimonial-area .client-info {
        /* position: relative;
	 z-index: 3;
	 border: 1px solid red;
	 */
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 0 50px 35px;
    }

        .testimonial-area .client-info h6 {
            color: #000;
            font-weight: 700;
            font-size: 16px;
        }

        .testimonial-area .client-info a {
            border-radius: 50%;
        }

            .testimonial-area .client-info a img {
                width: 60px;
                height: 60px;
                border-radius: 100px;
            }

        .testimonial-area .client-info span {
            display: inline-block;
            color: var(--secondary-color);
            font-size: 12px;
        }

    .testimonial-area .owl-carousel {
        overflow: hidden;
    }

        .testimonial-area .owl-carousel .owl-dots {
            text-align: center;
            margin-top: 30px;
        }

            .testimonial-area .owl-carousel .owl-dots button {
                background: var(--primary-color) !important;
                width: 10px;
                height: 10px;
                border-radius: 26px;
                margin: 0 5px;
                transition: 0.3s;
            }

            .testimonial-area .owl-carousel .owl-dots .active {
                width: 30px;
            }

    .testimonial-area .single-testimonial {
        text-align: left;
        border-radius: 45px;
        position: relative;
        z-index: 2;
        background: linear-gradient(to bottom, #eff8f9 95, #c9d6ff 80);
        background-repeat: no-repeat;
        margin-top: 20px;
        margin-bottom: 5px;
        -box-shadow: 0 2px 3px #ddd;
    }

        .testimonial-area .single-testimonial::before {
            content: "";
            position: absolute;
            left: 10px;
            top: 10px;
            background: url(../images/quote.png) no-repeat;
            background-size: 45%;
            width: 120px;
            height: 80px;
            transform: rotate(180deg);
            background-position: 34px 15px;
        }

        .testimonial-area .single-testimonial p {
            color: grey;
            font-size: 15px;
            line-height: 2;
            padding: 50px;
            padding-bottom: 25px;
            position: relative;
            z-index: 3;
            text-indent: 50px;
            text-align: justify;
            hyphens: auto;
        }

.blogs {
    background: linear-gradient(to right, #eff8f9 85, #c9d6ff 60);
}

    .blogs .blog-box:hover img {
        filter: brightness(120%);
    }

    .blogs h5, .blogs p {
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        box-orient: vertical;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.main-timeline {
    padding: 25px 0;
}

    .main-timeline:after {
        content: '';
        display: block;
        clear: both;
    }

    .main-timeline:before {
        content: '';
        background: linear-gradient(to right, #ddd 50%, #f0f0f0 65%);
        height: 100%;
        width: 15px;
        transform: translateX(-50%);
        position: absolute;
        left: 50%;
        top: 0;
    }

    .main-timeline .timeline {
        width: calc(50% + 63px);
        margin: 0 0 30px;
        float: right;
        position: relative;
    }

    .main-timeline .timeline-content {
        color: #666;
        background: linear-gradient(to left, #ff7f23 65%, #df2947);
        min-height: 160px;
        padding: 20px 30px 20px 190px;
        border-radius: 50px;
        display: block;
        position: relative;
        z-index: 1;
    }

        .main-timeline .timeline-content:hover {
            text-decoration: none;
        }

        .main-timeline .timeline-content:before {
            content: '';
            background: #fff;
            border-radius: 50px 0 0 50px;
            position: absolute;
            left: 130px;
            top: 0;
            bottom: 0;
            right: 0;
            z-index: -1;
        }

    .main-timeline .timeline-icon {
        color: #df2947;
        -font-size: 45px;
        line-height: 100px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.3);
        transform: translateY(-50%);
        position: absolute;
        left: 15px;
        top: 50%;
        text-align: center;
    }

        .main-timeline .timeline-icon:before {
            content: '';
            background-color: #fff;
            border-radius: inherit;
            box-shadow: inherit;
            position: absolute;
            left: 10px;
            top: 10px;
            bottom: 10px;
            right: 10px;
            z-index: -1;
        }

    .main-timeline .title {
        color: #df2947;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0 0 5px;
        text-align: left;
    }

    .main-timeline .description {
        font-size: 15px;
        line-height: 20px;
        margin: 0;
        text-align: left;
    }

    .main-timeline .timeline:nth-child(even) {
        float: left;
    }

        .main-timeline .timeline:nth-child(even) .timeline-content {
            padding: 20px 190px 20px 30px;
        }

            .main-timeline .timeline:nth-child(even) .timeline-content:before {
                border-radius: 0 50px 50px 0;
                left: 0;
                right: 130px;
            }

        .main-timeline .timeline:nth-child(even) .timeline-icon {
            left: auto;
            right: 15px;
        }

    .main-timeline .timeline:nth-child(4n+2) .timeline-content {
        background: linear-gradient(to right, #fdcc49 65%, #f74e00);
    }

    .main-timeline .timeline:nth-child(4n+2) .timeline-icon, .main-timeline .timeline:nth-child(4n+2) .title {
        color: #f74e00;
    }

    .main-timeline .timeline:nth-child(4n+3) .timeline-content {
        background: linear-gradient(to left, #7ee6fc 65%, #378ae6);
    }

    .main-timeline .timeline:nth-child(4n+3) .timeline-icon, .main-timeline .timeline:nth-child(4n+3) .title {
        color: #378ae6;
    }

    .main-timeline .timeline:nth-child(4n+4) .timeline-content {
        background: linear-gradient(to right, #aa84f1 65%, #4f29b0);
    }

    .main-timeline .timeline:nth-child(4n+4) .timeline-icon, .main-timeline .timeline:nth-child(4n+4) .title {
        color: #4f29b0;
    }

@media screen and (max-width: 767px) {
    .main-timeline:before {
        display: none;
    }

    .main-timeline .timeline {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .main-timeline .timeline-content, .main-timeline .timeline:nth-child(even) .timeline-content {
        padding: 145px 20px 20px;
        border-radius: 50px;
    }

        .main-timeline .timeline-content:before, .main-timeline .timeline:nth-child(even) .timeline-content:before {
            top: 125px;
            right: 0;
            left: 0;
            border-radius: inherit;
        }

    .main-timeline .timeline-icon, .main-timeline .timeline:nth-child(even) .timeline-icon {
        transform: translateY(0) translateX(-50%);
        left: 50%;
        top: 10px;
        right: auto;
    }
}
/* .animated-bubble-btn {
	 background: #cce4f3;
	 border-radius: 5px;
	 line-height: 2.5rem;
	 display: inline-block;
	 font-weight: 500;
	 font-size: 1rem !important;
	 color: var(--btn-theme) !important;
	 padding: 0 1.1875rem;
	 position: relative;
	 z-index: 1;
	 -webkit-transition: all 1s ease;
	 -o-transition: all 1s ease;
	 transition: all 1s ease;
	 overflow: hidden;
}
 .animated-bubble-btn::after {
	 content: "";
	 position: absolute;
	 left: 0;
	 right: 0;
	 height: 100%;
	 z-index: -1;
	 background-color: var(--btn-theme);
	 -background-color: yellow;
	 width: 0;
	 transition: .8s;
}
 .animated-bubble-btn:hover::after {
	 width: 100% !important;
}
 .animated-bubble-btn:hover {
	 color: #fff !important;
}
 .swiper {
	 width: 100%;
	 height: 420px;
}
 .swiper-slide {
	 text-align: center;
	 font-size: 18px;
	 background: #fff;
	 display: flex;
	 justify-content: center;
	 align-items: center;
}
 .swiper-slide img {
	 display: block;
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
}
 */
/*****contact*******/
.contact .form-label {
    margin-bottom: 3px;
    color: #333;
}

.contact .form-control {
    border: 1px solid #333 55;
}

.contact .icon-contact {
    -border: 1px solid red;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    flex-shrink: 0;
}
/******FAQ*******/
.faq {
    background-color: #eff7f8;
    -background-image: url(/images/bnr.jpg);
}

    .faq .faq-list {
        -padding: 0 100px;
    }

        .faq .faq-list ul {
            padding: 0;
            list-style: none;
        }

        .faq .faq-list li + li {
            margin-top: 15px;
        }

        .faq .faq-list li {
            padding: 10px;
            background: #fff;
            border-radius: 5px;
            position: relative;
            box-shadow: 0 2px 3px #ddd;
        }

        .faq .faq-list a {
            display: flex;
            position: relative;
            color: #333;
            font-size: 16px;
            line-height: 24px;
            font-weight: 500;
            padding: 10px 0 10px 10px;
            outline: none;
            cursor: pointer;
            text-decoration: none;
            justify-content: space-between;
            align-items: center;
        }

        .faq .faq-list .icon-help {
            font-size: 18px;
            margin-right: 5px;
            color: var(--primary-color);
        }

        .faq .faq-list .icon-show, .faq .faq-list .icon-close {
            font-size: 24px;
            -position: absolute;
            right: 0;
            top: 0;
            color: #333;
        }

        .faq .faq-list p {
            margin-bottom: 0;
            padding: 10px 0 0 0;
        }

        .faq .faq-list .icon-show {
            display: none;
        }

        .faq .faq-list a.collapsed {
            color: #333;
            transition: 0.3s;
            font-size: 16px;
            -border: 1px solid red;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .faq .faq-list a.collapsed:hover {
                color: var(--secondary-color);
            }

            .faq .faq-list a.collapsed .icon-show {
                display: inline-block;
            }

            .faq .faq-list a.collapsed .icon-close {
                display: none;
            }

.answer-block {
    padding: 0 15px 15px 15px;
    color: grey;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

.call-to-action {
    -background-image: url(../images/wave-layer.svg);
    background-color: var(--secondary-color);
}
/******whychoose*******/
.whychoose .left, .whychoose .right {
    flex: 1 0 0;
    padding-inline: 15px;
}

    .whychoose .left h5, .whychoose .right h5 {
        font-size: 17px;
    }

    .whychoose .left p, .whychoose .right p {
        color: grey;
        font-size: 14px;
        margin-bottom: 0;
    }

    .whychoose .left hr, .whychoose .right hr {
        opacity: 0.15;
    }

.whychoose .v-line {
    border-right: 1px solid #ddd;
    height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50%;
    border-radius: 50px;
}
/*****vision-mission Start******/
.vision-mission::after {
    content: '';
    -border: 2px dashed #333 50;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.vision-mission h4 {
    position: relative;
    padding-bottom: 5px;
}

    .vision-mission h4::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        background-color: #fff;
        bottom: 0;
        left: 0;
    }

.vision-mission .vision {
    background: #01a0c8;
    background: linear-gradient(to bottom, rgba(1, 160, 200, 1) 0%, rgba(87, 199, 133, 1) 95%);
}

.vision-mission .mision {
    background: #219cf7;
    background: linear-gradient(to bottom, rgba(33, 156, 247, 1) 0%, rgba(133, 193, 233, 1) 90%);
}

.vision-mission .core-val {
    background: #436cb8;
    background: linear-gradient(to bottom, rgba(67, 108, 184, 1) 0%, rgba(31, 97, 141, 1) 90%);
}

.vision-mission .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    padding: 5px;
    position: absolute;
    top: -35px;
    right: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: runicon 5s infinite linear;
}

@keyframes runicon {
    0% {
        right: 25px;
    }

    50% {
        right: 50px;
    }

    100% {
        right: 25px;
    }
}
/* .vision-mission::after {
	 content: '';
	 border: 2px dashed #33333350;
	 position: absolute;
	 left: 0;
	 right: 0;
	 top: 50%;
	 transform: translateY(-50%);
	 z-index: -1;
}
 */
/* .vision-mission h4 {
	 position: relative;
	 padding-bottom: 5px;
}
 */
/* .vision-mission h4::after {
	 content: '';
	 position: absolute;
	 width: 20px;
	 height: 2px;
	 background-color: #fff;
	 bottom: 0;
	 left: 0;
}
 */
/* .vision-mission .vision {
	 background: #01A0C8;
	 background: linear-gradient(to bottom, rgba(1, 160, 200, 1) 0%, rgba(87, 199, 133, 1) 95%);
}
 */
/* .vision-mission .mision {
	 background: #219CF7;
	 background: linear-gradient(to bottom, rgba(33, 156, 247, 1) 0%, rgba(133, 193, 233, 1) 90%);
}
 */
/* .vision-mission .core-val {
	 background: #436CB8;
	 background: linear-gradient(to bottom, rgba(67, 108, 184, 1) 0%, rgba(31, 97, 141, 1) 90%);
}
 */
/* .vision-mission .icon {
	 width: 80px;
	 height: 80px;
	 border-radius: 50%;
	 background-color: #fff;
	 padding: 5px;
	 position: absolute;
	 top: -35px;
	 right: 25px;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 animation: runicon 5s infinite linear;
}
 */
/****services******/
.services .service-block h5 {
    font-size: 1rem;
}

.services .service-block p {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
}

.services .card {
    margin-bottom: 15px;
    text-align: center;
    border: 0;
    overflow: hidden;
    z-index: 1;
}

    .services .card .icon {
        margin: auto auto 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .services .card p {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        line-clamp: 3;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .services .card::after {
        content: '';
        position: absolute;
        width: 100px;
        height: 100px;
        right: -30px;
        bottom: -30px;
        background-color: #0a88a2 5;
        border-radius: 50px;
        transition: 1s;
        z-index: -1;
    }

    .services .card:hover::after {
        width: 120%;
        height: 120%;
    }

.service-details .techno-stack img {
    -border: 1px solid red;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-details .num-box {
    text-align: center;
    padding: 20px 15px;
    border-radius: 5px;
    color: #333;
    border: 0;
    position: relative;
    margin-right: 20px;
    background-color: transparent;
}

    .service-details .num-box::after {
        content: "";
        width: 2px;
        height: 100%;
        border-radius: 5px;
        border: 1px solid #f0f0f0;
        position: absolute;
        right: 0%;
        top: 0%;
        -transform: translate(-105%, -50%);
    }

    .service-details .num-box img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        margin-inline: auto;
    }

    .service-details .num-box .round-number {
        position: absolute;
        right: -35px;
        top: 50%;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 11;
        transform: translateY(-50%);
        color: #fff;
        background-color: #fff;
        -box-shadow: 0 1px 2px #ddd;
    }

        .service-details .num-box .round-number.one {
            background-color: #fde7f2;
        }

        .service-details .num-box .round-number.two {
            background-color: #f9f9cf;
        }

        .service-details .num-box .round-number.three {
            background-color: #cdf0f7;
        }

        .service-details .num-box .round-number.four {
            background-color: #d2dff4;
        }

        .service-details .num-box .round-number.five {
            background-color: #efe3f7;
        }

.service-details span.numbers {
    font-size: 80px;
    color: grey;
    opacity: 0.3;
    font-weight: bold;
    border-radius: 50px;
    background-color: #f0f0f0;
    margin-left: auto;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-details i {
    margin-right: 5px;
}

.service-details .key-features-line {
    width: 1px;
    height: 100%;
    background-color: #ddd;
    margin: auto;
}
/****why-partner****/
/* .vertical-line {
	 position: relative;
	 z-index: 1;
	 -border: 1px solid red;
}
 .vertical-line::after {
	 content: '';
	 width: 1px;
	 height: 100%;
	 background-color: var(--primary-color);
	 position: absolute;
	 left: 12px;
	 top: 0;
	 z-index: -11;
}
 */
/*****commitment******/
.commitment {
    -background-color: #eff8f9;
    -background: #eff8f9;
    -background: linear-gradient(to right, #eff8f9 85, #c9d6ff 60);
}

    .commitment .h-line::after {
        content: '';
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: -40px;
        z-index: -1;
        -border: 10px solid;
        -border-image-slice: 1;
        -border-width: 1px;
        -border-image-source: linear-gradient(to right, #67c980, #fd582d, #038ace);
    }

    .commitment .commitment-box {
        padding: 20px;
        /* width: 280px;
	 height: 280px;
	 */
        flex: 1 0 0;
        text-align: center;
        border-radius: 10px;
        border: 0;
        color: #fff;
        position: relative;
        -border: 1px solid #cde8eb;
        background: var(--primary-color);
        -box-shadow: 0 1px 5px #ddd;
        display: flex;
        gap: 15px;
        -justify-content: center;
        align-items: center;
        /* flex-direction: column;
	 */
    }

        .commitment .commitment-box .vector {
            background: #f0f0f0;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            -box-shadow: 0 -5px 0px #f0f0f0 inset;
            -box-shadow: 0 2px 5px #ddd;
            /* &::after {
		 content: '';
		 position: absolute;
		 height: 48px;
		 left: 50%;
		 bottom: -38px;
	}
	 &::before {
		 content: '';
		 position: absolute;
		 height: 12px;
		 width: 12px;
		 left: 51%;
		 transform: translateX(-51%);
		 bottom: 5px;
		 border-radius: 50px;
	}
	 */
        }

    .commitment .plan {
        -background: linear-gradient(to bottom, #24adff 25 30%, #1c74a7 20);
    }

        .commitment .plan .vector {
            -box-shadow: 0 2px 5px #ddd;
            border-bottom: 0;
        }

            .commitment .plan .vector::after {
                border: 1px solid #2d809a;
            }

            .commitment .plan .vector::before {
                background-color: #2d809a;
            }

    .commitment .develop {
        -background: #fd1d1d;
        -background: linear-gradient(to bottom, rgba(253, 29, 29, 0.05) 30%, rgba(252, 176, 69, 0.15));
    }

        .commitment .develop .vector {
            -border: 1px solid #fd1d1d;
            border-bottom: 0;
        }

            .commitment .develop .vector::after {
                border: 1px solid #fd1d1d;
            }

            .commitment .develop .vector::before {
                background-color: #fd1d1d;
            }

    .commitment .grow {
        -background: #090979;
        -background: linear-gradient(to bottom, rgba(9, 9, 121, 0.05) 30%, rgba(0, 212, 255, 0.2));
    }

        .commitment .grow .vector {
            -border: 1px solid #090979;
            border-bottom: 0;
        }

            .commitment .grow .vector::after {
                border: 1px solid #090979;
            }

            .commitment .grow .vector::before {
                background-color: #090979;
            }
/****Development Process****/
.dev-process {
    max-width: 85%;
    -border: 1px solid red;
    margin: auto;
}

    .dev-process .step-title .inner-card {
        padding: 25px 15px;
        width: 280px;
        background-color: #fff;
        box-shadow: 0 3px 5px #ddd;
        border-radius: 50px;
        margin-block: 40px;
        border: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        cursor: pointer;
    }

        .dev-process .step-title .inner-card .common-line-l, .dev-process .step-title .inner-card .common-line-r {
            position: absolute;
            top: 50%;
            width: 70px;
            height: 1px;
            background-color: var(--secondary-color);
            right: -80px;
        }

            .dev-process .step-title .inner-card .common-line-l::before, .dev-process .step-title .inner-card .common-line-r::before {
                content: '';
                position: absolute;
                top: -4px;
                width: 10px;
                height: 10px;
                border-radius: 50px;
                background-color: var(--secondary-color);
                display: inline-block;
            }

            .dev-process .step-title .inner-card .common-line-l::after, .dev-process .step-title .inner-card .common-line-r::after {
                content: '';
                position: absolute;
                height: 1px;
                background-color: var(--secondary-color);
                right: -48px;
            }

        .dev-process .step-title .inner-card .l-1::after {
            width: 50px;
            top: 11px;
            transform: rotate(25deg);
        }

        .dev-process .step-title .inner-card .l-2 {
            width: 90px;
            right: -100px;
        }

        .dev-process .step-title .inner-card .l-3::after {
            width: 50px;
            top: -11px;
            transform: rotate(-25deg);
        }

        .dev-process .step-title .inner-card .common-line-r {
            right: initial !important;
            left: -85px;
        }

            .dev-process .step-title .inner-card .common-line-r::after {
                right: initial;
                left: -48px;
            }

        .dev-process .step-title .inner-card .r-1::after {
            width: 50px;
            top: 11px;
            transform: rotate(-25deg);
        }

        .dev-process .step-title .inner-card .r-2 {
            width: 85px;
            left: -100px;
        }

        .dev-process .step-title .inner-card .r-3::after {
            width: 50px;
            top: -11px;
            transform: rotate(25deg);
        }

        .dev-process .step-title .inner-card h6 {
            margin-bottom: 0;
            font-weight: 500;
        }

    .dev-process .last-inner-card {
        padding: 25px 15px;
        width: 280px;
        background-color: #fff;
        box-shadow: 0 3px 5px #ddd;
        border-radius: 50px;
        margin-block: 40px;
        border: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        cursor: pointer;
    }

        .dev-process .last-inner-card::after {
            content: '';
            position: absolute;
            width: 1px;
            height: 80px;
            background-color: var(--secondary-color);
            top: -95px;
            left: 50%;
        }

        .dev-process .last-inner-card::before {
            content: '';
            position: absolute;
            top: -18px;
            width: 10px;
            height: 10px;
            border-radius: 50px;
            background-color: var(--secondary-color);
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

    .dev-process .center-box {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background-color: var(--secondary-color);
        margin: 50px auto;
        outline: 2px dashed silver;
        outline-offset: 15px;
        position: relative;
        /* &::before {
		 content: '';
		 position: absolute;
		 width: 450px;
		 height: 450px;
		 background-color: #000;
		 z-index: -1;
		 border-radius: 50%;
		 border: 5px solid var(--secondary-color);
		 border-bottom: 0;
	}
	 */
        /* &::after {
		 content: '';
		 position: absolute;
		 width: 450px;
		 height: 450px;
		 background-color: #fff;
		 z-index: -1;
		 border-radius: 50%;
		 border: 0;
	}
	 */
    }

    .dev-process .hover-content {
        position: absolute;
        background-color: #000;
        padding: 15px 20px;
        width: 300px;
        height: 300px;
        color: grey;
        display: flex;
        bottom: 0;
        border-radius: 50%;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        z-index: 1;
        font-size: 14px;
        color: #fff;
        text-transform: capitalize;
        font-weight: 400;
        justify-content: center;
        align-items: center;
        opacity: 0;
    }
/******industry-serve*********/
.industry-serve {
    /* border: 1px solid red;
	 */
}

    .industry-serve .industry-icon {
        width: 100px;
        height: 100px;
        background-color: #fff;
        margin: auto auto 15px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .industry-serve h5 {
        color: #fff;
    }
/****why-choose-circle start*******/
.why-choose-services {
    -border: 1px solid red;
    -background: #eff8f9;
    -background: linear-gradient(to right, #eff8f9 85, #c9d6ff 60);
}

    .why-choose-services .why-choose-line {
        position: relative;
        z-index: 1;
        /* &::before {
		 content: '';
		 position: absolute;
		 right: -130px;
		 top: 50%;
		 bottom: 0;
		 border: 1px dashed var(--primary-color);
		 width: 150px;
		 height: 2px;
	}
	 */
    }

        .why-choose-services .why-choose-line::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            border: 1px dashed silver;
            top: 50px;
            z-index: -1;
        }

        .why-choose-services .why-choose-line li {
            -border: 1px solid red;
            flex: 1 0 0;
            text-align: center;
        }

            .why-choose-services .why-choose-line li span {
                display: inline-block;
                width: 100px;
                height: 100px;
                -background-color: #fff;
                border-radius: 100px;
                text-align: center;
                line-height: 100px;
                font-weight: 600;
                -box-shadow: 0 1px 2px #ddd;
                margin-bottom: 15px;
                outline-offset: 5px;
                color: #fff;
            }

            .why-choose-services .why-choose-line li h6 {
                font-size: 15px;
                color: grey;
                line-height: 1.3;
            }

            .why-choose-services .why-choose-line li:first-child span {
                background-color: #d6ebf2;
                outline: 1px solid var(--primary-color);
            }

            .why-choose-services .why-choose-line li:nth-child(2) span {
                background-color: #d3eee4;
                outline: 1px solid #51cb7a;
            }

            .why-choose-services .why-choose-line li:nth-child(3) span {
                background-color: #d1edfb;
                outline: 1px solid #1fc4e8;
            }

            .why-choose-services .why-choose-line li:nth-child(4) span {
                background-color: #d9e5f7;
                outline: 1px solid #6398ce;
            }

            .why-choose-services .why-choose-line li:nth-child(5) span {
                background-color: #eadeec;
                outline: 1px solid #db6681;
            }

            .why-choose-services .why-choose-line li:last-child span {
                background-color: #ebe8e2;
                outline: 1px solid #e9b939;
            }

    .why-choose-services .below-tag-line {
        -background: #ebf0ff;
        -border: 1px solid var(--primary-color);
        -border-bottom: 0;
        -position: absolute;
        border-radius: 10px;
        padding: 30px;
        /* left: 70px;
	 right: 70px;
	 */
        -box-shadow: 0 -2px 8px #ddd;
    }

        .why-choose-services .below-tag-line img {
            mix-blend-mode: darken;
        }
/* .services .card::after {
	 content: '';
	 position: absolute;
	 width: 100px;
	 height: 100px;
	 right: -30px;
	 bottom: -30px;
	 background-color: var(--secondary-color);
	 border-radius: 50px;
	 transition: 1s;
	 z-index: -1;
}
 */
/* .services .card .icon {
	 margin: auto auto 15px;
	 display: flex;
	 justify-content: center;
	 align-items: center;
}
 */
/* .services .card p {
	 display: -webkit-box;
	 overflow: hidden;
	 text-overflow: ellipsis;
	 line-clamp: 3;
	 -webkit-line-clamp: 3;
	 -webkit-box-orient: vertical;
}
 */
/* .txt-bg {
	 font-weight: bold;
	 text-align: center;
	 font-size: 150px;
	 -background-image: linear-gradient(red, green);
	 background-image: url(/images/ai.png);
	 background-position: left;
	 background-clip: text;
	 color: transparent;
	 border: 5px solid red;
	 border-image: linear-gradient(177deg, red, yellow, pink) 1;
}
 */
/*****footer******/
.footer {
    background-color: #fff 95;
}
/******Responsive********/
@media (max-width: 767px) {
    /* .help-icon img {
		 width: 30px;
	}
	 */
    /* .work-process ul li .blg {
		 box-shadow: 3px 3px #dcdfe7;
	}
	 */
    * {
        -border: 1px solid red;
    }

    .py-6 {
        padding-block: 40px;
    }

    .logo {
        width: 80px;
    }

    br {
        display: none;
    }

    #back-to-top {
        bottom: 15px;
    }

    .technologies-icon {
        flex-wrap: wrap;
        gap: 5px;
    }

        .technologies-icon .inner-icon {
            width: 40px;
            height: 40px;
        }

            .technologies-icon .inner-icon img {
                width: 30px;
                height: 30px;
                object-fit: contain;
            }

    .banner {
        height: auto;
    }

        .banner::after {
            background-size: cover;
            background-position: left bottom;
        }

        .banner .tag-line {
            padding-block: 40px;
            background-image: none;
        }

            .banner .tag-line .row {
                flex-direction: column-reverse;
            }

            .banner .tag-line .circle-box img {
                height: 285px;
            }

            .banner .tag-line h1 {
                font-size: 25px;
                text-align: center;
            }

            .banner .tag-line p {
                text-align: center;
            }

            .banner .tag-line img {
                margin-bottom: 25px;
            }

    .help-icon {
        width: 65px;
        height: 65px;
    }

        .help-icon img {
            width: 30px;
        }

    .about-block .second-img {
        width: 175px;
        border: 5px solid #fff;
        top: initial;
        right: 15px;
        max-width: 100%;
        bottom: -10px;
    }

    .work-process ul li {
        width: 50%;
        transform: translateY(0px) !important;
        margin-bottom: 20px;
    }

        .work-process ul li:last-child {
            width: 100%;
        }

        .work-process ul li .feature-box-title h6.invisible-number {
            font-size: 25px;
            line-height: 25px;
            top: 10px;
            left: 10px;
        }

        .work-process ul li .feature-box-title .section-title {
            font-weight: 500;
            font-size: 13px;
            line-height: 1.2;
        }

        .work-process ul li img {
            width: 55px;
        }

    .testimonial-area {
        padding: 50px 0 50px 0;
    }

        .testimonial-area .single-testimonial p {
            padding: 25px;
            padding-bottom: 5px;
        }

        .testimonial-area .single-testimonial .client-info {
            justify-content: inherit;
            padding: 0 20px 35px;
            gap: 10px;
        }

        .testimonial-area .single-testimonial::before {
            background-size: 50%;
            width: 75px;
            height: 60px;
            transform: rotate(180deg);
            background-position: 25px 15px;
        }

        .testimonial-area .owl-dots {
            margin-top: 10px;
        }

    .dev-process {
        max-width: 100%;
    }

        .dev-process .center-box {
            max-width: 270px;
            height: 270px;
        }

            .dev-process .center-box .hover-content {
                -position: static;
            }

        .dev-process .step-title .inner-card {
            margin-block: 10px;
            width: 100%;
            padding: 15px 25px;
            justify-content: start;
        }

            .dev-process .step-title .inner-card .common-line-l, .dev-process .step-title .inner-card .common-line-r {
                display: none;
            }

        .dev-process .step-below .inner-card {
            flex-direction: row-reverse;
        }

        .dev-process .last-inner-card {
            margin-block: 10px;
            width: 100%;
            padding: 15px 25px;
            justify-content: start;
        }

            .dev-process .last-inner-card::before {
                display: none;
            }

            .dev-process .last-inner-card::after {
                display: none;
            }

        .dev-process .step h4 {
            font-size: 16px;
        }

        .dev-process .step h6 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .dev-process .step p {
            margin-bottom: 25px !important;
        }

    .why-choose-services .why-choose-line::after {
        display: none;
    }

    .why-choose-services .why-choose-line li {
        margin-bottom: 25px;
    }

    .why-choose-services .below-tag-line {
        position: static;
        border: initial;
        padding: 0;
    }

        .why-choose-services .below-tag-line img {
            display: none;
        }

    .service-details .num-box {
        margin-right: 0;
    }

        .service-details .num-box .round-number {
            top: 35px;
        }

    .service-details span.numbers {
        display: none;
    }

    .vision-mission .card {
        margin-bottom: 10px;
    }

    .work-process ul li .feature-box-thumb {
        width: 70px;
        height: 70px;
    }

        .work-process ul li .feature-box-thumb img {
            width: 40px;
        }

    .image-track a {
        padding: 15px;
    }

    .image-track img {
        height: 60px;
        margin: 0px 0 10px;
    }

    .image-track h6 {
        margin-bottom: 0;
    }

    #particles-js {
        top: 115px;
    }

    .o-1 {
        order: 1;
    }

    .o-2 {
        order: 2;
    }

    .o-3 {
        order: 3;
    }

    .o-4 {
        order: 4;
    }

    .o-5 {
        order: 5;
    }

    .industry-serve .industry-icon {
        width: 80px;
        height: 80px;
    }

        .industry-serve .industry-icon img {
            width: 45px;
            height: 45px;
            object-fit: contain;
        }

    .industry-serve h5 {
        font-size: 16px;
    }

    .technology-img-slider img {
        width: 50px;
        height: 50px;
    }

    .blog-details .blog-box p {
        text-align: justify;
        hyphens: auto;
    }

    .footer .widget-title {
        font-size: 17px;
        font-weight: 500;
    }
}
