.testingWrap {
    position: relative;

    &::before {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background-color: rgba(0, 0, 0, 0.5);
        content: "";
    }

    .overlayImg {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;

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

.testingContentWrap {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50%;
    padding-left: 50px;

    p {
        color: #fff;
    }
}

.finishingContentWrap {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 30px;

    .finishingItem {
        width: 100%;
        max-width: 33.33%;
        padding: 0 15px;
        flex: 0 0 33.33%;
        -ms-flex: 0 0 33.33%;

        .finishingInner {
            background-color: #fff;
            padding: 20px 20px 50px;
            border-radius: 30px;
            height: 100%;

            .finishingHeading {
                display: flex;
                align-items: center;
                margin-bottom: 15px;

                h4 {
                    width: calc(100% - 50px);
                    padding-right: 20px;
                    font-weight: 300;
                    font-size: 26px;
                }

                .finishingIcon {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    align-items: center;
                    justify-content: center;
                    background-color: var(--orange-color);
                    border-radius: 50%;
                    display: flex;

                    img {
                        filter: brightness(0) invert(1);
                    }
                }
            }
        }
    }
}

.chooseContentWrap {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;

    .chooseItem {
        width: 100%;
        max-width: 25%;
        flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        padding: 0 15px;
        position: relative;

        &::after {
            width: 1px;
            height: 80%;
            position: absolute;
            content: "";
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.25);
        }

        &:last-child {
            &:after {
                display: none;
            }
        }

        .chooseInner {
            height: 100%;
            padding: 20px;
            border-radius: 15px;
            transition: 0.5s;

            .chooseIcon {
                width: 60px;
                height: 60px;
                display: flex;
                margin: 0 auto;
                align-items: center;
                border-radius: 10px;
                margin-bottom: 10px;
                justify-content: center;

                img {
                    transition: 0.5s;
                    filter: brightness(0) invert(0.5);
                }
            }

            .chooseTxt {
                text-align: center;
            }
        }

        &:hover {
            .chooseInner {
                background-color: #077745;

                .chooseIcon {
                    img {
                        filter: invert(1);
                    }
                }

                .chooseTxt {
                    p {
                        color: #fff;
                    }
                }
            }
        }
    }
}


.vdoItemSlider {
    .slick-arrow {
        transition: 0.5s;
        bottom: -30px;
        top: auto;
        z-index: 2;
        transform: none;

        &.slick-prev {
            left: calc(50% - 60px);
        }

        &.slick-next {
            right: calc(50% - 60px);
        }
    }
}

.vdoItem {
    margin-bottom: 30px;

    .finishingInner {
        padding: 0 !important;
        background-color: transparent !important;
    }
}

.vdoPopBox {
    position: relative;
    overflow: hidden;
    border-radius: 20px;

    a {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #0000004d;

        span {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;

            i,
            svg {
                font-size: 26px;
                color: #077745
            }
        }
    }
}


.listWrap {
    max-width: 70%;
    ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        li {
            /* margin: 0 15px;
            padding: 30px 15px;
            border-radius: 30px;
            margin-bottom: 15px;
            text-align: center;
            width: calc(50% - 30px);
            box-shadow: 3px 3px 4px 2px #00000015;
            background: linear-gradient(23deg, #f6651c 0%, #f6651c 100%); */
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 30px 15px;
            border-radius: 25px;
            position: relative;
            margin: 0 15px 30px;
            width: calc(50% - 30px);
            background-color: #ffffff;

            figure{
                width: 90px;
                height: 90px;
                padding: 20px;
                border-radius: 50%;

                img{
                    display: inline-block;
                }
            }
            .liCont{
                display: flex;
                flex-direction: column;
                width: calc(100% - 90px);
                padding-left: 30px;
            }

            &::before {
                content: normal;
            }

            .orangeText {
                font-weight: 600;
                font-size: 40px;
                line-height: 1;
                font-family: 'Public Sans';

                .fz_24{
                    font-size: 40px !important;
                }
            }

            &:nth-child(1){
                border-left: 10px solid #007743;
                figure{
                    background-color: #007743   ;
                }
                .orangeText {
                    color: #007743 !important;
                }
            }
            &:nth-child(2){
                border-right: 10px solid #FF8531;
                figure{
                    background-color: #FF8531   ;
                }
                .orangeText{
                    color: #FF8531 !important;
                }
            }
            &:nth-child(3){
                border-left: 10px solid #007743;
                figure{
                    background-color: #007743   ;
                }
                .orangeText{
                    color: #007743 !important;
                }
            }
            &:nth-child(4){
                border-right: 10px solid #FF8531;
                figure{
                    background-color: #FF8531   ;
                }
                .orangeText{
                    color: #FF8531 !important;
                }
            }
        }
    }
}

