.cta-secondary {
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
    background-color: var(--graphite);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    color: #fff;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    pointer-events: none;
    transition: background .3s ease;
}

.cta-secondary:hover::before {
    background-color: rgba(0, 0, 0, 0.75);
}

.cta-secondary h2,
.cta-secondary h3 {
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    font-family: 'Alegreya Sans SC';
}

.cta-secondary .cta-secondary-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-secondary .cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cta-secondary.has-description .cta-text {
    align-items: center;
}

@media (max-width:1199px) {
    .cta-secondary {
        padding: 64px 0;
    }
}

@media (max-width:991px) {
    .cta-secondary .cta-secondary-wrapper {
        gap: 16px;
        text-align: center;
        justify-content: center;
    }

    .cta-secondary .cta-text {
        gap: 8px;
        text-align: center;
        align-items: center;
    }

    .cta-secondary h2 br {
        display: none;
    }
}