.choose-us-left-content {
    max-width: 550px;

    @include breakpoint (max-xl){
        max-width: initial;
    }

    .choose-text {
        margin-top: 25px;
    }

    .list-items {
        @include flex;
        justify-content: space-between;
        margin-top: 30px;

        @include breakpoint (max-xl){
            flex-wrap: wrap;
            gap: 30px;
        }

        ul {
            li {
                font-size: 16px;
                font-weight: 600;

                &:not(:last-child) {
					margin-bottom: 20px;

                    @include breakpoint (max-md){
                        margin-bottom: 12px;
                    }
				}

                img {
                    margin-right: 8px;
                }
            }
        }
    }

    .choose-feature {
        margin-top: 50px;

        @include breakpoint (max-lg){
            margin-top: 35px;
        }

        @include breakpoint (max-md){
            margin-top: 25px;
        }

        &:not(:last-child){
            margin-bottom: 20px;

        }

        .box-title {
            font-size: 16px;
            font-weight: 700;
            font-family: $heading-font;
        }

        .progress-value {
            margin-bottom: 10px;
            //margin-top: -0.5em;
            color: $header-color;
            text-transform: capitalize;
        }

        .progress {
            position: relative;
            height: 8px;
            background-color: rgba(29, 139, 138, 0.18);
            border-radius: 0;
            overflow: visible;
            margin-top: 15px;
            border-radius: 4px;
        }
            
        .progress-bar {
            background-color: $theme-color;
            height: 8px;
            margin: 0;
            border-radius: inherit;
            overflow: visible;
            position: relative;
            margin-top: 0;
            border-radius: 4px;
        }

        .progress-value {
            position: absolute;
            top: -38px;
            right: -8px;
            font-size: 16px;
            font-weight: 700;
            color: $header-color;
            font-family: $heading-font;
        }
    }

    .theme-btn {
        margin-top: 30px;
    }
}

.choose-us-right-thumb {
    position: relative;

    @include breakpoint (max-xl){
        height: 500px;
    }

    img {
        @include imgw;
        border-radius: 12px;
        object-fit: cover;
    }

    .choose-skill-content {
        background-color: $white;
        padding: 40px 35px;
        max-width: 303px;
        border-radius: 12px;
        position: absolute;
        bottom: -20px;
        right: -20px;

        @include breakpoint (max-xl){
            padding: 30px 28px;
            bottom: 20px;
            right: 20px;
            left: 20px;
        }

        .icon {
            img {
                width: initial;
                height: initial;
            }
        }

        h4 {
            font-size: 20px;
            margin-top: 70px;

            @include breakpoint (max-xl){
                margin-top: 25px;
                font-size: 17px;
            }
        }

        .link-btn {
            color: $theme-color;
            margin-top: 30px;
            display: inline-block;
            transition: all 0.4s ease-in-out;
            font-weight: 700;
            font-size: 16px;
            font-family: $body-font;
            text-decoration: underline;

            i {
                margin-left: 5px;
                transform: rotate(-45deg);
            }

            &:hover {
                color: var(--header);
            }
        }

        &:hover {
            .icon img {
                animation: wobble 1.5s ease-in-out;
            }
        }
    }
}

.counter-items-style-1 {
    border-radius: 12px;
    background-color: $white;
    padding: 40px 35px;

    @include breakpoint (max-md){
        text-align: center;
    }

    h2 {
        color: $theme-color;
        margin-bottom: 7px;
        font-size: 64px;
        font-weight: 500;

        .count {
            color: $header-color;
        }
    }
}

.video-wrapper {
    text-align: center;
    position: relative;

     @include breakpoint (max-xl){
        height: 600px;

        img {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
    }

    @include breakpoint (max-md){
        height: 530px;
    }

     @include breakpoint (max-xxs){
        height: 480px;
    }

    .video {
        text-align: center;

        .video-btn {
            width: 146px;
            height: 146px;
            line-height: 146px;
            text-align: center;
            border-radius: 122px;
            color: $white;
            display: inline-block;
            font-size: 43px;
            background: rgba(255, 255, 255, 0.13);
            border: 1px solid #FFFFFF;
            backdrop-filter: blur(14.55px);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50% ,-50%);

            &:hover {
                background-color: $theme-color;
                border-color: $theme-color;
            }


            @include breakpoint (max-sm){
                font-size: 18px;
                width: 80px;
                height: 80px;
                line-height: 80px;
            }
        }

        .ripple  {
            &::before,&::after {
                width: 146px;
                height: 146px;

            }

            @include breakpoint (max-sm){
                &::before,&::after {
                    width: 80px;
                    height: 80px;
                }
            }
        }
    }
}

