/* PRODUCT ENTRY SECTION */
.product__entry {
    background: #232323;
    padding: 44px 0;
    margin-bottom: 34px;
}

.product__entry__content {
    display: flex;
    gap: 72px;
}

.product__gallery, .product__entry__text {
    width: 50%;
}

.gallery__primary {
    height: 512px;
    width: 100%;
    position: relative;
    
}

.gallery__primary img {
    border-radius: 4px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery__navigation {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}

.gallery__nav__item {
    height: 92px;
    width: 25%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    cursor: pointer;
    border-radius: 4px;
    transition: box-shadow 0.2s ease-in-out;
}

.gallery__nav__item.active {
    box-shadow: 0px 0px 0px 3px rgba(242,101,34,1);
}

.gallery__nav__item img {
    border-radius: 4px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.product__entry__title {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 34px;
}

.product__entry__title span {
    color: #F26522;
}

.product__desc {
    font-size: 16px;
    opacity: 0.5;
    line-height: 1.3;
}

.product__materials {
    margin-top: 64px;
}

.product__materials h2 {
    text-transform: uppercase;
    font-size: 26px;
}

.materials__items {
    display: flex;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #F7F7F7;
    margin-bottom: 54px;
}

.material__item {
    width: 33.3%;
}

.material__item h3 {
    font-size: 20px;
    font-weight: 600;
    height: 44px;
    max-width: 140px;
    margin-bottom: 8px;
    line-height: 1.1;
}

.material__item p {
    font-size: 16px;
    opacity: 0.5;
    max-width: 150px;
    font-weight: 300;
    line-height: 1.2;
}

.product__entry__button, .product__entry__button:hover {
    background: #fff;
    color: #000 !important;
}

.product__entry__button:hover {
    background: #F26522;
    color: #fff !important;
}

/*.product__entry__button:hover:after {*/
/*;*/
/*}*/

@media (max-width: 1439px) {
    .materials__items {
        flex-direction: column;
    }

    .material__item {
        width: 100%;
    }

    .material__item h3 {
        width: 100%;
        height: auto;
    }

    .material__item p {
        max-width: 100%;
    }
}

@media (max-width: 1240px) {

    .product__entry__content {
        gap: 32px;
    }

    .gallery__primary {
        height: 360px;
    }

    .product__materials {
        margin-top: 24px;
    }

    .materials__items {
        margin-bottom: 24px;
    }

    .product__entry {
        padding: 32px 0;
    }
}

@media (max-width: 1023px) {

    .product__entry__button, .product__entry__button:hover {
        display: flex;
        background: #F26522;
        color: #fff;
        box-shadow: none;
    }

    .product__entry__button:after {
        display: none;
    }

    .product__entry__button:hover span {
        transform: translateX(0);
    }

    .product__entry__title {
        margin-bottom: 24px;
        font-size: 28px;
        width: 70%;
    }

    .product__desc {
        margin-bottom: 24px;
    }

    .gallery__primary {
        height: 463px;
    }

    .product__entry__content {
        flex-direction: column;
        gap: 24px;
    }

    .gallery__nav__item {
        height: 100px;
    }

    .product__entry__text, .product__gallery {
        width: 100%;
    }

    .materials__items {
        flex-direction: row;
        margin-bottom: 32px;
    }

    .material__item {
        width: 33.3%;
    }

    .material__item h3 {
        max-width: 140px;
        height: 44px;
    }

    .material__item p {
        max-width: 150px;
    }
}

@media (max-width: 767px) {

    .product__entry {
        padding: 24px 0;
    }

    .product__entry__title {
        width: 100%;
        font-size: 27px;
    }

    .gallery__primary {
        height: 300px;
    }

    .gallery__nav__item {
        height: 64px;
    }

    .materials__items {
        flex-wrap: wrap;
        row-gap: 38px;
    }

    .material__item {
        width: 50%;
    }
}

@media (max-width: 479px) {
   
}

/* PRODUCT SPEC SECTION */
.product__spec {
    padding: 64px 0 30px; 
}

.product__spec h2 {
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.product__spec__content {
    display: flex;
    gap: 14px;
}

.spec__block {
    padding: 34px 40px;
    background: #232323;
    border-radius: 10px;
    width: 50%;
}

.spec__block__title {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    height: 90px;
}

.spec__block__title h3 {
    font-size: 36px;
    font-weight: 600;
}

.spec__block__content {
    margin-top: 55px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.spec__block__row, .spec__block__row_2 {
    display: flex;
    gap: 35px;
}

.spec__block__column {
    width: 33.33%;
}

.spec__block__row_2 .spec__block__column {
    width: 50%;
}

.spec__block__row_2 {
    justify-content: space-between;
    align-items: end;
}


.spec__block__column h4 {
    font-size: 28px;
    font-weight: 600;
}

.spec__block__column p {
    font-size: 19px;
    color: #F26522;
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

.spec__block__row_2 h5 {
    font-size: 16px;
}

@media (max-width: 1439px) {
    .spec__block__title h3  {
        font-size: 32px;
    }

    .spec__block__column h4 {
        font-size: 24px;
    }

    .spec__block__column h4 {
        font-size: 16px;
    }


    .spec__block__content {
        margin-top: 44px;
    }
}

@media (max-width: 1240px) {
    .product__spec__content {
        flex-direction: column;
    }

    .spec__block {
        width: 100%;
    }

    .spec__block__title {
        height: auto;
    }

    .spec__block__content {
        margin-top: 32px;
        gap: 40px
    }

    .spec__block__column h4 {
        font-size: 32px;
    }
    
}

@media (max-width: 1023px) {
    .product__spec {
        padding-top: 44px;
    }

    .product__spec h2 {
        font-size: 28px;
    }

    .spec__block {
        padding: 24px;
    }

    .spec__block__title h3 {
        font-size: 36px;
    }

    .spec__block__content {
        margin-top: 74px;
        gap: 22px;
    }

    .spec__block__column h4 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .product__spec {
        padding-top: 34px;
    }

    .product__spec h2 {
        font-size: 22px;
    }

    .spec__block__title h3 {
        font-size: 24px;
    }

    .spec__block__title {
        align-items: center;
    }

    .spec__block:last-child .spec__block__title {
        align-items: flex-start !important;
    }

    .spec__block__content {
        margin-top: 64px;
    }

    .spec__block__row {
        flex-wrap: wrap;
        justify-content: space-between;
        column-gap: 0;

    }
    
    .spec__block__column {
        width: 50%;
    }

    .spec__block__column h4, .spec__block__column h5 {
        font-size: 20px;
    }

    .spec__block__column p {
        font-size: 16px;
    }

    .spec__block__row_2 {
        flex-direction: column;
    }

    .spec__block__row_2 .spec__block__column {
        width: 100%;
    }
}

@media (max-width: 479px) {
   
}

/* PRODUCT ADVANTAGES SECTION */

.product__advantages {
    padding: 64px 0 30px;
}

.product__advantages h2 {
    font-size: 34px;
    text-transform: uppercase;
}

.product__advantages__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    margin-top: 32px;
}

.product__advantages__item {
    box-shadow: inset 0px 0px 0px 2px rgba(255, 255, 255, 1);
    border-radius: 8px;
    flex-basis: calc(20% - 11.2px);
    flex-grow: 0;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    height: 214px;
    gap: 6px;
}

.product__advantages__item span {
    font-size: 34px;
    color: #F26522;
    font-weight: 600;
    line-height: 1;
}

.product__advantages__item p {
    font-size: 20px;
    line-height: 1.2;
}

.product-type-1 .cta {
    padding-top: 60px;
}

@media (max-width: 1439px) {
    .product__advantages__item p {
        font-size: 16px;
    }
}

@media (max-width: 1240px) {
    .product__advantages .scroll-area {
        overflow-x: scroll;
    }

    .product__advantages__content {
        display: flex;
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: calc(266px* 5 + 70px);
        gap: 14px;
    }

    .product__advantages__item {
        width: 266px;
        font-size: 20px;
    }
}


@media (max-width: 1023px) {
    .product__advantages {
        padding-top: 44px;
    }

    .product__advantages h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .product__advantages {
        padding-top: 34px;
    }

    .product__advantages h2 {
        font-size: 22px;
    }
}

@media (max-width: 479px) {
   
}

/* PRODUCT TYPE 2 */

/* TABLE 1 SECTION */

.product__table {
    padding: 64px 0 30px 0;
}

.product__table h2 {
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.product__table p {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
    width: 85%;
}

.product__table table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 8px;
    overflow: hidden; 
}

th, td {
    border: 1px solid #5F5F5F;
    padding: 18px;
}

.product__table__1 th, .product__table__1 td {
    width: 25%;
}

td {
    font-size: 16px;
    font-weight: 500;
}

td:first-child {
    background:rgba(255, 255, 255, .12);
}

th {
    background-color: #252525;
    font-size: 20px;
}

tr:first-child th:first-child {
    border-top-left-radius: 8px;
}
tr:first-child th:last-child {
    border-top-right-radius: 8px;
}
tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}
tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

@media (max-width: 1024px) {
    .product__table {
        padding: 44px 0 30px 0;
    }

    .product__table h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .product__table p {
        font-size: 18px;
        margin-bottom: 24px;    
    }
}

@media (max-width: 767px) {
    .product__table {
        padding: 34px 0 30px 0;
    }

    .product__table h2 {
        font-size: 22px;
    }

    .product__table p {
        font-size: 16px;
        width: 100%;
    }

    th, td {
        border: 1px solid #5F5F5F;
        padding: 10px 5px;
    }

    th {
        font-size: 14px;
    }

    td {
        font-size: 12px;
    }
}

/* PRODUCT SPECIFICATION (2 type) */

.product__spec__2 {
    padding: 64px 0 30px 0;
}

.product__spec__2 h2 {
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 42px;
}

.product__spec__2__content {
    display: flex;
    flex-direction: column;
    row-gap: 74px;
}

.spec__row {
    display: flex;
    justify-content: space-between;
    column-gap: 200px;
}

.spec__item {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    height: 150px;
    width: 25%;
}

.spec__item:nth-child(2) {
    width: 50%;
}

.spec__item span {
    font-size: 19px;
    color: #F26522;
    line-height: 1;
    font-weight: 500;
}

.spec__item h5 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.spec__tube {
    margin-top: 200px;
    display: flex;
    width: 100%;
    justify-content: center;
    position: relative;
}

.spec__tube svg {
    position: absolute;
}

.tube-mob, .mob-svg {
    display: none;
}

#line-1 {
    left: 60px;
    top: -220px;
}

#line-2 {
    left: 230px;
    top: -370px;
}

#line-3 {
    left: 460px;
    top: -400px;
}

