@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

.header.is-sticky {
    background-color: #000000;
    /* backdrop-filter: blur(3px); */
    box-shadow: none;
    border-bottom: 1px solid #fb05168a;
}

.header.is-sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    animation: slideDown 0.35s ease-out;
    background-color: #000;
    z-index: 110;
    width: 100%;

    /* .leftLogo {
        width: 100px;
    } */
}

.container {
    max-width: 96%;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

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

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

.subBigH {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #000;
}

.btnOne {
    padding: 12px 25px;
    padding-right: 100px;
    border-radius: 10px;
    background-color: #FD0C00;
    border: 1px solid #FD0C00;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    position: relative;
    transition: 0.5s;

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

    &::after {
        width: 60px;
        height: 25px;
        border-radius: 20px;
        background-color: #fff;
        position: absolute;
        content: "";
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    &::before {
        content: "";
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        background: url(../images/home/btn-arrow.png) no-repeat center center;
        background-size: 100%;
        width: 36px;
        height: 20px;
        z-index: 1;
    }
}

.btnTwo {
    position: relative;
    padding-right: 25px;
    display: inline-block;
    color: #3043AB;
    transition: 0.5s;

    &::before {
        content: "\f061";
        position: absolute;
        font-size: 14px;
        color: #000;
        right: 5px;
        top: 5px;
        font-family: "FontAwesome";
        transform: rotate(-45deg);
        transition: 0.5s;
    }
}

.btnTwo:hover {
    color: #FFC700;

    &::before {
        color: #FFC700;
    }
}

.resView {
    display: none;
}

input,
select,
textarea {
    box-shadow: none;
    outline: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}

.nice-select {
    .list {
        width: 100%;
        max-height: 250px;
        overflow-y: auto !important;
    }
}

/* Responsive menu */

.ResFixedMenu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #d71006b3;
    border-radius: 15px 15px 0px 0px;
    z-index: 99;
    padding: 16px 30px;
    display: none;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 8px 1px #ffffff8f;
}

.mob-bottomBar {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.mob-bottomBar img {
    width: 28px;
}

/*===header-wrap start====*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 15px 0;
    /* overflow: hidden; */

    /* .row{
        width: 100%;
    } */

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

        .leftLogo {
            width: 120px;

            a {
                display: block;
            }
        }

        .headerMenu {
            width: calc(100% - 120px);
            text-align: center;

            .menuWrap {
                text-align: center;

                ul.menuLst {
                    display: flex;
                    align-items: center;
                    justify-content: end;

                    li {
                        margin: 0 5px;
                        border: 1px solid #fff;
                        border-radius: 5px;
                        transition: 0.3s;

                        a {
                            font-size: 17px;
                            color: #fff;
                            padding: 10px 15px;
                            display: inline-block;
                        }


                        & ul.tp-submenu {
                            display: block;
                            position: absolute;
                            top: calc(100% + 2px);
                            left: 0;
                            width: 280px;
                            z-index: 99;
                            opacity: 0;
                            visibility: hidden;
                            padding: 0;
                            -webkit-transition: all 0.3s ease-out;
                            -o-transition: all 0.3s ease-out;
                            transition: all 0.3s ease-out;
                            -webkit-transform: rotateX(-90deg);
                            -ms-transform: rotateX(-90deg);
                            transform: rotateX(-90deg);
                            -webkit-transform-origin: 0 0;
                            -moz-transform-origin: 0 0;
                            -ms-transform-origin: 0 0;
                            -o-transform-origin: 0 0;
                            transform-origin: 0 0;
                            /* backdrop-filter: blur(15px); */
                            background: rgba(0, 0, 0, 0.54);
                            box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
                            border-radius: 5px;
                            border-bottom: 2px solid #D71006;

                            &::after {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                backdrop-filter: blur(15px);
                                z-index: -1;
                            }

                            li {
                                margin: 0;
                                padding: 0;
                                position: relative;
                                border: none;

                                &.has-child-dropdown {
                                    >a {
                                        &::after {
                                            content: '\f105';
                                            font-family: fontawesome;
                                            position: absolute;
                                            right: 12px;
                                            color: #fff;
                                            font-size: 15px;
                                            transition: all 0.5s;
                                        }
                                    }
                                }

                                a {
                                    width: 100%;
                                    display: inline-block;
                                    position: relative;
                                    padding: 10px 12px;
                                    border: none;
                                    border-radius: unset;
                                    background-color: unset;
                                }

                                &::before {
                                    content: "";
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 2px;
                                    height: 0;
                                    background-color: #D71006;
                                    transition: 0.3s;
                                }

                                &::after {
                                    content: "";
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 0;
                                    height: 100%;
                                    background-color: rgba(255, 255, 255, 0.14);
                                    z-index: -1;
                                    transition: 0.3s;
                                }

                                ul {
                                    position: absolute;
                                    top: 0;
                                    left: 100%;
                                    width: 280px;
                                    z-index: 99;
                                    opacity: 0;
                                    visibility: hidden !important;
                                    -webkit-transition: all 0.3s ease-out;
                                    -o-transition: all 0.3s ease-out;
                                    transition: all 0.3s ease-out;
                                    -webkit-transform: rotateX(-90deg);
                                    -ms-transform: rotateX(-90deg);
                                    transform: rotateX(-90deg);
                                    -webkit-transform-origin: 0 0;
                                    -moz-transform-origin: 0 0;
                                    -ms-transform-origin: 0 0;
                                    -o-transform-origin: 0 0;
                                    transform-origin: 0 0;
                                    background: rgba(0, 0, 0, 0.3);
                                    box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
                                    backdrop-filter: blur(15px);
                                    border-radius: 5px;
                                    border-bottom: 2px solid #D71006;
                                    overflow: hidden;
                                }

                                &:hover {
                                    ul {
                                        visibility: visible !important;
                                        opacity: 1 !important;
                                        -webkit-transform: rotateX(0);
                                        -ms-transform: rotateX(0);
                                        transform: rotateX(0);
                                    }
                                }


                            }
                        }

                        &:hover {
                            background-color: #D71006;
                            border: 1px solid #D71006;
                        }

                        &.has-dropdown {
                            position: relative;
                            text-align: left;

                            .innrlst_titl {
                                display: flex;
                                align-items: center;

                                a {
                                    display: inline-block;
                                }

                                span {
                                    padding-right: 10px;

                                    svg {
                                        color: #fff;
                                        font-size: 14px;
                                        transition: 0.3s;

                                    }
                                }
                            }

                            &:last-child {
                                .sub-menu {
                                    right: 0;
                                    left: auto;
                                }
                            }


                            &:hover {

                                span {
                                    svg {
                                        transform: rotate(180deg);
                                    }
                                }

                                .tp-submenu {
                                    opacity: 1;
                                    visibility: visible;
                                    transform: rotateX(0);
                                    transition: 0.3s;

                                    li {
                                        background-color: unset;
                                        border: unset;

                                        &:hover {

                                            &::before {
                                                height: 100%;
                                            }

                                            &::after {
                                                width: 100%;

                                            }
                                        }
                                    }
                                }
                            }
                        }

                    }
                }
            }
        }

    }

    &.is-sticky {
        .leftLogo {
            width: 100px;
        }
    }

    .container-max {
        max-width: 96%;
    }
}

.mobMenu {
    display: none;
}

.secH {
    font-size: 50px;
    color: #000;
    font-weight: 500;
    margin-bottom: 30px;
}

.subH {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 5px;
    background: #D71006;
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
}

