.cta_bg {
    position: relative;
    background-color: #002847;
    border-radius: 1rem;
    z-index: 1;

}

.cta_bg::before {
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    content: 'HOLAKOOII WATCH';
    line-height: 1;
    background: linear-gradient(90deg, #002D50 0%, rgba(0, 45, 80, 0) 126.61%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    text-transform: capitalize;
    letter-spacing: 0.03em;
    text-wrap: nowrap;
    font-size: 6rem;
}

.cta_bg::after {
    content: '';
    background: #F5F6F7;
    filter: blur(3rem);
    opacity: 0.1;
    width: 23rem;
    height: 23rem;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: -1;

}

.cta__content {
    padding: 3rem;
}

.cta__title {
    font-size: 2.625rem;
    color: #D6E3ED;
    margin-bottom: 1rem;
    line-height: 1.2;

}

.cta__desc {
    font-size: 1.5rem;
    color: #B0C9DC;
    line-height: 2;
    margin-bottom: 2rem;
}

.cta__alert {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: .5rem;
    margin-bottom: 1rem;
    max-width: 30rem;
    color: var(--c2);
    font-size: 1.125rem;
}

.cta__form input::placeholder {
    color: #E6E6E6;
    font-size: 1.25rem;
}

.cta__form input::focus {
    border-color: var(--c1);
}

.cta__form input {
    transition: border-color 0.5s;
    background: #D4D3CE21;
    border: 1.15px solid #B3B3B3;
    border-radius: 0.5rem;
    height: 4rem;
    max-width: 30rem;
    font-size: 1.25rem;
    color: #fff;
}

.cta__form button {
    width: 5rem;
    height: 4rem;
    background-color: #D5A84A;
    color: #fff;
    font-size: 1.125rem;
    text-align: center;
    display: flex;
    align-items: center;
    border-radius: 0.5rem;
    justify-content: center;
    font-family: var(--main-font);
    font-weight: normal;
}

.cta__form {
    display: flex;
    gap: .5rem;
}

.section-cta img {
    margin-top: -4rem;
}

@media (max-width:991.98px) {
    .section-cta img {
        display: none;
    }

    .cta__title {
        font-size: 1.125rem;
        color: #D6E3ED;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .cta__content {
        padding: 1rem;
    }

    .cta__desc {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .cta_bg::before {
        font-size: 3rem;
    }


    .cta__form input::placeholder {
        font-size: .9375rem;
    }

    .cta__form button,
    .cta__form input {
        height: 3rem;
        font-size: .9375rem;
    }

}