#line-4 {
    top: -200px;
}

#line-5 {
    right: 350px;
    top: -400px;
}

#line-6 {
    top: -240px;
    right: 150px;
}

.product__statement {
    background: #F26522;
    box-shadow: none;
    margin-top: 60px;
}

.product__statement span {
    max-width: 100%;
    font-size: 32px;
    font-weight: 600;
}

.compforce__logo {
    position: absolute;
    top: 22px;
    left: 22px;
    display: block;
    z-index: 1;
    width: 134px;
    height: 134px;
}

.product__gallery {
    position: relative;
}

.product__btns {
    display: flex;
    width: 100%;
    gap: 29px;
}

.advantage__btn {
    font-size: 14px !important;
    width: 300px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
    border-radius: 6px;
    line-height: auto !important;
    letter-spacing: auto !important;
    box-sizing: border-box;
    cursor: pointer;
}



@media (max-width: 1439px) {
    #line-1 {
        left: 40px;
        top: -230px;
    }
    
    #line-2 {
        left: 240px;
        top: -420px;
    }
    
    #line-3 {
        left: 390px;
        top: -430px;
    }
    
    #line-4 {
        top: -220px;
    }
    
    #line-5 {
        right: 300px;
        top: -460px;
    }
    
    #line-6 {
        top: -270px;
        right: 50px;
    }
}