.counter-feature-section {
    .container {
        max-width: 1346px;
    }
}

.counter-feature-wrapper {
    background-color: $theme-color;
    border-radius: 12px;
    padding: 78px 79px;
    margin-top: -120px;
    position: relative;
    z-index: 99;

    @include breakpoint (max-xl){
        padding: 60px 50px;
    }

    @include breakpoint (max-lg){
        padding: 60px 50px;
        padding-top: 45px;
        text-align: center;
    }

    @include breakpoint (max-sm){
        padding: 50px 30px;
        padding-top: 35px;
    }

    .counter-feature-1 {
        h2 {
            font-size: 180px;
            font-weight: 400;
            color: $white;

            @include breakpoint (max-xxl){
                font-size: 150px;
            }

            @include breakpoint (max-sm){
                font-size: 120px;
            }
        }

        p {
            color: $white;
        }
    }

    .counter-feature-2 {
        .icon {
            width: 80px;
            height: 80px;
            line-height: 80px;
            text-align: center;
            border-radius: 6px;
            background-color: rgba(236, 240, 240, 1);

            @include breakpoint (max-lg){
                margin: 0 auto;
            }
        }

        .content {
            h3 {
                font-size: 24px;
                font-weight: 600;
                color: $white;
                margin-top: 50px;
            }

            .line {
                width: 100px;
                height: 3px;
                background-color: $white;
                margin-top: 20px;
                margin-bottom: 20px;
                 @include breakpoint (max-lg){
                    margin: 20px auto 20px;
                }
            }

            p {
                color: $white;
                max-width: 330px;

                 @include breakpoint (max-lg){
                    margin: 0 auto;
                }
            }
        }

        &:hover {
            .icon img {
                animation: wobble 1.5s ease-in-out;
            }
        }
    }
}

