.cta {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

/* BACKGROUND LAYERS */
.cta__bg > div,
.cta__overlay {
    position: absolute;
    inset: 0;
}

.cta__bg-image {
    background-size: cover;
    background-position: center;
}

.cta__overlay.is-solid {
    opacity: 0.6;
}

.cta__overlay.is-gradient {
    opacity: 0.7;
}

/* CONTENT */
.cta__container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* TEXT COLORS */
.cta--light {
    color: #fff;
}

.cta--dark {
    color: #111;
}

/* BUTTONS */
.cta__buttons {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__btn {
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* BUTTON STYLES */
.cta__btn--primary, .cta__btn--primary:visited {
    background: linear-gradient(to right, #7DB9E8, #C3AED6);
    color: #fff;
	cursor:pointer
}
.cta__btn--primary:hover{
	background: linear-gradient(to right, #7DB9E8, #C3AED6);
    color: #fff;
	cursor:pointer;
}

.cta__btn--secondary, .cta__btn--secondary:visited {
    background: #FFF;
    color: #7DB9E8;
}
.cta__btn--secondary:hover{
    background:rgba(255,255,255,0.9);   
}

.cta__btn--outline {
    border: 2px solid currentColor;
    background: transparent;
}
.cta--light .cta__btn--outline{
    border:2px solid #ffffff;
    color:#fff;
}
.cta--light .cta__btn--outline:hover{
    background:rgba(125, 185, 232, 0.25)
}