/* .cta {
    --CTA-Horisontal-Padding: var(--Side-Padding-Large);
    display: flex;
    padding: 64px var(--CTA-Horisontal-Padding) 128px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;

    .cta-block {
        display: flex;
        padding: 88px 80px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: 40px;
        background-color: var(--Colors-Violet-500);
        flex-direction: row-reverse;

        &.red {
            background-color: var(--Colors-Red-Main);
        }

        .cta-logo {
            width: 268px;
            height: auto;
        }

        .cta-content {
            position: relative;
            display: flex;
            max-width: 700px;
            flex-direction: column;
            align-items: flex-start;
            gap: 40px;
            align-self: stretch;

            .cta-title {
                font-size: 48px;
                font-weight: 700;
                line-height: 68px;
                letter-spacing: -0.96px;
                color: var(--Colors-Text-Primary-Light);
                align-self: stretch;
            }

            .cta-arrow {
                height: 115px;
                width: 168px;
                position: absolute;
                right: 70px;
                bottom: -10px;
                transform: rotateY(180deg);
            }
        }
    }

    @media screen and (max-width: 1440px) {
        padding-top: 0;
    }

    @media screen and (max-width: 1280px) {
        padding-bottom: 104px;
        
        .cta-block {
            gap: 64px;
        }
    }

    @media screen and (max-width: 1200px) {
        --CTA-Horisontal-Padding: 32px;
    }

    @media screen and (max-width: 1028px) {
        --CTA-Horisontal-Padding: 0;

        .cta-block {
            border-radius: 0;
            padding: 88px 40px 88px 80px;
        }
    }

    @media screen and (max-width: 980px) {
        padding-bottom: 0;
        .cta-block {
            flex-direction: column-reverse;
            padding: 88px 40px;

            .cta-content {
                max-width: unset;
                .cta-title {
                    text-align: center;
                }

                .cta-arrow {
                    display: none;
                }
            }
        }
    }

    @media screen and (max-width: 460px) {
        .cta-block {
            padding: 88px 20px;
            gap: 48px;

            .cta-logo {
                width: 211px;
                height: auto;
            }

            .cta-content {

                .cta-title {
                    font-size: 40px;
                    line-height: 56px;
                    letter-spacing: 0;
                }
            }
        }
    }
}

html[dir="rtl"] {
    .cta {
        .cta-block {
            .cta-content {
                .cta-arrow {
                    transform: none;
                    right: unset;
                    left: 70px;
                }
            }
        }
    }
} */

.cta {
    --CTA-Horisontal-Padding: var(--Side-Padding-Large);
    display: flex;
    padding: 64px var(--CTA-Horisontal-Padding) 128px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}
.cta .cta-block {
    display: flex;
    padding: 88px 80px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 40px;
    background-color: var(--Colors-Violet-500);
    flex-direction: row-reverse;
}
.cta .cta-block.red {
    background-color: var(--Colors-Red-Main);
}
.cta .cta-block .cta-logo {
    width: 268px;
    height: auto;
}
.cta .cta-block .cta-content {
    position: relative;
    display: flex;
    max-width: 700px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}
.cta .cta-block .cta-content .cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 68px;
    letter-spacing: -0.96px;
    color: var(--Colors-Text-Primary-Light);
    align-self: stretch;
}
.cta .cta-block .cta-content .cta-arrow {
    height: 115px;
    width: 168px;
    position: absolute;
    right: 70px;
    bottom: -10px;
    transform: rotateY(180deg);
}
@media screen and (max-width: 1440px) {
    .cta {
        padding-top: 0;
   }
}
@media screen and (max-width: 1280px) {
    .cta {
        padding-bottom: 104px;
   }
    .cta .cta-block {
        gap: 64px;
   }
}
@media screen and (max-width: 1200px) {
    .cta {
        --CTA-Horisontal-Padding: 32px;
   }
}
@media screen and (max-width: 1028px) {
    .cta {
        --CTA-Horisontal-Padding: 0;
   }
    .cta .cta-block {
        border-radius: 0;
        padding: 88px 40px 88px 80px;
   }
}
@media screen and (max-width: 980px) {
    .cta {
        padding-bottom: 0;
   }
    .cta .cta-block {
        flex-direction: column-reverse;
        padding: 88px 40px;
   }
    .cta .cta-block .cta-content {
        max-width: unset;
   }
    .cta .cta-block .cta-content .cta-title {
        text-align: center;
   }
    .cta .cta-block .cta-content .cta-arrow {
        display: none;
   }
}
@media screen and (max-width: 460px) {
    .cta .cta-block {
        padding: 88px 20px;
        gap: 48px;
   }
    .cta .cta-block .cta-logo {
        width: 211px;
        height: auto;
   }
    .cta .cta-block .cta-content .cta-title {
        font-size: 40px;
        line-height: 56px;
        letter-spacing: 0;
   }
}
html[dir="rtl"] .cta .cta-block .cta-content .cta-arrow {
    transform: none;
    right: unset;
    left: 70px;
}
