/* Container positioning */
.container-fluid {
    position: relative;
}

/* Design Element */
.titlecopywctas-design-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.titlecopywctas-design-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.titlecopywctas {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.titlecopywctas h3 {
    text-align: center;
    color: initial;
    font-size: 20px;
    font-weight: 500;
}

.titlecopywctas h2 {
    margin-top: 0;
    text-align: center;
    display: block;
    position: relative;
}

.is-community-page .titlecopywctas h2 {
    color: var(--secondary);
}

.titlecopywctas.flip-order h2 {
    order: 1;
    margin-top: 10px;
}

.titlecopywctas.flip-order h3 {
    order: 2;
}

.titlecopywctas.flip-order .titlecopywctasCopy {
    order: 3;
}

.titlecopywctas.flip-order .ctas {
    order: 4;
}



.titlecopywctasCopy {
    text-align: center;
    width: 1200px;
    margin: auto;
    max-width: 100%;
}

.ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    gap: 0 30px;
}


@media (max-width:991px) {
    .ctas {
        flex-wrap: wrap;
    }

    .ctas a {
        margin: 15px;
    }
}