.prodOverviewSec {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0;
        background: url(../images/product/product-details-bg.png);
        background-repeat: no-repeat;
        background-position: bottom left;
        width: 100%;
        height: 430px;
        z-index: -1;
		opacity: 0.5;
    }

    .mobOverProdImg {
        display: none;
    }

    .prodOverviewLeft {
        .secH {
            color: #DA0A0A;
            margin-bottom: 10px;
        }

        .prodOverDet {
            padding-bottom: 20px;

            h6 {
                color: #000;
                font-family: "Zabal DEMO";
                font-size: 26px;
                font-weight: 700;
                margin-bottom: 8px;
            }

            ul {
                /* display: flex;
                flex-wrap: wrap; */
                column-count: 2;

                li {
                    width: auto;
                    color: #000;
                    font-family: "Zabal DEMO";
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 30px;
                    margin-bottom: 5px;

                    span {
                        color: #DA0A0A;
                        font-weight: 600;
                        margin-right: 6px;
                    }
                }
            }
        }
    }

    .prodOverviewRight {
        border-radius: 20px;
        background-color: #edb59c;

        .prodOverviewFig {
            width: 100%;
            height: 450px;
            margin: 0px auto;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                border-radius: 25px;
            }
        }
    }

}

.facilitySec {
    &.prodBenefitSec {
        background-color: #842E30;

        .headingWrap {
            .secH {
                color: #fff;
            }
        }

        .facilityBtm {
            margin-top: 60px;

            .facilityCard {

                &:hover {
                    .facilityCardInn {
                        background-color: #fff;

                        .facilityFig {
                            img {
                                filter: none;
                            }
                        }

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

                .facilityCardInn {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;

                    &::before {
                        background-color: rgba(255, 255, 255, 0.25);
                    }

                    &::after {
                        background-color: rgba(255, 255, 255, 0.25);
                    }

                    .facilityFig {
                        img {
                            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(116deg) brightness(109%) contrast(109%);
                        }
                    }

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

                &:nth-child(4) {
                    .facilityCardInn {
                        &::after {
                            content: "";
                        }
                    }
                }

                /* &:nth-child(7) {
                    .facilityCardInn {
                        &::after {
                            content: "";
                            position: absolute;
                            width: 1px;
                            height: 100%;
                            bottom: 0;
                            left: 0;
                            background-color: rgba(255, 255, 255, 0.25);
                        }
                    }
                } */
            }
        }
    }
}

.prodSpecificationTab {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;

    .listWrap {
        .tabs {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-bottom: 50px;
            overflow-x: auto;
            overflow-y: hidden;

            li {
                color: #808080;
                text-align: center;
                font-family: "Quicksand";
                font-size: 36px;
                font-weight: 700;
                cursor: pointer;
                position: relative;
                margin: 0 15px 4px;
                padding: 0 0 7px;

                &::after {
                    content: '';
                    position: absolute;
                    width: 100%;
                    height: 1px;
                    background-color: #DA0A0A;
                    bottom: 0;
                    left: 0;
                    transform: scale(0);
                    transition: .4s all ease-out;
                }

                &::before {
                    content: '';
                    position: absolute;
                    width: 5px;
                    height: 5px;
                    background-color: #000;
                    bottom: -2px;
                    left: 50%;
                    right: 50%;
                    border-radius: 25px;
                    transform: scale(0) translateX(-50%);
                    transition: .6s all ease-out;
                    z-index: 1;
                }

                &.active {
                    color: #DA0A0A;

                    &::after {
                        transform: scale(1);
                    }

                    &::before {
                        width: 80px;
                        transform: scale(1) translateX(-50%);
                    }
                }
            }

            &::-webkit-scrollbar {
                width: 6px;
                height: 6px;
                border-radius: 10px;
                background-color: #d4d4d4;
            }

            &::-webkit-scrollbar-thumb {
                background: #ff6b6b;
                border-radius: 10px;
            }
        }

        .listContBox {
            width: 100%;
            max-width: 90%;
            margin: 0px auto;

            .tab_content {
                display: none;

                &.active {
                    display: block;
                }

                .speciTableDiv {
                    border-radius: 20px;
                    border: 1px solid rgba(0, 0, 0, 0.30);
                    width: 100%;
                    overflow-x: auto;

                    table {
                        table-layout: fixed;
                        width: 100%;

                        thead {
                            border-bottom: 1px solid rgba(0, 0, 0, 0.30);

                            th {
                                color: #000;
                                font-family: "Zabal DEMO";
                                font-size: 25px;
                                font-weight: 600;
                                padding: 20px 15px;
                                text-align: center;

                                &:not(:last-child) {
                                    border-right: 1px solid rgba(0, 0, 0, 0.30);
                                }
                            }
                        }

                        tbody {
                            tr {
                                transition: all 0.5s;

                                &:first-child {
                                    td {
                                        &:first-child {
                                            padding: 0;

                                            table {
                                                tbody {
                                                    tr {
                                                        &:first-child {
                                                            td {
                                                                &:first-child {
                                                                    color: #DA0A0A;
                                                                    text-align: center;
                                                                    font-family: 'Quicksand';
                                                                    font-size: 26px;
                                                                    font-weight: 700;
                                                                    vertical-align: top;
                                                                    border-bottom: none;
                                                                }
                                                            }
                                                        }

                                                        td {
                                                            text-align: left;
                                                            color: #000;
                                                            font-family: "Zabal DEMO";
                                                            font-size: 20px;
                                                            font-weight: 500;

                                                            &:first-child {
                                                                padding: 20px 15px;
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }

                                td {
                                    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
                                    padding: 20px 15px;
                                    text-align: left;
                                    color: #000;
                                    font-family: "Zabal DEMO";
                                    font-size: 20px;
                                    font-weight: 500;
                                    transition: all 0.5s;

                                    &:first-child {
                                        color: #000;
                                        text-align: center;
                                        font-family: 'Quicksand';
                                        font-size: 26px;
                                        font-weight: 700;
                                        vertical-align: top;
                                    }

                                    &:not(:last-child) {
                                        border-right: 1px solid rgba(0, 0, 0, 0.30);
                                    }
                                }

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

                                &:hover {
                                    background-color: #DA0A0A;
                                    border-color: rgba(255, 255, 255, 0.5) !important;

                                    td {
                                        color: #fff !important;
                                        border-color: rgba(255, 255, 255, 0.5) !important;
                                    }
                                }
                            }

                        }
                    }
                }

                &[data-tab="id_prod2"] {
                    & .speciTableDiv {
                        & table {
                            & tbody {
                                & tr {
                                    & td {
                                        &:first-child {
                                            vertical-align: middle;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.someVideoSec {
    .someVideoSecInn {
        .videoCard {
            margin: 0px 10px;
            overflow: hidden;

            .videoCardInn {
                position: relative;
                border-radius: 16px;
                transition: all 0.5s;

                .videoFig {
                    width: 100%;
                    height: 420px;
                    transition: all 0.5s;

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

                .videoCardPlaybtn {
                    position: absolute;
                    bottom: 25px;
                    right: 15px;
                    width: 80px;
                    height: 80px;
                    border-radius: 50%;
                    /* border: 1px solid #fff; */
                    background-color: #fff;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    transition: all 0.5s;
                    z-index: 2;

                    svg {
                        color: #DA0A0A;
                        font-size: 30px;
                    }
                }
            }

            &:hover {
                .videoCardInn {
                    overflow: hidden;

                    &::after {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(218, 10, 10, 0.41);
                    }

                    .videoCardPlaybtn {
                        /* background-color: #fff; */
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);

                        /* svg {
                            color: #DA0A0A;
                        } */
                    }
                }
            }
        }
    }
}

.page_product_details {
    .productSec {
        background-color: #842E30;

        .headingWrap {
            text-align: left;

            .secH {
                color: #fff;
            }

            p {
                color: #fff;
            }
        }

        .productSlider {
            .productItem {
                .productImg {
                    /* background-color: #fff; */
                }

                .productTitleWrap {
                    .productTitleLeft {
                        h4 {
                            color: #fff;
                        }
                    }
                }

                &.slick-current.slick-active {
                    .productTitleWrap {
                        .productTitleLeft {
                            h4 {
                                color: #fff;
                            }

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

        .slick-arrow {
            top: -16%;
            transform: translateY(16%);

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

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

/* diamond */
.postid-104 {

    .prodBenefitSec {
        background-color: #810400;
    }

    .productSec {
        background-color: #810400;
    }
}

/* supreme */
.postid-156 {

    .prodBenefitSec {
        background-color: #000b87;
    }

    .productSec {
        background-color: #000b87;
    }
}

/* gold */
.postid-433 {

    .prodBenefitSec {
        background-color: #b98700;
    }

    .productSec {
        background-color: #b98700;
    }
}

/* nutri grow mash */
.postid-562 {

    .prodBenefitSec {
        background-color: #1a1e89;
    }

    .productSec {
        background-color: #1a1e89;
    }
}

/* silver ration */
.postid-417 {

    .prodBenefitSec {
        background-color: #004b24;
    }

    .productSec {
        background-color: #004b24;
    }
}

/* nutri grow pellet */
.postid-589 {

    .prodBenefitSec {
        background-color: #0d6bb5;
    }

    .productSec {
        background-color: #0d6bb5;
    }
}

/* nutri lite */
.postid-587 {

    .prodBenefitSec {
        background-color: #270031;
    }

    .productSec {
        background-color: #270031;
    }
}

/* natural eco */
.postid-590 {

    .prodBenefitSec {
        background-color: #002d13;
    }

    .productSec {
        background-color: #002d13;
    }
}

/* nutri pro */
.postid-588 {

    .prodBenefitSec {
        background-color: #523c3f;
    }

    .productSec {
        background-color: #523c3f;
    }
}

/* nutri pro */
.postid-586 {

    .prodBenefitSec {
        background-color: #a20106;
    }

    .productSec {
        background-color: #a20106;
    }
}


/* ======= start responsive ======== */

@media(max-width: 1600px) {
    .page_product_details {
        & .productSec {
            & .slick-arrow {
                &.slick-prev {
                    right: 200px;
                }

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

@media(max-width: 1366px) {
    .prodOverviewSec {
        .prodOverviewLeft {
            h2 {
                font-size: 38px;
            }

            & .prodOverDet {
                h6 {
                    font-size: 22px;
                }

                & ul {
                    li {
                        font-size: 16px;
                        line-height: 24px;

                    }
                }
            }
        }
    }

    /* end product details overview */

    .facilitySec {
        & .facilityBtm {
            & .facilityCard {
                & .facilityCardInn {
                    height: 210px;

                    & .facilityTxt {
                        p {
                            font-size: 20px;
                            line-height: 24px;
                        }
                    }
                }
            }
        }
    }

    /* end facility */

    .prodSpecificationTab {
        & .listWrap {
            & .tabs {
                li {
                    font-size: 32px;
                }
            }

            & .listContBox {
                & .tab_content {
                    & .speciTableDiv {
                        & table {
                            & tbody {
                                & tr {
                                    & td {
                                        font-size: 18px;

                                        &:first-child {
                                            font-size: 22px;
                                        }
                                    }

                                    &:first-child {
                                        & td {
                                            &:first-child {
                                                & table {
                                                    & tbody {
                                                        & tr {
                                                            &:first-child {
                                                                & td {
                                                                    &:first-child {
                                                                        font-size: 22px;
                                                                    }
                                                                }
                                                            }

                                                            & td {
                                                                font-size: 18px;
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* ===== end product details some video */

    .someVideoSec {
        & .someVideoSecInn {
            & .videoCard {
                & .videoCardInn {
                    .videoCardPlaybtn {
                        width: 60px;
                        height: 60px;

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

    /* ==== end product details some video */
}

@media(max-width: 1280px) {

    .someVideoSec {
        & .someVideoSecInn {
            & .videoCard {
                & .videoCardInn {
                    .videoFig {
                        height: 350px;
                    }
                }
            }
        }
    }

    /* === end product details some video */

}

@media(max-width: 1200px) {
    .prodOverviewSec {
        & .prodOverviewLeft {
            h2 {
                font-size: 40px;
            }
        }
    }

}

@media(max-width: 1199px) {
    .prodOverviewSec {
        .prodOverviewLeft {
            & .prodOverDet {
                ul {
                    display: block;

                    li {
                        width: 100%;
                        font-size: 18px;
                        line-height: 35px;
                    }
                }
            }
        }

        &::after {
            content: normal;
        }
    }

    .page_product_details {
        & .productSec {
            & .slick-arrow {
                &.slick-prev {
                    right: 70px;
                }

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

    /* ==== end product details overview ====== */

    .facilitySec {
        &.prodBenefitSec {
            .facilityBtm {
                margin-top: 40px;
            }
        }
    }

    /* facility */


    /* ==== end product details tab*/
}

@media(max-width: 1024px) {
    .prodSpecificationTab {
        & .listWrap {
            & .listContBox {
                & .tab_content {
                    & .speciTableDiv {
                        & table {
                            & thead {
                                th {
                                    font-size: 22px;
                                    padding: 10px 10px;
                                }
                            }

                            & tbody {
                                & tr {
                                    td {
                                        padding: 10px 10px;
                                    }

                                    &:first-child {
                                        & td {
                                            &:first-child {
                                                & table {
                                                    & tbody {
                                                        & tr {
                                                            & td {
                                                                &:first-child {
                                                                    padding: 15px 10px;
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}


@media(max-width: 991px) {
    .prodOverviewSec {
        & .prodOverviewLeft {
            & .prodOverDet {
                h6 {
                    font-size: 23px;
                }
            }
        }

        .dskOverProdImg {
            display: none;
        }

        .mobOverProdImg {
            display: block;

        }



        .prodOverviewRight {
            width: 90%;
            margin: 0 auto 30px;

            .prodOverviewFig {
                height: 350px;
            }
        }
    }

    .page_product_details {
        & .productSec {
            padding-bottom: 100px;

            .headingWrap {
                text-align: center;
            }

            & .slick-arrow {
                top: auto;
                transform: unset;
                bottom: -40px;

                &.slick-prev {
                    right: auto;
                    left: 50%;
                    transform: translateX(-50%);
                }

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

    /* === end overview */


    .prodSpecificationTab {
        & .listWrap {
            .tabs {
                margin-bottom: 30px;

                li {
                    font-size: 30px;
                }
            }

            & .listContBox {
                & .tab_content {
                    & .speciTableDiv {
                        & table {
                            & tbody {
                                & tr {
                                    & td {
                                        font-size: 16px;

                                        &:first-child {
                                            font-size: 20px;
                                        }
                                    }

                                    &:first-child {
                                        & td {
                                            &:first-child {
                                                & table {
                                                    & tbody {
                                                        & tr {
                                                            & td {
                                                                font-size: 16px;
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}


@media(max-width: 767px) {

    .prodOverviewSec {
        & .prodOverviewRight {
            width: 100%;
        }
    }

    /* product details overview */



    .someVideoSec {
        & .someVideoSecInn {
            & .videoCard {
                & .videoCardInn {
                    &::after {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(218, 10, 10, 0.41);
                        border-radius: 16px;
                    }

                    .videoCardPlaybtn {
                        background-color: #fff;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);

                        svg {

                            color: #DA0A0A;
                        }
                    }
                }
            }
        }
    }

    /* ==== end some video */


    .prodSpecificationTab {
        & .listWrap {
            & .tabs {
                margin-bottom: 20px;

                li {
                    font-size: 26px;
                }
            }

            .listContBox {
                max-width: 100%;
            }
        }
    }


    /* === end product details tab ==== */

    .page_product_details {
        & .productSec {
            & .slick-arrow {
                &.slick-prev {
                    left: 44%;
                    transform: translateX(-44%);
                }

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

    /* end product */

}

@media (max-width: 620px) {
    .facilitySec {
        & .facilityBtm {
            & .facilityCard {
                & .facilityCardInn {
                    height: auto;
                }
            }
        }
    }
}

@media(max-width: 575px) {
    .prodOverviewSec {
        & .prodOverviewLeft {
            h2 {
                font-size: 35px;
            }

            & .prodOverDet {
                & ul {
                    column-count: 1;

                    li {
                        font-size: 16px;
                        line-height: 27px;
                    }
                }
            }
        }

        & .prodOverviewRight {
            /* width: 90%; */

            .prodOverviewFig {
                height: 250px;
            }
        }
    }

    /* === end product overview ===== */

    .facilitySec {
        &.prodBenefitSec {
            & .facilityBtm {
                margin-top: 30px;

                & .facilityCard {
                    .facilityCardInn {
                        background-color: #fff;

                        & .facilityFig {
                            img {
                                filter: none;
                            }
                        }

                        & .facilityTxt {
                            p {
                                color: #000;
                            }
                        }
                        &::after {
                            content: normal;
                        }
                    }
                }
            }
        }
    }

    /* === product details facility sec ====== */

    .prodSpecificationTab {
        & .listWrap {
            & .tabs {
                li {
                    font-size: 24px;

                    &::before {
                        bottom: -1px;
                        height: 3px;
                    }

                    &.active {
                        &::before {
                            width: 50px;
                        }
                    }
                }
            }
        }
    }

    /* ==== end product details tab */

    .page_product_details {
        & .productSec {
            & .slick-arrow {
                &.slick-prev {
                    left: 40%;
                    transform: translateX(-40%);
                }
            }
        }
    }


}

@media(max-width: 480px) {
    .prodOverviewSec {
        & .prodOverviewLeft {
            h2 {
                font-size: 30px;
            }

            & .prodOverDet {
                h6 {
                    font-size: 21px;
                }
            }
        }

        .prodOverviewRight {

            /* width: 90%; */
            .prodOverviewFig {
                height: 200px;
            }
        }
    }

    /* === end overview ==== */

    .prodSpecificationTab {
        & .listWrap {
            & .tabs {
                li {
                    font-size: 18px;
                }
            }

            & .listContBox {
                & .tab_content {
                    & .speciTableDiv {
                        & table {
                            & thead {
                                th {
                                    font-size: 16px;
                                    padding: 5px 5px;
                                }
                            }

                            & tbody {
                                & tr {
                                    & td {
                                        font-size: 14px;
                                        padding: 5px 5px;

                                        &:first-child {
                                            font-size: 16px;
                                            padding: 5px 5px;
                                        }
                                    }

                                    &:first-child {
                                        & td {
                                            &:first-child {
                                                & table {
                                                    & tbody {
                                                        & tr {
                                                            &:first-child {
                                                                & td {
                                                                    &:first-child {
                                                                        font-size: 16px;
                                                                        padding: 5px 5px;
                                                                    }
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* ==== product details tab ===== */
}


/* ======= end responsive ========= */