.productCommon {
    .productBox {
        padding-bottom: 145px;
    }

    &.productSec_1 {
        position: relative;
        margin-top: -40px;
        z-index: 2;
    }

    .slick-arrow {
        position: absolute;
        font-size: 0px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #D9D9D9;
        border: none;
        top: 50%;
        transform: translateX(-50%);
        transition: 0.5s;
    }

    .slick-arrow {
        background-color: #D9D9D9;
        border: none;
        transform: translateX(-50%);
        transition: 0.5s;
        bottom: -90px;
        top: auto;

        &.slick-next {
            right: calc(50% - 60px);
            background: url(../images/right_arrow_icon_right.png) no-repeat center center #D9D9D9;
            background-size: 80%;
            transform: none;
        }

        &.slick-prev {
            left: calc(50% - 60px);
            background: url(../images/left_arrow_icon_black.png) no-repeat center center #D9D9D9;
            background-size: 80%;
            transform: none;
        }

        &:hover {
            &.slick-next {
                background: url(../images/right_arrow_icon.png) no-repeat center center #00B565;
                background-size: 80%;
            }

            &.slick-prev {
                background: url(../images/left_arrow_icon.png) no-repeat center center #00B565;
                background-size: 80%;
            }
        }
    }

    .productItem {
        margin: 0 15px;

        .productItemImg {
            border-radius: 15px;
            overflow: hidden;
            height: 320px;

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

        .productBottom {
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;

            .productTitle {
                width: calc(100% - 170px);
                padding-right: 10px;

                a {
                    font-family: 'Unbounded';
                    font-size: 18px;
                    color: #000;
                    font-weight: 300;
                }
            }

            .btnWrap {
                opacity: 0;
                visibility: hidden;
                transition: 0.5s;

                .btnMain {
                    &.btnOne {
                        width: 170px;

                        span {
                            padding: 10px 15px;
                            padding-right: 50px;
                            font-size: 16px;

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

        &:hover {
            .btnWrap {
                opacity: 1;
                visibility: visible;
            }
        }
    }
}

.prodSpeciSec {
    .prodSpeciSecWrap {
        .tabWrapInner {
            .tabList {
                display: flex;
                justify-content: center;
                gap: 15px;

                li {
                    text-align: center;
                    min-width: 230px;

                    a {
                        display: block;
                        text-align: center;
                        margin-right: 0;

                        span {
                            padding: 10px 25px;

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

                    &.active {
                        a {
                            &::before {
                                background-color: #FF8531;
                                width: 100%;
                            }

                            span {
                                background: transparent;
                            }
                        }
                    }
                }
            }

            .tabContWrap {
                padding-top: 40px;

                .tab_content {
                    display: none;

                    &.active {
                        display: block;
                    }

                    .accTrigger {
                        display: none;
                    }

                    .tabContainer {
                        .accInner {
                            ul {
                                li {
                                    margin-bottom: 10px;
                                }

                                &.customList_2 {
                                    display: flex;
                                    flex-wrap: wrap;
                                    margin-left: -15px;
                                    margin-right: -15px;

                                    li {
                                        width: 50%;
                                        padding-left: 15px;
                                        padding-right: 15px;

                                        .liWrap {
                                            padding: 15px;
                                            overflow: hidden;
                                            min-height: 210px;
                                            border-radius: 15px;
                                            background-color: #fff;

                                            .strongWrap {
                                                display: flex;
                                                flex-wrap: wrap;
                                                align-items: center;
                                                margin-bottom: 15px;
                                                justify-content: space-between;

                                                .strong {
                                                    display: inline-block;
                                                    line-height: 1;
                                                    font-size: 24px;
                                                    font-weight: 700;
                                                    margin-bottom: 5px;
                                                    letter-spacing: 0.05rem;
                                                }

                                                .figure {
                                                    width: 64px;
                                                    height: 64px;
                                                    padding: 12px;
                                                    display: flex;
                                                    border-radius: 50%;
                                                    align-items: center;
                                                    justify-content: center;

                                                    img {
                                                        filter: brightness(0) invert(1);
                                                        display: inline-block;
                                                        transition: 0.6s;
                                                    }
                                                }
                                            }
                                        }

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

                                        strong {
                                            display: inline-block;
                                            line-height: 1;
                                            font-size: 20px;
                                            color: #003d22;
                                            margin-bottom: 5px;
                                            letter-spacing: 0.05rem;
                                        }

                                        u {
                                            color: #331500;
                                            font-weight: 600;
                                            line-height: 1.2;
                                            display: inline-block;
                                        }

                                        &:nth-child(odd) {
                                            .liWrap {
                                                .strongWrap {
                                                    .strong {
                                                        color: #007743;
                                                    }

                                                    .figure {
                                                        background-color: #007743;
                                                    }
                                                }
                                            }
                                        }

                                        &:nth-child(even) {
                                            .liWrap {
                                                .strongWrap {
                                                    .strong {
                                                        color: #FF8531;
                                                    }

                                                    .figure {
                                                        background-color: #FF8531;
                                                        ;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.productSec_2 {
    .headingWrap {
        & .secH {
            &::after {
                width: 130px;
            }
        }
    }
}

.nonSolarImg {
    max-width: 70%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    img {
        width: 100%;

    }
}

.productBox2 {
    .productTitle {
        position: absolute;
        bottom: 10px;
        left: 20px;

        a {
            font-family: 'Unbounded';
            font-size: 24px;
            color: #fff;
            font-weight: 300;
        }
    }
}


/*===product details start===*/
.productDetails_1 {
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

.productDetails {
    .aboutImgWrap {
        position: sticky;
        top: 60px;
    }
}

.specificationTable {
    border: 1px solid #ccc;
    border-radius: 15px;
    overflow: auto;

    table {
        border-spacing: 0px;

        th,
        td {
            font-weight: 300;
            padding: 20px;
            text-align: center;
            color: rgba(0, 83, 46, 1);
        }

        th {
            background-color: var(--orange-color);
            color: #fff;
            border-right: 1px solid #85858559;

            &:last-child {
                border-right: none;
            }
        }

        td {
            border-bottom: 1px solid #ccc;
            border-right: 1px solid #ccc;

            &:last-child {
                border-right: none;
            }
        }

        tr {
            &:last-child {
                td {
                    border-bottom: none;
                }
            }

            &.greenBg {
                background-color: rgba(0, 83, 46, 1);

                td {
                    color: #fff;
                }
            }
        }
    }
}

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

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

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

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

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

            .chooseIcon {
                width: 60px;
                height: 60px;
                border-radius: 10px;
                margin: 0 auto;
                margin-bottom: 10px;

                img {
                    transition: 0.5s;
                }
            }

            .chooseTxt {
                text-align: center;
            }

            &:hover {
                background-color: #077745;

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

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


    }
}

.productSubCatWrap {
    .productSubCatinner {
        .subCatInner {
            .catTitle {
                color: #003d22;
                text-align: center;
                margin-bottom: 15px;
            }

            figure {
                display: block;
                width: 100%;
                height: 500px;
                overflow: hidden;
                border-radius: 20px;
                margin-bottom: 15px;

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

            .catLinkWrap {
                display: flex;
                justify-content: flex-end;

                .catLink {
                    display: block;
                }
            }
        }
    }

    .mr-0 {
        margin-right: 0;
    }
}

/*===industry start===*/
.industrySec {
    .headingWrap {
        position: absolute;
        top: 80px;
        left: 140px;
        z-index: 2;

        .secH {
            color: #fff;
        }
    }

    .industryWrap {
        height: 800px;
        position: relative;
        overflow: hidden;

        .industryContent {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background-repeat: no-repeat !important;
            background-size: 100% 100%;
            display: flex;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: 0.5s;

            &::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                background-color: #000000a3;
                z-index: 1;
            }

            .indusContent {
                padding: 40px;
                width: 60%;
                z-index: 2;

                h4 {
                    color: var(--orange-color);
                    font-size: 24px;
                    font-family: "Unbounded";
                    font-weight: 400;
                }

                p {
                    color: #fff;
                }
            }

            &.current {
                opacity: 1;
                visibility: visible;
            }
        }

        .indusTab {
            width: 100%;
            height: auto;
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 2;

            ul {
                display: flex;
                border-top: 1px solid #cecece59;
                flex-wrap: wrap;
                justify-content: flex-start;

                li {
                    width: 100%;
                    min-width: 25%;
                    flex: 0 0 25%;
                    -ms-flex: 0 0 25%;
                    border-right: 1px solid #cecece59;

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

                    a {
                        color: #fff;
                        font-family: "Unbounded";
                        font-size: 18px;
                        font-weight: 300;
                        padding: 16px 15px;
                        align-items: center;
                        display: flex;
                        justify-content: center;
                        height: 100%;
                        text-align: center;

                        &.current {
                            color: var(--orange-color);
                        }
                    }
                }
            }
        }

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

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

.dark-theme {
    .industrySec {
        .industryWrap {
            border: 1px solid #ffffff4a;
        }
    }
}

.mobIndustry {
    display: none;
}


/* .enQuireWrap {
    .col_1{
        display: none;
    }
    h3 {
        color: var(--orange-color);
    }
    .col_2{
        width: 100%;
    }
} */
.enQuireWrap {
    .row {
        align-items: center;

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

.approvalSec {
    .enQuireWrap {
        .row {
            align-items: center;

            .leftContInner {
                h3 {
                    color: #000;
                }

                ul {
                    display: flex;
                    flex-wrap: wrap;
                    margin-top: 20px;
                    align-items: center;

                    li {
                        width: 33.33%;
                        padding-left: 12px;
                        position: relative;
                        margin-bottom: 15px;

                        &:not(:last-child) {}

                        &:after {
                            left: 0;
                            top: 7px;
                            width: 6px;
                            height: 6px;
                            content: '';
                            border-radius: 50%;
                            position: absolute;
                            background-color: #f86602;
                        }
                    }
                }
            }
        }
    }
}

.projectSlider {
    & .slick-arrow {
        z-index: 2;
        bottom: 20px;

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

        &.slick-prev {
            left: auto;
            right: 100px;
        }
    }
}

.bldcProdLstSec2 {
    & .productItem {
        .productItemImg {
            border-radius: 15px;
            overflow: hidden;
            height: 400px;
        }

        margin-bottom: 20px;

        .bldcProductName {
            a {
                color: #000;
            }
        }
    }
}

#enquiryPopup {
    .fancybox-button {
        color: #000;
    }
}

@media (max-width: 1768px) {
    .industrySec {
        .headingWrap {
            left: 55px;
        }

        .industryWrap {
            height: 730px;
        }
    }
}

@media (max-width: 1600px) {
    .productCommon {
        .productItem {
            .productBottom {
                .productTitle {
                    width: calc(100% - 150px);

                    a {
                        font-size: 16px;
                    }
                }

                .btnWrap {
                    .btnMain {
                        width: 150px;

                        &.btnOne {
                            width: 150px;

                            span {
                                font-size: 14px;
                                padding: 8px 12px;
                                padding-right: 40px;

                                &::after {
                                    width: 22px;
                                    height: 25px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .industrySec {
        .headingWrap {
            top: 60px;
            left: 64px;
        }

        .industryWrap {
            height: 650px;

            .industryContent {
                .indusContent {
                    width: 50%;
                }
            }
        }
    }

    .prodSpeciSec {
        .prodSpeciSecWrap {
            .tabWrapInner {
                .tabContWrap {
                    .tab_content {
                        .tabContainer {
                            .accInner {
                                ul {
                                    &.customList_2 {
                                        li {
                                            .liWrap {
                                                .strongWrap {
                                                    .strong {
                                                        font-size: 22px;
                                                    }

                                                    .figure {
                                                        width: 55px;
                                                        height: 55px;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1440px) {
    .productCommon {
        .productItem {
            .productItemImg {
                border-radius: 15px;
                overflow: hidden;
                height: 260px;
            }

            .productBottom {
                .productTitle {
                    a {
                        font-size: 16px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1366px) {
    .industrySec {
        .headingWrap {
            .secH {
                &::after {
                    left: 0;
                }
            }
        }

        .industryWrap {
            height: 520px;

            .indusTab {
                ul {
                    li {
                        a {
                            font-size: 16px;
                            padding: 12px 12px;
                        }
                    }
                }
            }

            .industryContent {
                .indusContent {
                    width: 70%;
                    padding: 20px 40px;
                }
            }
        }
    }
}

@media (max-width: 1280px) {
    .industrySec {
        .headingWrap {
            .secH {
                font-size: 30px;

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

@media (max-width: 1240px) {
    .industrySec {
        & .industryWrap {
            & .industryContent {
                .indusContent {
                    width: 70%;
                }
            }
        }
    }
}

@media (max-width: 1140px) {
    .industrySec {
        & .industryWrap {
            & .industryContent {
                .indusContent {
                    width: 90%;
                }
            }

            & .indusTab {
                & ul {
                    & li {
                        a {
                            padding: 7px 12px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1024px) {
    .industrySec {
        .headingWrap {
            top: 58px;
            left: 55px;
        }

        .industryWrap {
            .industryContent {
                .indusContent {
                    /* width: 86%; */

                    h4 {
                        font-size: 24px;
                    }
                }
            }
        }
    }

    .productSubCatWrap {
        .productSubCatinner {
            .subCatInner {
                .catTitle {
                    font-size: 22px;
                }
            }
        }
    }
}

@media(max-width:991px) {
    .approvalSec {
        .enQuireWrap {
            .row {
                .leftContInner {
                    ul {
                        align-items: flex-start;

                        li {
                            text-align: left;
                            padding-right: 10px;
                        }
                    }

                    .leftCont {
                        margin-bottom: 20px;
                    }
                }
            }

            .imgWrap {
                a {
                    img {
                        width: 100%;
                    }
                }
            }
        }
    }

    .productCommon {
        & .productItem {
            & .productBottom {
                flex-direction: column;

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

                    & .btnMain {
                        &.btnOne {
                            margin-right: 0px;
                        }
                    }
                }

                .productTitle {
                    width: 100%;
                    text-align: center;
                    margin-bottom: 12px;
                }
            }
        }
    }

    .prodSpeciSec {
        .prodSpeciSecWrap {
            .tabWrapInner {
                .tabList {
                    display: none;
                }

                .tabContWrap {
                    .tab_content {
                        display: block;

                        .accTrigger {
                            display: block;
                            position: relative;
                            font-size: 20px;
                            font-weight: 700;
                            color: #000;
                            font-family: "Public Sans";
                            margin-bottom: 0px;
                            /* padding: 25px 40px 25px 0px; */
                            background-color: #fff;
                            padding: 20px 48px 20px 10px;
                            border-radius: 20px 20px 0 0;
                            box-shadow: 0px -8px 5px 0px #00774329;

                            &::after {
                                content: '\2b';
                                font-family: fontawesome;
                                position: absolute;
                                right: 10px;
                                top: 16px;
                                width: 30px;
                                height: 30px;
                                background-color: #FF8531;
                                border-radius: 50%;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                color: #fff;
                                font-size: 15px;
                                transition: all 0.5s;
                            }
                        }

                        .tabContainer {
                            display: none;
                            padding-bottom: 15px;
                            padding: 0 10px 20px 10px;
                            background-color: #fff;
                            width: 100%;
                            border-radius: 0 0 20px 20px;
                            box-shadow: 4px 12px 13px 0px #00774329;
                            margin: 0 auto 15px;

                            .accInner {
                                ul {
                                    &.customList_2 {
                                        li {
                                            strong {
                                                font-size: 16px;
                                            }
                                        }
                                    }
                                }
                            }

                        }

                        &:not(:last-child) {
                            margin-bottom: 15px;
                            border-bottom: 1px solid rgba(0, 0, 0, 0.25);
                        }

                        &.active {
                            .accTrigger {
                                &::after {
                                    content: '\f068';
                                }
                            }

                            .tabContainer {
                                display: block;
                            }
                        }
                    }
                }
            }
        }
    }

    .pt_70 {
        padding-top: 40px;
    }

    .nonSolarImg {
        max-width: 100%;
    }

    .btnWrap.text-right {
        text-align: center;
        padding-top: 30px;
    }

    .enQuireWrap {
        text-align: center;

        h3 {
            font-size: 20px;
        }

        .imgWrap {
            margin-top: 15px;
            margin-bottom: 15px;
        }
    }

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

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

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

                    .aboutImgWrap {
                        margin-bottom: 20px;
                    }
                }
            }

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

    .specificationTable {
        & table {

            th,
            td {
                padding: 10px;
            }
        }
    }

    .prodTabCont {
        .specificationTable {
            margin-top: 20px;
        }
    }

    /* start industry section */
    .mobIndustry {
        display: block;
    }

    .dskIndustry {
        display: none;
    }

    .industrySec {
        & .headingWrap {
            top: 47px;

            .secH {
                color: #f86602;
                z-index: 5;
            }
        }
    }

    .mobIndustryWrap {
        background-color: #fff5ee;
        border-radius: 50px;
        padding: 20px 20px;

        .eachIndustry {
            &:not(:last-child) {
                border-bottom: 1px solid rgba(0, 0, 0, 0.25);
            }

            .mobIndustryTitleInn {
                h4 {
                    font-size: 20px;
                    font-weight: 700;
                    color: #000;
                    font-family: "Public Sans";
                    margin-bottom: 0px;
                    position: relative;
                    padding: 14px 40px 14px 10px;

                    &::before {
                        content: "\2b";
                        position: absolute;
                        top: 15px;
                        right: 10px;
                        font-family: fontawesome;
                        font-size: 16px;
                        color: #fff;
                        z-index: 9;
                        width: 28px;
                        height: 28px;
                        background-color: #f86602;
                        display: flex;
                        align-items: center;
                        border-radius: 50%;
                        justify-content: center;
                        align-items: center;
                    }
                }
            }

            .mobIndustryInn {
                border-radius: 20px;
                background-repeat: no-repeat;
                background-size: cover;
                width: 100%;
                height: 100%;
                position: relative;
                margin: 15px 0;
                background-color: transparent;

                &::after {
                    content: normal;
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: #00000091;
                    z-index: 1;
                    border-radius: 20px;
                }

                .mobIndusImgLayer {
                    position: absolute;
                    top: 0;
                    right: 0;
                    width: 100%;
                    height: 100%;
                    z-index: 2;
                    opacity: 0;
                    visibility: hidden;

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

                .mobIndusContentInn {
                    position: relative;
                    z-index: 3;
                }

                .mobIndustrycont {
                    display: none;
                    position: relative;

                    .mobRoundArrowBtn {
                        display: none !important;
                        width: 44px;
                        height: 44px;
                        border-radius: 50%;
                        background-color: var(--orange-color);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        transform: rotate(-45deg);
                        position: absolute;
                        bottom: -28px;
                        right: 8px;

                        img {
                            border-radius: 20px;
                            width: 30px;
                            height: auto;
                        }
                    }
                }

                p {
                    color: #fff;
                }
            }

            &.active {
                .mobIndustryInn {
                    background-image: var(--background-image);

                    &::after {
                        content: "";
                    }

                    .mobIndusContentInn {
                        padding: 0 14px 20px 14px;
                    }
                }

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

                .mobIndustryTitleInn {
                    h4 {
                        font-size: 20px;
                        font-weight: 700;
                        font-family: "Public Sans";
                        margin-bottom: 0px;
                        position: relative;
                        padding: 30px 44px 14px 0;
                        color: #ff8f43;

                        &::before {
                            content: "\f068";
                            position: absolute;
                            top: 30px;
                            right: 0px;
                            font-family: fontawesome;
                            font-size: 16px;
                            color: #fff;
                            z-index: 9;
                        }
                    }
                }
            }
        }
    }

    /* end industry section */

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

    .productSubCatWrap {
        .productSubCatinner {
            .subCatInner {
                .catTitle {
                    font-size: 20px;
                }

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

@media(max-width:768px) {
    .productDetails_1 {
        .btnWrap {
            & .btnMain {
                &.btnOne {
                    margin-right: 0px;
                    text-align: center;
                }
            }

            margin-bottom: 20px;
        }

        .aboutImgWrap {
            padding-left: 0px;
        }
    }

    .projectWrap {
        & .projectItem {
            .projectImg {
                height: 400px;
            }

            & .projectInner {
                a {
                    font-size: 22px;
                }
            }
        }
    }

    .btnWrap {
        .btnMain {
            font-size: 14px;
            padding-right: 30px;

            &::after {
                background: url(../images/right_arrow_icon.png) no-repeat center center;
                background-size: 100%;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                content: normal !important;
            }

            /* &.btnOne {
        span {
          &::after {
            content: '';
            display: block;
          }
        }
      } */

        }
    }

    .chooseContentWrap {
        & .chooseItem {
            .chooseInner {
                padding: 0;
                border-radius: 15px;
                margin-bottom: 20px;

                .chooseIcon {
                    margin-bottom: 0;
                }
            }

            .chooseInner {
                &:hover {
                    background-color: transparent;

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

                    & .chooseTxt {
                        p {
                            color: #000;
                        }
                    }
                }
            }
        }
    }

    .projectWrap {
        &.overflowH {
            overflow: visible;
        }
    }

    .projectSec.productCommon {
        padding-bottom: 120px;
    }

    .projectSlider {
        & .slick-arrow {
            bottom: -70px;

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

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

    .bldcProdLstSec2 {
        .pb_70 {
            padding-bottom: 0;
        }
    }

    /* start industry */
    .industrySec {
        .headingWrap {
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
        }
    }

    /* end industry */

    .productCommon {
        .productItem {
            .productBottom {
                .btnWrap {
                    .btnMain {
                        &.btnOne {
                            span {
                                padding: 8px 12px;
                                text-align: center;
                            }
                        }
                    }
                }
            }
        }
    }

    .prodSpeciSec {
        .prodSpeciSecWrap {
            .tabWrapInner {
                .tabContWrap {
                    .tab_content {
                        .tabContainer {
                            .accInner {
                                ul {
                                    &.customList_2 {
                                        li {
                                            width: 100%;

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

                                            .liWrap {
                                                .strongWrap {
                                                    flex-direction: column-reverse;
                                                    justify-content: flex-start;
                                                    align-items: flex-start;
                                                    row-gap: 12px;
                                                    margin-bottom: 10px;

                                                    .strong {
                                                        font-size: 20px;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media(max-width:575px) {
    .approvalSec {
        .enQuireWrap {
            .row {
                .leftContInner {
                    ul {
                        align-items: flex-start;

                        li {
                            width: 50%;
                        }
                    }
                }
            }
        }
    }

    .p_40 {
        padding: 10px;
    }

    .pt_70 {
        padding-top: 30px;
    }

    .pb_70 {
        padding-bottom: 40px;
    }

    .productCommon {
        .productBox {
            padding-bottom: 95px;
        }
    }

    .productCommon {
        .slick-arrow {
            bottom: -55px;
        }
    }

    .productSec_2 {
        & .headingWrap {
            & .secH {
                &::after {
                    width: 90px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
        }
    }

    .productBox2 {
        & .productTitle {
            a {
                font-size: 20px;
            }
        }
    }

    /* .innerBanner {
    .imgImg {
      height: 280px;
    }
  } */

    main {
        overflow: hidden;
    }
}

@media(max-width:440px) {
    .approvalSec {
        .enQuireWrap {
            .row {
                .leftContInner {
                    ul {
                        align-items: flex-start;

                        li {
                            width: 100%;
                            padding-right: 0;
                        }
                    }
                }
            }
        }
    }

    .productCommon {
        & .productItem {
            & .productBottom {
                .productTitle {
                    padding-right: 10px;
                }

                & .productTitle {
                    a {
                        font-size: 14px;
                    }
                }
            }
        }

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

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

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

    .mapSec {
        .mapWrap {
            height: 320px;
            border-radius: 30px;
        }
    }

    .chooseContentWrap {
        .chooseItem {
            width: 100%;
            max-width: 100%;
            flex: 0 0 100%;
            -ms-flex: 0 0 100%;
            border-bottom: 1px solid #cecece;
            margin-bottom: 20px;

            &::after {
                display: none;
            }

            &:last-child {
                border-bottom: none;
                margin-bottom: 0px;
            }
        }
    }

    .bldcProdLstSec2 {
        & .productItem {
            .productItemImg {
                height: 300px;
            }
        }
    }
}

@media(max-width:420px) {
    .productDetails_1 {
        & .btnWrap {
            & .btnMain {
                &.btnOne {
                    width: 100%;
                }
            }

            & .btnMain {
                margin-right: 0px;
                width: 100%;
            }
        }
    }

    .productDetails_1 {
        & .btnWrap {
            & .btnMain {
                width: 100%;
                text-align: center;
                padding-right: 0px;
                padding-left: 0px;

                &::after {
                    display: none;
                }
            }
        }
    }
}

/* ---- Flat fallback for browsers without CSS nesting support (compatibility patch) ---- */
.chooseContentWrap { margin-top: 20px; display: flex; flex-wrap: wrap; }
.chooseContentWrap .chooseItem { width: 100%; max-width: 25%; flex: 0 0 25%; -ms-flex: 0 0 25%; padding: 0 15px; position: relative; }
.chooseContentWrap .chooseItem::after { width: 1px; height: 80%; position: absolute; content: ""; right: 0; top: 50%; transform: translateY(-50%); background-color: rgba(0, 0, 0, 0.25); }
.chooseContentWrap .chooseItem:last-child:after { display: none; }
.chooseContentWrap .chooseItem .chooseInner { height: 100%; padding: 20px; border-radius: 15px; transition: 0.5s; }
.chooseContentWrap .chooseItem .chooseInner .chooseIcon { width: 60px; height: 60px; border-radius: 10px; margin: 0 auto; margin-bottom: 10px; }
.chooseContentWrap .chooseItem .chooseInner .chooseIcon img { max-width: 100%; max-height: 100%; transition: 0.5s; }
.chooseContentWrap .chooseItem .chooseInner .chooseTxt { text-align: center; }
.chooseContentWrap .chooseItem .chooseInner:hover { background-color: #077745; }
.chooseContentWrap .chooseItem .chooseInner:hover .chooseIcon img { filter: invert(1); }
.chooseContentWrap .chooseItem .chooseInner:hover .chooseTxt p { color: #fff; }