.subSubHead {
    color: #707070;
    font-family: "Zabal DEMO";
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

.btnWrap {
    padding-top: 20px;
}



/* inner banner section start */

.innerBanner {
    width: 100%;
    height: 700px;
    position: relative;

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background: linear-gradient(to bottom, #000 9.82%, rgba(0, 0, 0, 0.00) 92.77%);
    }

    .innerBannerImg {
        width: 100%;
        height: 100%;

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

/**** breadcrumb ****/
.pageHeader {
    min-width: 260px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px 12px 0px 0px;
    border: 1px solid #FFF;
    background: rgba(0, 0, 0, 0.23);
    backdrop-filter: blur(5px);
    padding: 12px 20px;

    .pageHead {
        color: #FFF;
        text-align: center;
        font-family: "Jura", sans-serif;
        font-size: 60px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px;
        letter-spacing: -2px;
    }

    .breadCrumb {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 12px;

        li {
            color: #FFF;
            text-align: center;
            font-family: "Barlow", sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 20px;
            position: relative;

            a {
                color: #FFF;
                text-align: center;
                font-family: "Barlow", sans-serif;
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 20px;
                position: relative;
            }

            &:not(:first-child) {
                padding-left: 15px;
            }

            &:not(:last-child)::after {
                content: '\f105';
                font-family: fontawesome;
                color: #FFF;
                position: absolute;
                right: -15px;
                top: 2px;
                font-size: 14px;
            }
        }
    }
}

.slick-arrow {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #a8a0a1;
    padding: 8px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    font-size: 0px;
    top: auto;
    bottom: -100px;
    position: absolute;
    left: auto;
    right: 80px;
    transition: all 0.5s;
    background-color: transparent;

    &::after {
        content: "";
        position: absolute;
        width: 35px;
        height: 20px;
        background: url(../images/home/right-arrow.png) no-repeat center center;
        left: 84%;
        transform: translateX(10px);
        top: 50%;
        transform: translate(-50%, -50%);
        background-size: 100%;
        transition: 0.6s;
        background-color: #f0f0f000;
        filter: brightness(0) invert(0.5);
    }

    &::before {
        width: 27px;
        height: 25px;
        background-color: #f0f0f0;
        content: "";
        position: absolute;
        left: 84%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    &.slick-prev {
        right: 140px;

        &::after {
            transform: translate(-50%, -50%) rotate(-180deg);
            left: 6px;
        }

        &::before {
            left: 6px;
        }

        &:hover {
            &::after {
                background-color: transparent;
                left: 50%;
            }

            &::before {
                background-color: transparent;
                left: 50%;
            }
        }
    }

    &.slick-next {
        &:hover {
            &::after {
                background-color: transparent;
                left: 50%;
            }

            &::before {
                background-color: transparent;
                left: 50%;
            }
        }
    }
}

/* inner banner section end */

.commonSec {
    padding: 90px 0;
}

.countWrap {
    display: none;
    padding: 0 30px;

    .countBox {
        padding: 0px 10px;
        position: relative;

        .countBoxInner {
            padding: 15px;
            padding-left: 0;
            position: relative;

            h3 {
                font-size: 40px;
                font-weight: 500;
                color: #787878;
                transition: 0.5s;
                margin-bottom: 10px;
            }

            &::after {
                width: 1px;
                /* height: 40px; */
                height: 80%;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 0;
                background-color: #000;
                content: "";
            }

            &::before {
                width: 50%;
                height: 1px;
                background-color: rgba(0, 0, 0, 0.25);
                position: absolute;
                top: 0;
                left: 0;
                content: "";
                transition: 0.5s;
            }
        }


        &:hover {
            .countBoxInner {
                h3 {
                    color: #000;
                }

                &::before {
                    width: 95%;
                    background-color: #FD0C00;
                }
            }
        }
    }

    .eachCount:last-child {
        .countBoxInner {
            &::after {
                display: none;
            }
        }
    }
}


.builderSec {
    .builderContentWrap {
        padding: 0 20px;
        padding-top: 30px;

        .builderContent {
            h3 {
                text-align: center;
            }

            .builderBox {
                height: 290px;
                border: 1px solid rgba(0, 0, 0, 0.25);
                border-radius: 20px;
                padding: 40px 30px;
                padding-right: 40px;
                position: relative;
                padding-top: 40px;
                transition: 0.5s;

                h4 {
                    padding-right: 40px;
                    font-weight: 500;
                    font-size: 22px;
                }

                .builderIcon {
                    position: absolute;
                    right: 20px;
                    width: 50px;
                    top: 25px;

                    img {
                        width: 100%;
                        filter: brightness(0) saturate(100%) invert(12%) sepia(87%) saturate(4967%) hue-rotate(358deg) brightness(97%) contrast(100%);
                    }
                }

                .buiderBoxContent {
                    height: 150px;
                    overflow-y: auto;
                    padding-right: 6px;

                    &::-webkit-scrollbar {
                        width: 4px;
                        height: 4px;
                        border-radius: 8px;
                    }

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

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

                    p {
                        font-size: 16px;

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

                &:hover {
                    background-color: #D71006;

                    h4 {
                        color: #fff;
                    }

                    p {
                        color: #fff;
                    }

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

        }
    }
}

/* inner banner */

.headingWrap {
    .headPara {
        width: 100%;
        max-width: 80%;
        margin: 0px auto;
    }
}

.headPara {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
}

.innerbanner {
    height: 75vh;
    /* padding: 60px 0px; */
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;

    /* &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.35);
        z-index: 1;
    } */

    .innerBg {
        position: relative;
        width: 100%;
        height: 100%;

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

    .innerBannerText {
        height: 100%;
        display: flex;
        align-items: end;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.35);
        padding: 60px 0px;
        /* z-index: 2; */

        .innerBannerHead {
            color: #FFF;
            font-size: 40px;
            line-height: 1.4;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            margin-bottom: 10px;
        }

        .bannerText {
            display: inline-block;
            padding: 10px 16px;
            border-radius: 6px;
            background: rgba(48, 23, 23, 0.51);
            backdrop-filter: blur(7.5px);
        }

        .breadcrumb {
            li {
                color: #FFF;
                position: relative;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 1;

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

                    &::before {
                        content: "\f054";
                        font-family: "FontAwesome";
                        position: absolute;
                        right: 0;
                        right: 12px;
                        top: 3px;
                        font-size: 14px;
                        color: #fff;
                    }
                }

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

.faqSec {

    .container {
        max-width: 1140px;
    }

    .faq-accordion {
        .faq-item {
            &:not(:last-child) {
                margin-bottom: 20px;
            }

            .faq-title {
                padding: 15px 40px;
                padding-right: 60px;
                background-color: #F2F2F2;
                border-radius: 30px;
                position: relative;
                cursor: pointer;

                &::after {
                    width: 25px;
                    height: 25px;
                    border-radius: 50%;
                    border: 1px solid #ccc;
                    content: "\2b";
                    font-size: 20px;
                    color: #333;
                    position: absolute;
                    right: 20px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    top: 18px;
                    /* transform: translateY(-50%); */
                }

                &.active {
                    background: #D71006;

                    &::after {
                        content: "\f068";
                        font-family: fontawesome;
                        font-size: 14px;
                        border: 1px solid #fff;
                        color: #fff;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }

                    h4 {
                        color: #fff;
                        padding-right: 30px;
                    }
                }

                h4 {
                    margin-bottom: 0px;
                    font-size: 22px;
                    padding-right: 30px;
                }
            }

            .faq-tab {
                display: none;
                padding: 20px;
                position: relative;

                .faq-tab-inner {
                    position: relative;
                    padding-left: 15px;

                    p {
                        color: #838282;
                    }

                    &::before {
                        width: 4px;
                        height: 100%;
                        position: absolute;
                        top: 0;
                        left: 0;
                        background-color: #D71006;
                        content: "";
                    }
                }
            }
        }
    }
}

.pagination {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 30px;

    &>.page-numbers {
        display: flex;
        /* width: 45px;
        height: 45px; */
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        /* color: #D71006;
        border: 1px solid rgba(0, 0, 0, 0.25); */
        transition: 0.2s;


        & .page-numbers {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 1px solid rgba(0, 0, 0, 0.25);
            display: flex;
            justify-content: center;
            align-items: center;
            color: #D71006;
            border-radius: 50%;
            margin: 0 5px;

            &.current {
                border: none;
                background-color: #D71006;
                color: #fff;
            }

            &:hover {
                background-color: #D71006;
                color: #fff;
                border: 1px solid #D71006;
            }
        }
    }
}

/* gallery section */

.ourTeamSec {
    background-color: #F0F0F0;
    padding-bottom: 180px;

    .teamSecBtm {
        padding-top: 50px;

        .teamCard {
            width: 100%;
            height: 540px;
            border-radius: 20px;
            overflow: hidden;
            margin: 0px 15px;

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

                .teamCardImg {
                    width: 100%;
                    height: 100%;

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

        .slick-arrow {
            background-color: transparent;

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

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

/* common button */

.commonBtn {
    margin-top: 40px;

    .quoteBtn {
        display: flex;
        height: 160px;
        min-height: 160px;
        width: 160px;
        border-radius: 50%;
        border: 2px solid #000;
        position: relative;
        transform: rotate(-14deg);
        transition: 0.3s all ease-in-out;

        .quoteText {
            width: 210px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(0%, -50%);
            color: #E20B0B;
            text-align: center;
            font-family: "Poppins";
            font-size: 31px;
            font-weight: 600;
            background: #fff;
        }

        &:hover {
            transform: rotate(0deg);
        }
    }
}

/* overview section */

.home .aboutUsSec {
    overflow: hidden;
}

.aboutUsSec {
    overflow: visible;

    .aboutImg {
        width: 100%;
        padding-left: 0;
        height: 550px;

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

    .leftWrap {
        position: sticky;
        top: 90px;
    }
}


/*===projectSec start====*/
.projectSec {
    .projectSliderWrap {
        overflow: hidden;

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

        .projectSlider {
            margin-top: 50px;

            .slick-list {
                margin: 0 -300px;
                padding-bottom: 100px !important;

                .projectItem {
                    transition: 0.5s;

                    .projectItemInner {
                        position: relative;

                        .projectImg {
                            height: 500px;
                            overflow: hidden;

                            figure {
                                height: 100%;

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

                        .projectPlus {
                            position: absolute;
                            top: 0;
                            right: 0;
                            bottom: 0;
                            left: 0;
                            z-index: 3;
                            width: 100%;
                            height: 100%;
                            padding: 10px;
                            opacity: 0;
                            visibility: hidden;

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

                            svg {
                                position: absolute;
                                top: 15px;
                                right: 15px;
                                color: #fff;
                                font-size: 30px;
                            }
                        }
                    }

                    .projectHover {
                        opacity: 0;
                        visibility: hidden;
                        position: absolute;
                        bottom: 40px;
                        z-index: 2;
                        padding: 20px;
                        left: 0;
                        width: 100%;

                        h4 {
                            color: #fff;
                            font-size: 24px;
                        }

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

                            p {
                                color: #fff;

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

                    &.slick-current {
                        position: relative;

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

                        .projectHover {
                            opacity: 1;
                            visibility: visible;
                            display: flex;
                            align-items: center;

                            .projectHoverInner {
                                width: calc(100% - 50px);
                                padding-right: 20px;

                                p {
                                    color: #fff;
                                }

                                a {
                                    pointer-events: none;
                                }
                            }

                            .arrowBtn {
                                width: 40px;
                                height: 40px;
                                border-radius: 50%;
                                padding: 7px;
                                border: 1px solid #fff;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                transition: 0.5s;
                                margin-top: 30px;

                                &:hover {
                                    background-color: #D71006;
                                    border: 1px solid #D71006;
                                }
                            }
                        }

                        .projectImg {
                            figure {
                                img {
                                    transform: scale(1);
                                }
                            }
                        }

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

            }
        }

        .slick-arrow {
            bottom: 0;
            background: #fff;

            &::before {
                background-color: #ffffff;
            }

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

            &.slick-prev {
                right: auto;
                left: calc(50% - 70px);
                z-index: 2;
            }
        }
    }
}

.home {
    .projectSec {
        background-color: #F0F0F0;
    }

    .projectSliderWrap {
        .slick-arrow {
            bottom: 0;
            background: transparent;

            &::before {
                /* background-color: transparent; */
                background-color: #F0F0F0;
            }
        }
    }
}

/*=====product sec start=======*/
.productSec {
    background-color: #F0F0F0;
    padding-bottom: 180px;

    .productSlider {
        margin-top: 50px;

        &:after {
            width: 85%;
            left: 0;
            position: absolute;
            height: 1px;
            content: "";
            background-color: #ccc;
            bottom: -80px;
        }

        .productItem {
            margin: 0 10px;

            .productBox {
                .productImg {
                    overflow: hidden;
                    height: 450px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 20px;
                    position: relative;

                    img {
                        transform: scale(0.8);
                        transition: 0.5s;
                        position: relative;
                        z-index: 1;
                    }

                    &::before {
                        width: 100%;
                        height: 100%;
                        content: "";
                        border-radius: 20px;
                        position: absolute;
                        background-color: #fff;
                        bottom: 0;
                        left: 0;
                        transition: 0.5s;
                    }

                    .arrowBtn {
                        width: 45px;
                        height: 45px;
                        border-radius: 50%;
                        border: 1px solid #ffffff;
                        padding: 8px;
                        margin: 0 auto;
                        position: relative;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        opacity: 0;
                        transition: 0.5s;
                        visibility: hidden;

                        &::after {
                            content: "";
                            position: absolute;
                            width: 27px;
                            height: 20px;
                            background: url(../images/home/right-arrow.png) no-repeat center center;
                            left: 50%;
                            transform: translateX(10px);
                            top: 50%;
                            transform: translate(-50%, -50%);
                            background-size: 100%;
                        }
                    }
                }

                .productTitle {
                    text-align: center;
                    padding: 10px 0;

                    a {
                        color: #000;
                        font-size: 24px;
                    }
                }

                &:hover {
                    .productImg {
                        &::before {
                            height: 50%;
                            background-color: #FD0C00;
                        }

                        img {
                            transform: scale(1);
                        }

                        .arrowBtn {
                            opacity: 1;
                            transition: 0.5s;
                            visibility: visible;

                            &::after {
                                content: "";
                                position: absolute;
                                width: 38px;
                                height: 20px;
                                background: url(../images/home/right-arrow.png) no-repeat center center;
                                left: 84%;
                                transform: translateX(10px);
                                top: 50%;
                                transform: translate(-50%, -50%);
                                background-size: 100%;
                                transition: 0.6s;
                                background-color: #fb0516;
                            }
                        }
                    }

                    .productTitle {
                        a {
                            color: #D71006;
                        }
                    }
                }
            }
        }

        .slick-arrow {
            background-color: transparent;

            &.slick-prev {
                right: 150px;
            }
        }
    }
}

.appSwiper {
    position: relative;

    .innerSlider {
        width: 97%;
        position: relative;
        height: 540px;

        .imgCon {
            height: 100%;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;

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

        .textCon {
            position: absolute;
            border-radius: 15px;
            background: rgba(61, 17, 17, 0.63);
            backdrop-filter: blur(13.5px);
            padding: 20px;
            display: inline-block;
            bottom: 10px;
            right: 10px;
            left: 10px;
            transition: all 0.3s ease-in-out;

            .title {
                color: #fff;
                font-size: 25px;
                font-weight: 600;
            }

            .paraText {
                display: none;
                transition: all 0.3s ease-in-out;
                height: 115px;
                overflow: hidden;
                text-overflow: ellipsis;
                /* display: -webkit-box; */
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 4;

                p {
                    color: #FFF;
                    font-size: 18px;
                    font-weight: 400;
                    font-family: "Zabal DEMO";

                }
            }
        }
    }

    .swiper-slide {
        transition: 0.4s all ease-in-out;
    }

    .swiper-slide-active {
        width: 900px !important;

        .paraText {
            display: inline-block !important;
        }
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        border: 1px solid #fff;
        padding: 8px;
        margin: 0 auto;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        font-size: 0px;
        top: auto;
        bottom: -100px;
        position: absolute;
        left: auto;
        right: 80px;
        background-image: none;
        transition: all 0.5s;

        &::before {
            width: 27px;
            height: 25px;
            background-color: #B70800;
            content: "";
            position: absolute;
            left: 84%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        &::after {
            content: "";
            position: absolute;
            width: 35px;
            height: 20px;
            background: url(../images/home/right-arrow.png) no-repeat center center;
            left: 84%;
            transform: translateX(10px);
            top: 50%;
            transform: translate(-50%, -50%);
            background-size: 100%;
            transition: 0.6s;
            background-color: #f0f0f000;
            filter: brightness(0) invert(1);
        }
    }

    .swiper-button-prev {
        right: 160px;

        &::after {
            transform: translate(-50%, -50%) rotate(-180deg);
            left: 6px;
        }

        &::before {
            left: 6px;
        }

        &:hover {
            &::before {
                left: 50%;
                background-color: transparent;
            }

            &::after {
                left: 50%;
                background-color: transparent;
            }
        }

    }

    .swiper-button-next {
        &:hover {
            &::before {
                left: 50%;
                background-color: transparent;
            }

            &::after {
                left: 50%;
                background-color: transparent;
            }
        }
    }
}

.aboutImg {
    img {
        border-radius: 20px;
    }
}

/*===blog sec start===*/
.blogSec {
    margin: 0 auto;
    background-color: #F0F0F0;
    padding-bottom: 150px;

    /* .container {
        max-width: 99%;
    } */

    .subH {
        margin-bottom: 0px;
    }

    .blogTab {
        text-align: right;

        ul {
            display: flex;
            justify-content: flex-end;

            li {
                margin-left: 15px;

                a {
                    display: block;
                    padding: 10px 30px;
                    border-radius: 30px;
                    border: 1px solid #a7a7a7;
                    color: #000;
                }

                &.active {
                    a {
                        background-color: #D71006;
                        border: 1px solid #D71006;
                        color: #fff;
                    }
                }
            }
        }
    }

    .blogWrap {
        margin-top: 30px;

        .blogWrapContent {
            display: none;
        }

        .blogSliderItem {
            margin: 0 10px;
            border-radius: 15px;
            overflow: hidden;
            transition: 0.5s;

            .blogSliderInner {
                height: 500px;
                background-color: #fff;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                transition: 0.5s;

                .blogTopTxt {
                    padding: 30px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 3;
                    height: 120px;

                    p {
                        margin-bottom: 12px;
                    }
                }

                .blogBottom {
                    display: flex;
                    padding: 30px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    border-top: 1px solid #cfcfcf;

                    .dateWrap {
                        span {
                            font-size: 50px;
                            color: #D71006;
                            line-height: 50px;
                            font-weight: 600;
                        }
                    }

                    .yearWrap {
                        p {
                            font-size: 20px;
                        }
                    }
                }
            }

            &:hover {
                .blogSliderInner {
                    background-color: #00000075;

                    p {
                        color: #fff;
                    }

                    & .blogBottom {
                        & .dateWrap {
                            span {
                                color: #fff;
                            }
                        }
                    }
                }
            }
        }
    }

    .slick-arrow {
        background: transparent;

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

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

}

/* event & blog list */

.blockListBg {
    padding: 30px;
    background-color: #D71006;
    border-radius: 15px;

    &.blockCList {
        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.20);
        background: #FFF;

        h4 {
            color: #000;
        }
    }

    .catList {
        li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0px;

            &:first-child {
                padding-top: 0;
            }

            &:not(:last-child) {
                border-bottom: 1px solid #D4D4D4;
            }

            a {
                width: calc(100% - 70px);
                color: #000;
                font-weight: normal;
                font-size: 18px;
                padding-left: 15px;
                position: relative;
                transition: all 0.3s;

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

            span {
                color: #000;
            }

            &.active {
                a {
                    color: #D71006;

                    &::before {
                        background-color: #C7070E;
                    }
                }

                span {
                    color: #D71006;
                }
            }

            &:hover {
                a {
                    color: #D71006;

                    &::before {
                        background-color: #C7070E;
                    }
                }

                span {
                    color: #D71006;
                }
            }
        }
    }

    .tagList {
        display: flex;
        flex-wrap: wrap;

        li {
            width: auto;
            max-width: 100%;
            min-width: 100px;
            margin-right: 10px;

            a {
                width: 100%;
                border-radius: 6px;
                background: #FFF;
                color: #000;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 14px;
                display: block;
                padding: 10px 16px;
                text-align: center;
                transition: 0.5s;
                margin-bottom: 15px;

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

.blogPostList {
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: #FFF;
    padding: 30px;
    margin-top: 40px;

    h4 {
        color: #000;
    }

    .postList {
        li {
            display: flex;
            align-items: flex-start;

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

            .postImg {
                width: 100px;
                height: 100px;
                border-radius: 10px;
                overflow: hidden;

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

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

            .postText {
                width: calc(100% - 100px);
                display: flex;
                align-items: end;
                padding-left: 15px;
                gap: 8px;

                .postSummery {
                    width: calc(100% - 20px);

                    p {
                        font-size: 15px;
                        margin-bottom: 5px;
                        color: #656565;
                    }

                    a {
                        color: #000000;
                        transition: 0.5s;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 3;
                        font-size: 16px;
                    }

                    &:hover {
                        a {
                            color: #C7070E;
                        }
                    }
                }

                .postArrow {
                    .postArrow {
                        width: 20px;
                        display: flex;
                        justify-content: end;
                        position: relative;
                        bottom: 0;
                        color: #000;
                    }

                    a {
                        color: #000;

                        img {
                            filter: brightness(0) saturate(100%) invert(16%) sepia(97%) saturate(2742%) hue-rotate(212deg) brightness(103%) contrast(114%);
                        }
                    }
                }
            }

            &:hover {
                .postSummery {
                    a {
                        color: #D71006;
                    }
                }

                .postArrow {
                    a {
                        color: #D71006;
                    }
                }
            }
        }
    }
}

/*====footer start=====*/
.footerSec {
    padding: 100px 0 0;
    background-color: #40241A;

    .footerTop {
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.67);
        display: flex;
        align-items: center;

        .footerLogo {
            width: 20%;
        }

        .footerTxt {
            width: calc(100% - 45%);

            p {
                color: #fff;
            }
        }

        .newsLetterWrap {
            width: 25%;
            padding-left: 20px;

            h3 {
                color: #fff;
                font-family: "Mona Sans", sans-serif;
                font-weight: 500;
                margin-bottom: 10px;
            }

            .frmWrap {
                position: relative;

                .newsInput {
                    background-color: transparent;
                    width: 100%;
                    border: none;
                    min-height: 45px;
                    border-bottom: 1px solid #fefefe36;
                    outline: 0;
                    color: #fff;
                }

                .newsBtn {
                    position: absolute;
                    width: 40px;
                    height: 40px;
                    background: url(../images/next-arrow.png) no-repeat center center;
                    background-color: #D71006;
                    border: none;
                    border-radius: 50%;
                    background-size: 60%;
                    right: 0;
                    top: -6px;
                    font-size: 0;
                    transition: all 0.5s;

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

            .wpcf7-not-valid-tip {
                color: #ff6f6f;
            }

            .wpcf7 form {
                &.invalid {
                    .wpcf7-response-output {
                        display: none;
                    }
                }
            }
        }
    }

    .footerMenuRes {
        display: none;
    }

    .footerMenu {
        padding: 20px 0 50px;

        .footerMenuBtnRes {
            display: none;
            background-color: #d71921;
            padding: 10px 12px;
            border-radius: 10px;

            a {
                width: 100%;
                display: flex;
                justify-content: space-between;
                color: #fff;
                align-items: center;
                font-size: 20px;
                font-weight: 600;
                font-family: 'Zabal DEMO';

                svg {
                    color: #fff;
                    font-size: 22px;
                }
            }
        }

        ul {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            row-gap: 15px;

            li {
                padding: 0 10px;
                transition: all 0.5s;

                a {
                    display: block;
                    padding: 10px 45px;
                    border-radius: 5px;
                    border: 1px solid #fff;
                    color: #fff;
                    transition: all 0.5s;

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

    .footerMain {
        padding-bottom: 50px;
        border-bottom: 1px solid #ccc;

        .footerLeft {
            h2 {
                font-size: 60px;
                font-weight: 800;
                line-height: 60px;
                color: #fff;
                margin-bottom: 10px;
                display: flex;
                flex-direction: column;

                a {
                    display: inline-block;
                    width: 100%;
                    max-width: auto;
                    color: #D71006;
                    position: relative;

                    &:after {
                        width: 40px;
                        height: 40px;
                        background: url(../images/footerTxtArrow.png) no-repeat;
                        position: relative;
                        content: "";
                        /* right: 0; */
                        display: inline-block;
                        background-size: 80%;
                        top: 5px;
                        right: -5px;
                    }
                }
            }

            p {
                a {
                    color: #fff;
                    font-size: 32px;
                    transition: all 0.5s;

                    &:hover {
                        color: #d71921;
                    }
                }
            }
        }

        h4 {
            font-size: 24px;
            color: #fff;
            font-weight: 500;
        }

        h5 {
            color: #D71006;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .footerRight {
            ul {
                li {
                    position: relative;
                    padding-left: 25px;

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

                    &::before {
                        width: 20px;
                        height: 20px;
                        position: absolute;
                        content: "";
                        left: 0;
                        top: 2px;
                    }

                    &.address {
                        padding-right: 20px;

                        &::before {
                            background: url(../images/location-pin.png) no-repeat;
                            background-size: 100%;
                        }
                    }

                    &.footerCall {
                        &::before {
                            background: url(../images/footer-call.png) no-repeat;
                            background-size: 100%;
                        }
                    }

                    &.footerMail {
                        &::before {
                            background: url(../images/footer-mail.png) no-repeat;
                            background-size: 100%;
                        }
                    }

                    p {
                        color: #fff;
                    }

                    a {
                        color: #fff;
                        transition: all 0.5s;

                        &:hover {
                            color: #d71921;
                        }
                    }
                }
            }
        }
    }

    .footerSocial {
        display: flex;
        padding-top: 40px;
        gap: 10px;

        a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #D71006;
            color: #fff;
            font-size: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.5s;

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

    .copyrightWrap {
        padding: 10px 0;
        display: flex;
        justify-content: space-between;

        p {
            color: #fff;
            font-size: 17px;

            a {
                color: #fff;
                font-size: 17px;
                transition: all 0.5s;

                &:hover {
                    color: #d71921;
                }
            }
        }

        .copyrightRight {
            p {
                a {
                    color: #014DC9;
                    font-weight: 500;
                    transition: all 0.5s;

                    &:hover {
                        color: #d71921;
                    }
                }
            }
        }
    }

    .wpcf7-spinner {
        display: none;
    }
}

.certificSec {
    background-color: #F0F0F0;
    padding-bottom: 170px;

    .certificSlider {
        padding-top: 50px;

        &:after {
            width: 80%;
            left: 70px;
            position: absolute;
            height: 1px;
            content: "";
            background-color: #ccc;
            bottom: -80px;
        }

        .slick-arrow {
            right: 60px;

            &.slick-prev {
                right: 130px;
            }
        }

        .certiItem {
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.25);
            margin: 0 20px;
            overflow: hidden;

            .certiImgWrap {
                padding: 12px;
                width: 100%;
                height: 240px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    margin: 0px auto;
                }
            }
        }
    }
}


/* thank you page */

.page-template-thank-you {
    .header {
        background-color: rgba(0, 0, 0, .5);
    }

    .thankYouSec {
        padding-top: 200px;
        padding-bottom: 130px;

        .thankyouSecInn {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #fff;
            width: 650px;
            margin: 0 auto;
            box-shadow: 0 0 15px 0 rgb(173, 173, 173, 0.4);
            border-radius: 20px;

            .thankyouSecCont {
                padding: 50px 30px;
                width: 100%;
                text-align: center;

                .thankSecImg {
                    width: 100px;
                    height: auto;
                    margin: 0 auto;
                    margin-bottom: 30px;

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

                h5 {
                    font-size: 50px;
                    font-family: "Kaushan Script", cursive;
                    margin-bottom: 15px;
                }

                p {
                    font-size: 18px;
                    font-family: "Kaushan Script", cursive;
                    color: green;
                }
            }
        }
    }

}

/* 404 not found */

.page-template-404-not-found {
    .header {
        background-color: rgba(0, 0, 0, .5);
    }

    .notFoundSec {
        padding-top: 130px;
        padding-bottom: 130px;

        .notFoundDiv {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 80px;
            text-align: center;

            .notFoundDivInn {
                h2 {
                    font-size: 80px;
                    font-family: 'Zabal DEMO';
                    font-weight: 600;
                    color: #D71006;
                }

                .notFoundGif {
                    width: 100%;
                    height: 350px;

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

                h6 {
                    font-size: 25px;
                    font-family: 'Zabal DEMO';
                    font-weight: 600;
                    margin-bottom: 12px;
                }

                p {
                    font-size: 18px;
                    color: #767676;
                }
            }
        }
    }
}

/* get in touch */

.getInTouchBtn {
    position: fixed;
    right: -56px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    z-index: 100;
    padding: 8px 25px;
    background-color: #d71921;
    border-radius: 0px 0px 6px 6px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.5s;

    a {
        display: block;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        font-family: "Zabal DEMO";
        transition: all 0.5s;
    }

    &:hover {
        background-color: #fff;
        border: 1px solid #d71921;

        a {
            color: #d71921;
        }
    }
}

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

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

    .sidebarFormInn {
        .sidebarFormTop {
            .sectionMainTitle {
                margin: 0;
                padding: 0;
                font-weight: 600;
                font-size: 30px;
                color: #DA0A0A;
            }

            .sidebarHead {
                font-size: 17px;
                margin-top: 10px;
                margin-bottom: 18px;
                line-height: 1.5;
            }

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

                svg {
                    color: #DA0A0A;
                }
            }
        }

        form {
            .cs_field_group {
                margin-bottom: 1rem;
            }

            textarea {
                height: 100px;
            }

            textarea,
            input,
            select {
                outline: 0;
                background-color: transparent;
                border-radius: 0;
                border: none;
                padding: 0;
                font-size: 15px;
                font-weight: 500;
                border-bottom: 1px solid #dee2e6 !important;
                height: 50px;
                width: 100%;
                color: #000;
                font-size: 16px;

                &::placeholder {
                    color: #535353;
                    font-weight: 500;
                }
            }

            /* select {
                color: #c9c9c9;
                option{
                    color: #000;
                }
            } */

            .frmWrap {
                &.btnWrap {
                    margin-top: 15px;
                    width: 100%;
                    display: flex;
                    justify-content: center;

                    button {
                        width: 200px;
                        height: 45px;
                        padding: 0px 15px;

                        input[type="submit"] {
                            padding-right: 100px;
                            border-radius: 10px;
                            font-size: 20px;
                            font-weight: 500;
                            color: #fff;
                            display: block;
                            width: 100%;
                            height: 100%;
                            border: none !important;
                        }
                    }
                }
            }
        }

        .quickAdd {
            .titleSub {
                margin-bottom: 15px;
                color: #000;
            }

            .menu_link_box {
                display: flex;

                a {
                    font-size: 16px;
                    font-weight: 500;
                    color: #000000;
                    text-decoration: none;
                    transition: all 0.5s ease-in-out;
                }

                img {
                    width: 24px;
                    height: 24px;
                    object-fit: contain;
                    margin-right: 10px;
                }

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

                &:hover {
                    a {
                        color: #DA0A0A;
                    }
                }

            }
        }
    }

}

.sidebarForm::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.sidebarForm::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.sidebarForm::-webkit-scrollbar-thumb {
    background-color: #D90000;
}

.menuBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;

    &.active {
        display: block;
    }
}


.wpcf7 form {
    &.invalid {
        .wpcf7-response-output {
            color: #dc3232;
        }
    }

    .wpcf7-response-output {
        margin: 0;
        padding: 0;
        border: none;
        margin-bottom: 15px;
        font-size: 14px;
    }
}

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

/* input type file */
.fileUpldDiv {
    width: 100%;
}

.filelabel {
    width: 100%;
    border-radius: 5px;
    display: block;
    transition: border 300ms ease;
    cursor: pointer;
    text-align: center;
    margin: 0;
}

.uploadInput {
    position: relative;
}

.uploadTxt {
    width: 100%;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.3);
    text-align: left;
    background-color: transparent;
    margin-bottom: 5px;
    color: #333;
    line-height: 45px;
    min-height: 45px;
    padding: 0 12px;
    border-radius: 8px;
    position: absolute;
    font-size: 16px;
}

#FileInput1,
#FileInput2,
#FileInput3,
#FileInput4 {
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.formCondition {
    display: block;
    text-align: left;

    .redText {
        color: #FD0C00;
    }

    em {
        font-size: 13px;
        font-weight: 500;
    }
}

.fileUpldDiv p {
    margin-bottom: 0;
}


/* responsive */

@media (max-width: 1738px) {

    /* application slider */
    .appSwiper {
        .swiper-slide-active {
            width: 800px !important;
        }
    }
}

@media(max-width: 1600px) {

    /* count section */
    .countWrap {
        & .countBox {
            & .countBoxInner {
                h3 {
                    font-size: 35px;
                }
            }
        }
    }

    /* application slider */
    .appSwiper {
        .eachSlider {
            &.swiper-slide-active {
                width: 750px !important;
            }

            .innerSlider {
                width: 98%;
                position: relative;
                height: 470px;

                .textCon {
                    .title {
                        font-size: 22px;
                    }
                }
            }
        }
    }

    .ourTeamSec {
        .teamSecBtm {
            .teamCard {
                height: 420px;
            }
        }
    }
}

/* end 1600px */

@media(max-width: 1440px) {

    /* header menu */
    .header {
        .headerWrap {
            .headerMenu {
                .menuWrap {
                    ul.menuLst {
                        li {
                            a {
                                font-size: 16px;
                                padding: 8px 10px;
                            }

                            .has-dropdown {
                                .innrlst_titl {
                                    align-items: baseline;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* count section */
    .countWrap {
        & .countBox {
            & .countBoxInner {
                h3 {
                    font-size: 32px;
                }

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

    /* product section */
    .productSec {
        .productSlider {
            .productItem {
                .productBox {
                    .productTitle {
                        a {
                            font-size: 20px;
                        }
                    }
                }
            }

            &:after {
                width: 82%;
            }

            .slick-arrow {
                right: 50px;

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

    /* builder section */
    .builderSec {
        .builderContentWrap {
            .builderContent {
                .builderBox {
                    padding: 20px;
                    padding-top: 20px;
                    padding-right: 30px;

                    .builderIcon {
                        right: 15px;
                        width: 40px;
                        top: 20px;
                    }
                }
            }
        }
    }

    /* application slider */
    .appSwiper {
        .eachSlider {
            &.swiper-slide-active {
                width: 630px !important;
            }

            .innerSlider {
                width: 98%;
                position: relative;
                height: 430px;
            }
        }
    }

    /* blogs */
    .blogPostList {
        .postList {
            li {
                &:not(:last-child) {
                    margin-bottom: 20px;
                }
            }
        }
    }

}

/* 1440 ends */

@media only screen and (max-width: 1366px) {

    /* header */
    .header {
        & .headerWrap {
            & .headerMenu {
                & .menuWrap {
                    & ul.menuLst {
                        & li {
                            a {
                                font-size: 16px;
                                padding: 7px 12px;
                            }
                        }
                    }
                }
            }
        }
    }

    .secH {
        font-size: 42px;
        margin-bottom: 20px;
    }

    /* count section */
    .countWrap {
        .countBox {
            .countBoxInner {
                p {
                    font-size: 16px;
                }
            }
        }
    }

    /* product section */
    .productSec {
        .productSlider {
            .productItem {
                .productBox {
                    .productImg {
                        height: 400px;

                        figure {
                            width: 215px;
                            height: 275px;

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

                    .productTitle {
                        a {
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }

    /* blog section */
    .blogSec {
        .blogWrap {
            .blogSliderItem {
                .blogSliderInner {
                    height: 400px;
                }
            }
        }
    }

    /* get in touch */
    .getInTouchBtn {
        right: -46px;
        padding: 5px 18px;

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

/* 1366 ends */

@media (max-width: 1366px) and (max-height: 768px) {

    /* project section */
    .projectSec {
        .projectSliderWrap {
            .projectSlider {
                .slick-list {
                    .projectItem {
                        .projectItemInner {
                            .projectImg {
                                height: 420px;
                            }
                        }
                    }
                }
            }
        }
    }
}


@media(max-width: 1360px) {

    /* header section */
    .header {
        &.is-sticky {
            padding: 10px 5px;
        }

        .headerWrap {
            .headerMenu {
                .menuWrap {
                    ul.menuLst {
                        li {
                            a {
                                font-size: 15px;
                                padding: 7px 10px;
                            }
                        }
                    }
                }
            }
        }
    }

    /* about us section */
    .aboutUsSec {
        .secH {
            margin-bottom: 20px;
        }
    }

    /* builder section */
    .builderSec {
        .builderContentWrap {
            .builderContent {
                .builderBox {
                    height: 300px !important;
                    padding: 20px !important;

                    .builderIcon {
                        position: static !important;
                        margin: 0px auto !important;
                        margin-bottom: 10px !important;
                    }

                    h4 {
                        font-size: 20px !important;
                        text-align: center !important;
                        padding-right: 0 !important;
                    }

                    .buiderBoxContent {
                        p {
                            text-align: center;
                            font-size: 16px;
                            line-height: 26px;
                        }
                    }
                }
            }
        }
    }

    /* certificate section */
    .certificSec {
        .headingWrap {
            .secH {
                margin-bottom: 15px;
            }
        }

        .certificSlider {
            .slick-arrow {
                &.slick-next {
                    right: 25px;
                }

                &.slick-prev {
                    right: 90px;
                }
            }
        }
    }

    /* blog section */
    .blogSec {
        .blogWrap {
            .blogSliderItem {
                .blogSliderInner {
                    height: 400px;
                }
            }
        }
    }

}

/* 1360 ends */

@media(max-width: 1280px) {

    /* header */
    .header {
        & .headerWrap {
            .leftLogo {
                width: 100px;
            }

            & .headerMenu {
                width: calc(100% - 100px);

                & .menuWrap {
                    & ul.menuLst {
                        & li {
                            a {
                                font-size: 14px;
                                padding: 6px 10px;
                            }

                            &.has-dropdown {
                                & .innrlst_titl {
                                    & span {
                                        padding-right: 5px;

                                        svg {
                                            font-size: 12px;
                                        }
                                    }
                                }

                                & .tp-submenu {
                                    width: 260px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* general css */
    .secH {
        font-size: 45px;
    }

    /* about us section */
    .aboutUsSec {
        .secH {
            margin-bottom: 15px;
        }

        .headPara {
            p {
                font-size: 16px;
            }
        }
    }

    .subSubHead {
        font-size: 30px;
        margin-bottom: 15px;
    }

    /* count section */
    .countWrap {
        & .countBox {
            & .countBoxInner {
                h3 {
                    font-size: 26px;
                }
            }
        }
    }

    /* blog section */
    .blogSec {
        .blogWrap {
            .blogSliderItem {
                .blogSliderInner {
                    .blogTopTxt {
                        padding: 20px;
                        height: 100px;
                    }

                    .blogBottom {
                        padding: 20px;

                        .dateWrap {
                            span {
                                font-size: 40px;
                            }
                        }

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

    /* application slider */
    .appSwiper {
        .swiper-button-prev {
            right: auto;
            left: calc(50% - 65px);
        }

        .swiper-button-next {
            left: auto;
            right: calc(50% - 65px);
        }

        .eachSlider {
            &.swiper-slide-active {
                width: inherit !important;
            }

            .innerSlider {
                width: 100%;
            }
        }
    }

    /* product section */
    .productSec {
        .productSlider {
            .productItem {
                .productBox {
                    .productImg {
                        height: 360px;
                    }

                    &:hover {
                        .productImg {
                            img {
                                transform: scale(0.9);
                            }
                        }
                    }
                }
            }
        }
    }
}

/* end 1280px */

@media(max-width: 1199px) {

    /* header */
    .header {
        & .headerWrap {
            .leftLogo {
                width: 100px;

                a {
                    display: inline-block;
                }
            }

            & .headerMenu {
                & .menuWrap {
                    & ul.menuLst {
                        & li {
                            &.has-dropdown {
                                & .tp-submenu {
                                    width: 200px;
                                }
                            }
                        }
                    }
                }
            }
        }

    }

    /* footer */
    .footerSec {
        .footerTop {
            flex-direction: column;
            row-gap: 20px;

            .footerTxt {
                width: 100%;

                p {
                    text-align: center;
                }
            }

            .newsLetterWrap {
                width: 100%;
                padding-left: 0;
            }
        }

        .footerMain {
            .footerLeft {
                h2 {
                    font-size: 45px;
                    line-height: 50px;
                }

                p {
                    a {
                        color: #fff;
                        font-size: 24px;
                    }
                }
            }

            .footerRight {
                p {
                    font-size: 16px;
                }

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

        .copyrightWrap {
            p {
                font-size: 16px;
            }

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

    /* general css */
    .secH {
        font-size: 36px;
    }

    .commonSec {
        padding: 60px 0;
    }

    .headingWrap {
        .headPara {
            width: 100%;
            max-width: 100%;
        }
    }

    /* inner banner */

    .innerbanner {
        height: 440px;

        .innerBannerText {
            padding: 20px 0px;

            .innerBannerHead {
                font-size: 30px;
                margin-bottom: 10px;
            }

            .breadcrumb {
                li {
                    font-size: 16px;
                }
            }
        }
    }

    /* about us */
    .aboutUsSec {
        .countWrap {
            padding-left: 0;
            padding-right: 0;

            .eachCount {
                width: 50%;
                margin: 0 0 30px;

                &:nth-child(2) {
                    .countBoxInner::after {
                        display: none;
                    }
                }
            }
        }
    }

    /* product section */
    .productSec {
        padding-bottom: 150px;

        .secH {
            margin-bottom: 15px;
        }

        .productSlider {
            margin-top: 30px;

            &:after {
                width: 80%;
            }
        }
    }

    /* builder section */
    .builderSec {
        .headingTab {
            ul {
                li {
                    width: 50%;

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

        .builderContentWrap {
            .builderContent {
                .row {
                    row-gap: 30px;
                }

                .builderBox {
                    height: 250px;

                    .buiderBoxContent {
                        height: 120px;
                        text-align: center;
                    }
                }

                .subBigH {
                    font-size: 30px;
                    margin-bottom: 30px;
                }
            }
        }
    }

    /* certificate section */
    .certificSec {
        .certificSlider {
            padding-bottom: 60px;

            .slick-arrow {
                bottom: -25px;

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

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

            &::after {
                content: normal;
            }

            .certiItem {
                .certiImgWrap {
                    padding: 10px;
                    height: 160px;
                }
            }
        }
    }

    /* blog section */
    .blogSec {
        padding-bottom: 150px;

        .blogWrap {
            .blogSliderItem {
                .blogSliderInner {
                    background-color: #00000075;

                    p {
                        color: #fff;
                    }

                    .blogBottom {
                        .dateWrap {
                            span {
                                color: #fff;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* end 1199px */

@media(max-width: 1100px) {

    /* header */
    .header {
        & .headerWrap {
            & .headerMenu {
                & .menuWrap {
                    & ul.menuLst {
                        & li {
                            a {
                                font-size: 13px;
                                padding: 6px 8px;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* end 1100px */


@media(max-width: 1024px) {

    /* header */
    .header {
        & .headerWrap {
            & .headerMenu {
                &.deskMenu {
                    display: none;
                }

            }

            & .menuTrigger {
                position: absolute;
                right: 20px;
                width: 30px;
                cursor: pointer;
                display: flex;
                flex-direction: column;
                gap: 5px;
                justify-content: flex-end;

                .hamburger_line {
                    height: 3px;
                    width: 100%;
                    background-color: #fff;
                    border-radius: 5px;
                }
            }
        }
    }

    .overlay {
        position: fixed;
        width: 100%;
        transform: translateX(-100%);
        transition: 0.5s;
        top: 0;
        left: 0;
        height: 100%;
        background-color: #41414167;
        z-index: 99;
        backdrop-filter: blur(10px);
        transition: 0.5s;

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

    .mobMenu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 400px;
        height: 100%;
        z-index: 999;
        backdrop-filter: blur(15px);
        background: rgba(0, 0, 0, 0.88);
        transform: translateX(-100%);
        transition: 1s;

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

        & .mobCloseMenu {
            position: absolute;
            top: 25px;
            right: 12px;

            svg {
                background-color: #fff;
                width: 15px;
                height: 15px;
                padding: 5px;
                border-radius: 3px;
            }
        }

        & .mobMenuLogo {
            padding: 15px;
            border-bottom: 3px solid #D71006;
            margin-bottom: 10px;

            a {
                display: inline-block;
                width: 80px;

                img {}
            }
        }

        & .menuOuter {
            height: 100%;
            overflow-y: auto;

            & .menuWrap {
                ul.menuLst {
                    li {
                        a {
                            display: inline-block;
                            width: 100%;
                            padding: 10px 15px;
                            color: #fff;
                        }

                        &.has-dropdown {
                            .innrlst_titl {
                                position: relative;
                                display: flex;
                                align-items: baseline;

                                &::after {
                                    content: "";
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 0;
                                    height: 100%;
                                    background-color: rgba(113, 113, 113, 0.812);
                                    z-index: -1;
                                    transition: .4s;
                                }

                                a {
                                    width: calc(100% - 50px);
                                }

                                span {
                                    width: 50px;
                                    padding-left: 5px;

                                    svg {
                                        color: #fff;
                                        font-size: 14px;
                                        transition: .4s;
                                    }
                                }
                            }

                            & ul.tp-submenu {
                                display: none;
                                background-color: #ffffff;

                                li {
                                    &.has-child-dropdown {
                                        >a {
                                            &::after {
                                                content: '\f078';
                                                font-family: fontawesome;
                                                position: absolute;
                                                right: 30px;
                                                top: 9px;
                                                color: #000;
                                                font-size: 14px;
                                                transition: all 0.5s;
                                            }
                                        }

                                        a {
                                            &.active {
                                                &::after {
                                                    transform: rotate(180deg);
                                                }
                                            }
                                        }
                                    }

                                    a {
                                        display: inline-block;
                                        width: 100%;
                                        color: #000;
                                        font-size: 15px;
                                        padding: 7px 35px;
                                        position: relative;

                                        &::before {
                                            content: "";
                                            position: absolute;
                                            top: 15px;
                                            left: 20px;
                                            width: 6px;
                                            height: 6px;
                                            background-color: #D71006;
                                        }
                                    }

                                    ul {
                                        padding-left: 20px;
                                        background: #D71006;
                                        display: none;

                                        li {

                                            a {
                                                color: #fff;

                                                &::before {
                                                    background-color: #fff;
                                                }
                                            }
                                        }
                                    }
                                }
                            }

                            &.has-dropdown-open {
                                .innrlst_titl {
                                    &::after {
                                        width: 100%;
                                    }

                                    span {
                                        svg {
                                            transform: rotate(180deg);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* count section */
    .countWrap {
        .countBox {
            .countBoxInner {
                h3 {
                    color: #000;
                }

                p {
                    color: #000;
                }
            }
        }
    }

    /* product box */
    .productSec {
        .productSlider {
            .productItem {
                .productBox {
                    .productImg {
                        &::before {
                            height: 50%;
                            background-color: #FD0C00;
                        }

                        img {
                            transform: scale(1);
                        }

                        .arrowBtn {
                            display: none;
                        }
                    }
                }

                .productTitle {
                    a {
                        color: #D71006;
                    }
                }
            }
        }
    }
}

/* end 1024px */

@media(max-width: 991px) {

    /* header */
    .header {
        .headerWrap {
            justify-content: center;

            .leftLogo {
                width: 90px;
            }

            #hamburger_menu {
                display: none;
            }
        }

        &.is-sticky {
            .leftLogo {
                width: 80px;
            }
        }
    }

    .ResFixedMenu {
        display: block;
    }

    .getInTouchDesk {
        display: none;
    }

    .getInTouchBtn {
        position: static;
        transform: none;
        z-index: inherit;
        padding: 0;
        background-color: transparent;
        border-radius: 0;
        cursor: pointer;
        border: none;

        &:hover {
            background-color: transparent;
            border: none;
        }
    }

    /* footer */
    .footerSec {
        padding: 60px 0 70px;

        .footerTop {
            border: none;
            padding-bottom: 0;
        }

        .footerMenuDesk {
            display: none;
        }

        .footerMenuRes {
            display: block;
        }

        .footerMenu {
            padding: 10px 0 30px;

            .footerMenuBtnRes {
                display: block;

                &.active {
                    border-radius: 10px 10px 0px 0px;
                }
            }

            ul {
                flex-direction: column;
                display: none;
                background-color: #fff;
                border-radius: 0px 0px 10px 11px;
                overflow: hidden;

                li {
                    width: 100%;
                    border-bottom: 1px solid #d3d3d3;
                    transition: all 0.5s;

                    a {
                        display: block;
                        padding: 10px 0px;
                        border-radius: 5px;
                        border: none;
                        color: #000;
                        font-size: 16px;
                        font-weight: 500;

                        &:hover {
                            background-color: transparent;
                            color: #000;
                        }
                    }

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

        .footerMain {
            .footerLeft {
                text-align: center;
                padding-bottom: 30px;
            }
        }

        .copyrightWrap {
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 5px;

            .copyrightWrapInn {
                width: 100%;
                text-align: center;

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

    /* general css */
    .subH {
        font-size: 16px;
    }

    .secH {
        font-size: 30px;
    }

    .btnOne {
        padding: 9px 25px;
        padding-right: 82px;

        &::before {
            width: 30px;
        }

        &::after {
            width: 50px;
            height: 18px;
        }
    }

    p {
        font-size: 16px !important;
        line-height: 26px;
    }

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

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

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

    /* about us section */
    .aboutUsSec {
        .aboutUsSecInn {
            flex-direction: column-reverse;
            row-gap: 20px;

            .aboutImg {
                height: auto;
            }

            .aboutTxt {
                .headingWrap {
                    text-align: center;
                }

                .btnWrap {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                .headPara {
                    p {
                        text-align: center;
                    }
                }
            }

            .list-group-check {
                li {
                    margin-bottom: 12px;
                }
            }
        }

        .leftWrap {
            position: static;
        }
    }

    .subSubHead {
        font-size: 20px;
    }

    /* product section */
    .productSec {
        .productSlider {
            &:after {
                content: normal;
            }

            .productItem {
                .productBox {
                    .productTitle {
                        a {
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }

    /* case study section */
    .projectSec {
        .headingWrap {
            text-align: center;
        }

        .headingTxt {
            text-align: center;
            padding-top: 10px;
        }

        .projectSliderWrap {
            .container-max {
                padding: 0px 15px;
            }

            .projectSlider {
                margin-top: 25px;

                .slick-list {
                    margin: 0;
                    padding-bottom: 80px !important;

                    .projectItem {
                        margin: 0px 10px;

                        .projectItemInner {
                            .projectImg {
                                height: 400px;
                            }

                            .projectHover {
                                bottom: 20px;
                                padding: 10px;

                                .projectHoverInner {
                                    width: 100%;
                                    padding-right: 10px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* blog section */
    .blogSec {
        .blogWrap {
            .blogSliderItem {
                .blogSliderInner {
                    height: 360px;
                }
            }
        }
    }

    /* application section */
    .appSwiper {
        & .innerSlider {
            & .textCon {
                .paraText {
                    height: 100px;
                }
            }
        }
    }

}

/* end 991px */

@media (max-width: 768px) {

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

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

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

    /* footer */
    .footerSec {
        .footerTop {
            .footerLogo {
                width: 120px;
                height: auto;
                margin: 0px auto;

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

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

        .footerMenu {
            .footerMenuBtnRes {
                a {
                    font-size: 20px;

                    svg {
                        font-size: 22px;
                    }
                }
            }
        }

        .footerMain {
            .footerLeft {
                p {
                    a {
                        font-size: 20px;
                    }
                }
            }
        }
    }

    /* inner banner */
    .innerbanner {
        height: 350px;
    }

    /* faq section */
    .faqSec {
        .faq-accordion {
            .faq-item {
                .faq-title {
                    h4 {
                        font-size: 18px;
                    }

                    &::after {
                        right: 15px;
                        top: 15px;
                    }
                }
            }
        }
    }
}

/* 768 ends */


@media (max-width: 767px) {

    /* general css */
    .container {
        max-width: 98%;
    }

    .pagination {
        justify-content: center;
    }

    .footRghtMenuInn {
        row-gap: 15px;
    }

    .footerSec {
        & .footerMain {
            & .footerLeft {
                h2 {
                    font-size: 30px;
                    line-height: 35px;

                    & a {
                        &:after {
                            width: 30px;
                            height: 30px;
                        }
                    }
                }
            }
        }

        .footerSocial {
            justify-content: center;
        }
    }

    /* about us section */
    .aboutUsSec {
        .countWrap {
            .eachCount {
                width: 100%;
                text-align: center;

                .countBoxInner::after {
                    display: none;
                }

                .countBoxInner::before {
                    width: 100%;
                }

                & .countBox {
                    &:hover {
                        & .countBoxInner {
                            &::before {
                                background-color: rgba(0, 0, 0, 0.25);
                            }
                        }
                    }
                }

                &:first-child {
                    .countBoxInner {
                        &::before {
                            display: none;
                        }
                    }
                }

                &:last-child {
                    margin: 0;
                }
            }
        }
    }

    /* product section */
    .productSec {
        padding-bottom: 110px;

        .productSlider {
            .slick-arrow {
                bottom: -65px;
            }
        }
    }

    /* builder section */
    .builderSec {
        .builderContentWrap {
            .builderContent {
                .row {
                    row-gap: 20px;
                }

                .builderBox {
                    height: auto !important;

                    h4 {
                        overflow: visible !important;
                        display: block !important;
                    }

                    /* .buiderBoxContent {
                        height: auto !important;
                    } */
                }
            }
        }
    }

    /* blog section */
    .blogSec {
        .headingWrap {
            text-align: center;
        }

        .blogTab {
            ul {
                justify-content: center;
                padding-top: 20px;
            }
        }

        .blogWrap {
            .blogSliderItem {
                .blogSliderInner {
                    .blogTopTxt {
                        height: 100px;
                    }
                }
            }
        }
    }

    /* start thank you page */
    .page-template-thank-you {
        .thankYouSec {
            .thankyouSecInn {
                width: 95%;

                .thankyouSecCont {
                    padding: 40px 20px;

                    h5 {
                        font-size: 40px;
                    }
                }
            }
        }
    }

    .page-template-404-not-found {
        & .notFoundSec {
            & .notFoundDiv {
                & .notFoundDivInn {
                    h2 {
                        font-size: 50px;
                    }
                }
            }
        }
    }

    /* end thank you page */
}

/* 767 ends */

@media (max-width: 575px) {

    /* home toggle */
    .header {
        & .headerWrap {
            & .menuTrigger {
                right: 15px;
            }
        }
    }

    .mobMenu {
        width: 100%;

        & .mobCloseMenu {
            right: 25px;
        }
    }

    .getInTouchBtn {
        right: -45px;
        top: 65%;
        padding: 5px 15px;

        a {
            font-size: 15px;
        }
    }

    .resView {
        display: block;
    }

    .deskView {
        display: none;
    }

    /* counter */
    .countWrap {
        & .countBox {
            & .countBoxInner {
                h3 {
                    font-size: 30px;
                }
            }
        }
    }

    /* btn */
    .btnOne {
        padding: 9px 18px;
        padding-right: 74px;
        font-size: 16px;

        &::before {
            width: 25px;
        }

        &::after {
            width: 44px;
        }
    }

    /* case study section */
    .projectSec {
        .projectSliderWrap {
            .projectSlider {
                .slick-list {
                    .projectItem {
                        .projectItemInner {
                            .projectImg {
                                height: 300px;
                            }
                        }
                    }
                }
            }
        }
    }

    /* blog section */
    .blogSec {
        padding-bottom: 100px;

        .blogTab {
            ul {
                li {
                    margin-left: 10px;

                    a {
                        padding: 8px 20px;
                        font-size: 16px;
                    }
                }
            }
        }

        .slick-arrow {
            bottom: -70px;
        }
    }

    /* application section */
    .appSwiper {
        .eachSlider {
            .innerSlider {
                height: 360px;
            }
        }
    }

    /* faq */
    .faqSec {
        .faq-accordion {
            .faq-item {
                .faq-title {
                    padding: 15px 20px;
                }
            }
        }
    }

    /* 404 page */
    .page-template-404-not-found {
        & .notFoundSec {
            & .notFoundDiv {
                & .notFoundDivInn {
                    h2 {
                        font-size: 40px;
                    }

                    .notFoundGif {
                        height: 250px;
                    }
                }
            }
        }
    }
}

/* 575 ends */


@media (max-width: 480px) {

    .ResFixedMenu {
        padding: 10px 30px;

        .mob-bottomBar {
            justify-content: space-between;

            img {
                width: 24px;
            }
        }
    }

}

#jobResults {
    &>.acc-container {
        &>p {
            padding: 10px 20px;
            border: 1px solid #fff;
            border-radius: 10px;
            background: #ffc1c6;
            color: #5a0209;
        }
    }
}

.fw_400 {
    font-weight: 400 !important;
}