.banner-cta-section {
    background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'>\<filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='2' stitchTiles='stitch'/></filter>\<rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
}

.banner-cta-container {
    padding-top: 120px;
    gap: 111px;
}

.banner-cta-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px;
}

.banner-cta-desc {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.banner-cta-button {
    background-color: var(--bs-main-500);
    color: var(--bs-black);
    width: fit-content;
    padding: 12px 32px;
    height: 48px;
    font-weight: 600;
    border-radius: 2px;
    gap: 12px;
}

.banner-cta-content, .banner-cta-image {
    width: 50%;
}

.banner-cta-button:hover {
    color: var(--bs-black);
}

.banner-cta-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2;
}

.banner-cta-text span {
    display: block;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.banner-cta-text span:last-child {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

/* Hover */
.banner-cta-button:hover .banner-cta-text span:first-child {
    transform: translateY(-100%);
}

.banner-cta-button:hover .banner-cta-text span:last-child {
    transform: translateY(-100%);
}


@media screen and (max-width: 1200px) {
    .banner-cta-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
        padding-top: 40px;
    }

    .banner-cta-content {
        width: 100%;
    }

    .banner-cta-image {
        align-self: center !important;
    }
}

@media screen and (max-width: 992px) {

    .banner-cta-title {
        font-size: 18px;
        line-height: 20px;
    }

    .banner-cta-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .banner-cta-button {
        width: auto;
    }

    .banner-cta-image, .banner-cta-content {
        width: 100% !important;
    }

    .banner-cta-image {
        justify-content: center;
    }

    .banner-cta-image img {
        max-height: 293px;
    }
}