/*
Marco Cabezas CPA Inc. - child theme CSS v6
Almost everything is handled in Avada shortcodes/options.
Only keep this if you want the diagonal stripe motif somewhere.
Add the class "mc-diagonal-stripes" to a container to show it.
*/

:root {
    --mc-blue: #4d63ff;
    --mc-cyan: #35bdf2;
}

.mc-diagonal-stripes {
    position: relative;
    overflow: hidden;
}

.mc-diagonal-stripes::after {
    content: "";
    position: absolute;
    right: -76px;
    bottom: -88px;
    width: 155px;
    height: 240px;
    background: repeating-linear-gradient(
        135deg,
        transparent 0 16px,
        var(--mc-cyan) 16px 28px,
        transparent 28px 40px,
        var(--mc-blue) 40px 52px,
        transparent 52px 64px,
        #1414c8 64px 76px
    );
    opacity: 0.38;
    pointer-events: none;
}

.mc-diagonal-stripes > .fusion-builder-row {
    position: relative;
    z-index: 2;
}