@media (max-width: 1240px) {
    .spec__item, .spec__item:nth-child(2) {
        width: 33.3%;
    }
    
    .spec__item span {
        font-size: 12px;
    }

    .spec__item h5 {
        font-size: 16px;
    }

    .spec__tube {
        display: flex;
        width: 90%;
        margin: 0 auto;
        margin-top: 100px;
        justify-content: center;
    }

    .spec__tube img {
        width: 100%;
    }

    .spec__row {
        column-gap: 100px;
    }

    #line-1 {
        left: 40px;
        top: -150px;
        transform: scale(50%);
    }
    
    #line-2 {
        left: 170px;
        top: -320px;
        transform: scale(50%);
    }
    
    #line-3 {
        left: 310px;
        top: -320px;
        transform: scale(50%);
    }
    
    #line-4 {
        top: -160px;
        transform: scale(50%);
    }
    
    #line-5 {
        right: 270px;
        top: -340px;
        transform: scale(50%);
    }
    
    #line-6 {
        top: -200px;
        right: 30px;
        transform: scale(50%);
    }

    .product__statement {
        background: #F26522;
        box-shadow: none;
        margin-top: 40px;
    }
    
    .product__statement span {
        max-width: 100%;
        font-size: 28px;
        font-weight: 600;
    }
}

