/* .product-offer {
    --Product-Offer-Horisontal-Padding: 120px;
    --Product-Offer-Content-Vertical-Padding: 160px;
    --Product-Offer-Content-Horisontal-Padding: 120px;
    padding: 0 var(--Product-Offer-Horisontal-Padding);

    .product-offer-content {
        padding: var(--Product-Offer-Content-Vertical-Padding) var(--Product-Offer-Content-Horisontal-Padding);
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 64px;
        align-self: stretch;
        border-radius: 100px;
        background: linear-gradient(180deg, #38364C 0%, #282737 100%);
        flex-direction: row-reverse;

        .product-offer-img {
            width: 512px;
            height: 379px;
        }

        .product-offer-description {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 48px;
            flex: 1 0 0;

            .product-offer-text {
                font-size: 48px;
                font-weight: 700;
                line-height: 68px;
                letter-spacing: -0.96px;
                color: var(--Colors-Text-Primary-Light);
            }
            
            .product-offer-arrow {
                position: absolute;
                right: 95px;
                bottom: -74.5px;
                width: 131px;
                height: 192px;
                transform: rotate(90deg);
            }
        }
    }

    @media screen and (max-width: 1800px) {
        --Product-Offer-Horisontal-Padding: 100px;
        --Product-Offer-Content-Horisontal-Padding: 110px;
    }

    @media screen and (max-width: 1680px) {
        --Product-Offer-Horisontal-Padding: 80px;
        --Product-Offer-Content-Horisontal-Padding: 100px;
    }

    @media screen and (max-width: 1560px) {
        --Product-Offer-Horisontal-Padding: 60px;
        --Product-Offer-Content-Horisontal-Padding: 90px;
    }

    @media screen and (max-width: 1460px) {
        --Product-Offer-Horisontal-Padding: 40px;
        --Product-Offer-Content-Horisontal-Padding: 80px;
    }

    @media  screen and (max-width: 1380px) {
        --Product-Offer-Content-Horisontal-Padding: 72px;
        .product-offer-content {
            gap: 48px;
            .product-offer-img {
                width: 434px;
                height: 321px;
            }
        }
    }

    @media  screen and (max-width: 1280px) {
        --Product-Offer-Content-Horisontal-Padding: 64px;
        .product-offer-content {
            gap: 32px;
        }
    }

    @media  screen and (max-width: 1180px) {
        --Product-Offer-Horisontal-Padding: 20px;
        --Product-Offer-Content-Horisontal-Padding: 56px;
    }

    @media screen and (max-width: 1120px) {
        --Product-Offer-Horisontal-Padding: 0;
        --Product-Offer-Content-Horisontal-Padding: 40px;
        --Product-Offer-Content-Vertical-Padding: 128px;

        .product-offer-content {
            border-radius: 0;

            .product-offer-description {

                .product-offer-arrow {
                    width: 100px;
                    height: 148px;
                    right: 33px;
                    bottom: 10px;
                }
            }
        }
    }

    @media screen and (max-width: 980px) {
        --Product-Offer-Content-Vertical-Padding: 104px;

        .product-offer-content {
            flex-direction: column-reverse;
            gap: 80px;

            .product-offer-description {
                align-items: center;
                align-self: stretch;

                .product-offer-text {
                    text-align: center;
                }

                .product-offer-arrow {
                    display: none;
                }
            }
        }
    }

    @media screen and (max-width: 500px) { 
        --Product-Offer-Content-Horisontal-Padding: 20px;
        --Product-Offer-Content-Vertical-Padding: 56px;

        .product-offer-content {
            gap: 64px;

            .product-offer-description {
                .product-offer-text {
                    font-size: 40px;
                    line-height: 56px;
                    letter-spacing: normal;
                }
            }

            .product-offer-img {
                width: 335px;
                height: 250px;
            }
        }
    }
}

html[dir="rtl"] {
    .product-offer {
        .product-offer-content {
            .product-offer-arrow {
                right: unset;
                left: 95px;
                transform: rotateY(180deg) rotate(90deg);

                @media screen and (max-width: 1120px) {
                    left: 33px;
                }
            }
        }
    }
} */