.icon-wrapper-style-1 {
    @include flex;
    justify-content: space-between;
    gap: 30px;

    @include breakpoint (max-xl){
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    @include breakpoint (max-md){
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }

    .icon-feature-box {
        @include breakpoint (max-md){
            margin: 0 auto;
            text-align: center;
        }

        .icon {
            width: 80px;
            height: 80px;
            line-height: 80px;
            text-align: center;
            border-radius: 6px;
            background-color: $white;
            @include transition;

             @include breakpoint (max-md){
                margin: 0 auto;
            }

            img {
                @include transition;
            }
        }

        .content {
            h3 {
                font-size: 24px;
                font-weight: 600;
                margin-top: 50px;
            }

            .line {
                width: 100px;
                height: 3px;
                background-color: $theme-color;
                margin-top: 20px;
                margin-bottom: 20px;

                 @include breakpoint (max-md){
                    margin: 20px auto 20px;
                }
            }

            p {
                max-width: 330px;

                 @include breakpoint (max-md){
                    margin: 0 auto;
                    text-align: center;
                }
            }
        }

        &:hover {
            .icon img {
                animation: wobble 1.5s ease-in-out;
            }

            .icon {
                background-color: $theme-color;

                img {
                    filter: brightness(1000%) contrast(1000%);
                }
            }
            
        }
    }

    .icon-feature-thumb {
        position: relative;

        img {
            @include imgw;
            border-radius: 12px;
        }

        .phone-area {
            background: rgba(255, 255, 255, 0.13);
            border: 1px solid rgba(255, 255, 255, 0.26);
            backdrop-filter: blur(14.55px);
            border-radius: 7px;
            padding: 18px 32px;
            @include flex;
            gap: 20px;
            position: absolute;
            bottom: 20px;
            left: 23px;
            right: 23px;

            @include breakpoint (max-lg){
              left: 18px;
              right: 18px;
              bottom: 18px;
              padding: 18px 22px;
            }

            .icon {
                img {
                    width: initial;
                    height: initial;
                }
            }

            .content {
                p {
                    color: $white;
                    margin-bottom: 10px;

                    @include breakpoint (max-lg){
                        margin-bottom: 0;
                    }
                }

                a {
                    color: $white;
                    font-size: 24px;
                    font-weight: 500;

                    background-position: 0 95%;
                    background-repeat: no-repeat;
                    background-size: 0% 2px;
                    display: inline;

                    &:hover {
                        background-size: 100% 2px;
                        background-image: linear-gradient(180deg, $white 0%, $white 100%);
                    }

                    @include breakpoint (max-lg){
                        font-size: 20px;
                    }
                }
            }
        }
    }
}

.letter-img-items {
    max-width: 1344px;
    margin: 0 auto;
    margin-bottom: -80px;
    position: relative;
    margin-top: -64px;
    z-index: 9;

    .letter-image {
        background-size: cover;
        background-position: 50%;
        -webkit-background-clip: text;
        color: transparent;
        background-image: url(../../assets/img/home-2/bixoo-img.jpg);
        background-position: 7% 546px;
        background-size: 125% auto;
        font-size: 375px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.05em;
        animation-duration: 1500ms;
        -webkit-animation-duration: 1500ms;
        font-family: $heading-font;

        @include breakpoint (max-xxl){
            font-size: 340px;
        }

        @include breakpoint (max-xl){
            font-size: 280px;
        }

        @include breakpoint (max-lg){
            font-size: 200px;
        }

        @include breakpoint (max-md){
            font-size: 140px;
        }

        @include breakpoint (max-sm){
            font-size: 100px;
        }
    }

    &.style-2 {
        margin-bottom: -162px;
        margin-top: 60px;

        @include breakpoint (max-lg){
            margin-bottom: -103px;
        }
    }
}

.counter-feature-section-2 {
    .container {
        max-width: 1472px;
    }
}

.counter-feature-box-items-style-2 {
    background-color: $white;
    border-radius: 12px;
    padding: 70px 50px;
    position: relative;
    z-index: 9;

    @include breakpoint (max-xxl){
        padding: 30px;
    }

    .shape-1 {
        position: absolute;
        top: 80px;
        right: 60px;

        @include breakpoint (max-xl){
            display: none;
        }
    }

    h2 {
        font-size: 64px;
        font-weight: 500;
        color: $theme-color;

        @include breakpoint (max-sm){
            font-size: 48px;
        }
    }

    h3 {
        font-size: 24px;
        max-width: 284px;
        margin-top: 20px;
    }

    .line {
        width: 100px;
        height: 3px;
        background-color: $theme-color;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    &.active {
        background-color: rgba(216, 229, 229, 1);
        margin-top: -30px;

        @include breakpoint (max-xl){
            margin-top: 0;
        }
    }

    &.style-2 {
        position: relative;
        z-index: 9;

        &::before {
            @include before;
            background: linear-gradient(180deg, rgba(2, 36, 35, 0.25) 0%, rgba(2, 36, 35, 0.88) 100%);
            z-index: -1;
            border-radius: 12px;
        }

        h2 {
            color: $white;
        }

        h3 {
            color: $white;
        }

        .line {
            background-color: $white;
        }

        p {
            color: $white;
        }
    }
}

.choose-thumb-style-2 {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    z-index: 99;
    margin-top: 30px;
    max-width: 740px;

    @include breakpoint (max-xl){
        height: 370px;
    }

     @include breakpoint (max-lg){
        height: initial;
    }
    
    img {
        @include imgw;
        border-radius: 12px;
        position: relative;
        display: block;
        object-fit: cover;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;


        &:first-child {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            -webkit-transform: translateX(50%) scaleX(2);
            transform: translate(50%) scaleX(2);
            opacity: 0;
            -webkit-filter: blur(10px);
            filter: blur(10px)
        }
    }

    &:hover {
        img {
            &:first-child {
                -webkit-transform: translateX(0) scaleX(1);
                transform: translate(0) scaleX(1);
                opacity: 1;
                -webkit-filter: blur(0);
                filter: blur(0);
            }

            &:nth-child(2) {
                -webkit-transform: translateX(-50%) scaleX(2);
                transform: translateX(-50%) scaleX(2);
                opacity: 0;
                -webkit-filter: blur(10px);
                filter: blur(10px);
            }
        }
    }

    &.style-image2 {
        height: 370px;
    }
}

.build-industries-thumb-style-2 {

    @include breakpoint (max-lg){
        height: 500px;
    }

    img {
        @include imgw;
        border-radius: 12px;
        object-fit: cover;
    }
}

.single-circle-bar {
        display:flex;
        align-items:center;
        gap: 20px;
        margin-top: 20px;

        .circle-progress {
            width:88px;
            height:88px;
            position:relative;

            svg {
                width:100%;
                height:100%;
                transform:rotate(-90deg);
            }

            circle {
                fill:none;
                stroke-width:3;
                stroke-linecap:round;
            }

            .bg {
                stroke: rgba(29, 139, 138, 0.25);
            }

            .progress {
                stroke: #1D8B8A; 
                stroke-dasharray:339.292;
                stroke-dashoffset:339.292;
                transition:stroke-dashoffset 1.5s ease;
            }

            .value {
                position:absolute;
                inset:0;
                display:flex;
                align-items:center;
                justify-content:center;
                font-weight:500;
                font-size:18px;
                color: $theme-color;
            }
        }
}

.build-industries-content-style-2 {
    .build-industries-box {
        margin-top: 50px;
        gap: 0;
        background-color: $white;
        padding: 40px 60px;
        border-radius: 12px;
        margin-left: -150px;
        z-index: 9;
        position: relative;

        @include breakpoint (max-xxl){
            padding: 40px;
        }

        @include breakpoint (max-xl){
            margin-left: 0;
            padding: 30px 30px;
        }

        ul {
            border-top: 1px solid rgba(29, 139, 138, 0.15);
            padding-top: 40px;

            li {
                border-bottom: 1px solid rgba(29, 139, 138, 0.15);
                padding-bottom: 40px;
               

                .build-industries-items {
                    @include flex;

                    @include breakpoint (max-xl){
                        flex-wrap: wrap;
                        gap: 40px;
                    }

                    .build-list {
                        @include flex;
                        gap: 16px;

                        &.style-margin {
                            margin-left: 100px;

                            @include breakpoint (max-xl){
                                margin-left: 0;
                            }
                        }
                    }
                }

                h3 {
                    font-size: 18px;
                    font-weight: 600;

                    a {
                        i {
                            color: $theme-color;
                            font-size: 22px;
                            margin-left: 10px;
                        }

                        &:hover {
                            color: $theme-color;
                        }
                    }
                }

                &:not(:last-child){
                     margin-bottom: 40px;
                }
            }
        }
    }
}

.icon-feature-section-3 {
    margin-top: -170px;
    position: relative;
    z-index: 99;

    .container {
        max-width: 1626px;
    }
}

.icon-feature-wrapper {
    background-color: $white;
    padding: 35px;
    border-radius: 4px;
}

.icon-feature-box-items-style-3 {
    display: flex;
    gap: 22px;

    @include breakpoint (max-md){
        display: grid;
        justify-content: center;
        text-align: center;
    }

    .icon {
        width: 100%;
        max-width: 76px;
        height: 78px;line-height: 78px;
        background-color: $theme-color;
        border-radius: 6px;
        text-align: center;

        @include breakpoint (max-md){
            margin: 0 auto;
        }
    }

    .content {
        .title {
            font-size: 24px;
            margin-bottom: 5px;

            @include breakpoint (max-xl){
                font-size: 20px;
            }
        }

        .line {
            width: 185px;
            height: 2px;
            background-color: rgba(29, 139, 138, 0.26);
            margin-top: 20px;
            margin-bottom: 24px;
            position: relative;

            @include breakpoint (max-md){
                margin: 20px auto 20px;
            }

            &::before {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 65px;
                height: 2px;
                content: "";
                background: $theme-color;
            }
        }


        p {
            max-width: 326px;
            margin-top: 15px;
            margin-bottom: 30px;

             @include breakpoint (max-xl){
                font-size: 14px;
            }
        }

        .arrow-icon {

            i {
                font-size: 30px;
                color: $theme-color;
            }

            &:hover {
                i {
                    color: $header-color;
                }
            }
        }
    }

    &:hover {
        .icon img {
            animation: wobble 1.5s ease-in-out;
        }
    }
}


.work-process-box-items-style-3 {
    background-color: $white;
    border-radius: 12px;
    padding: 64px 35px;
    margin-top: 30px;
    position: relative;

    @include breakpoint (max-xxxl){
        padding: 50px 30px;
    }

    h3 {
        font-size: 24px;
    }

    .line {
        width: 100px;
        height: 3px;
        background-color: $theme-color;
        margin-top: 30px;
        margin-bottom: 24px;
    }

    span {
        background: linear-gradient(180deg, #1D8B8A 0%, #FFFFFF 74.71%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: $heading-font;
        font-weight: 600;
        font-size: 120px;
        line-height: 88%;
        position: absolute;
        bottom: -6px;
        right: 0;

         @include breakpoint (max-xl4){
           font-size: 90px;
        }

         @include breakpoint (max-xl){
           font-size: 80px;
        }
    }

    &.style-2 {
        margin-top: 75px;

        @include breakpoint (max-xl){
            margin-top: 30px;
        }
    }

    .circle-icon {
        background-color: $white;
        width: 56px;
        height: 56px;
        line-height: 45px;
        text-align: center;
        border-radius: 50%;
        color: $theme-color;
        display: inline-block;
        font-size: 20px;
        position: absolute;
        top: 30%;
        left: 96%;
        transition: all 0.4s ease-in-out;
        z-index: 1;
        border: 7px solid #ECF0F0;

         @include breakpoint (max-sm){
            display: none;
        }

        &:hover {
            background-color: $theme-color;
            color: $white;
        }

        &.style-2 {
            position: absolute;
            top: 46%;
            left: 96%;
        }
    }
}

.work-process-style-8 {

    .title-shape-box {
        .title-icon {
            position: relative;
            width: 96px;
            height: 97px;
            line-height: 90px;
            border-radius: 50%;
            text-align: center;
            border: 5px solid $theme-color;
            margin: 0 auto;
            margin-top: 90px;

            @include breakpoint (max-xxl){
                margin-top: 60px;
            }

            @include breakpoint (max-xl){
                margin-top: 40px;
            }

            @include breakpoint (max-lg){
                display: none;
            }
        }

        .bar-shape {
            text-align: center;   
            margin-top: -2px; 

            @include breakpoint (max-lg){
                display: none;
            }
        }
    }
    .work-process-btn {
        margin-top: 45px;
        text-align: center;
    }

    .items-style-8 {
        margin-top: 0;

        @include breakpoint (max-xl){
            margin-top: 30px;
        }
    }
}

.choose-us-left-thumb-style-3 {
    margin-left: 40px;
    margin-right: 80px;
    margin-top: 76px;
    position: relative;

    @include breakpoint (max-xl){
        margin-top: 30px;
        margin-left: 30px;
        margin-right: 30px;
        height: 500px;
    }

    img {
        @include imgw;
        border-radius: 4px;
        object-fit: cover;
    }

    .sm-thumb {
        position: absolute;
        bottom: 80px;
        left: 308px;
        max-width: 336px;
        

        img {
            width: 100%;
            height: 100%;
            border-radius: 5px;
        }
    }

    .sm-thumb-2 {
        position: absolute;
        top: -45px;
        right: -63px;
        max-width: 316px;
        

        img {
            width: 100%;
            height: 100%;
            border-radius: 5px;
        }
    }
}


.choose-section-3 {
    position: relative;

    .shape-1 {
        position: absolute;
        top: 0;
        right: 0;
    }

    .shape-2 {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

.choose-us-left-thumb-style-8 {
    position: relative;
    margin-top: 35px;
    margin-bottom: 100px;

    @include breakpoint (max-lg){
        margin-bottom: 80px;
    } 

    @include breakpoint (max-xs){
        margin-bottom: 0;
    }

    img {
        border-radius: 8px;
        position: relative;

         @include breakpoint (max-md){
            @include imgw;
        }
    }

    &::before {
        position: absolute;
        content: "";
        height: 156px;
        width: 10px;
        background-color: $theme-color;
        border-radius: 8px;
        right: 110px;
        top: 60px;

        @include breakpoint (max-xl){
            content: none;
        }
    }

    .thumb-2 {
        position: absolute;
        bottom: -100px;
        right: 15px;

        @include breakpoint (max-lg){
            bottom: -70px;
            right: 0;
        }

        @include breakpoint (max-xs){
            display: none;
        }

        img {
            border-radius: 8px;

            @include breakpoint (max-md){
                @include imgw;
            } 
        }
    }
}

.choose-us-right-content-style-3 {
    margin-left: 50px;
    margin-top: 30px;

    @include breakpoint (max-xl){
        margin-left: 0;
        margin-right: 30px;
    }

     @include breakpoint (max-lg){
       margin-left: 30px;
       margin-right: 30px;
    }

    .icon-area {
        @include flex;
        gap: 20px;

        h3 {
            max-width: 165px;
            font-size: 22px;
        }
    }

    p {
        max-width: 402px;
        margin-top: 20px;
    }

    .choose-feature {
        margin-top: 50px;
        max-width: 472px;

        @include breakpoint (max-xl){
           margin-top: 40px;
           max-width: initial;
        }

         @include breakpoint (max-md){
           margin-top: 25px;
        }

        &:not(:last-child){
            margin-bottom: 20px;
        }

        .box-title {
            font-size: 16px;
            font-weight: 700;
            font-family: $heading-font;
        }

        .progress-value {
            margin-bottom: 10px;
            //margin-top: -0.5em;
            color: $header-color;
            text-transform: capitalize;
        }

        .progress {
            position: relative;
            height: 8px;
            background-color: rgba(65, 197, 117, 0.12);
            border-radius: 0;
            overflow: visible;
            margin-top: 15px;
            border-radius: 4px;
        }
            
        .progress-bar {
            background-color: $theme-color;
            height: 8px;
            margin: 0;
            border-radius: inherit;
            overflow: visible;
            position: relative;
            margin-top: 0;
            border-radius: 4px;
        }

        .progress-value {
            position: absolute;
            top: -38px;
            right: -8px;
            font-size: 16px;
            font-weight: 700;
            color: $header-color;
            font-family: $heading-font;
        }
    }

    .theme-btn {
        margin-top: 50px;

        @include breakpoint (max-xl){
           margin-top: 40px;
        }

         @include breakpoint (max-md){
           margin-top: 25px;
        }
    }

    &:hover {
        .icon-area {
            .icon img {
                animation: wobble 1.5s ease-in-out;
            }
        }
    }
}

.counter-wrap-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 120px;

    @include breakpoint (max-lg){
        gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }

    @include breakpoint (max-sm){
        gap: 30px;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }
}

.counter-box-items-style-3 {
    max-width: 322px;

    @include breakpoint (max-sm){
        margin: 0 auto;
        text-align: center;
    }

    h2 {
        font-size: 64px;
        font-weight: 500;
        color: $theme-color;

         @include breakpoint (max-lg){
            font-size: 50px;
        }
    }

    h3 {
        font-size: 24px;
        margin-top: 20px;
        margin-bottom: 10px;

        @include breakpoint (max-lg){
            font-size: 20px;
        }
    }

    .line {
        width: 100%;
        height: 2px;
        background-color: rgba(29, 139, 138, 0.26);
        margin-top: 20px;
        margin-bottom: 24px;
        position: relative;

         @include breakpoint (max-sm){
            margin: 20px auto;
        }

        &::before {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 65px;
            height: 2px;
            content: "";
            background: $theme-color;
            z-index: -1;
        }
    }

    p {
        margin-top: 6px;
    }
}

.client-information-section-3 {
    margin-top: -120px;
    position: relative;
    z-index: 9;

    .container {
        max-width: 1448px;
    }
}

.client-information-3 {
    background-color: $white;
    border-radius: 12px;
    padding: 73px 120px;

    @include breakpoint (max-xl){
        padding: 60px 50px;
    }

    @include breakpoint (max-sm){
        padding: 50px 30px;
    }

    .client-area {
        @include flex;
        gap: 20px;
        position: relative;

        .bar-shape {
            position: absolute;
            bottom: 20px;
            right: 0;

            @include breakpoint (max-xxl){
                display: none;
            }
        }

        @include breakpoint (max-lg){
            flex-wrap: wrap;
        }

        p {
            max-width: 168px;
        }
    }

    .brand-area {
        margin-top: 80px;
        text-align: center;
    }
}

.video-wrapper-4 {
    text-align: center;
    position: relative;
    border-radius: 12px;

    @include breakpoint (max-xl){
        height: 600px;

        img {
            object-fit: cover;
            border-radius: 12px;
        }
    }

    .video {
        text-align: center;

        .video-btn {
            width: 146px;
            height: 146px;
            line-height: 146px;
            text-align: center;
            border-radius: 122px;
            color: $theme-color;
            display: inline-block;
            font-size: 44px;
            background: $white;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50% ,-50%);

            &:hover {
                background-color: $theme-color;
                color: $white;
            }


            @include breakpoint (max-sm){
                font-size: 18px;
                width: 80px;
                height: 80px;
                line-height: 80px;
            }
        }

        .ripple  {
            &::before,&::after {
                width: 146px !important;
                height: 146px !important;

            }

            @include breakpoint (max-sm){
                &::before,&::after {
                    width: 80px !important;
                    height: 80px !important;
                }
            }
        }
    }

    img {
        width: 100%;
        height: 100%;
    }
}


.circle-bar-wrapper-4 {
    .circle-bar-area {
        @include flex;
        gap: 70px;
        margin-right: 40px;

        @include breakpoint (max-xl){
            margin-right: 0;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .single-circle-bar-4 {
            text-align: center;

            .circle-progress {
                width: 146px;
                height: 146px;
                position:relative;
                margin: 0 auto;

                svg {
                    width:100%;
                    height:100%;
                    transform:rotate(-90deg);
                }

                circle {
                    fill:none;
                    stroke-width:3;
                    stroke-linecap:round;
                }

                .bg {
                    stroke: rgba(29, 139, 138, 0.25);
                }

                .progress {
                    stroke: #1D8B8A; 
                    stroke-dasharray:339.292;
                    stroke-dashoffset:339.292;
                    transition:stroke-dashoffset 1.5s ease;
                }

                .value {
                    position:absolute;
                    inset:0;
                    display:flex;
                    align-items:center;
                    justify-content:center;
                    font-weight:600;
                    font-size:26px;
                    color: rgba(2, 36, 35, 1);

                     @include breakpoint (max-xl){
                        font-size: 18px;
                    }
                }
            }

            .content {
                margin-top: 20px;

                p {
                    font-size: 22px;
                    font-weight: 500;
                    font-family: $heading-font;
                    color: $header-color;

                    @include breakpoint (max-xl){
                        font-size: 18px;
                    }
                }
            }
        }
    }

    .circle-content {
        margin-left: 30px;

         @include breakpoint (max-xl){
           margin-left: 0;
           text-align: center;
        }

        .theme-btn {
            margin-top: 30px;
        }
    }
}

.work-process-left-thumb-style-4 {
    .section-title {
        h2 {
            font-size: 48px;

            	@include breakpoint(max-xxl){
                    font-size: 45px;
                }

                @include breakpoint(max-xl){
                    font-size: 45px;
                }

                @include breakpoint(max-lg){
                    font-size: 40px;
                }

                @include breakpoint(max-md){
                    font-size: 38px;
                }

                @include breakpoint(max-sm){
                    font-size: 32px;
                }

                @include breakpoint(max-xxs){
                    font-size: 27px;
                }
        }
    }

    .work-process-thumb {
        margin-top: 40px;

        img {
            @include imgw;
            border-radius: 12px;
        }

        &.thumb-style-6 {
            margin-right: 20px;

            @include breakpoint(max-xxl){
                margin-right: 0;
            }
        }
    }
}

.work-process-content-style-4 {
    margin-left: 70px;
    position: relative;
    z-index: 9;
    padding: 55px 45px;
    padding-left: 0;

    @include breakpoint (max-xl){
        margin-left: 0;
    }

     @include breakpoint (max-sm){
       padding: 0;
       text-align: center;
    }

    // .check-shape-1 {
    //     position: absolute;
    //     top: 170px;
    //     left: 35px;
    // }

    .check-shape-2 {
        position: absolute;
        top: 360px;
        left: 35px;
    }

    &::before {
       @include before;
       background-color: $white;
        border-radius: 12px;
        z-index: -1;
        left: 135px;
        width: initial;

        @include breakpoint (max-sm){
            display: none;
        }
    }

    li {
        @include flex;
        gap: 15px;
        position: relative;

         @include breakpoint (max-sm){
           display: grid;
           justify-content: center;
        }

        .icon-items {
            @include flex;
            gap: 15px;
            position: relative;

            .check-shape-1 {
                position: absolute;
                bottom: -70px;
                left: 38px;

                @include breakpoint (max-lg){
                    display: none;
                }
            }

             @include breakpoint (max-sm){
                justify-content: center;
            }

            .icon {
                width: 93px;
                height: 93px;
                line-height: 93px;
                background-color: $white;
                text-align: center;
                border-radius: 50%;
            }

            .number {
                background-color: $white;
                width: 56px;
                height: 56px;
                line-height: 45px;
                text-align: center;
                border-radius: 50%;
                display: inline-block;
                transition: all 0.4s ease-in-out;
                z-index: 1;
                border: 7px solid #ECF0F0;
                font-size: 22px;
                font-weight: 600;
                color: $theme-color;
            }
        }

        .content {
            h3 {
                font-size: 22px;

                @include breakpoint (max-xl){
                    font-size: 20px;
                }
            }

            p {
                max-width: 415px;
                margin-top: 15px;
            }
        }

        &:not(:last-child) {
            margin-bottom: 85px;

            @include breakpoint (max-lg){
                margin-bottom: 40px;
            }
        }

        &:hover {
            .icon-items {
                .icon img {
                    animation: wobble 1.5s ease-in-out;
                }
            }
        }
    }

    &.content-style-6 {
        padding: 0;

        &::before {
            content: none;
        }

        li {
            align-items: flex-start;

            .icon-items {
                position: relative;
                flex-shrink: 0;

                .number {
                    background-color: $theme-color;
                    width: 87px;
                    height: 87px;
                    line-height: 75px;
                    text-align: center;
                    border-radius: 50%;
                    display: inline-block;
                    z-index: 1;
                    font-size: 26px;
                    font-weight: 600;
                    color: $white;
                    border: 7px solid transparent;
                }
            }

            &:not(:last-child) {
                .icon-items {
                    &::before {
                        position: absolute;
                        content: "";
                        left: 50%;
                        top: 87px;
                        transform: translateX(-50%);
                        width: 2px;
                        height: calc(100% + 60px);
                        border-left: 1px dashed rgba(29, 139, 138, 0.33);
                        z-index: 0;

                        @include breakpoint (max-lg){
                            height: calc(100% + 30px);
                        }
                    }
                }
            }

            .content {
                h3 {
                    font-size: 24px;

                    @include breakpoint (max-xl){
                        font-size: 20px;
                    }
                }
            }
        }
    }
}

.work-process-section-4 {
    @include breakpoint (max-xl){
        padding-bottom: 100px !important;
    }

    @include breakpoint (max-lg){
        padding-bottom: 80px !important;
    }
}

.counter-icon-wrapper {
    @include flex;
    justify-content: space-between;

    @include breakpoint (max-xl){
        flex-wrap: wrap;
        gap: 30px;
    }

    @include breakpoint (max-md){
        justify-content: center;
        text-align: center;
    }

    .counter-icon-items {
        @include flex;
        gap: 20px;

        @include breakpoint (max-md){
            justify-content: center;
            display: grid;
            text-align: center;
        }

        .icon {
            border-right: 1px solid rgba(120, 143, 143, 0.22);
            padding-right: 20px;

            @include breakpoint (max-md){
                border: none;
                padding-right: 0;
            }
        }

        .content {
            h2 {
                color: rgba(29, 139, 138, 0.28);

                .count {
                    color: rgba(2, 36, 35, 1);
                    margin-right: 10px;
                }
            }
        }

        &:hover {
            .icon img {
                animation: wobble 1.5s ease-in-out;
            }
        }
    }
}

.choose-thumb-style-5 {
    position: relative;
    z-index: 9;


    .choose-thumb-1 {
        max-width: 647px;
        
        img {
            @include imgw;
        }
    }

}

.choose-content-style-5 {
    .list-items {
        margin-top: 25px;

        li {
            font-size: 16px;
            font-weight: 600;

            img {
                margin-right: 5px;
            }

            &:not(:last-child) {
                margin-bottom: 10px;
            }
        }
    }
}

.bixo-image-box {

    .bixo-image {
        margin-top: -10px;
        margin-bottom: -40px;
        position: relative;
        z-index: 9;

        img {
            width: 100%;
            height: 100%;
        }
    }
}

.choose-section-31 {
    @include breakpoint (max-lg){
        padding-bottom: 80px !important;
    }
}

.choose-us-section-5 {
    position: relative;

    .dot-shape {
        position: absolute;
        bottom: 0;
        right: 0;

        @include breakpoint (max-xxxl){
            display: none;
        }
    }
}

.how-it-left-content-style-9 {
    position: relative;

    .border-shape {
        position: absolute;
        right: 50px;
        top: 0;

        @include breakpoint (max-xl){
            display: none;
        }
    }

    .how-it-text {
        max-width: 460px;
        margin-top: 25px;
    }

     .theme-btn {
        margin-top: 40px;

        @include breakpoint (max-xl){
            margin-top: 30px;
        }

        @include breakpoint (max-xl){
            margin-bottom: 30px;
        }

        @include breakpoint (max-md){
            margin-top: 20px;
        }
    }
}

.how-it-right-content-style-9 {
    .how-it-items {
        background-color: $white;
        padding: 30px;
        padding-bottom: 20px;
        border-radius: 12px;

        &:not(:last-child) {
            margin-bottom: 24px;
        }

        .icon {
            margin-bottom: 17px;
            @include transition;

            img {
                @include transition;
            }
        }

        .content {
            h3 {
                font-size: 30px;
                margin-bottom: 12px;

                @include breakpoint (max-md){
                    font-size: 26px;
                }

                @include breakpoint (max-sm){
                    font-size: 22px;
                }
            }
        }

        &:hover {
            .icon img {
                animation: wobble 1.5s ease-in-out;
            }
        }
    }
}

.choose-us-section-12 {
    position: relative;

    .choose-shape-1 {
        position: absolute;
        top: 0;
        right: 0;

        @include breakpoint (max-xxl){
            display: none;
        }
    }

    .choose-shape-2 {
        position: absolute;
        bottom: 100px;
        right: 0;

        @include breakpoint (max-xxl){
            display: none;
        }
    }
}

.choose-left-itmes-12 {
    margin-right: 60px;

    @include breakpoint (max-xl){
        margin-right: 0;
    }

    .choose-thumb {
        margin-top: 50px;

        @include breakpoint (max-lg){
            margin-top: 30px;
            height: 500px;
        }

        @include breakpoint (max-md){
            height: 480px;
        }

        img {
            @include imgw;
            border-radius: 12px;
            object-fit: cover;
        }
    }
}

.choose-right-content-12 {
    .choose-items {
        border-bottom: 1px solid rgba(2, 36, 35, 0.1);
        padding-bottom: 35px;
        margin-top: 45px;

        .icon-area {
            display: flex;
            gap: 32px;

            .title {
                font-size: 22px;
                font-weight: 600;
                max-width: 270px;
            }
        }

        p {
            margin-top: 22px;
            font-size: 18px;
            font-weight: 500;
        }

        &:hover {
            .icon-area {
                .icon {
                    img {
                        animation: wobble 1.5s ease-in-out;
                    }
                }
            }
        }
    }
}