.cta-links {
    --background-color: var(--gray-100);
    --outline-color: var(--primary-color-500);
    --btn-background-color: var(--primary-color-700);
    --btn-background-color-hover: var(--primary-color-800);
    --btn-text-color: var(--primary-color-100);

    background-color: var(--background-color);
    padding: 0;
    position: relative;
}

.cta-links a {
    color: white;
    text-decoration: none;
}

.cta-links a:hover {
    color: white;
    text-decoration: none;
}

.cta-links .img-cont::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgba(51,51,51,0.4);
}

.cta-links .img-cont picture {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.cta-links .content-section {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-links .title, 
.cta-links .subtitle {
    text-transform: uppercase;
    font-size: 27px;
    line-height: 1;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.479);
}

.cta-links .title {
    font-weight: 300;
}

.cta-links .subtitle {
    font-weight: 800;
}

.cta-links .subtitle i {
    font-size: 22px;
}

/* mobile nav */
.widget-cta-links > div {
    margin-bottom: 2px;
}

.widget-cta-links > div:last-of-type {
    margin-bottom: 0;
}

.widget-cta-links .cta-links {
    overflow: hidden;
}

.widget-cta-links .cta-links .title, 
.widget-cta-links .cta-links .subtitle { 
    color: white;
}

.widget-cta-links .img-cont {
    position: absolute;
}

.widget-cta-links .content-section {
    position: relative;
    padding: 38px 15px;
}
/* .widget-cta-links .cta-links > a {
    position: absolute;
} */