@media (max-width: 1200px) {
    #line-1 {
        left: 40px;
        top: -150px;
        transform: scale(50%);
    }
    
    #line-2 {
        left: 170px;
        top: -320px;
        transform: scale(50%);
    }
    
    #line-3 {
        left: 270px;
        top: -320px;
        transform: scale(50%);
    }
    
    #line-4 {
        top: -160px;
        transform: scale(50%);
    }
    
    #line-5 {
        right: 230px;
        top: -340px;
        transform: scale(50%);
    }
    
    #line-6 {
        top: -200px;
        right: 30px;
        transform: scale(50%);
    }
}

@media (max-width: 1023px) {
    .product__spec__2 h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    #line-1 {
        left: 0px;
        top: -170px;
        transform: scale(60%);
    }
    
    #line-2 {
        left: 100px;
        top: -330px;
        transform: scale(60%);
    }
    
    #line-3 {
        left: 200px;
        top: -340px;
        transform: scale(60%);
    }
    
    #line-4 {
        top: -160px;
        transform: scale(60%);
    }
    
    #line-5 {
        right: 150px;
        top: -360px;
        transform: scale(60%);
    }
    
    #line-6 {
        top: -200px;
        right: 0px;
        transform: scale(60%);
    }

    .product__statement {
        background: #F26522;
        box-shadow: none;
        margin-top: 40px;
    }
    
    .product__statement span {
        max-width: 100%;
        font-size: 16px;
        font-weight: 600;
    }
}

    @media (max-width: 767px) {
        .product__spec__2 h2 {
            font-size: 22px;
            margin-bottom: 42px;
        }

        .product__spec__2__content {
            row-gap: 30px;
        }

        .spec__row {
            flex-direction: column;
            row-gap: 30px;
        }

        .desc-svg {
            display: none;
        }

        .product__spec__2__content__area {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .product__spec__2__content {
            flex: 1;
        }
        .spec__tube {
            width: 30%;
            margin-top: 0;
        }

        .tube {
            display: none;
        }

        .tube-mob {
            display: block;
            width: 63px !important; 
        }

        .spec__item h5, .spec__item span {
            width: 70%;
        }

        .mob-svg {
            display: block;
        }

        #line-1-mob {
            top: 50px;
            right: 50px;
        }

        #line-2-mob {
            top: 140px;
            right: 50px;
        }

        #line-3-mob {
            top: 240px;
            right: 50px;
        }

        #line-4-mob {
            top: 320px;
            right: 40px;
        }

        #line-5-mob {
            top: 420px;
            right: 70px;
        }

        #line-6-mob {
            top: 490px;
            right: 70px;
        }

        .compforce__logo {
            position: absolute;
            top: 12px;
            left: 8px;
            display: block;
            z-index: 1;
            width: 84px;
            height: 84px;
        }

        .product__btns {
            flex-direction: column;
            gap: 12px;
        }

        .product__btns .product__entry__button, .product__btns .advantage__btn {
            width: 100%;
        }
    }

    .spec__item, .spec__item:nth-child(2) {
        width: 100%;
        height: auto;
    }