@media(max-width: 1366px) {
    .listWrap {
        ul {
            li {
                figure{
                    width: 70px;
                    height: 70px;
                    padding: 15px;
                }
                .liCont {
                    width: calc(100% - 70px);
                    padding-left: 15px;
                }
                .orangeText {
                    font-size: 30px;
                }
            }
        }
    }
    .finishingContentWrap {
        & .finishingItem {
            & .finishingInner {
                & .finishingHeading {
                    h4 {
                        font-size: 20px;
                    }
                }
            }
        }
    }
}

@media(max-width: 1200px) {
    .listWrap {
        max-width: 100%;

        ul {
            margin-left: -15px;
            margin-right: -15px;
        }
    }
}

@media(max-width: 1024px) {
    .testingContentWrap {
        left: 0;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .finishingContentWrap {
        .finishingItem {
            .finishingInner {
                .finishingHeading {
                    h4 {
                        font-size: 18px;
                    }
                }
            }
        }
    }
}

@media(max-width: 991px) {
    .p_40 {
        padding: 20px;
    }

    .aboutImgWrap {
        padding-left: 0;
    }


    .finishingWrap {
        &.bg_FFF5EE {
            padding-bottom: 60px;
        }
    }

    .finishingContentWrap {
        .finishingItem {
            width: 100%;
            max-width: 100%;
            flex: 0 0 100%;
            -ms-flex: 0 0 100%;

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

            .finishingInner {
                padding: 20px 20px 20px;
            }
        }
    }

    .machiningSec {
        .aboutImgWrap {
            margin-bottom: 40px;
        }

        .machiningWrap {
            &.p_40 {
                padding: 30px 20px 20px;
            }
        }

        .aboutTxt {
            &.pl_30 {
                padding-left: 0px;
            }
        }
    }

    .productDetails_1 {
        .detailsBoxWrap {
            .row {
                flex-direction: column-reverse;
            }
        }

        .textWrap {
            margin-top: 20px;
        }

        .btnWrap {
            text-align: center;
        }
    }
}


@media(max-width: 768px) {
    .chooseContentWrap {
        & .chooseItem {
            .chooseInner {
                padding: 0px;
            }
        }
    }

    .listWrap {
        max-width: 100%;

        ul {
            li {
                width: 100%;    
                margin: 0 15px 10px;
            }
        }
    }

    .btnWrap {
        .btnMain {
            &.btnOne {
                &.getInTouchBtn {
                    height: auto;
                }
            }
        }
    }
}

@media(max-width: 767px) {
    .chooseContentWrap {
        .chooseItem {
            padding: 15px;
            max-width: 50%;
            flex: 0 0 50%;
            -ms-flex: 0 0 50%;

            &::before {
                width: 80%;
                height: 1px;
                position: absolute;
                content: "";
                right: auto;
                left: 50%;
                top: 100%;
                transform: translateX(-50%);
                background-color: rgba(0, 0, 0, 0.25);
            }

            &:nth-child(even) {
                &::after {
                    content: normal;
                }
            }

            &:nth-last-child(1),
            &:nth-last-child(2) {
                &::before {
                    display: none !important;
                }
            }
        }
    }


}

@media screen and (max-width: 575px) {
    .chooseContentWrap {
        .chooseItem {
            max-width: 100%;
            flex: 0 0 100%;
            padding: 15px 0;
            -ms-flex: 0 0 100%;

            &::before {
                display: block !important;
            }

            &::after {
                content: normal;
            }

            &:nth-last-child(2) {
                &::before {
                    display: block !important;
                }
            }

            &:nth-last-child(1) {
                &::before {
                    display: none !important;
                }
            }
        }
    }
    }