/* banner css start */

.inner-banner-wrap {
    position: relative;
    overflow: hidden;
}

.inner-banner-wrap .banner-text {
    position: relative;
    bottom: 0px;
    width: 100%;
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    justify-content: center;
}

.inner-banner-wrap .banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
}

.inner-banner-wrap .banner-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(71.26% 90.98% at 50% 45.33%, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    display: block;
}

.inner-banner-wrap .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-text-wrap * {
    color: var(--white);
}

.banner-text-wrap {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

.banner-text-wrap h1 {
    margin-bottom: 0 !important;
}


/* banner css end */

.productdetail-tabs-section .tabs {
    display: flex;
    gap: 20px 42px;
    border-bottom: 1px solid #00000033;
    margin-bottom: 50px;
}

.productdetail-tabs-section .tab {
    background: none;
    border: 0;
    padding: 0 9px 20px;
    cursor: pointer;
    position: relative;
    font-family: var(--font-inter);
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    outline: none;
}

.productdetail-tabs-section .tab.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 5px;
    background: #387319;
}

.productdetail-tabs-section .panel {
    display: none;
}

.productdetail-tabs-section .panel.active {
    display: block;
}

.productdetail-tabs-section.tabs-animated .panel.active {
    animation: slideFromBottom .6s ease;
}

@keyframes slideFromBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.type-content-grid,
.sty-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.type-content-card,
.sty-content-card {
    overflow: hidden;
}

.type-content-card .product-detail-img {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.type-content-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1.4;
    object-fit: cover;
    display: block;
    transition: .4s
}

.type-content-card .product-detail-hover-img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.type-content-card:hover .product-detail-hover-img {
    opacity: 1;
}

.type-content-card h5,
.sty-content-card h5 {
    text-align: center;
    margin: 20px 0 30px;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--font-inter-tight);
}


/* new tab */

.product-detail-wrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-detail-wrap:last-child {
    margin-bottom: 0;
}

.product-detail-label {
    width: 200px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.product-detail-content {
    font-weight: 500;
    font-family: var(--font-inter-tight);
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.mb-50 {
    margin-bottom: 50px;
}

.specifications-grid {
    display: grid;
    grid-template-columns: 66.5% 33.5%;
    background-color: #F4F4F4;
}

.specifications-header {
    background-color: #387319;
    padding: 25px;
}

.specifications-header h2 {
    color: #ffffff;
    margin: 0;
    font-family: var(--font-inter-tight);
}

.specifications-content {
    padding: 35px 25px;
}

.specifications-card:not(:last-child) {
    margin-bottom: 30px;
}

h5.sub-heading {
    font-family: var(--font-inter-tight);
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
}

.sub-content p {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 8px;
}

.sub-content plast-child {
    margin-bottom: 0;
}

.performance-col .specifications-content {
    -moz-column-gap: 30px;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    -moz-column-fill: initial;
    -webkit-column-fill: initial;
    column-fill: initial;
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
}

.performance-col .specifications-card {
    display: inline-block;
    width: 100%;
}

.specifications-col.generic-tests-col {
    border-left: 1px solid #00000033;
}

.download-btn {
    margin-top: 25px;
    margin-bottom: 0;
    flex-direction: row-reverse;
    padding: 10px 16px !important;
    text-transform: uppercase;
}

.download-btn::before {
    content: "";
    position: relative;
    width: 20px;
    height: 20px;
    background-image: url(../images/download.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    margin-left: 5px;
    margin-right: 0;
}

.product-features-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px 0;
    margin: 0 -10px 20px;
}

.product-features-col {
    width: 20%;
    padding-left: 10px;
    padding-right: 10px;
    height: auto;
}

.product-features-card {
    border: 1px solid #00000033;
    padding: 21px 22px 14px;
    text-align: center;
    height: 100%;
}

.product-features-img img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.product-features-img {
    display: inline-flex;
    margin-bottom: 8px;
}

.product-features-card h5 {
    margin-bottom: 0;
    font-weight: 500;
    font-family: var(--font-inter-tight);
}

.site-main .product-terms ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    background: #387319;
    width: 8px;
    height: 8px;
    border-radius: 100%;
}

.site-main .product-terms ul li:not(:last-child) {
    margin-bottom: 8px;
}


/* 3 tab start */

.sty-img {
    border: 1px solid #00000033;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 386px;
}

.sty-img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    aspect-ratio: 1.4;
    display: block;
    transition: .4s;
}

.sty-content-card .sty-img:hover img {
    transform: scale(1.07);
}


/* 3 tab end */

@media (max-width: 1199px) {
    .performance-col .specifications-content {
        -moz-column-gap: 20px;
        -webkit-column-gap: 20px;
        column-gap: 20px;
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
    .product-features-col {
        width: 25%;
    }
    .sty-img {
        padding: 10px;
        min-height: 275px;
    }
}

@media(max-width:991px) {
    .inner-banner-wrap .banner-text {
        padding: 80px 0px;
        min-height: auto;
    }
    .type-content-grid,
    .sty-content-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .type-content-card h5,
    .sty-content-card h5 {
        margin: 15px 0;
    }
    .product-features-col {
        width: 33.33%;
    }
}

@media(max-width:767px) {
    .productdetail-tabs-section .tabs {
        gap: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        margin-bottom: 30px;
    }
    .product-detail-wrap {
        margin-bottom: 10px;
    }
    .specifications-grid {
        grid-template-columns: 1fr;
    }
    .specifications-col.generic-tests-col {
        border: 0;
    }
    .specifications-content {
        padding: 15px;
    }
    .specifications-header {
        padding: 15px;
    }
    .specifications-card:not(:last-child) {
        margin-bottom: 20px;
    }
    .generic-tests-col .specifications-content {
        -moz-column-gap: 20px;
        -webkit-column-gap: 20px;
        column-gap: 20px;
        -moz-column-fill: initial;
        -webkit-column-fill: initial;
        column-fill: initial;
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
    .generic-tests-col .specifications-content .specifications-card {
        display: inline-block;
    }
    .mb-50 {
        margin-bottom: 30px;
    }
    h5.sub-heading {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 8px;
    }
    .sub-content p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 5px;
    }
    .product-features-col {
        width: 50%;
    }
}

@media(max-width:574px) {
    .type-content-grid,
    .sty-content-grid {
        grid-template-columns: 1fr
    }
    .performance-col .specifications-content,
    .generic-tests-col .specifications-content {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
    .performance-col .specifications-card,
    .generic-tests-col .specifications-content .specifications-card {
        display: block;
    }
    .product-detail-label {
        width: 150px;
    }
    .product-features-col {
        width: 100%;
    }
}

@media (max-width:375px) {
    .product-detail-label {
        width: 135px;
    }
    .sty-img {
        min-height: 230px;
    }
}