/* PRODUCT TABLE 2 */

.product__table__2 th, .product__table__2 td {
    width: 50%;
}

/* PRODUCT TABLE 2 */

.product__table__2 th, .product__table__2 td {
    width: 25%;
}

/* PRODUCT TABLE 3 */

@media (max-width: 767px) {
    .product__table__3  th, .product__table__3 td{
       font-size: 10px;
       padding: 5px;   
    }
}



/* PRODUCT 2 HERO VIDEO */

@media (max-width: 1024px) {
    .product-type-2 .hero, .product-type-2 .hero__background {
        height: 500px;
    }

}

@media (max-width: 767px) {
    .product-type-2 .hero, .product-type-2 .hero__background {
        height: 286px;
    }
    
    .product-type-2 .hero .hero__background {
        transform: translate(-50%, -50%)
    }
}


/* PRODUCT 2 ADVATAGES */

.product__2__advantages {
    padding: 64px 0 30px 0;
}

.product__2__advantages h2 {
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 32px;
    width: 50%;
}


.product__2__advantages__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
}

.product__2__advantages__content .advantages__item {
    flex-basis: calc(33.33% - 9.3px);
    padding: 25px 20px;
    background: #232323;
    border-radius: 8px;
}

.product__2__advantages__content .advantages__item span {
    color: #F26522;
    font-size: 54px;
    font-weight: 600;
    line-height: 1.3;
}

.product__2__advantages__content .advantages__item p {
    font-size: 20px;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .product__2__advantages h2 {
        width: 100%;
    }
}
@media (max-width: 1023px) {
    .product__2__advantages h2 {
        font-size: 28px;
    }

    .product__2__advantages__content .advantages__item {
        flex-basis: calc(50% - 7px);
        padding: 25px 20px;
        background: #232323;
        border-radius: 8px;
    }

    .product__2__advantages__content .advantages__item:last-child {
        flex: 1;
    }
}

@media (max-width: 767px) {

    .product__2__advantages__content .advantages__item {
        padding: 16px 20px;
    }

    .product__2__advantages h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .product__2__advantages__content .advantages__item span {
        font-size: 44px;
    }
    .product__2__advantages__content .advantages__item p {
        font-size: 14px;
    }

    .product__2__advantages__content {
        gap: 8px;
    }

    .product__2__advantages__content .advantages__item {
        flex-basis: calc(50% - 4px);
    }   
}


/* PRODUCT 2 AREAS SECTION */
.product__areas h3 {
    font-size: 16px;
}

.product__areas .areas__item {
    padding: 30px 20px;
}

.product__areas .areas__content:nth-child(2) .areas__item {
    flex-basis: calc(33.3% - 9.3px);
}

.product__areas .areas__content:nth-child(2) {
    margin-top: 14px;
}

.product__areas .areas__content:nth-child(2) .areas__item h3 {
    width: 60%;
}

@media (max-width: 767px) {
    .product__areas {
        padding: 34px 0 30px 0;
    }

    .product__areas .areas__content {
       margin-top: 24px;
    }

    .product__areas h3 {
        font-size: 12px;
    }

    .product__areas .areas__item {
        padding: 14px;
    }

    .product__areas .areas__content:nth-child(2) .areas__item {
        flex-basis: calc(50% - 4px);
    }

    .product__areas .areas__content:nth-child(2) .areas__item h3 {
        width: 100%;
    }

    .product__areas .areas__content:nth-child(2) .areas__item:nth-child(3) {
        flex-basis: 100%;
    }

    .product__areas .areas__content:nth-child(2) {
        margin-top: 8px;
    }
}

/* PRODUCT 3 */

/* PRODUCT 3 ADVANTAGES 1 */

