@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --bg-color: white;
    --text-color: #000;
    --purple-bg: #0C0056;
    --purple-text: #0C0056;
    --grey-bg: #E4E9ED;
    --grey-text: #E4E9ED;
    --blue-text: #008FFF;
    --blue-bg: #008FFF;
    --light-blue-bg: #E0EAF0;
    --light-blue-bg-2: #E3E9ED;
    --yellow-bg: #FFB600;
    --light-grey-text: #F4F6F6;
    --dark-blue-text: #100079;
    --dark-blue-text-2: #bab0ff;
}

.skyBg {
    background-color: var(--blue-bg);
}

.blueBg {
    background-color: var(--dark-blue-text);
}

.grayBg {
    background-color: #E3E9ED;
}

.blackText {
    color: #000;
}

.whiteBox {
    * {
        color: #fff !important;
    }
}

.opacityBkBg {
    background-color: #00000020;
}

html,
body {
    height: auto;
    /* overflow-y: auto; */
    scroll-behavior: smooth;
}

p {
    font-size: 18px;
    color: #1B1C21;
    line-height: 28px;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-family: "Roboto", sans-serif;
    line-height: 1.3;
}

h4,
.h4 {
    font-size: 18px;
    color: #1B1C21;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;

}

ul li,
ol li {
    font-size: 16px;
    line-height: normal;
    color: #000;
    line-height: 1.4;
}

ul.customList li {
    list-style-type: none;
    list-style-position: inside;
    padding-left: 20px;
    position: relative;
}
ul.customList li:before{
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    content: '';
    border-radius: 50%;
    position: absolute;
    background-color: #000;

}

ul.customList li li {
    list-style-type: circle;
}

ol li {
    list-style-type: circle;
    list-style-position: inside;
    padding-left: 20px;
}


.ff_roboto {
    font-family: "Roboto", sans-serif;
}

.ff_poppins {
    font-family: "poppins", sans-serif;
}

.container,
.container-mid {
    width: 100%;
    max-width: 1360px;
    padding: 0 15px;
    margin: 0 auto;
}

.container-max {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.commonSec {
    padding: 120px 0;
}

.purpleBg {
    background-color: var(--purple-bg) !important;
}

.ltBlueBg {
    background-color: var(--light-blue-bg) !important;
}

.ltBlueBg2 {
    background-color: var(--light-blue-bg-2) !important;
}

.purpleText {
    color: var(--purple-text) !important;
}

.GreyText {
    color: var(--grey-text) !important;
}

.ltGreyText {
    color: var(--light-grey-text) !important;
}

.dBlueText {
    color: var(--dark-blue-text) !important;
}

.dBlueText-2 {
    color: var(--dark-blue-text-2) !important;
}

.skyText {
    color: var(--blue-text);
}

.col_E0EAF0 {
    color: #E0EAF0 !important;
}

.opacity_2 {
    opacity: 0.2;
}

.opacity_3 {
    opacity: 0.3;
}


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background-color: #ccc;
}

::-webkit-scrollbar-thumb {
    background-color: #0C0056;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: 0.3s;
    font-family: "Poppins", sans-serif;
    font-weight: normal;
}

.headingWrap {
    padding-bottom: 30px;
    position: relative;
}

.secSmallH {
    color: #0C0056;
    font-family: "Roboto", sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 70px;
    text-transform: uppercase;

    span {
        color: #474747;
        font-weight: 400;
    }
}

.btnWrap {
    margin-top: 30px;

    &:not(:last-child) {
        margin-right: 30px;
    }

    .btnOne {
        display: inline-flex;


        span.btnTxt {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #FFF;
            text-align: center;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            letter-spacing: 2.7px;
            text-transform: uppercase;
            min-width: 190px;
            height: 56px;
            padding: 0 30px;
            background-color: #008FFF;
            border: 1px solid #008FFF;
            border-radius: 50px;
            transition: all 0.5s;
        }

        span.arrow {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background-color: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-left: -2px;
            background-color: #008FFF;
            border: 1px solid #008FFF;
            transition: all 0.5s;

            &::after {
                content: '';
                position: absolute;
                background-image: url(../images/common/Arrow.png);
                background-repeat: no-repeat;
                background-size: 100%;
                width: 20px;
                height: 20px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                filter: brightness(0) saturate(100%) invert(36%) sepia(76%) saturate(2625%) hue-rotate(189deg) brightness(103%) contrast(110%);
                opacity: 0;
                transition: all 0.5s;
            }
        }

        &:hover {
            span.btnTxt {
                background-color: transparent;
                border-color: #008FFF;
                color: #008FFF;
            }

            span.arrow {
                background-color: transparent;
                border-color: #008FFF;
                font-size: 0;
                position: relative;
                transform: rotate(45deg);

                &::after {
                    opacity: 1;
                }
            }
        }
    }

    &.transBtnWrap {
        .btnOne {
            span.btnTxt {
                background-color: transparent;
                border-color: #fff;
                margin-right: 10px;
            }

            span.arrow {
                background-color: transparent;
                border-color: #fff;
            }

            &:hover {
                span.btnTxt {
                    background-color: #008FFF;
                    border-color: transparent;
                    color: #fff;
                }

                span.arrow {
                    background-color: #008FFF;
                    border-color: transparent;
                    transform: rotate(45deg);

                    &::after {
                        opacity: 1;
                        filter: none;
                    }
                }
            }
        }

        &.transBtnWrap_bk {
            .btnOne {
                span.btnTxt {
                    color: #000;
                    border-color: #000;
                }

                span.arrow {
                    border-color: #000;

                    img {
                        filter: invert(1);
                    }
                }

                &:hover {
                    span.btnTxt {
                        color: #fff;
                        border-color: transparent;
                    }

                    span.arrow {
                        border-color: #008FFF;

                        &::after {
                            filter: none;
                        }

                        img {
                            filter: none;
                        }
                    }
                }
            }
        }
    }
}

.commonBgSec {
    border-radius: 15px;
    padding: 100px 0px;

    &.purpleBg {
        .dBlueText {
            color: #867bcf !important;
        }
    }
}

.secBigH {
    color: var(--grey-text);
    font-size: 160px;
    font-weight: 900;
    line-height: 0.75;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
}

.minus_100 {
    margin-top: -100px;
}

.row_gap20 {
    row-gap: 20px;
}

.row_gap25 {
    row-gap: 25px;
}

.row_gap30 {
    row-gap: 30px;
}

/* marquee heading */
.marqueeHeading {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;

    .marqueeInner {
        display: inline-block;
        white-space: nowrap;

        .secBigH {
            position: relative;
            color: var(--grey-text);
            padding: 0px 60px;

            &::after {
                content: '';
                position: absolute;
                bottom: 65px;
                right: -20px;
                width: 25px;
                height: 25px;
                border-radius: 50%;
                background-color: var(--grey-bg);
            }
        }
    }
}

.ltBlueBg {
    .marqueeHeading {
        .marqueeInner {
            .secBigH {
                &::after {
                    background: #F4F6F6;
                }
            }
        }
    }
}

/* slider buttons */
.slick-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #0C0056;
    font-size: 0;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    z-index: 2;

    &::after {
        content: '';
        font-family: fontawesome;
        position: absolute;
        color: #fff;
        font-size: 16px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s;
    }

    &.slick-prev {
        left: 60px;

        &::after {
            content: '\f060';
        }
    }

    &.slick-next {
        left: auto;
        right: 60px;

        &::after {
            content: '\f061';
        }
    }

    &:hover {
        background-color: #FFB600;

        &::after {
            color: #3F3F3F;
        }
    }
}

.infraArrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #fff;
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    z-index: 2;

    &::after {
        content: '';
        font-family: fontawesome;
        position: absolute;
        color: #fff;
        font-size: 16px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s;
    }

    &.swiper-button-prev2 {
        right: 18px;

        &::after {
            content: '\f060';
        }
    }

    &.swiper-button-next2 {

        &::after {
            content: '\f061';
        }
    }

    &:hover {
        background-color: #FFB600;
        border-color: transparent;

        &::after {
            color: #3F3F3F;
        }
    }
}

.overlapBtm {
    position: relative;
    /* margin-top: -60px; */
}

.page-template-mini-excavator,
.page-template-dozer {
    .caseSec {
        .secBigH {
            margin-bottom: 10px;
        }

        .overlapBtm {
            margin-top: 0;
        }
    }
}

section {
    position: relative;
}


/* number system design */
.aboutTxtCard {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;

    .abtTxtCardRow {
        width: 50%;
        padding: 0px 15px;
        position: relative;

        &:last-child,
        &:nth-child(5) {
            .aboutTxtCardInn {
                border-bottom: 0;
            }
        }

        &:nth-child(odd) {
            &::after {
                content: '';
                position: absolute;
                right: 0;
                top: 0;
                width: 1px;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.25);
            }
        }

        .aboutTxtCardInn {
            height: 90px;
            text-align: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.25);

            .abtCounterHead {
                line-height: 1;
                font-size: 22px;
                font-weight: 600;
                color: #008FFF;
                margin-bottom: 5px;
                font-family: "Roboto", sans-serif;
            }

            p {
                line-height: 1.2;
            }
        }

    }
}

/* application section */
.applicationSec {
    .appSecBtm {
        overflow: hidden;
        padding: 0px 40px;

        .appSlider {
            width: 100%;
            overflow: hidden;
            position: relative;
            /* padding-left: 20px; */

            .appItem {
                background-repeat: no-repeat !important;
                background-size: cover !important;
                background-position: center center !important;
                position: relative;
                overflow: hidden;
                height: 550px;
                /* width: 400px !important; */

                &::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(2deg, #000 2.05%, rgba(0, 0, 0, 0.00) 55.17%);
                    z-index: 1;
                }

                .appInner {
                    position: absolute;
                    bottom: 0;
                    padding: 0px 40px 25px;
                    width: 100%;
                    z-index: 2;

                    h3 {
                        color: #FFF;
                        font-size: 22px;
                        font-weight: 400;
                        line-height: 28px;
                        transition: 0.3s;
                    }

                    .appTxt {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        opacity: 0;
                        transition: 0.3s;
                        visibility: hidden;
                        transition: all 0.5s;

                        .appTxtInn {
                            width: calc(100% - 315px);
                            color: #fff;

                            h5,
                            .appTxtHead {
                                display: block;
                                color: #FFF;
                                font-size: 45px;
                                margin-bottom: 10px;
                                font-weight: 600;
                                line-height: 1.2;
                            }

                            p {
                                color: #fff;
                            }
                        }

                        .btnWrap {
                            margin-top: 0;
                        }
                    }
                }

                &.swiper-slide-active {
                    border-radius: 15px 0px 15px 15px;
                    width: 1000px !important;
                    height: 680px;

                    .appInner {
                        h3 {
                            display: none;
                        }

                        .appTxt {
                            display: flex;
                            opacity: 1;
                            visibility: visible;
                        }
                    }
                }
            }

            .insfrasArrow {
                position: absolute;
                bottom: 0;
                display: flex;
                gap: 15px;
                z-index: 1;
                right: 400px;
                bottom: 40px;
            }

            .insfraProcess .activeslide,
            .insfraProcess .swiper-pagination-progressbar,
            .insfraProcess .totalslide {
                position: relative;
                top: 0 !important;
                bottom: 0 !important;
                left: 0 !important;
                right: 0 !important;
            }

            .insfraProcess {
                position: absolute;
                width: 300px;
                bottom: 20px;
                right: 0;
                display: flex;
                align-items: center;
                gap: 10px;

                .activeslide {
                    text-align: center;
                    transition: .3s opacity;
                    transform: translate3d(0, 0, 0);
                    z-index: 10;
                    bottom: 15px;
                    font-size: 25px;
                    font-family: "Instrument Sans", sans-serif;
                    opacity: 1;
                    z-index: 2;
                    color: #7374A3;
                }

                .swiper-pagination-progressbar {
                    background-color: rgba(255, 255, 255, 0.70) !important;
                    width: 200px !important;
                    height: 2px;

                    .swiper-pagination-progressbar-fill {
                        background: #008FFF;
                        position: absolute;
                        right: 0;
                        bottom: 0px;
                        top: auto;
                        width: 100%;
                        height: 2px;
                        transform: scale(0);
                        transform-origin: left top;
                        z-index: 2;
                        bottom: 0;
                    }
                }

                .totalslide {
                    font-size: 25px;
                    color: #9B9B9B !important;
                    font-family: "Instrument Sans", sans-serif;
                }
            }
        }
    }

    .ltBlueBg {
        .appSecBtm {
            .appSlider {
                .infraArrow {

                    &.swiper-button-prev2,
                    &.swiper-button-next2 {
                        background-color: #0C0056;

                        &:hover {
                            background-color: #FFB600;
                        }
                    }
                }

                .insfraProcess {
                    .swiper-pagination-progressbar {
                        background-color: rgba(0, 0, 0, 0.46) !important;
                    }

                    .activeslide {
                        color: #9B9B9B;
                    }
                }
            }
        }
    }
}