.product-offer {
    --Product-Offer-Horisontal-Padding: 120px;
    --Product-Offer-Content-Vertical-Padding: 160px;
    --Product-Offer-Content-Horisontal-Padding: 120px;
    padding: 0 var(--Product-Offer-Horisontal-Padding);
}
.product-offer .product-offer-content {
    padding: var(--Product-Offer-Content-Vertical-Padding) var(--Product-Offer-Content-Horisontal-Padding);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 64px;
    align-self: stretch;
    border-radius: 100px;
    background: linear-gradient(180deg, #38364c 0%, #282737 100%);
    flex-direction: row-reverse;
}
.product-offer .product-offer-content .product-offer-img {
    width: 512px;
    height: 379px;
}
.product-offer .product-offer-content .product-offer-description {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    flex: 1 0 0;
}
.product-offer .product-offer-content .product-offer-description .product-offer-text {
    font-size: 48px;
    font-weight: 700;
    line-height: 68px;
    letter-spacing: -0.96px;
    color: var(--Colors-Text-Primary-Light);
}
.product-offer .product-offer-content .product-offer-description .product-offer-arrow {
    position: absolute;
    right: 95px;
    bottom: -74.5px;
    width: 131px;
    height: 192px;
    transform: rotate(90deg);
}
@media screen and (max-width: 1800px) {
    .product-offer {
        --Product-Offer-Horisontal-Padding: 100px;
        --Product-Offer-Content-Horisontal-Padding: 110px;
   }
}
@media screen and (max-width: 1680px) {
    .product-offer {
        --Product-Offer-Horisontal-Padding: 80px;
        --Product-Offer-Content-Horisontal-Padding: 100px;
   }
}
@media screen and (max-width: 1560px) {
    .product-offer {
        --Product-Offer-Horisontal-Padding: 60px;
        --Product-Offer-Content-Horisontal-Padding: 90px;
   }
}
@media screen and (max-width: 1460px) {
    .product-offer {
        --Product-Offer-Horisontal-Padding: 40px;
        --Product-Offer-Content-Horisontal-Padding: 80px;
   }
}
@media screen and (max-width: 1380px) {
    .product-offer {
        --Product-Offer-Content-Horisontal-Padding: 72px;
   }
    .product-offer .product-offer-content {
        gap: 48px;
   }
    .product-offer .product-offer-content .product-offer-img {
        width: 434px;
        height: 321px;
   }
}
@media screen and (max-width: 1280px) {
    .product-offer {
        --Product-Offer-Content-Horisontal-Padding: 64px;
   }
    .product-offer .product-offer-content {
        gap: 32px;
   }
}
@media screen and (max-width: 1180px) {
    .product-offer {
        --Product-Offer-Horisontal-Padding: 20px;
        --Product-Offer-Content-Horisontal-Padding: 56px;
   }
}
@media screen and (max-width: 1120px) {
    .product-offer {
        --Product-Offer-Horisontal-Padding: 0;
        --Product-Offer-Content-Horisontal-Padding: 40px;
        --Product-Offer-Content-Vertical-Padding: 128px;
   }
    .product-offer .product-offer-content {
        border-radius: 0;
   }
    .product-offer .product-offer-content .product-offer-description .product-offer-arrow {
        width: 100px;
        height: 148px;
        right: 33px;
        bottom: 10px;
   }
}
@media screen and (max-width: 980px) {
    .product-offer {
        --Product-Offer-Content-Vertical-Padding: 104px;
   }
    .product-offer .product-offer-content {
        flex-direction: column-reverse;
        gap: 80px;
   }
    .product-offer .product-offer-content .product-offer-description {
        align-items: center;
        align-self: stretch;
   }
    .product-offer .product-offer-content .product-offer-description .product-offer-text {
        text-align: center;
   }
    .product-offer .product-offer-content .product-offer-description .product-offer-arrow {
        display: none;
   }
}
@media screen and (max-width: 500px) {
    .product-offer {
        --Product-Offer-Content-Horisontal-Padding: 20px;
        --Product-Offer-Content-Vertical-Padding: 56px;
   }
    .product-offer .product-offer-content {
        gap: 64px;
   }
    .product-offer .product-offer-content .product-offer-description .product-offer-text {
        font-size: 40px;
        line-height: 56px;
        letter-spacing: normal;
   }
    .product-offer .product-offer-content .product-offer-img {
        width: 335px;
        height: 250px;
   }
}
html[dir="rtl"] .product-offer .product-offer-content .product-offer-arrow {
    right: unset;
    left: 95px;
    transform: rotateY(180deg) rotate(90deg);
}
@media screen and (max-width: 1120px) {
    html[dir="rtl"] .product-offer .product-offer-content .product-offer-arrow {
        left: 33px;
   }
}