.product__3__advantages__1 .product__advantages__item {
    flex-basis: calc(25% - 10.5px);
    height: 242px;
    gap: 10px;
}

.product__3__advantages__1 .product__advantages__item span {
    font-size: 19px;
}

.product__3__advantages__1 .product__advantages__item p {
    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 1023px) {
    .product__3__advantages__1 .product__advantages__item p {
        font-size: 35px;
        font-weight: 600;
    }
}

@media (max-width: 767px) {
    .product__3__advantages__1 .product__advantages__content {
        flex-direction: column;
        width: 100%;
    }

    .product__3__advantages__1 .product__advantages__item {
        width: 100%;
        border-radius: 12px;
        box-sizing: border-box;
    }

    .product__3__advantages__1 .product__advantages__item p {
        font-size: 27px;
        font-weight: 600;
    }
}

/* PRODUCT 3 ADVANTAGES 2 */

.product__3__advantages__2.product__2__advantages h2 {
    width: 100%;
}

/* PRODUCT 3 ADVANTAGES 3 */

.product__3__advantages__3.product__2__advantages {
    background: #fff;
}

.product__3__advantages__3.product__2__advantages h2 {
    width: 100%;
    color: #000;
}

.product__3__advantages__3.product__2__advantages .advantages__item {
    background: #fff;
    box-shadow: inset 0px 0px 0px 2px rgba(0,0,0,1);
    height: 420px;
}

.product__3__advantages__3.product__2__advantages .advantages__item span {
    font-size: 102px;
}

.product__3__advantages__3.product__2__advantages .advantages__item p {
    color: #000;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
}

@media (max-width: 1240px) {
    .product__3__advantages__3.product__2__advantages .advantages__item span {
        font-size: 80px;
    }

    .product__3__advantages__3.product__2__advantages .advantages__item p {
        font-size: 18px;
    }

    .product__3__advantages__3.product__2__advantages .advantages__item {
        height: 300px;
    }
}

@media (max-width: 1023px) {
    .product__3__advantages__3.product__2__advantages .advantages__item {
        flex-basis: calc(33.33% - 9.3px);
    }
    
    .product__3__advantages__3.product__2__advantages .advantages__item span {
        font-size: 64px;
    }

    .product__3__advantages__3.product__2__advantages .advantages__item p {
        font-size: 16px;
    }

    .product__3__advantages__3.product__2__advantages .advantages__item {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .product__3__advantages__3.product__2__advantages .advantages__item {
        flex: 0 0 228px;
    }

    .product__3__advantages__3.product__2__advantages .product__2__advantages__content {
        flex-wrap: nowrap;
    }

    .product__3__advantages__3.product__2__advantages .scroll-area {
        overflow-x: scroll;
    }
}


/* PRODUCT POPUP */

/* Popup overlay styling */

#popupOverlayProduct {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Hide the overlay initially */
#popupOverlayProduct.hidden {
    display: none;
}

/* Popup box styling */
#popupProduct {
    background: #000;
    width: 1200px;
    padding: 28px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: inset 0px 0px 0px 0.5px rgba(255,255,255,1);
}

/* Close button styling */
.close-btn {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 36px;
    line-height: 0.4;
    color: #fff;
    cursor: pointer;
}

.product__popup__content img {
    width: 100%;
    height: auto;
}

.product__popup__content h2 {
    margin-top: 24px;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 24px;
    
}

.product__popup__content h2 span {
    color: #F26522;
}

@media (max-width: 1240px) {
    #popupProduct {
        width: 1000px;
    }
    
    .product__popup__content h2 {
        margin-top: 0;
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    #popupProduct {
        width: 716px;
    }
}


@media (max-width: 767px) {
    #popupProduct {
        width: 90%;
        padding: 20px;
    }
    
    .product__popup__content h2 {
        width: 80%;
        margin-top: 28px;
    }
    
    .product__popup__content img {
        height: 430px;
        width: auto;
    }
    
    .popup__table__area {
        overflow-x: scroll;
    }
    
    .popup__table__area::-webkit-scrollbar {
         display: none;
    }
}

