.banner {
    padding: 0;
    z-index: 99;
    min-height: 100vh;
    position: relative;
}

.banner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(101.4% 61.3% at 12.4% 100%, var(--blue) -79%, rgb(93 130 255 / 0%) 86.29293355855856%, rgb(235 239 255 / 0%) 100%) */
    background:linear-gradient(0deg,   var(--blue) -32%,   rgb(93 130 255 / 0%) 54.29%,   rgb(235 239 255 / 0%) 100%)
}

.banner::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(101.4% 61.3% at 86.6% 0%, var(--blue) -173%, rgb(93 130 255 / 0%) 86.29293355855856%, rgb(235 239 255 / 0%) 200%)
}

.banner .box {
    position: relative;
    height: 100%;
    z-index: 9999;
}

.banner .textWrapper {
    position: absolute;
    /* bottom: 0; */
    width: fit-content;
    bottom: 10%;
    padding-left: 10%;
    z-index: 99999999;

}

.banner .secondaryText {
    font-size: 28px;
    line-height: 31px;
    margin: 0;
    margin-bottom: 30px;
    width: 100%;

}


.banner .cta {
    display: flex;
    gap: 10px
}

.banner .cta a {
    display: flex;
    height: 40px;
    min-width: 150px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    font-weight: 700;


}

.banner .cta a.about {
    background: var(--white);
    color: var(--black);
}

.banner .cta a.pricing {
    background: var(--black);
    color: var(--white);
}

@media only screen and (max-width: 991px) {
    .banner .secondaryText{
        font-size: 18px;
    }
}