.page-template-undercarriage-parts {
    .applicationSec {
        .appSecBtm {
            .appSlider {
                .appItemWrap {
                    margin-bottom: 30px;

                    .appItem {
                        height: 480px;
                        border-radius: 10px;
                        background-position: bottom center !important;

                        .appInner {
                            padding: 0px 20px 25px;

                            h3 {
                                display: none;
                            }

                            .appTxt {
                                opacity: 1;
                                visibility: visible;

                                .appTxtInn {
                                    width: calc(100% - 75px);

                                    h5,
                                    .appTxtHead {
                                        font-size: 25px;
                                        margin-bottom: 0;
                                    }
                                }

                                .transBtnWrap {
                                    opacity: 0;
                                    transition: 0.3s;
                                    visibility: hidden;

                                    .btnOne {
                                        span.btnTxt {
                                            display: none;
                                            font-size: 16px;
                                            min-width: 160px;
                                        }
                                    }
                                }
                            }
                        }

                        &:hover {
                            .appInner {
                                .appTxt {
                                    opacity: 1;
                                    visibility: visible;

                                    .transBtnWrap {
                                        opacity: 1;
                                        visibility: visible;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

/* testimonial section */
.testiSec {
    .testimonTop {
        .headingWrap {
            .secBigH {
                display: none;
            }
        }
    }

    .testiSecBtm {
        .testiSlider {
            .testiSlide {
                padding: 0px 12px;

                .testiCard {
                    border-radius: 15px;
                    background: #E3E9ED;
                    padding: 25px 20px;
                    position: relative;
                    margin: 30px 0px;
                    transition: all 0.5s;

                    &::after {
                        content: '';
                        background-image: url(../images/common/quote.png);
                        background-repeat: no-repeat;
                        background-size: 100%;
                        width: 50px;
                        height: 50px;
                        position: absolute;
                        bottom: -20px;
                        left: 50%;
                        transform: translateX(-50%);
                        z-index: 1;
                    }

                    .testiCardCont {
                        position: relative;

                        .testiTop {
                            margin-bottom: 15px;

                            .testiTopInn {
                                margin-bottom: 10px;
                                position: relative;
                                height: 80px;
                                overflow: hidden;

                                &::after {
                                    width: 100%;
                                    height: 95px;
                                    content: "";
                                    position: absolute;
                                    background: linear-gradient(to top, #e3e9edeb, transparent);
                                    bottom: 0;
                                    left: 0;
                                    transition: 0.3s;
                                }

                                &.show-more-height {
                                    height: auto;

                                    &::after {
                                        content: normal;
                                    }
                                }
                            }

                            .testiShowBtn {
                                display: block;
                                color: #0C0056;
                                font-size: 16px;
                                position: relative;
                                text-align: center;
                                margin-bottom: 20px;
                                font-weight: 600;
                            }
                        }

                        .testiBtm {
                            display: flex;
                            justify-content: space-between;
                            flex-wrap: wrap;
                            align-items: center;

                            .testiImg {
                                width: 80px;
                                height: 80px;
                                position: relative;

                                a {
                                    display: block;
                                    width: 100%;
                                    height: 100%;

                                    &::after {
                                        content: '\f04b';
                                        font-family: fontawesome;
                                        color: #0081EB;
                                        font-size: 14px;
                                        position: absolute;
                                        width: 27px;
                                        height: 27px;
                                        border-radius: 50%;
                                        background-color: #fff;
                                        display: flex;
                                        justify-content: center;
                                        align-items: center;
                                        right: -12px;
                                        bottom: 10px;
                                        transition: all 0.5s;
                                    }


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

                                    &.noVdo {
                                        &::after {
                                            content: normal;
                                        }
                                    }
                                }
                            }

                            .testiTxt {
                                position: relative;
                                width: calc(100% - 80px);
                                padding-left: 56px;

                                &::after {
                                    content: '';
                                    position: absolute;
                                    left: 18px;
                                    width: 30px;
                                    height: 1px;
                                    background-color: #015181;
                                    top: 10px;
                                }

                                .testiTxtHead {
                                    display: inline-block;
                                    color: #0C0056;
                                    font-size: 20px;
                                    font-weight: 600;
                                    margin-bottom: 5px;
                                    line-height: 1.2;
                                }

                                .testiTxtPara {
                                    font-size: 16px;
                                    line-height: 1.4;
                                }
                            }
                        }
                    }
                }

                &.slick-current {
                    .testiCard {
                        background-color: #fff;
                        box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.18);
                        transform: scale(1.05);
                        margin-left: 15px;
                        margin-right: 15px;

                        .testiCardCont {
                            .testiTop {
                                .testiTopInn {
                                    &::after {
                                        background: linear-gradient(to top, #fff, transparent);
                                    }
                                }
                            }

                            .testiBtm {
                                .testiImg {
                                    a {
                                        &::after {
                                            background-color: #0C0056;
                                            color: #FFB600;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }

            .slick-arrow {
                top: 150px;
                transform: translateY(0);

                &.slick-prev {
                    left: 320px;
                }

                &.slick-next {
                    right: 320px;
                }
            }
        }

        .overlapBtm {
            /* margin-top: -60px; */
            margin-top: 30px;
            z-index: -1;
        }
    }

    .clientSlider {
        margin-top: 50px;

        .clientImg {
            width: 100%;
            max-width: 200px;
            height: 70px;
            margin: 0px auto;

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

/* our presence */
@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 143, 255, 0.7);
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(0, 143, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 143, 255, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 143, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(0, 143, 255, 0.7);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(0, 143, 255, 0);
        box-shadow: 0 0 0 20px rgba(0, 143, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 143, 255, 0);
        box-shadow: 0 0 0 0 rgba(0, 143, 255, 0);
    }
}

.presenceSec {
    overflow: hidden;

    .presenceSecInn {
        width: 100%;
        height: 750px;
        overflow: hidden;
        border-radius: 15px;
        position: relative;
        /* background-color: #d6d6d6; */
        background-color: #e4e4e4;

        .presenceImg {
            width: 100%;
            height: 100%;
            display: flex;
            position: relative;
            text-align: center;
            align-items: center;
            justify-content: center;

            &.resImg {
                display: none;
            }

            img {
                opacity: 0.9;
                height: 100%;
                width: 1885px;
                display: block;
                margin: 0 auto;
                object-fit: contain;
            }

            .mapPointer {
                top: 50%;
                left: 50%;
                z-index: 2;
                margin: auto;
                height: 100%;
                width: 1885px;
                position: absolute;
                transform: translate(-50%, -50%);

                .mapPointerinnner {
                    width: 100%;
                    height: 100%;
                }

                .blob {
                    height: 16px;
                    width: 16px;
                    position: absolute;
                    border-radius: 50%;
                    background-color: rgb(0, 143, 255);
                    box-shadow: 0 0 0 rgba(0, 143, 255, 0.7);

                    span {
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        opacity: 0;
                        z-index: 12;
                        font-size: 14px;
                        padding: 4px 4px;
                        color: #ffffff;
                        transition: 0.3s;
                        min-width: 100px;
                        position: absolute;
                        border-radius: 5px;
                        text-align: center;
                        display: inline-block;
                        background-color: #008fff;
                    }

                    &:hover {
                        span {
                            opacity: 1;
                        }
                    }

                    &:before {
                        top: 50%;
                        left: 50%;
                        z-index: 10;
                        content: '';
                        width: 6px;
                        height: 6px;
                        border-radius: 50%;
                        position: absolute;
                        background-color: #FFB600;
                        transform: translate(-50%, -50%);
                    }

                    /* Sri Lanka */
                    &.blob_1 {
                        display: none;
                        bottom: 38%;
                        right: 35.5%;
                        animation: pulse 3.5s infinite;
                    }

                    /* USA */
                    &.blob_2 {
                        display: none;
                        bottom: 60%;
                        left: 28%;
                        animation: pulse 2.5s infinite;
                    }

                    /* UK */
                    &.blob_3 {
                        display: none;
                        bottom: 70%;
                        left: 47.5%;
                        animation: pulse 3s infinite;
                    }

                    /* Nepal */
                    &.blob_4 {
                        display: none;
                        bottom: 51%;
                        right: 35%;
                        animation: pulse 4.0s infinite;
                    }

                    /* Bangladesh */
                    &.blob_5 {
                        display: none;
                        bottom: 46.5%;
                        right: 32.5%;
                        animation: pulse 3.5s infinite;
                    }

                    /* New Zealand */
                    &.blob_6 {
                        display: none;
                        bottom: 7%;
                        right: 18.5%;
                        animation: pulse 2.5s infinite;
                    }

                    /* Australia */
                    &.blob_7 {
                        display: none;
                        bottom: 19%;
                        right: 26%;
                        animation: pulse 3s infinite;
                    }

                    /* Germany */
                    &.blob_8 {
                        display: none;
                        bottom: 66%;
                        right: 49%;
                        animation: pulse 4.0s infinite;
                    }

                    /* India */
                    &.blob_9 {
                        display: none;
                        bottom: 45%;
                        right: 36%;
                        animation: pulse 3.5s infinite;
                    }


                    /* NorthAmerica */
                    &.blob_10 {
                        bottom: 60%;
                        left: 30%;
                        animation: pulse 1.5s infinite;
                    }

                    /* Europe */
                    &.blob_11 {
                        bottom: 64%;
                        right: 46%;
                        animation: pulse 2.0s infinite;
                    }

                    /* Asia */
                    &.blob_12 {
                        bottom: 60%;
                        right: 35%;
                        animation: pulse 2.3s infinite;
                    }

                    /* Australia */
                    &.blob_13 {
                        bottom: 23%;
                        right: 27%;
                        animation: pulse 1.8s infinite;
                    }

                    /* SouthAmerica */
                    &.blob_14 {
                        bottom: 30%;
                        left: 37%;
                        animation: pulse 2.8s infinite;
                    }
                }
            }
        }

        .presenceCont {
            position: absolute;
            bottom: 25px;
            left: 25px;
            z-index: 10;
            width: 480px;
            border-radius: 20px;
            padding: 20px 20px 30px;
            background-color: #fff;
            box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);

            .headingWrap {
                padding-bottom: 10px;

                .secSmallH {
                    line-height: 1;
                    font-size: 36px;
                    text-transform: capitalize;
                }
            }

            p {}

            .btnWrap {
                display: flex;
                margin-top: 15px;
                justify-content: flex-end;

                &.transBtnWrap {
                    .btnOne {
                        span.btnTxt {
                            height: 46px;
                            font-size: 16px;
                            border-color: #000;
                            color: #000;
                        }

                        span.arrow {
                            width: 46px;
                            height: 46px;
                            border-color: #000;
                            filter: brightness(0) saturate(100%);
                        }

                        &:hover {
                            span.btnTxt {
                                border-color: transparent;
                                color: #fff;
                            }

                            span.arrow {
                                border-color: transparent;
                                filter: none;
                            }
                        }
                    }
                }
            }
        }
    }
}

.wrldmapSvgWrap {
    .mapPointer {
        top: 50%;
        left: 50%;
        z-index: 2;
        margin: auto;
        height: 100%;
        width: 1885px;
        position: absolute;
        transform: translate(-50%, -50%);

        .mapPointerinnner {
            width: 100%;
            height: 100%;
        }

        .blob {
            height: 16px;
            width: 16px;
            position: absolute;
            border-radius: 50%;
            background-color: rgb(0, 143, 255);
            box-shadow: 0 0 0 rgba(0, 143, 255, 0.7);

            span {
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                opacity: 0;
                z-index: 12;
                font-size: 14px;
                padding: 4px 4px;
                color: #ffffff;
                transition: 0.3s;
                min-width: 100px;
                position: absolute;
                border-radius: 5px;
                text-align: center;
                display: inline-block;
                background-color: #008fff;
            }

            &:hover {
                span {
                    opacity: 1;
                }
            }

            &:before {
                top: 50%;
                left: 50%;
                z-index: 10;
                content: '';
                width: 6px;
                height: 6px;
                border-radius: 50%;
                position: absolute;
                background-color: #FFB600;
                transform: translate(-50%, -50%);
            }
        }
    }

    .locImgD {
        z-index: 2;
        width: 24px;
        position: absolute;
        height: 24px !important;
        animation: bounceLoc 2s infinite;

        span {
            top: calc(50% + 28px);
            left: 50%;
            transform: translate(-50%, -50%);
            /* opacity: 0; */
            z-index: 12;
            font-size: 14px;
            padding: 4px 4px;
            color: #ffffff;
            transition: 0.3s;
            min-width: 100px;
            position: absolute;
            border-radius: 5px;
            text-align: center;
            background-color: #008fff;
        }
    }

    .locImgD img {
        height: 100%;
        width: 24px;
        filter: invert(0) hue-rotate(-185deg);
    }

    .asiLoc {
        top: 24%;
        right: 30%;
    }

    .euLoc {
        top: 17%;
        right: 44%;
    }

    .saLoc {
        top: 65%;
        left: 33%;
    }

    .naLoc {
        top: 24%;
        left: 24%;
    }

    .ocLoc {
        bottom: 24%;
        right: 19%;
    }

    .afLoc {
        bottom: 34%;
        right: 40%;
        display: none !important;
    }
}

.wrldmapSvgWrap svg g[data-cont="Africa"] {
    pointer-events: none !important;
}

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

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.wrldmapSvgWrap svg {
    width: 1700px;
    height: auto;
    margin: 0 auto;
}

.wrldmapSvgWrap svg g:hover path {
    cursor: pointer;
    fill: #0081EB !important;
}

/* life at dozco */
.lifeSec {
    .lifeSecLeft {
        border-radius: 20px;

        .lifeSecLeftInn {
            padding: 100px 25px 50px;
            border-radius: 20px;

            .headingWrap {
                padding-bottom: 18px;
            }

            p {
                color: #fff;
            }

            .lifeSecBtnWrap {
                display: flex;
                gap: 30px;

                .btnWrap {

                    .btnOne {
                        span.btnTxt {
                            color: #fff;
                        }

                        span.arrow {
                            &::after {
                                filter: none;
                            }
                        }

                        &:hover {
                            span.btnTxt {
                                color: #fff;
                            }

                            span.arrow {
                                &::after {
                                    filter: none;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .lifeSecRight {
        .lifeImg {
            /* padding-left: 15px; */
            width: 100%;
            height: 100%;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
            }
        }
    }
}

/* press center */
.pressSec {
    overflow-x: hidden;

    .pressSecBtm {
        .newsTabWrap {
            ul.tabs {
                display: none !important;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;
                margin-bottom: 50px;

                li {
                    font-size: 22px;
                    min-width: 140px;
                    min-height: 55px;
                    padding: 5px 10px;
                    border: 1px solid rgba(0, 0, 0, 0.25);
                    border-radius: 50px;
                    color: #000;
                    background-color: transparent;
                    transition: all 0.5s;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    font-weight: 500;

                    &.active {
                        background-color: #FFB600;
                        border-color: transparent;
                    }
                }
            }

            .tabWrapInner {
                .tabContWrap {
                    .tab_content {
                        display: none;

                        &.active {
                            display: block;
                        }

                        .accTrigger {
                            display: none;
                        }

                        .accInner {
                            .pressAllBtn {
                                padding: 15px 0px;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* press slider */
.pressSlider {
    .slick-list {
        margin: 0px -100px;
    }

    .slick-arrow {
        width: 48px;
        height: 48px;

        &::after {
            font-size: 20px;
        }

        &.slick-prev {
            left: 20px;
        }

        &.slick-next {
            right: 20px;
        }
    }

    .pressSlide {
        padding: 0px 20px;

        .pressCard {
            .pressImg {
                width: 100%;
                height: 350px;
                border-radius: 20px;
                margin-bottom: 15px;
                overflow: hidden;

                a {
                    position: relative;
                    display: block;
                    width: 100%;
                    height: 100%;

                    .pressLabel {
                        position: absolute;
                        top: 15px;
                        right: 20px;
                        background-color: #fff;
                        border-radius: 6px;
                        padding: 6px 12px;

                        p {
                            text-align: center;
                            font-weight: 500;
                        }
                    }
                }

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 20px;
                    transition: all 0.5s;
                    overflow: hidden;
                }
            }

            .pressText {
                .pressDate {
                    color: #5E5E5E;
                    margin-bottom: 8px;
                    font-weight: 500;
                    transition: all 0.5s;
                }

                .pressTextInn {
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;

                    a {
                        color: #000;
                        font-size: 19px;
                        transition: all 0.5s;
                    }
                }
            }

            &:hover {
                .pressImg {
                    img {
                        transform: scale(1.10);
                    }
                }

                .pressText {
                    .pressDate {
                        color: #015181;
                    }

                    .pressTextInn {
                        a {
                            color: #008FFF;
                            text-decoration: underline;
                        }
                    }
                }
            }
        }
    }

    &.caseSlider {
        .slick-list {
            margin: 0;
        }

        .slick-arrow {
            &.slick-prev {
                left: -50px;
            }

            &.slick-next {
                right: -50px;
            }
        }
    }
}

.slick-disabled {
    opacity: 0.1;
    pointer-events: none;
}

/* common used case */
.caseTabWrap {
    ul.tabs {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-bottom: 50px;

        li {
            font-size: 20px;
            min-width: 220px;
            min-height: 55px;
            padding: 5px 10px;
            border: 1px solid rgba(0, 0, 0, 0.25);
            border-radius: 50px;
            color: #000;
            background-color: transparent;
            transition: all 0.5s;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-weight: 500;

            &.active {
                background-color: #FFB600;
                border-color: transparent;
            }
        }
    }

    .listContBox {
        .tab_content {
            display: none;

            .accTrigger {
                display: none;
                cursor: pointer;
                font-size: 20px;
                transition: 0.3s;
                overflow: hidden;
                margin-bottom: 0;
                position: relative;
                border-radius: 10px;
                padding: 15px 60px 15px 15px;
                border: 1px solid #00000025;

                &::after {
                    width: 32px;
                    height: 32px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    right: 15px;
                    font-size: 32px;
                    top: 10px;
                    position: absolute;
                    transition: 0.6s;
                    font-family: fontawesome;
                    font-weight: 900;
                    -moz-osx-font-smoothing: grayscale;
                    -webkit-font-smoothing: antialiased;
                    display: var(--fa-display, inline-block);
                    font-style: normal;
                    font-variant: normal;
                    line-height: 1;
                    text-rendering: auto;
                    content: "\f055";
                    color: #0C0056;
                }
            }

            .tabContinner {
                display: none;
                padding: 20px 10px 50px;
            }

            &.active {
                display: block;

                .accTrigger {
                    color: #fff;
                    border-color: transparent;
                    background-color: #0C0056;
                    border-radius: 10px 10px 0px 0px;
                    border-bottom: 1px solid #ffffff30;

                    &::after {
                        color: #fff;
                        content: "\f056";
                    }
                }

                .tabContinner {
                    display: block;
                }
            }

            .caseSlider {
                .pressSlide {
                    .pressCard {
                        .pressImg {
                            position: relative;

                            .vidIcon {
                                position: absolute;
                                left: 50%;
                                top: 50%;
                                transform: translate(-50%, -50%);
                                width: 60px;
                                height: 60px;
                                border-radius: 50%;
                                border: 1px solid #fff;
                                backdrop-filter: blur(12px);
                                background-color: rgb(104 104 104 / 22%);
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                font-size: 25px;
                                color: #fff;
                            }
                        }
                    }
                }
            }
        }
    }
}

.branchLocator {
    margin-top: 30px;

    .overlapBtm {
        margin-top: 0;
    }

    .caseTabWrap {
        ul.tabs {
            margin-bottom: 20px;
        }

        .listContBox {
            .tab_content {
                .tabContinner {
                    padding: 30px 0 0;
                }
            }
        }
    }
}

/* common faq section */
.commonFaqSec {
    .faqLeft {
        position: sticky;
        top: 60px;

        .secSmallH {
            margin-bottom: 25px;
        }

        p {
            font-size: 25px;
            margin-bottom: 10px;
        }

        a {
            color: #008FFF;
            font-size: 30px;
            font-weight: 500;
        }
    }

    .faqWrapInner {
        .eachFaq {
            border-top: 1px solid rgba(0, 0, 0, 0.25);

            .eachFaqInner {
                .faqTitle {
                    font-family: "Poppins", sans-serif;
                    font-size: 20px;
                    color: #000;
                    font-weight: 400;
                    position: relative;
                    padding: 25px 30px 25px 0px;
                    cursor: pointer;
                    transition: all 0.5s;

                    &::after {
                        content: '\2b';
                        font-family: fontawesome;
                        position: absolute;
                        right: 0;
                        top: 24px;
                        color: #000;
                        font-size: 20px;
                        transition: all 0.5s;
                    }
                }

                .faqCont {
                    display: none;
                    padding-bottom: 25px;

                    .faqContInner {
                        p {
                            font-size: 18px;
                            font-weight: 400;
                        }
                    }
                }
            }

            &.active {
                border-color: #0081EB;

                .eachFaqInner {
                    .faqTitle {
                        color: #008FFF;

                        &::after {
                            content: '\f068';
                            color: #008FFF;
                        }
                    }

                    .faqCont {
                        display: block;
                    }
                }
            }
        }
    }
}

/* common video section */
.vidSecImg {
    height: 540px;
    overflow: hidden;
    position: relative;
    /* width: 1040px; */
    border-radius: 30px;
    margin: 0 auto 30px;

    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: #00000041;
        border-radius: 20px;
    }

    iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        transform: scale(1.5);
    }

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .vidSecIcon {
        position: absolute;
        right: 45px;
        bottom: 40px;
        width: 95px;
        height: 95px;
        border-radius: 50%;
        border: 1px solid #fff;
        backdrop-filter: blur(12px);
        background-color: rgb(255 255 255 / 30%);
        z-index: 2;

        a {
            display: flex;
            width: 100%;
            height: 100%;
            justify-content: center;
            align-items: center;

            i {
                font-size: 40px;
                color: #fff;
            }
        }
    }
}

/* strength section */
.strengthSec {
    .strengthSecBtm {
        .strengthSecBtmRow {
            padding-top: 30px;
        }

        .strengthCard {
            width: 100%;
            min-height: 240px;
            background-color: #100079;
            border-radius: 9px;
            padding: 20px 20px;
            display: flex;
            margin-bottom: 20px;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.5s;

            .strengthImg {
                width: 70px;
                height: 70px;
                margin-left: auto;
                margin-bottom: 15px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(214deg) brightness(107%) contrast(101%);
                }
            }

            .strengthTxt {
                padding-right: 48px;

                p {
                    font-size: 24px;
                    color: #fff;
                    transition: all 0.5s;
                }
            }

            &:hover {
                background: var(--yellow-bg);

                .strengthImg {
                    filter: brightness(0) saturate(100%) invert(29%) sepia(0%) saturate(626%) hue-rotate(202deg) brightness(99%) contrast(70%);
                }

                .strengthTxt {
                    p {
                        color: #000;
                    }
                }
            }
        }
    }

    .ltBlueBg {
        .strengthSecBtm {
            .strengthCard {
                background-color: #fff;
                box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);

                .strengthImg {
                    filter: brightness(0) saturate(100%) invert(29%) sepia(0%) saturate(626%) hue-rotate(202deg) brightness(99%) contrast(70%);
                }

                .strengthTxt {
                    p {
                        color: #000;
                    }
                }

                &:hover {
                    background: var(--yellow-bg);
                }
            }
        }
    }
}

/* product details overview */
.rockBreaker_sec {
    .leftAboutInner {
        ul {
            li {
                font-size: 18px;
                position: relative;
                margin-bottom: 15px;
                padding-left: 30px;
                font-family: "Poppins", sans-serif;

                &::after {
                    content: '';
                    position: absolute;
                    background-image: url(../images/common/check-mark.png);
                    background-repeat: no-repeat;
                    background-size: contain;
                    left: 0;
                    top: 5px;
                    width: 30px;
                    height: 20px;
                }
            }
        }
    }

    .rightAboutInner {
        width: 100%;
        height: auto;
        border-radius: 20px;
        overflow: hidden;
        position: sticky;
        top: 100px;

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

        &.skyBg {
            background-color: #008FFF;
            height: 350px;
            padding: 20px;


            img {
                object-fit: contain;
            }
        }
    }
}

.mobOvrImg {
    display: none;
}

/* brand section */
.brandSec {
    display: none;

    .brandSecBtm {
        .brandSlide {
            padding: 10px 12px;
        }

        .brandSlideImg {
            width: 100%;
            height: 140px;
            box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
            background-color: #fff;
            border-radius: 20px;
            padding: 15px 20px;

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

.formWrap {
    .row {
        &:not(:last-child) {
            margin-bottom: 25px;
        }
    }

    .inputBox {

        input[type="text"],
        input[type="tel"],
        input[type="email"],
        textarea {
            width: 100%;
            height: 50px;
            font-size: 18px;
            color: #000000;
            line-height: 50px;
            padding: 5px 20px;
            border-radius: 4px;
            outline: none !important;
            background-color: transparent;
            border: 1px solid #00000025 !important;

            &::placeholder {
                color: #000000;
            }
        }

        textarea {
            padding: 20px;
            height: 120px;
            line-height: 1.2;
        }

        &.submitBox {
            input {
                width: auto;
                cursor: pointer;

                &:hover {
                    color: #008fff;
                    background-color: #fff;
                }
            }
        }
    }

    .selBox {
        select {
            width: 100%;
            height: 60px;
            font-size: 18px;
            color: #000000;
            line-height: 50px;
            padding: 5px 20px;
            border-radius: 4px;
            outline: none !important;
            background-color: transparent;
            border: 1px solid #00000025 !important;
        }
    }
}

/* nice select */
.nice-select {
    width: 100%;
    height: 50px;
    font-size: 18px;
    color: #000000;
    line-height: 50px;
    padding: 5px 20px;
    border-radius: 4px;
    outline: none !important;
    background-color: transparent;
    border: 1px solid #00000025 !important;

    span {
        display: block;
        line-height: 40px;
    }

    .list {
        width: 100%;
        max-height: 170px;
        overflow-y: auto;
    }

    &::after {
        background-image: url(../images/common/select_arrow.png);
        background-position: right;
        background-repeat: no-repeat;
        background-size: contain;
        height: 10px;
        width: 14px;
        border-right: unset;
        border-bottom: unset;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0);
        transition: .4s;
        top: 24px;
        right: 20px;
    }

    &.open {
        &::after {
            -webkit-transform: rotate(-180deg);
            transform: rotate(180deg);
            top: 20px;
        }
    }
}

.search-popup{
    backdrop-filter: blur(10px);
}
.asl_w_container{
    overflow: hidden;
    border-radius: 10px !important;
}


/* form button */

form {
    width: 100%;

    .form-group {
        margin-bottom: 15px;
        position: relative;
    }

    label {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 15px;
    }

    input,
    select,
    textarea {
        width: 100%;
        height: 50px;
        font-size: 18px;
        color: #000000;
        padding: 5px 20px;
        border-radius: 4px;
        outline: none !important;
        background-color: transparent;
        border: 1px solid #00000025;
    }

    textarea {
        height: 150px;
        resize: none;
        overflow-y: auto;
    }

    .submitBox {
        display: flex;
        justify-content: center;
        padding-right: 60px;

        .btnOne {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #FFF;
            text-align: center;
            width: 190px;
            height: 56px;
            background-color: #008FFF;
            border: 1px solid #008FFF;
            border-radius: 50px;
            transition: all 0.5s;

            input {
                position: absolute;
                width: calc(100% + 56px) !important;
                height: 100%;
                left: 0;
                top: 0;
                padding: 0;
                background-color: transparent;
                border: none;
                outline: 0;
                z-index: 2;
                color: #FFF;
                text-align: center;
                font-size: 18px;
                line-height: 28px;
                font-style: normal;
                font-weight: 400;
                letter-spacing: 2.7px;
                text-transform: uppercase;
                padding: 5px 100px 5px 50px;

                &:hover {
                    background-color: transparent !important;
                }
            }

            .arrow {
                position: absolute;
                right: -56px;
                width: 56px;
                height: 56px;
                border-radius: 50%;
                background-color: transparent;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                margin-left: -2px;
                background-color: #008FFF;
                border: 1px solid #008FFF;
                z-index: 1;
                transition: all 0.5s;

                &::after {
                    content: '';
                    position: absolute;
                    background-image: url(../images/common/Arrow.png);
                    background-repeat: no-repeat;
                    background-size: 100%;
                    width: 20px;
                    height: 20px;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    filter: brightness(0) saturate(100%) invert(36%) sepia(76%) saturate(2625%) hue-rotate(189deg) brightness(103%) contrast(110%);
                    opacity: 0;
                    transition: all 0.5s;
                }
            }

            &:hover {
                background-color: transparent;

                input {
                    background-color: transparent;
                    color: #008FFF;
                }

                .arrow {
                    background-color: transparent;
                    font-size: 0;
                    transform: rotate(45deg);

                    &::after {
                        opacity: 1;
                    }
                }
            }
        }
    }

    .submitBox {
        p {
            display: flex;
            align-items: center;
        }
    }
}

.getInTouchForm {
    form {
        .form-group {
            position: static;
        }
    }
}

.formHead {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

/* pagination */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    .page-numbers {
        display: flex;
        width: 68px;
        height: 68px;
        color: #000;
        transition: 0.5s;
        line-height: 68px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid #cecece;
        font-size: 22px;

        &.active,
        &:hover {
            background-color: #2E2779;
            color: #fff;
        }

        &.next {
            font-size: 0;
            position: relative;

            &::after {
                content: '\f101';
                font-family: fontawesome;
                font-size: 20px;
                color: #000;
                position: absolute;
                transition: 0.5s;
            }

            &:hover {
                &::after {
                    color: #fff;
                }
            }
        }

        &.prev {
            font-size: 0;
            position: relative;

            &::after {
                content: '\f100';
                font-family: fontawesome;
                font-size: 20px;
                color: #000;
                position: absolute;
                transition: 0.5s;
            }

            &:hover {
                &::after {
                    color: #fff;
                }
            }
        }
    }
}

.search-results{
    .pagination {
        .page-numbers {
            &.current {
                background-color: #008FFF;
                color: #fff;
            }
            &.active, &:hover {
                background-color: #008FFF !important;
                color: #fff;
            }
        }
    }

    .search-results-list{
        li{
            a{
                transition: 0.3s;
                &:hover{
                    color: #008fff !important;
                }
            }
        }
    }
}

/* get quote form */
.GbPopupFormMain {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 80%);
    z-index: 99;
    width: 100%;
    height: 100%;

    &.active {
        display: block !important;
    }

    .GbPopupForm {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        width: 100%;
        max-width: 600px;
        /* height: 100%; */
        max-height: 100vh;
        overflow-y: auto;

        .crossBtn {
            position: absolute;
            top: 5px;
            right: 10px;

            i {
                font-size: 16px;
                color: #1B1C21;
            }
        }

        &::-webkit-scrollbar-thumb {
            background-color: #b1b2b6;
        }

        .intl-tel-input {
            .selected-flag {
                width: 55px !important;
            }

            input {
                padding-left: 65px !important;
            }

            .selected-dial-code{
                display: none;
                padding-left: 0;
            }
        }
    }
}





.GbPopupForm {
    width: 600px;
    padding: 25px;
    border-radius: 15px;
    border: 4px solid #008fff;

    form {
        p {
            margin-bottom: 12px;
        }

        label {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 6px;
        }

        .wpcf7-form-control-wrap {
            display: inline-block;
            width: 100%;
        }

        input {
            height: 34px;
            font-size: 18px;
        }

        textarea {
            height: 60px;
        }

        input[type="submit"] {
            padding: 0 30px;
            min-height: 50px;
            max-width: 200px;
            display: block;

            margin: 0 auto;
            text-align: center;
            background-color: #008FFF;
            color: #fff;
            font-size: 18px;
            border-radius: 30px;
            font-weight: 500;
            border: 1px solid transparent;
            transition: all 0.5s;

            &:hover {
                background-color: #fff;
                border-color: #008FFF;
                color: #008FFF;
            }
        }

        &.invalid .wpcf7-response-output {
            border: unset;
            padding: 0;
            margin: 10px 0 0;
            color: #dc3232;
            font-size: 14px;
        }

        .wpcf7-spinner {
            position: absolute;
            left: 67%;
            bottom: 0px;
        }
    }
}

.wpcf7 form {
    .wpcf7-response-output {
        border: none;
        padding: 0;
    }

    &.invalid {
        .wpcf7-response-output {
            color: #dc3232;
            font-size: 15px;
        }
    }
}

/* end get quote form */

.wpcf7-not-valid-tip {
    font-size: 15px;
    font-size: 14px !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 0 !important;
    padding: 0 !important;
    margin: 0;
}

/* global popup form */
.comnPopupForm,
.careerApplyForm {
    width: 600px;
    padding: 25px;
    border-radius: 15px;
    border: 4px solid #008fff;

    form {
        p {
            margin-bottom: 12px;
        }

        label {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 6px;
        }

        .wpcf7-form-control-wrap {
            display: inline-block;
            width: 100%;
        }

        input {
            height: 40px;
            font-size: 16px;
            padding: 5px 9px;

            &::placeholder {
                font-size: 16px;
                font-weight: 500;
            }
        }

        textarea {
            height: 60px;
            padding: 5px 9px;

            &::placeholder {
                font-size: 16px;
                font-weight: 500;
            }
        }

        /* input[type="submit"] {
            padding: 0 30px;
            min-height: 50px;
            max-width: 200px;
            display: block;
            margin: 0 auto;
            text-align: center;
            background-color: #008FFF;
            color: #fff;
            font-size: 18px;
            border-radius: 30px;
            font-weight: 500;
            border: 1px solid transparent;
            transition: all 0.5s;

            &:hover {
                background-color: #fff;
                border-color: #008FFF;
                color: #008FFF;
            }


        } */

        &.invalid .wpcf7-response-output {
            border: unset;
            padding: 0;
            margin: 10px 0 0;
            color: #dc3232;
            font-size: 14px;
        }

        &.invalid .wpcf7-not-valid-tip {
            font-size: 14px;
        }

        .wpcf7-spinner {
            position: absolute;
            right: 120px;
            bottom: 5px;
        }
    }
}

.single-product {
    form {
        input[type="submit"] {
            padding: 0 30px;
            min-height: 50px;
            max-width: 200px;
            display: block;
            margin: 0 auto;
            text-align: center;
            background-color: #008FFF;
            color: #fff;
            font-size: 18px;
            border-radius: 30px;
            font-weight: 500;
            border: 1px solid transparent;
            transition: all 0.5s;

            &:hover {
                background-color: #fff;
                border-color: #008FFF;
                color: #008FFF;
            }
        }
    }
}

.sidebarForm {
    form {
        .wpcf7-spinner {
            position: absolute;
            left: -45%;
            bottom: 0px;
            /* bottom: 100px; */
        }
    }
}

.getInTouchForm {
    form {
        .wpcf7-spinner {
            position: absolute;
            left: 35%;
            bottom: -30px;
            /* bottom: 100px; */
        }
        .selected-flag {
            width: 55px !important;
    
            .selected-dial-code {
                display: none;
                padding-left: 0;
            }
        }
    }
}

/* end global popup form */

/* policy pages */
.page-template-privacy-policy,
.page-template-terms-and-conditions {

    p {
        font-size: 16px;
    }

    .templateWrap {
        a {
            color: #008FFF;
            font-weight: 600;
        }
    }

    .customList {
        &:not(:last-child) {
            margin-bottom: 30px;
        }

        p {
            font-size: 16px;
        }

        li {
            font-size: 16px;
            position: relative;
            padding-left: 20px;

            &:before {
                left: 0;
                top: 8px;
                width: 8px;
                height: 8px;
                content: "";
                border-radius: 50%;
                position: absolute;
                background-color: #000;
            }

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

    h3 {
        font-size: 25px;
        color: #008FFF;
        margin-bottom: 10px;
    }
}

/* start 404 page */
.pnf_sec {
    .pnf_wrap {
        text-align: center;
    }

    .pnf_img {
        margin: 0 auto 20px;
        text-align: center;
        display: flex;
        justify-content: center;
    }
}

/* end 404 page */

/* start thank you page */
.thank_you_sec {
    padding: 150px 0 100px;
}

.thank_you_wrap {
    text-align: center;

    h2 {
        font-size: 50px;
        color: #0C0056;
        margin-bottom: 20px;
    }
}

.page-template-404-not-found,
.page-template-thank-you,
.search-no-results,
.search-results {
    .header {
        /* background-color: rgb(72 72 72 / 90%); */
        border-bottom: 1px solid #0081EB;
        background-color: #008fff;

        .headerInner {
            padding-bottom: 15px;
            padding: 0;

            .headerMenu {
                background: rgba(0, 0, 0, 0.7);
            }

            .headerRight {
                .headerRtInn {
                    .headerOptions {
                        background: rgba(0, 0, 0, 0.7);

                        &:not(:last-child) {
                            &::after {
                                background-color: rgba(0, 0, 0, 0.7);
                            }
                        }
                    }
                }
            }
        }

        &.is-sticky {
            .header {
                .headerInner {
                    padding-bottom: 0px;
                }
            }

            .headerRight {
                .headerRtInn {
                    .headerOptions {
                        &:not(:last-child) {
                            &::after {
                                background-color: #fff;
                            }
                        }
                    }
                }
            }
        }
    }

    .mobTrigger {
        a {
            color: #141414;
        }
    }
}


.search-no-results,
.search-results {
    .search-results {
        padding-top: 150px !important;
        padding-bottom: 120px !important;
    }

    h1 {
        margin-bottom: 25px;
    }

    .pagination {
        .nav-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }
    }

    .search-results-list {
        li {
            a {
                font-size: 18px !important;
            }
        }
    }
}


/* end thank you page */

/* get in touch form */
.getTouchBtnDiv {
    .getTouchBtn {
        padding: 10px 20px;
        top: 180px;
        right: -80px;
        z-index: 21;
        width: 200px;
        height: 40px;
        display: flex;
        font-size: 16px;
        position: fixed;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        color: #fff;
        font-weight: 600;
        background-color: #008fff;
        border: 1px solid #008fff;
        transform: rotate(90deg);
        border-radius: 0 0 10px 10px;
        box-shadow: 0px 0px 6px 0px #ccc;
        transition: all 0.5s;

        &:hover {
            background-color: #fff;
            color: #008fff;
        }
    }
}

.sidebarForm {
    position: fixed;
    width: 100%;
    max-width: 350px;
    transform: translateX(120%);
    right: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    min-width: 300px;
    background: #fff;
    z-index: 100;
    transition: all 0.5s;
    padding: 30px 20px;
    box-shadow: 2px 0 10px 2px rgba(0, 0, 0, 0.2);
    overflow-x: hidden;

    &.active {
        transform: translateX(0%);
    }

    .sidebarFormInn {
        .sidebarFormTop {
            text-align: center;

            .sideMenuClose {
                position: absolute;
                right: 10px;
                top: 8px;
                font-size: 22px;

                i {
                    color: #008fff;
                }
            }

            .sectionMainTitle {
                font-size: 26px;
                margin: 0;
                padding: 0;
                font-weight: 600;
            }

            .sidebarHead {
                color: #008fff;
                font-size: 17px;
                margin-top: 6px;
                margin-bottom: 18px;
                line-height: 1.5;
            }
        }

        form {

            input[type='text'],
            input[type='email'],
            input[type='tel'],
            select,
            textarea,
            .nice-select {
                outline: 0;
                background-color: transparent;
                border-radius: 0;
                border: none;
                padding: 0;
                font-size: 15px;
                font-weight: 500;
                border: none !important;
                border-bottom: 1px solid #00000025 !important;
                height: 50px;
                width: 100%;
                font-size: 15px;
                color: #000;
                font-weight: 500;

                &::placeholder {
                    color: #000;
                }
            }

            .nice-select {
                margin-bottom: 25px;

                .option {
                    font-size: 15px;
                }

                &::after {
                    top: 19px;
                    right: 0;
                }
            }
        }
    }
}

.wrldmapSvgWrapRes {
    display: none;
}

/* start whatsapp */
.whatsappBtnDiv {
    position: fixed;
    bottom: 30px !important;
    right: 15px !important;
    z-index: 20;
    width: 50px;
    height: 50px;
    z-index: 98 !important;
    border-radius: 50%;
    border: 1px solid #fff;
    overflow: hidden;

    .whatsappBtn {
        display: block;
        width: 100%;
        height: 100%;
        padding: 5px;
        border-radius: 50%;
        background-color: #008fff;

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

/* end whatsapp */

.bd_lf {
    border-left: 1px solid #00000025;
}

#ajaxsearchlite1 .probox,
div.asl_w .probox {
    height: 54px !important;
}

#ajaxsearchlite1 .probox .proinput input,
div.asl_w .probox .proinput input {
    height: 100% !important;
}

#ajaxsearchlite1 .probox .proinput input,
div.asl_w .probox .proinput input {
    font-size: 16px !important;
}

div.asl_w .probox .promagnifier {
    width: 40px !important;
    height: 54px !important;
}

div.asl_w .probox .proloading,
div.asl_w .probox .proclose,
div.asl_w .probox .promagnifier,
div.asl_w .probox .prosettings {
    height: 54px !important;
}

#ajaxsearchlite1 .probox div.asl_simple-circle {
    height: 20px;
    width: 20px;
}


/* Responsive */

@media (max-width: 1768px) {
    .secBigH{
        font-size: 140px;
    }
    .presenceSec {
        .presenceSecInn {
            height: 660px;
        }
    }

    .wrldmapSvgWrap {
        svg {
            width: 1470px;
        }

        .asiLoc {
            top: 27%;
            right: 33%;
        }

        .euLoc {
            top: 20%;
            right: 46%;
        }

        .saLoc {
            top: 60%;
            left: 34%;
        }

        .naLoc {
            top: 24%;
            left: 27%;
        }

        .ocLoc {
            bottom: 25%;
            right: 21%;
        }
    }

    /* application */
    .applicationSec {
        .appSecBtm {
            .appSlider {
                .appItem {
                    height: 450px;

                    &.swiper-slide-active {
                        height: 600px;
                    }
                }
            }
        }
    }

    /* testimonial */
    .testiSec {
        .clientSlider {
            .clientImg {
                max-width: 150px;
                height: 60px;
            }
        }
    }

    /* presence section */
}

@media (max-width: 1738px) {
    .presenceSec {
        .presenceSecInn {
            .presenceCont {}
        }
    }
}

@media(max-width: 1680px) {
    .wrldmapSvgWrap {
        .asiLoc {
            top: 25%;
            right: 31%;
        }

        .euLoc {
            top: 17%;
            right: 44%;
        }

        .saLoc {
            top: 63%;
            left: 32%;
        }

        .naLoc {
            top: 16%;
            left: 24%;
        }

        .ocLoc {
            bottom: 25%;
            right: 19%;
        }
    }

    /* start application */
    .applicationSec {
        .appSecBtm {
            .appSlider {
                .appItem {
                    height: 460px;

                    .appInner {
                        .appTxt {
                            .appTxtInn {

                                h5,
                                .appTxtHead {
                                    font-size: 36px;
                                }
                            }
                        }
                    }

                    &.swiper-slide-active {
                        width: 860px !important;
                        height: 570px;
                    }
                }
            }
        }
    }

    /* end application */

    /* presence section */

    .presenceSec {
        .presenceSecInn {
            .presenceCont {
                width: 390px;
                border-radius: 15px;

                & .headingWrap {
                    .secSmallH {
                        font-size: 30px;
                    }
                }

                p {
                    font-size: 16px;
                    line-height: 1.5;
                }
            }

            .presenceImg {
                img {
                    width: 1470px;
                }

                .mapPointer {
                    .blob {

                        /* Sri Lanka */
                        &.blob_1 {
                            bottom: 41%;
                            right: 38.5%;
                        }

                        /* USA */
                        &.blob_2 {
                            bottom: 55%;
                            left: 33%;
                        }

                        /* UK */
                        &.blob_3 {
                            bottom: 64%;
                            left: 48%;
                        }

                        /* Nepal */
                        &.blob_4 {
                            bottom: 50%;
                            right: 38%;
                        }

                        /* Bangladesh */
                        &.blob_5 {
                            bottom: 47%;
                            right: 36.5%;
                        }

                        /* New Zealand */
                        &.blob_6 {
                            bottom: 18%;
                            right: 25%;
                        }

                        /* Australia */
                        &.blob_7 {
                            bottom: 26%;
                            right: 31%;
                        }

                        /* Germany */
                        &.blob_8 {
                            bottom: 60%;
                            right: 50.3%;
                        }

                        /* India */
                        &.blob_9 {
                            bottom: 47%;
                            right: 39%;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1600px) {

    /* common */
    .secBigH {
        font-size: 130px;
    }

    /* .overlapBtm {
        margin-top: -50px;
    } */

    .marqueeHeading {
        .marqueeInner {
            .secBigH {
                &::after {
                    bottom: 40px;
                }
            }
        }
    }

    /* testimonial */
    .testiSec {
        .testiSecBtm {
            .overlapBtm {
                margin-top: -45px;
            }

            .testiSlider {
                .slick-arrow {
                    &.slick-prev {
                        left: 220px;
                    }

                    &.slick-next {
                        right: 220px;
                    }
                }

                .testiSlide {
                    .testiCard {
                        .testiCardCont {
                            .testiBtm {
                                .testiTxt {
                                    .testiTxtHead {
                                        font-size: 18px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .page-template-undercarriage-parts {
        .applicationSec {
            .appSecBtm {
                .appSlider {
                    .appItemWrap {
                        .appItem {
                            height: 420px;

                            .appInner {
                                .appTxt {
                                    .appTxtInn {

                                        h5,
                                        .appTxtHead {
                                            font-size: 22px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* presence sec */
    .presenceSec {
        .presenceSecInn {
            .presenceCont {}
        }
    }
}

@media (max-width: 1536px) {}

@media (max-width: 1500px) {
    .secBigH {
        font-size: 110px;
        letter-spacing: 2px;
    }

    .presenceSec {
        .presenceSecInn {
            .presenceImg {
                img {
                    width: 1200px;
                    height: 98%;
                    object-fit: cover;
                }

                .mapPointer {
                    width: 1200px;

                    .blob {

                        /* Sri Lanka */
                        &.blob_1 {
                            bottom: 38%;
                            right: 27%;
                        }

                        /* USA */
                        &.blob_2 {
                            bottom: 58%;
                            left: 16%;
                        }

                        /* UK */
                        &.blob_3 {
                            bottom: 67%;
                            left: 46.5%;
                        }

                        /* Nepal */
                        &.blob_4 {
                            bottom: 51%;
                            right: 26%;
                        }

                        /* Bangladesh */
                        &.blob_5 {
                            bottom: 47%;
                            right: 23%;
                        }

                        /* New Zealand */
                        &.blob_6 {
                            bottom: 10%;
                            right: 0%;
                        }

                        /* Australia */
                        &.blob_7 {
                            bottom: 21%;
                            right: 12%;
                        }

                        /* Germany */
                        &.blob_8 {
                            bottom: 63%;
                            right: 50.8%;
                        }

                        /* India */
                        &.blob_9 {
                            bottom: 47%;
                            right: 28%;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1480px) {
    .presenceSec {
        .presenceSecInn {
            height: 550px;
        }
    }

    .wrldmapSvgWrap {
        overflow: hidden;

        .locImgD {
            span {
                font-size: 13px;
                min-width: 110px;
            }
        }

        svg {
            width: 1200px;
            height: auto;
            margin: 0px 0 0 280px;
        }

        .asiLoc {
            top: 22%;
            right: 18%;
        }

        .euLoc {
            top: 16%;
            right: 33%;
        }

        .saLoc {
            top: 63%;
            left: 46%;
        }

        .naLoc {
            top: 19%;
            left: 38%;
        }

        .ocLoc {
            bottom: 25%;
            right: 8%;
        }
    }
}

@media(max-width: 1440px) {
    
    .comnPopupForm, 
    .careerApplyForm {
        form {
            input {
                height: 35px;
                font-size: 14px;
                    &::placeholder {
                    font-size: 14px;
                }
            }

            textarea {
                font-size: 14px;
                &::placeholder {
                    font-size: 14px;
                }
            }
            .submitBox {
                .btnOne {
                    width: 140px;
                    height: 44px;
                    input {
                       font-size: 16px;
                       padding: 5px 100px 5px 32px;
                    }
                    .arrow {
                        right: -44px;
                        width: 44px;
                        height: 44px;
                    }
                }
            }
        }
    }
    
    .single-product {
        form {
            input[type="submit"] {
                font-size: 16px;
                min-height: 44px;
                max-width: 160px;
            }
        }
    }

    /* start application */
    .applicationSec {
        .appSecBtm {
            .appSlider {
                .appItem {
                    &.swiper-slide-active {
                        width: 750px !important;
                    }

                    .appInner {
                        padding: 0px 20px 25px;

                        .appTxt {
                            .appTxtInn {

                                h5,
                                .appTxtHead {
                                    font-size: 30px;
                                    /* margin-bottom: 0; */
                                }
                            }
                        }
                    }

                    .btnWrap {
                        &.transBtnWrap {
                            .btnOne {
                                span.btnTxt {
                                    height: 48px;
                                    padding: 0 20px;
                                    font-size: 16px;
                                }

                                span.arrow {
                                    width: 48px;
                                    height: 48px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* end application */

    /* start case */
    .pressSec {
        .pressSlider {
            &.caseSlider {
                padding: 0 50px;

                & .slick-arrow {
                    &.slick-prev {
                        left: 0px;
                    }

                    &.slick-next {
                        right: 0px;
                    }
                }
            }

            .pressSlide {
                padding: 0px 10px;
            }
        }
    }

    .pressSlider {
        .pressSlide {
            .pressCard {
                .pressImg {
                    height: 280px;
                }
            }
        }
    }

    /* testimonial */
    .testiSec {
        .testiSecBtm {
            .testiSlider {
                .slick-arrow {
                    &.slick-prev {
                        left: 120px;
                    }

                    &.slick-next {
                        right: 120px;
                    }
                }
            }
        }
    }

    /* presence sec */
    /* .presenceSec {
        .presenceSecInn {
            .presenceCont {
                left: 90px;
            }
        }
    } */

    .strengthSec {
        .strengthSecBtm {
            .strengthCard {
                .strengthImg {
                    width: 60px;
                    height: 60px;
                }

                .strengthTxt {
                    p {
                        font-size: 17px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1399px) {}

@media (max-width: 1366px) {

    #ajaxsearchlite1 .probox,
    div.asl_w .probox {
        height: 44px !important;
    }

    #ajaxsearchlite1 .probox .proinput input,
    div.asl_w .probox .proinput input {
        font-size: 14px !important;
    }

    div.asl_w .probox .promagnifier {
        height: 44px !important;
    }

    div.asl_w .probox .proloading,
    div.asl_w .probox .proclose,
    div.asl_w .probox .promagnifier,
    div.asl_w .probox .prosettings {
        height: 44px !important;
    }

    .wrldmapSvgWrap {
        svg {
            width: 1200px;
            height: auto;
            margin: 0px 0 0 200px;
        }

        .asiLoc {
            top: 22%;
            right: 19%;
        }

        .saLoc {
            top: 63%;
            left: 42%;
        }

        .naLoc {
            top: 19%;
            left: 34%;
        }
    }

    /* common */
    .secBigH {
        font-size: 88px;
    }

    .secSmallH {
        font-size: 40px;
        line-height: 50px;
    }

    .commonSec {
        padding: 100px 0;
    }

    p,
    ul li {
        font-size: 16px;
        line-height: 26px;
    }

    table th,
    table td {
        font-size: 16px;
    }

    .getTouchBtnDiv {
        .getTouchBtn {
            right: -62px;
            width: 160px;
            height: 36px;
            font-size: 14px;
        }
    }

    form {
        .form-group {
            margin-bottom: 10px;
        }
    }

    .btnWrap {
        .btnOne {
            span.btnTxt {
                font-size: 16px;
                letter-spacing: 1px;
                min-width: 190px;
                height: 45px;
                padding: 0 20px;
            }

            span.arrow {
                width: 45px;
                height: 45px;
            }
        }
    }

    .sidebarForm {
        .sidebarFormInn {
            form {

                input[type='text'],
                input[type='email'],
                select,
                textarea,
                .nice-select {
                    height: 40px;
                }
            }
        }
    }

    .sidebarForm {
        .submitBox {
            padding-right: 40px;

            .btnOne {
                width: 160px;
                height: 42px;

                input {
                    font-size: 14px;
                    line-height: 26px;
                }

                .arrow {
                    right: -42px;
                    width: 42px;
                    height: 42px;
                }
            }
        }
    }


    /* press center */
    .pressSlider {
        .slick-list {
            margin: 0px -120px;
        }
    }

    /* common faq */
    .commonFaqSec {
        .faqLeft {
            p {
                font-size: 22px;
            }

            a {
                font-size: 25px;
            }
        }
    }

    /* common strenth sec */
    /* .strengthSec {
        & .strengthSecBtm {
            .strengthCard {
                .strengthTxt {
                    p {
                        font-size: 22px;
                    }
                }
            }
        }
    } */


    /* start application */
    .applicationSec {
        .appSecBtm {
            .appSlider {
                .appItem {
                    height: 360px;

                    &.swiper-slide-active {
                        width: 800px !important;
                        height: 460px;
                    }

                    .appInner {
                        padding: 0px 20px 20px;
                    }

                    .btnWrap {
                        &.transBtnWrap {
                            .btnOne {
                                span.btnTxt {
                                    height: 46px;
                                }

                                span.arrow {
                                    width: 46px;
                                    height: 46px;
                                }
                            }
                        }
                    }
                }

                .insfrasArrow {
                    right: 350px;
                }

                .insfraProcess {
                    width: 260px;
                }
            }
        }
    }

    /* end application */

    .page-template-undercarriage-parts {
        .applicationSec {
            .appSecBtm {
                .appSlider {
                    .appItemWrap {
                        .appItem {
                            height: 300px;
                            .appInner {
                                padding: 0px 18px 16px;

                                .appTxt {
                                    .appTxtInn {

                                        h5,
                                        .appTxtHead {
                                            font-size: 20px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* life sec */
    .lifeSec {
        .lifeSecLeft {
            .lifeSecLeftInn {
                min-height: 420px;
                padding: 80px 15px 50px;
            }
        }
    }

    /* rock breakers */
    .rockBreaker_sec {
        .leftAboutInner {
            ul {
                li {
                    font-size: 16px;
                    line-height: 26px;
                }
            }
        }
    }

    /* presence sec */
    .presenceSec {
        .presenceSecInn {
            height: 550px;

            .presenceImg {
                .mapPointer {
                    .blob {
                        height: 20px;
                        width: 20px;

                        &:before {
                            width: 9px;
                            height: 9px;
                        }

                        &.blob_10 {
                            left: 21%;
                            bottom: 66%;
                        }

                        &.blob_11 {
                            right: 44%;
                            bottom: 67%;
                        }

                        &.blob_12 {
                            right: 28%;
                        }

                        &.blob_13 {
                            right: 15%;
                            bottom: 14%;
                        }
                    }
                }
            }
        }
    }

    .vidSecImg {
        height: 490px;

        .vidSecIcon {
            width: 80px;
            height: 80px;

            a {
                i {
                    font-size: 32px;
                    color: #fff;
                }
            }
        }
    }
}

@media (max-width: 1360px) {

    /* application */
    .applicationSec {
        .appSecBtm {
            .appSlider {
                .insfrasArrow {
                    right: 300px;
                }

                .insfraProcess {
                    width: 220px;
                }
            }
        }
    }

    /* presence sec */
    .presenceSec {
        .presenceSecInn {
            .presenceImg {}

            .presenceCont {
                left: 20px;
                width: 470px;

                .headingWrap {
                    padding-bottom: 10px;
                }

                .btnWrap {
                    /* justify-content: center; */
                }
            }
        }
    }
}

@media (max-width: 1280px) {
    .secBigH {
        font-size: 68px;
    }
    .secSmallH {
        font-size: 40px;
        line-height: 46px;
    }
    .btnWrap {
        .btnOne {
            span.btnTxt {
                font-size: 16px;
                height: 40px;
            }
            span.arrow {
                width: 40px;
                height: 40px;
            }
        }
    }
    
    .aboutTxtCard {
        .abtTxtCardRow {
            .aboutTxtCardInn {
                height: 70px;
            }
        }
    }
    .presenceSec {
        .presenceSecInn {
            height: 540px;
        }
    }

    .wrldmapSvgWrap {
        .locImgD {
            width: 16px;
            height: 16px !important;

            img {
                width: 16px;
            }

            span {
                font-size: 12px;
                min-width: 94px;
                top: calc(50% + 22px);
            }
        }

        svg {
            width: 1100px;
            height: auto;
            margin: 0px 0 0 250px;
        }

        .euLoc {
            top: 14%;
            right: 30%;
        }

        .saLoc {
            top: 59%;
            left: 46%;
        }

        .naLoc {
            top: 19%;
            left: 39%;
        }

        .ocLoc {
            bottom: 31%;
            right: 6%;
        }
    }

    /* common */
    .vidSecImg {
        height: 400px;
        width: 700px;
    }

    /* common strenth sec */
    .strengthSec {
        .strengthSecBtm {
            .strengthCard {
                .strengthImg {
                    width: 56px;
                    height: 56px;
                }

                .strengthTxt {
                    padding-right: 0;

                    p {
                        font-size: 17px;
                    }
                }
            }
        }
    }

    /* application */
    .applicationSec {
        .appSecBtm {
            .appSlider {
                .appItem {
                    &.swiper-slide-active {
                        width: 700px !important;
                    }

                    .appInner {
                        .appTxt {
                            .appTxtInn {
                                width: calc(100% - 220px);

                                h5,
                                .appTxtHead {
                                    font-size: 20px;
                                }

                                .btnWrap {
                                    .btnOne {
                                        span.btnTxt {
                                            font-size: 14px;
                                            min-width: 160px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                .insfrasArrow {
                    right: 270px;
                }

                .insfraProcess {
                    width: 180px;
                }
            }
        }
    }

    .page-template-undercarriage-parts {
        .applicationSec {
            .appSecBtm {
                .appSlider {
                    .appItemWrap {
                        .appItem {
                            height: 300px;
                        }
                    }
                }
            }
        }
    }

    /* presence section */
    .presenceSec {
        .presenceSecInn {
            .presenceImg {
                .mapPointer {
                    /* .blob {

                        &:before {
                            width: 9px;
                            height: 9px;
                        }

                        &.blob_1 {
                            right: 11%;
                        }

                        &.blob_2 {
                            right: 15%;
                        }

                        &.blob_3 {
                            right: 24%;
                        }

                        &.blob_4 {
                            right: 53%;
                        }
                    } */
                }
            }

            .presenceCont {
                width: 500px;
            }
        }
    }

    /* press center */
    .pressSlider {
        .pressSlide {
            padding: 0px 15px;

            .pressCard {
                .pressImg {
                    height: 290px;
                }
            }
        }
    }
}

@media (max-width: 1240px) {
    .presenceSec {
        .presenceSecInn {
            .presenceCont {
                width: 320px;
            }
        }
    }

    .wrldmapSvgWrap {
        svg {
            height: auto;
            margin: 0px 0 0 180px;
        }
    }

    .aboutSec.aboutSec_1 .vidSecImg {
        margin-bottom: 0;
    }

    /* .presenceSec {
        .presenceSecInn {
            .presenceImg {
                .mapPointer {
                    .blob {
                        &.blob_2 {
                            right: 14%;
                        }

                        &.blob_3 {
                            right: 23%;
                        }
                    }
                }
            }
        }
    } */
}

@media (max-width: 1199px) {
    .wrldmapSvgWrap {
        display: none;

        svg {
            height: auto;
            margin: 0 auto;
        }
    }

    .wrldmapSvgWrapRes {
        display: block;
        overflow: hidden;
        margin-top: 20px;
        border-radius: 10px;
    }

    /* common */
    .commonSec {
        padding: 80px 0;
    }

    .secSmallH {
        font-size: 45px;
        line-height: 55px;
    }

    .btnWrap {
        .btnOne {
            span.btnTxt {
                font-size: 14px;
            }
        }
    }

    .commonBgSec {
        padding: 70px 0px;
    }

    form {
        .submitBox {
            .btnOne {
                width: 190px;
                height: 45px;

                input {
                    font-size: 14px;
                    letter-spacing: 1px;
                }

                span.arrow {
                    width: 45px;
                    height: 45px;
                    right: -45px;
                }
            }
        }
    }

    .formWrap {
        .inputBox {

            input[type="text"],
            input[type="tel"],
            input[type="email"],
            textarea {
                font-size: 16px;
            }
        }
    }

    .nice-select {
        span {
            font-size: 16px;
        }
    }

    /* common faq */
    .commonFaqSec {
        .faqLeft {
            /*position: static;*/
            text-align: center;
            margin-bottom: 30px;
        }
    }

    .pagination {
        .page-numbers {
            width: 58px;
            height: 58px;
        }
    }

    /* strength section */
    .strengthSec {
        .headingWrap {
            padding-left: 15px;
            padding-right: 15px;

            p.wid_50 {
                width: 100%;
            }
        }

        .strengthSecBtm {
            .strengthCard {
                min-height: 190px;
                /* row-gap: 0; */

                .strengthImg {
                    width: 55px;
                    height: 55px;
                    margin: 0px auto;
                    margin-bottom: 15px;
                }

                .strengthTxt {
                    padding-right: 0;
                    text-align: center;

                    /* p {
                        font-size: 20px;
                    } */
                }
            }
        }
    }


    /* start application */
    .applicationSec {
        & .appSecBtm {
            & .appSlider {
                padding-bottom: 80px;

                & .appItem {
                    height: 500px;

                    &.swiper-slide-active {
                        width: inherit !important;
                        height: 500px;
                        border-radius: 15px 15px 15px 15px;
                    }

                }

                .insfrasArrow {
                    right: auto;
                    bottom: 24px;
                    left: 50%;
                    transform: translateX(-50%);
                }

                .insfraProcess {
                    bottom: 10px;
                }
            }
        }
    }

    /* end application */

    /* life sec */
    .lifeSec {
        .lifeSecLeft {
            .lifeSecLeftInn {
                min-height: 360px;
                padding: 50px 25px 50px;
            }
        }
    }

    /* testimonial sec */
    .testiSec {
        .testimonTop {
            text-align: center;

            .headingWrap {
                padding-bottom: 15px;

                .secBigH {
                    display: block;
                    margin-bottom: 25px;
                }

                .secSmallH {
                    br {
                        display: none;
                    }
                }
            }
        }

        .testiSecBtm {
            .overlapBtm {
                display: none;
            }

            .testiSlider {
                padding-bottom: 50px;

                .slick-arrow {
                    top: auto;
                    bottom: -20px;

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

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

                .testiSlide {
                    .testiCard {
                        background-color: #fff;
                        box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.18);
                        transform: none !important;

                        .testiCardCont {
                            .testiTop {
                                .testiTopInn {
                                    &::after {
                                        background: linear-gradient(to top, #fff, transparent);
                                    }
                                }
                            }

                            .testiBtm {
                                .testiImg {
                                    a {
                                        &::after {
                                            background-color: #0C0056;
                                            color: #FFB600;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* find a dealer */
    .findDealerSec {
        .findDealerSecInn {
            .headingWrap {
                padding-bottom: 20px;
            }

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

    /* presence section */
    .presenceSec {
        .presenceSecInn {
            height: auto;
            display: flex;
            flex-direction: column;
            background-color: transparent;

            .presenceImg {
                position: static;
                width: 100%;
                height: auto;

                &.deskImg {
                    display: none;
                }

                &.resImg {
                    display: block;
                    overflow: hidden;
                    border-radius: 15px;
                }
            }

            .presenceCont {
                width: 100%;
                position: static;
                text-align: center;
                transform: none;
                /* margin-bottom: 30px; */
                box-shadow: none;
                padding: 0;

                .btnWrap {
                    justify-content: center;
                }
            }
        }
    }

}

@media (max-width: 1024px) {
    form {

        input,
        select,
        textarea {
            font-size: 14px;
        }
    }

    /* common */
    .secBigH {
        font-size: 80px;
        line-height: 1;
        letter-spacing: 2px;
    }

    .secSmallH {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 15px;
    }

    .headingWrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* strength section */
    /* .strengthSec {
        .strengthSecBtm {
            .strengthCard {
                background: var(--yellow-bg);

                .strengthImg {
                    filter: brightness(0) saturate(100%) invert(29%) sepia(0%) saturate(626%) hue-rotate(202deg) brightness(99%) contrast(70%);
                }

                .strengthTxt {
                    p {
                        color: #000;
                    }
                }
            }
        }
    } */

    .getTouchBtnDiv {
        .getTouchBtn {
            bottom: auto;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
        }
    }

    /* application sec */
    .applicationSec {
        .ltBlueBg {
            .appSecBtm {
                .appSlider {
                    .insfraProcess {
                        display: none;
                    }
                }
            }
        }
    }

    /* testimonial sec */
    .testiSec {
        .testimonTop {
            .headingWrap {
                padding: 0;

                .secBigH {
                    margin-bottom: 10px;
                }
            }
        }
    }

    /* presence sec */
    .presenceSec {
        .presenceSecInn {
            .presenceCont {
                .headingWrap {
                    padding: 0;
                }
            }
        }
    }
}

@media (max-width: 991px) {

    /* common */
    .secBigH {
        font-size: 60px;
        line-height: 1;
    }

    .overlapBtm {
        margin-top: 0;
    }

    .marqueeHeading {
        .marqueeInner {
            .secBigH {
                &::after {
                    bottom: 25px;
                }
            }
        }
    }

    .commonBgSec {
        padding: 60px 0px;
    }

    /* press center */
    .pressSec {
        .slick-list {
            margin: 0;
            padding: 0 !important;
        }

        .pressSlider {
            padding-bottom: 70px;

            .slick-arrow {
                top: auto;
                bottom: -20px;

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

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


        .pressSecBtm {
            padding: 0px 15px;

            .newsTabWrap {
                ul.tabs {
                    display: none;
                }

                .tabWrapInner {
                    .tabContWrap {
                        .tab_content {
                            display: block;
                            overflow: hidden;
                            border-radius: 10px;

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

                            .accTrigger {
                                display: block;
                                cursor: pointer;
                                font-size: 20px;
                                transition: 0.3s;
                                overflow: hidden;
                                margin-bottom: 0;
                                position: relative;
                                border-radius: 10px;
                                padding: 15px 60px 15px 15px;
                                border: 1px solid #00000025;

                                &:after {
                                    width: 32px;
                                    height: 32px;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    right: 15px;
                                    font-size: 32px;
                                    top: 10px;
                                    position: absolute;
                                    transition: 0.6s;
                                    font-family: fontawesome;
                                    font-weight: 900;
                                    -moz-osx-font-smoothing: grayscale;
                                    -webkit-font-smoothing: antialiased;
                                    display: var(--fa-display, inline-block);
                                    font-style: normal;
                                    font-variant: normal;
                                    line-height: 1;
                                    text-rendering: auto;
                                    content: "\f055";
                                    color: #0C0056;
                                }
                            }

                            .tabContinner {
                                display: none;
                                padding: 20px 10px 50px;
                            }

                            &.active {
                                background-color: #0C0056;

                                .accTrigger {
                                    color: #fff;

                                    &::after {
                                        color: #fff;
                                        content: "\f056";
                                    }
                                }

                                .tabContinner {
                                    display: block;
                                }
                            }
                        }
                    }
                }
            }

            .listContBox {
                .pressSlider {
                    .slick-arrow {
                        background-color: #fff;

                        &::after {
                            filter: brightness(0) saturate(100%) invert(2%) sepia(82%) saturate(7493%) hue-rotate(215deg) brightness(94%) contrast(105%);
                        }
                    }

                    .pressSlide {
                        .pressCard {
                            .pressText {
                                .pressDate {
                                    color: #fff;
                                }

                                .pressTextInn {
                                    a {
                                        color: #fff;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

    }

    .pressSec {
        & .pressSlider {
            &.caseSlider {
                padding: 0 0 80px;

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

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

    /* common faq */
    .commonFaqSec {
        .faqLeft {
            .secSmallH {
                margin-bottom: 15px;
            }

            p {
                font-size: 18px;
            }

            a {
                font-size: 20px;
            }
        }

        .faqWrapInner {
            .eachFaq {
                .eachFaqInner {
                    .faqTitle {
                        font-size: 18px;
                    }
                }
            }
        }
    }

    /* strength section */
    .strengthSec {
        .ltBlueBg {
            .strengthSecBtm {
                .strengthCard {
                    margin-bottom: 20px;

                    .strengthTxt {
                        p {
                            font-size: 18px;
                        }
                    }
                }

                .strengthSecBtmRow {
                    padding-top: 0;
                }
            }
        }
    }


    /* start common bucket */
    .dskOvrImg {
        display: none;
    }

    .mobOvrImg {
        width: 80%;
        margin: 0 auto 20px;
        border-radius: 20px;
        display: flex;
        justify-content: center;
    }

    /* end common bucket */

    /* start application */
    .applicationSec {
        .appSecBtm {
            .appSlider {
                padding-bottom: 70px;

                .appItem {
                    &::after {
                        background: linear-gradient(2deg, #000 2.05%, rgba(0, 0, 0, 0.00) 96.17%);
                    }

                    .appInner {
                        padding: 0px 15px 25px;

                        .appTxt {
                            flex-direction: column;
                            justify-content: flex-start;
                            align-items: flex-start;

                            .appTxtInn {
                                width: 100%;
                            }

                            .btnWrap {
                                margin-top: 15px;
                            }
                        }
                    }
                }

                .insfraProcess {
                    left: 50%;
                    transform: translateX(-50%);
                    right: auto;
                    bottom: 50px;
                    justify-content: center;
                }
            }
        }
    }

    .page-template-undercarriage-parts {
        .applicationSec {
            .appSecBtm {
                .appSlider {
                    padding-bottom: 0;
                    .appItemWrap {
                        .appItem {
                            .appInner {
                                .appTxt {
                                    flex-direction: row;
                                    align-items: center;
                                    justify-content: space-between;

                                    .appTxtInn {
                                        width: calc(100% - 60px);

                                        h5,
                                        .appTxtHead {
                                            margin-bottom: 0 !important;
                                        }
                                    }

                                    .transBtnWrap {
                                        opacity: 1;
                                        margin-top: 0;
                                        visibility: visible;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* end application */

    /* life section */
    .lifeSec {
        .lifeSecLeft {

            .lifeSecLeftInn {
                min-height: auto;
                text-align: center;

                .headingWrap {
                    text-align: center;

                    .secSmallH {
                        margin-bottom: 0;
                    }
                }

                .lifeSecBtnWrap {
                    gap: 0;
                    justify-content: center;

                    .btnWrap {
                        margin-top: 10px;
                    }
                }
            }
        }

        .lifeSecRight {
            display: none;
        }
    }

    /* presence sec */
    .presenceSec {
        .presenceSecInn {
            .presenceCont {
                br {
                    display: none;
                }
            }
        }
    }

    /* used case */
    .caseSec {
        .pressSecBtm {
            padding: 0;

            .caseTabWrap {
                ul.tabs {
                    display: none;
                }

                .listContBox {
                    .tab_content {
                        display: block;
                        border-radius: 10px;
                        overflow: hidden;

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

                        .accTrigger {
                            display: block;
                        }

                        .tabContinner {
                            display: none;
                        }

                        &.active {
                            background-color: #0C0056;

                            .tabContinner {
                                display: block;
                                border: 1px solid #00000025;
                                border-top: none;
                                border-radius: 0 0 10px 10px;
                                padding: 20px 15px;
                            }
                        }
                    }
                }
            }
        }
    }

}

@media (max-width: 768px) {

    /* common */

    p,
    ul li {
        font-size: 14px;
        line-height: 24px;
    }

    table th,
    table td {
        font-size: 14px;
    }

    .formWrap {
        .inputBox {

            input[type="text"],
            input[type="tel"],
            input[type="email"],
            textarea {
                font-size: 14px;
            }
        }
    }

    .nice-select {
        span {
            font-size: 14px;
        }
    }

    .wpcf7-not-valid-tip {
        font-size: 14px;
    }

    .page-template-privacy-policy,
    .page-template-terms-and-conditions {
        h3 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        p {
            font-size: 14px;
        }
    }

    .page-template-404-not-found,
    .page-template-thank-you {
        .commonSec {
            padding: 90px 0;
        }
    }

    /* intro video section */
    .vidSecImg {
        height: 340px;
        width: 100%;

        .vidSecIcon {
            top: 50%;
            left: 50%;
            right: auto;
            bottom: auto;
            transform: translate(-50%, -50%);
            width: 75px;
            height: 75px;

            a {
                i {
                    font-size: 30px;
                }
            }
        }
    }

    /* press center */
    .pressSlider {
        .pressSlide {
            .pressCard {
                .pressImg {
                    height: 250px;
                }
            }
        }
    }

    /* start application */
    .applicationSec {
        .appSecBtm {
            .appSlider {
                .appItem {
                    height: 400px;

                    &.swiper-slide-active {
                        height: 400px;
                    }
                }
            }
        }
    }

    /* end application */

    /* testimonial */
    .testiSec {
        .testiSecBtm {
            .testiSlider {
                .testiSlide {
                    padding: 20px 12px;
                    .testiCard {
                        margin: 0 0 30px;
                        .testiCardCont {
                            .testiTop {
                                .testiShowBtn {
                                    font-size: 14px;
                                }
                            }

                            .testiBtm {
                                .testiImg {
                                    width: 65px;
                                    height: 65px;
                                }

                                .testiTxt {
                                    .testiTxtHead {
                                        font-size: 16px;
                                    }

                                    .testiTxtPara {
                                        font-size: 14px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* strength section */
    .strengthSec {
        .strengthSecBtm {
            .strengthCard {
                .strengthTxt {
                    p {
                        font-size: 18px;
                    }
                }
            }
        }
    }

    /* rock breakers */
    .rockBreaker_sec {
        .leftAboutInner {
            ul {
                li {
                    font-size: 14px;
                    line-height: 24px;
                }
            }
        }
    }

    .prodIntroSec {
        .headingWrap {
            &.pt_50 {
                padding-top: 30px !important;
            }
        }
    }


    .pressSlider {
        .pressSlide {
            .pressCard {
                .pressText {
                    .pressTextInn {
                        a {
                            font-size: 16px;
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 767px) {
    .header {
        &.is-sticky {
            .headerInner {
                padding: 0px;

                .headerMid {

                    &:before,
                    &:after {
                        height: 50px;
                    }

                    &:before {
                        left: -21px;
                    }
                }
            }
        }
    }

    .pressSec {
        .pressSlider {
            .pressSlide {
                padding: 0px 8px;
            }
        }
    }

    /* .commonSec {
        padding: 30px 0;
    } */

    .strengthSec {
        .commonBgSec{
            padding-top: 15px;
            padding-bottom: 15px;
        }
        .strengthSecBtm {
            .strengthCard {
                min-height: auto;

            }
        }
    }
    .page-template-cutter-attachment {
        .typeSec {
            .typeSecTop {
                .typeSecTopRow {
                    .typeCard {
                        .typeCardBack {
                            .typeTxtInn {
                                ul.customList li {
                                    line-height: 1.2;
                                    &:not(:last-child){
                                        margin-bottom: 12px;
                                    }
                                    &:before {
                                        left: auto !important;
                                        display: inline-block !important;
                                        transform: translate(-13px, -3px) !important;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}


@media(max-width: 640px) {
    .strengthSec {
        .ltBlueBg {
            .strengthSecBtm {
                .strengthCard {
                    min-height: 180px;
                }
            }
        }
    }

    /* get qoute form */
    .GbPopupForm {
        width: 80%;
    }

    /* end get quote form */

    /* global popup form */
    .comnPopupForm {
        width: 80%;
        form {
            .wpcf7-spinner {
                right: 58px;
            }
        }
    }

    /* end global form */


    /* life section */
    .lifeSec {
        .lifeSecLeft {
            .lifeSecLeftInn {
                .lifeSecBtnWrap {
                    gap: 20px;
                    justify-content: center;
                    flex-direction: column;

                    .btnWrap {
                        margin: 0;
                    }
                }
            }
        }
    }

    /* testimonial section */
    .testiSec {
        .testiSecBtm {
            .testiSlider {
                padding-bottom: 20px;
            }
        }
    }
}

@media (max-width: 575px) {

    .GbPopupForm {
        form {
            .wpcf7-spinner {
                left: 74%;
            }
        }
    }
    /* common */
    .secBigH {
        font-size: 40px;
    }

    .secSmallH {
        font-size: 25px;
        line-height: 35px;
    }

    .commonSec {
        padding: 60px 0;
    }

    .marqueeHeading {
        .marqueeInner {
            .secBigH {
                &::after {
                    bottom: 25px;
                    width: 18px;
                    height: 18px;
                }
            }
        }
    }

    .pagination {
        .page-numbers {
            width: 50px;
            height: 50px;
            font-size: 18px;

            &.next,
            &.prev {
                &::after {
                    content: '\f101';
                    font-family: fontawesome;
                    font-size: 16px;
                }
            }
        }
    }

    .thank_you_wrap {
        h2 {
            margin-bottom: 10px;
        }
    }

    .getTouchBtnDiv {
        display: none;
    }

    /* brand section */
    .brandSec {
        .brandSecBtm {
            .brandSlideImg {
                width: 100%;
                height: 100px;
            }
        }
    }

    /* intro video section */
    .vidSecImg {
        height: 300px;
    }

    /* strenthSec */

    .strengthSec {
        .ltBlueBg {
            .strengthSecBtm {
                .strengthSecBtmRow {
                    .eachStrenthBx {
                        width: 100%;
                    }
                }

                .strengthCard {
                    min-height: auto;
                    background: #fff;

                    .strengthImg {
                        filter: brightness(0) saturate(100%) invert(29%) sepia(0%) saturate(626%) hue-rotate(202deg) brightness(99%) contrast(70%);
                    }

                    .strengthTxt {
                        p {
                            font-size: 18px;
                            color: #000;
                        }
                    }
                }
            }
        }
    }

    /* start application */
    .applicationSec {
        .appSecBtm {
            padding: 0px 15px;

            .appSlider {
                .appItem {
                    .appInner {
                        .appTxt {
                            .appTxtInn {

                                h5,
                                .appTxtHead {
                                    font-size: 30px;
                                }
                            }
                        }
                    }

                    .btnWrap {
                        &.transBtnWrap {
                            .btnOne {
                                span.btnTxt {
                                    height: 42px;
                                    font-size: 14px;
                                }

                                span.arrow {
                                    width: 42px;
                                    height: 42px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .page-template-undercarriage-parts {
        .applicationSec {
            .commonBgSec {
                padding-bottom: 30px;
            }

            .appSecBtm {
                .appSlider {
                    width: auto;
                    padding-bottom: 0;
                    padding-left: 0;

                    .appItemWrap {
                        .appItem {
                            .appInner {
                                .appTxt {
                                    /* align-items: center;
                                    flex-direction: column;
                                    justify-content: center; */

                                    .appTxtInn {
                                        /* text-align: center; */
                                        /* margin-bottom: 15px; */

                                        h5,
                                        .appTxtHead {
                                            text-align: left;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* end application */

    /* testimonial */
    .testiSec {
        .clientSlider {
            .clientImg {
                max-width: 120px;
            }
        }
    }


    /* get qoute form */
    .GbPopupForm {
        width: 100%;
    }

    /* end get quote form */

    /* global popup form */
    .comnPopupForm {
        width: 100%;
    }

    /* end global popup form */

    /* start whatsapp */
    .whatsappBtnDiv {
        bottom: 18% !important;
        right: 28px !important;
        width: 48px;
        height: 48px;
    }

    /* end whatsapp */
}

@media (max-width: 480px) {
    
    .comnPopupForm {
        form {
            .wpcf7-spinner {
                right: 10px;
            }
        }
    }
    
    /* common */

    .secBigH {
        font-size: 35px;
    }

    .marqueeHeading {
        .marqueeInner {
            .secBigH {
                &::after {
                    bottom: 12px;
                    width: 12px;
                    height: 12px;
                }
            }
        }
    }

    /* start product overview */
    .mobOvrImg {
        width: 100%;
    }

    /* end product overview */

    /* start application */
    .applicationSec {
        & .appSecBtm {
            & .appSlider {
                & .appItem {
                    height: 320px;

                    & .appInner {
                        & .appTxt {
                            & .appTxtInn {

                                h5,
                                .appTxtHead {
                                    font-size: 27px;
                                }
                            }
                        }
                    }

                    &.swiper-slide-active {
                        height: 320px;
                    }
                }
            }
        }
    }

    /* end application */

    /* testimonial */
    .testiSec {
        .testiSecBtm {
            .testiSlider {
                .testiSlide {
                    .testiCard {
                        .testiCardCont {
                            display: flex;
                            flex-direction: column-reverse;

                            .testiTop {
                                margin-bottom: 0;
                                margin-top: 15px;
                                text-align: center;
                            }

                            .testiBtm {
                                flex-wrap: wrap;
                                gap: 10px;
                                justify-content: center;

                                .testiTxt {
                                    padding-left: 0;
                                    width: 100%;
                                    text-align: center;

                                    &::after {
                                        content: normal;
                                        left: 0;
                                        width: 20px;
                                    }
                                }
                            }
                        }

                        &::after {
                            content: normal;
                        }
                    }
                }
            }
        }
    }

}

@media(max-width: 440px) {

    /* start whatsapp */
    .whatsappBtnDiv {
        bottom: 20%;
    }

    /* end whatsapp */
}

@media (max-width: 420px) {
    .innerBannerWrap {
        .innerBanner {
            height: 270px;
        }
    }
}


footer[data-wpr-lazyrender="1"],
.header[data-wpr-lazyrender="1"] {
    content-visibility: visible
}

.innerBannerWrap {
    .innerBanner {
        .getStartedBanner{
            display: none!important;
        }
    }
}