.rockBreaker_sec {
    .leftAboutInner {}

    .rightAboutInner {
        border-radius: 20px;
        overflow: hidden;
    }
}

.ourProduct_sec {
    .rockSecWrap {
        .asideNav {
            .asideInner {
                position: sticky;
                top: 100px;

                .eachAsideBlock {
                    overflow: hidden;
                    border-radius: 30px;
                    box-shadow: 10px 14px 48px 18px #00000020;

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

                    .asideBlockInner {
                        .headBlock {
                            cursor: pointer;
                            position: relative;
                            border-radius: 30px 30px 0 0;

                            &:after {
                                top: 50%;
                                right: 15px;
                                color: #fff;
                                font-size: 20px;
                                content: "\f0d7";
                                transition: 0.3s;
                                position: absolute;
                                transform: translateY(-50%) rotate(0deg);
                                font-weight: var(--fa-style, 900);
                                font-family: var(--fa-style-family, "Font Awesome 6 Free");
                            }

                            .title {
                                color: #fff;
                                font-size: 20px;
                                margin-bottom: 0;
                                padding: 25px 40px 25px 15px;
                            }
                        }

                        .botBlock {
                            display: none;

                            .radioContainer {
                                ul {
                                    li {
                                        display: flex;
                                        flex-wrap: wrap;
                                        position: relative;
                                        align-items: center;
                                        padding: 20px 15px;
                                        margin-bottom: 0 !important;

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

                                        .checkcontainer {
                                            display: flex;
                                            margin-bottom: 0;
                                            align-items: center;

                                            .chkLabel {
                                                top: 0px;
                                                left: 0;
                                                right: 0;
                                                bottom: 0;
                                                width: 100%;
                                                display: flex;
                                                margin-top: 0;
                                                position: relative;
                                                align-items: center;
                                                padding: 0 0 0 30px;

                                                strong {
                                                    font-weight: 400;
                                                    color: #000000;
                                                    display: inline-block;
                                                }

                                                span {
                                                    font-size: 18px;
                                                    color: #919191;
                                                    margin-left: 10px;
                                                    display: inline-block;
                                                }
                                            }

                                            input {
                                                top: 20px;
                                                left: 0;
                                                opacity: 0;
                                                width: 100%;
                                                height: 28px;
                                                cursor: pointer;
                                                position: absolute;
                                                background-color: #f00;
                                            }
                                        }

                                        .checkmark {
                                            top: 22px;
                                            left: 15px;
                                            width: 25px;
                                            height: 25px;
                                            border-radius: 50%;
                                            position: absolute;
                                            border: 1px solid #d2d2d2;

                                            &:before {
                                                top: 0;
                                                left: 0;
                                                right: 0;
                                                bottom: 0;
                                                width: 15px;
                                                content: "";
                                                height: 15px;
                                                margin: auto;
                                                position: absolute;
                                                border-radius: 50%;
                                                background-color: #d2d2d2;
                                            }
                                        }

                                        input:checked~.checkmark {
                                            border-color: #000000;

                                            &:before {
                                                background-color: #2196f3;
                                            }
                                        }
                                    }
                                }
                            }

                            .range_container {
                                width: 100%;
                                display: flex;
                                max-width: 100%;
                                padding: 30px 20px;
                                flex-direction: column;

                                .headingTitle {
                                    font-size: 18px;
                                    text-align: center;
                                    margin-bottom: 20px;
                                }

                                .sliders_control {
                                    position: relative;
                                }

                                .slider-tooltip {
                                    position: absolute;
                                    top: -3.5rem;
                                    left: 0;
                                    width: fit-content;
                                    background-color: #00000040;
                                    color: #0ea5e9;
                                    font-size: 0.8rem;
                                    border-radius: 4px;
                                    padding: 0.5rem 1rem;
                                    text-align: center;
                                    translate: -50% 0;
                                }

                                .slider-tooltip::before {
                                    content: "";
                                    position: absolute;
                                    bottom: -0.25rem;
                                    left: 50%;
                                    translate: -50% 0;
                                    width: 0.5rem;
                                    height: 0.5rem;
                                    rotate: 45deg;
                                    z-index: -1;
                                    background-color: inherit;
                                }

                                input[type="range"]::-webkit-slider-thumb {
                                    -webkit-appearance: none;
                                    pointer-events: all;
                                    width: 15px;
                                    height: 15px;
                                    background-color: #0ea5e9;
                                    border-radius: 50%;
                                    box-shadow: 0 0 0 1px #0ea5e9;
                                    cursor: pointer;
                                }

                                input[type="range"]::-moz-range-thumb {
                                    -webkit-appearance: none;
                                    pointer-events: all;
                                    width: 15px;
                                    height: 15px;
                                    background-color: #0ea5e9;
                                    border-radius: 50%;
                                    box-shadow: 0 0 0 1px #0ea5e9;
                                    cursor: pointer;
                                }

                                input[type="range"]::-webkit-slider-thumb:hover {
                                    background: #f7f7f7;
                                }

                                input[type="range"]::-webkit-slider-thumb:active {
                                    box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
                                    -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
                                }

                                input[type="range"] {
                                    -webkit-appearance: none;
                                    appearance: none;
                                    height: 3px;
                                    width: 100%;
                                    position: absolute;
                                    background-color: #0ea5e9;
                                    pointer-events: none;
                                }

                                #fromSlider {
                                    height: 0;
                                    z-index: 1;
                                }

                                .scale {
                                    display: flex;
                                    justify-content: space-between;
                                    margin-top: 2rem;
                                    position: relative;
                                    width: calc(100% - 15px);
                                    margin-inline: auto;
                                    font-size: 0.8rem;
                                }

                                .scale div {
                                    position: absolute;
                                    translate: -50% 0;
                                }

                                .scale div::before {
                                    content: "";
                                    position: absolute;
                                    top: 0;
                                    left: 50%;
                                    translate: -50% -125%;
                                    width: 1px;
                                    height: 10px;
                                    background-color: #666;
                                }
                            }

                            .range_container_2 {
                                .priceFil {
                                    display: flex;
                                    flex-wrap: wrap;
                                    gap: 20px;
                                    margin-top: 20px;

                                    .priceFilBtn {
                                        border: 1px solid #00000025;
                                        border-radius: 10px;
                                        padding: 6px 10px;
                                        text-align: center;
                                        color: #000;
                                        transition: all 0.5s;

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

                                        &.active {
                                            background-color: #008fff;
                                            color: #fff;
                                        }
                                    }
                                }
                            }

                            .checkContainer {
                                ul {
                                    li {
                                        display: flex;
                                        flex-wrap: wrap;
                                        position: relative;
                                        align-items: center;
                                        padding: 20px 25px;
                                        margin-bottom: 0 !important;

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

                                        .checkcontainer {
                                            display: block;
                                            position: relative;
                                            padding-left: 35px;
                                            margin-bottom: 0;
                                            cursor: pointer;
                                            font-size: 17px;
                                            -webkit-user-select: none;
                                            -moz-user-select: none;
                                            -ms-user-select: none;
                                            user-select: none;

                                            input {
                                                position: absolute;
                                                opacity: 0;
                                                cursor: pointer;
                                            }

                                            .checkmark {
                                                position: absolute;
                                                top: 0;
                                                left: 0;
                                                height: 25px;
                                                width: 25px;
                                                border: 2px solid #a2a2a2;
                                                background-color: transparent;

                                                &:after {
                                                    left: 7px;
                                                    top: 3px;
                                                    width: 7px;
                                                    height: 12px;
                                                    border: solid #a2a2a2;
                                                    border-width: 0 3px 3px 0;
                                                    -webkit-transform: rotate(45deg);
                                                    -ms-transform: rotate(45deg);
                                                    transform: rotate(45deg);
                                                    content: "";
                                                    position: absolute;
                                                }
                                            }

                                            input:checked~.checkmark {
                                                border-color: #008fff;
                                            }

                                            input:checked~.checkmark:after {
                                                border-color: #008fff;
                                            }
                                        }

                                        /* .checkcontainer{
                                            display: flex;
                                            margin-bottom: 0;
                                            align-items: center;
                                            .chkLabel{
                                                top: 0px;
                                                left: 0;
                                                right: 0;
                                                bottom: 0;
                                                width: 100%;
                                                display: flex;
                                                margin-top: 0;
                                                position: relative;
                                                align-items: center;
                                                padding: 0 0 0 40px;
                                                strong{
                                                    font-weight: 400;
                                                    color: #000000;
                                                    display: inline-block;
                                                }
                                                span{
                                                    font-size: 18px;
                                                    color: #919191;
                                                    margin-left: 10px;
                                                    display: inline-block;
                                                }
                                            }
                                            input{
                                                top: 20px;
                                                left: 0;
                                                width: 100%;
                                                height: 28px;
                                                cursor: pointer;
                                                position: absolute;
                                                background-color: #f00;
                                            }
                                        }
                                        .checkmark{
                                            top: 22px;
                                            left: 25px;
                                            width: 25px;
                                            height: 25px;
                                            position: absolute;
                                            border: 1px solid #D2D2D2;
                                            &:before{
                                                content: normal;
                                            }
                                            &:after {
                                                left: 9px;
                                                top: 5px;
                                                width: 5px;
                                                height: 10px;
                                                border: solid white;
                                                border-width: 0 3px 3px 0;
                                                -webkit-transform: rotate(45deg);
                                                -ms-transform: rotate(45deg);
                                                transform: rotate(45deg);
                                            }
                                        }
                                        .checkmark:after {
                                            display: none;
                                        }
                                        input:checked{
                                            border-color: #2196F3;
                                        }
                                        input:checked ~ .checkmark:after {
                                            display: block;
                                            border-color: #2196F3;
                                        } */
                                    }
                                }
                            }
                        }
                    }

                    /* &:first-child{
                        .asideBlockInner{
                            .headBlock {
                                &:after{
                                    transform: translateY(-50%) rotate(180deg);
                                }
                                .title {
                                }
                            }
                            .botBlock{
                                display: block;
                            }
                        }
                    } */

                    &.active {
                        .asideBlockInner {
                            border-radius: 30px;
                            border: 2px solid #2196f35e;

                            .headBlock {
                                &:after {
                                    transform: translateY(-50%) rotate(180deg);
                                }
                            }

                            .botBlock {
                                display: block;
                            }
                        }
                    }
                }
            }
        }

        .rightMain {
            .mainInner {
                .productCardWrap {
                    margin-bottom: 40px;

                    .eachProductCard {
                        padding-top: 0px !important;
                        margin-bottom: 30px;

                        .cardInner {
                            display: block;
                            overflow: hidden;
                            position: relative;

                            .cardInnerWrap {
                                .figContBox {
                                    .figContBoxInner {
                                        .figContLeft {
                                            .figContTitle {
                                                visibility: visible;
                                                opacity: 1;
                                            }
                                        }
                                    }
                                }
                            }

                            .cardWrapInnerHover {
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                z-index: 2;
                                overflow: hidden;
                                transition: 0.6s;
                                position: absolute;
                                border-radius: 25px;
                                transform: translateY(110%);
                                background-color: #008fff;
                                transform-origin: center bottom;

                                .cardWrapInnerHoverInner {
                                    padding: 30px;
                                    text-align: center;

                                    .figContTitle {
                                        color: #fff;
                                        margin-bottom: 30px;
                                        font-family: "IBM Plex Sans", sans-serif;
                                    }

                                    .figDetails {
                                        .figDetailsInner {
                                            overflow-y: auto;
                                            max-height: 330px;
                                            margin-bottom: 20px;
                                            padding-right: 10px;

                                            .figDetailsInnerCard {
                                                &:not(:last-child) {
                                                    margin-bottom: 20px;
                                                    padding-bottom: 20px;
                                                    border-bottom: 1px solid #fff;
                                                }

                                                .figDetLine {
                                                    width: 100%;
                                                    display: none;

                                                    input[type="range"] {
                                                        cursor: pointer;
                                                        width: 100%;
                                                        border-radius: 10px;
                                                        border: none;

                                                        &::-webkit-slider-runnable-track,
                                                        &::-moz-range-track {
                                                            background: #42acff;
                                                            border-radius: 10px;
                                                        }

                                                        &::-webkit-slider-thumb,
                                                        &::-moz-range-thumb {
                                                            background: #fff;
                                                            border-radius: 10px;
                                                        }
                                                    }

                                                    span {
                                                        width: 50%;
                                                        display: block;
                                                        background: #fff;
                                                        height: 100%;
                                                        border-radius: 10px;
                                                    }
                                                }

                                                .figDetTxt {
                                                    display: flex;
                                                    justify-content: space-between;
                                                    gap: 10px;

                                                    p {
                                                        color: #fff;
                                                        margin-bottom: 0;
                                                    }
                                                }
                                            }
                                        }

                                        a.btnOne {
                                            display: block;
                                        }

                                        .figDetailsInnerBtnDiv {
                                            display: flex;
                                            flex-wrap: wrap;
                                            row-gap: 6px;
                                            justify-content: space-between;

                                            .btnOne {
                                                display: block;
                                                width: calc(50% - 8px);

                                                .basic_btn {
                                                    min-width: 100%;
                                                    height: 50px;
                                                    font-size: 16px;
                                                    padding: 5px 12px;
                                                    line-height: 40px;
                                                }
                                            }
                                        }

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

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

                                    .figureWrap {
                                        .figure {
                                            background-color: transparent;
                                        }
                                    }
                                }

                                .cardWrapInnerHover {
                                    background-color: #008fff;
                                    transform: translateY(0%);

                                    .cardWrapInnerHoverInner {
                                        .figContTitle {
                                            color: #fff;
                                            text-align: left;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                .load-more-wrap {
                    /* padding: 15px 0; */
                    text-align: center;
                    border-radius: 15px;
                    margin: 0 auto 120px;
                    background-color: transparent;

                    #load-more {
                        width: 180px;
                        display: inline-block;

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

                .applicableWrap {
                    border-radius: 25px;

                    .applicableWrapInner {
                        padding: 50px 50px;

                        h3 {
                            font-size: 30px;
                            font-weight: 600;
                            line-height: 25px;
                            margin-bottom: 20px;
                        }

                        .appList {
                            display: flex;
                            flex-wrap: wrap;
                            align-items: center;

                            li {
                                margin-bottom: 0;

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

                                a {
                                    font-size: 24px;
                                    color: #ffffff;
                                    line-height: 20px;
                                    display: inline-block;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.specification_sec {
    .col_2 {
        .imgBox {
            padding: 15px 60px;
            overflow: hidden;
            border-radius: 25px;
            background-color: #fff;
        }
    }
}

.cardMobVw {
    display: none;
}

.mobRockImg {
    display: none;
}

@media only screen and (max-width: 1768px) {
    .ourProduct_sec {
        .rockSecWrap {
            .rightMain {
                .mainInner {
                    .productCardWrap {
                        .eachProductCard {
                            .cardInner {
                                .cardWrapInnerHover {
                                    .cardWrapInnerHoverInner {
                                        .figDetails {
                                            .figDetailsInner {
                                                max-height: 250px;

                                                .figDetailsInnerCard {
                                                    &:not(:last-child) {
                                                        margin-bottom: 16px;
                                                        padding-bottom: 16px;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1600px) {
    .ourProduct_sec {
        .rockSecWrap {
            .rightMain {
                .mainInner {
                    .productCardWrap {
                        .eachProductCard {
                            .cardInner {
                                .cardWrapInnerHover {
                                    .cardWrapInnerHoverInner {
                                        .figContTitle {
                                            font-size: 25px;
                                            margin-bottom: 25px;
                                        }

                                        .figDetails {
                                            .figDetailsInner {
                                                max-height: 200px;
                                            }

                                            .figDetailsInnerBtnDiv {
                                                .btnOne {
                                                    .basic_btn {
                                                        height: 45px;
                                                        font-size: 15px;
                                                        line-height: 30px;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media only screen and (max-width: 1440px) {
    .ourProduct_sec {
        .rockSecWrap {
            .asideNav {
                .asideInner {
                    .eachAsideBlock {
                        border-radius: 10px;

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

                        .asideBlockInner {
                            border-radius: 10px;

                            .headBlock {
                                border-radius: 10px 10px 0 0;

                                .title {
                                    font-size: 14px;
                                    padding: 15px 40px 15px 15px;
                                }
                            }

                            & .botBlock {
                                & .range_container_2 {
                                    & .priceFil {
                                        gap: 7px;

                                        .priceFilBtn {
                                            font-size: 14px;
                                            padding: 6px 5px;
                                        }
                                    }
                                }

                                & .checkContainer {
                                    & ul {
                                        & li {
                                            .checkcontainer {
                                                font-size: 14px;
                                            }
                                        }
                                    }
                                }
                            }
                        }

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

            .rightMain {
                .mainInner {
                    .productCardWrap {
                        margin-bottom: 20px;

                        .eachProductCard {
                            .cardInner {
                                .cardWrapInnerHover {
                                    .cardWrapInnerHoverInner {
                                        .figDetails {
                                            .figDetailsInner {
                                                max-height: 160px;

                                                .figDetailsInnerCard {
                                                    &:not(:last-child) {
                                                        margin-bottom: 15px;
                                                        padding-bottom: 15px;
                                                        border-bottom: 1px solid #fff;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }

                                &:hover {
                                    .cardWrapInnerHover {
                                        .cardWrapInnerHoverInner {
                                            padding: 20px 15px;

                                            .figContTitle {
                                                font-size: 20px;
                                                margin-bottom: 10px;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }

                    .load-more-wrap {
                        margin: 0 auto 60px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1280px) {
    .ourProduct_sec {
        .rockSecWrap {
            .rightMain {
                .mainInner {
                    .productCardWrap {
                        .eachProductCard {
                            .cardInner {
                                .cardInnerWrap {
                                    .figContBox {
                                        .figContBoxInner {
                                            .figContLeft {
                                                .figContTitle {
                                                    color: #fff;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}


@media only screen and (max-width: 1200px) {
    .productCardWrap {
        .eachProductCard {
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
            max-width: 50%;
        }
    }
}

@media (max-width: 1024px) {
    .newsTabWrap {
        .accEach {
            &:not(:last-child) {
                .accCont {
                    display: none;
                }
            }
        }
    }

    .commonApplicationWrap {
        padding-top: 0 !important;
    }
}

@media (max-width: 991px) {
    .asideNav {
        margin-bottom: 30px;
    }

    .rockBreaker_sec {
        text-align: center;
    }

    .mobRockImg {
        display: block;
        margin: 0 auto 20px;
        width: 70%;
    }

    .dskRockImg {
        display: none;
    }

    .commonNumberScrollWrap {
        .eachNumContWrap {
            justify-content: center;
        }
    }

    .ourProduct_sec {
        & .rockSecWrap {
            & .rightMain {
                & .mainInner {
                    & .applicableWrap {
                        .applicableWrapInner {
                            padding: 30px 30px;

                            h3 {
                                font-size: 26px;
                                margin-bottom: 15px;
                            }
                        }
                    }

                    /* mobile product visible */
                    & .productCardWrap {
                        & .eachProductCard {
                            & .cardInner {
                                & .cardInnerWrap {
                                    display: none;

                                    & .figureWrap {
                                        .figure {
                                            height: auto;
                                        }
                                    }
                                }

                                .cardWrapInnerHover {
                                    position: inherit;
                                    background-color: #008fff;
                                    transform: translateY(0);

                                    .cardWrapInnerHoverInner {
                                        padding: 20px 15px;

                                        .figContTitle {
                                            color: #fff;
                                            font-size: 20px;
                                            text-align: center;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .specification_sec {
        & .col_2 {
            .imgBox {
                padding: 15px;
            }
        }
    }

    .cardMobVw {
        display: block;
        margin: 0 auto 20px;

        .figure {
            width: 150px;
            background-color: #fff;
            padding: 10px;
        }
    }
}

@media (max-width: 640px) {
    .productCardWrap {
        .eachProductCard {
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    .ourProduct_sec {
        & .rockSecWrap {
            & .rightMain {
                & .mainInner {
                    .load-more-wrap {
                        margin: 0 auto 0;
                    }

                    & .productCardWrap {
                        margin-bottom: 0;

                        & .eachProductCard {
                            & .cardInner {
                                & .cardWrapInnerHover {
                                    & .cardWrapInnerHoverInner {
                                        & .figDetails {
                                            .figDetailsInner {
                                                max-height: inherit;
                                                overflow-y: visible;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 575px) {
    .mobRockImg {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .rockBreaker_sec {
        .basic_btn {
            margin-bottom: 15px;
        }

        .row.mb_80 {
            margin-bottom: 38px !important;
        }
    }

    .ourProduct_sec {
        & .rockSecWrap {
            & .rightMain {
                & .mainInner {
                    & .applicableWrap {
                        & .applicableWrapInner {
                            h3 {
                                font-size: 22px;
                            }
                        }
                    }
                }
            }
        }
    }
}