.card-etapa {
    width: 100%;
    max-width: 370px;
    min-height: 374px;
    position: relative;

    .box-img {
        height: 230px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
        -moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
        box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
    
    }
    .box-info {
        padding: 20px 0 35px;

        h2 {
            font-size: 20px;
        }
        .wysiwyg {
            column-count: unset;
        }
    }
    &:after {
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        background: rgba(172, 121, 99, 0.5);
        z-index: -1;
        
        @media(max-width:900px) {
            display: none;
        }
    }
}

.card-not-item {
    margin-top: 140px;
    padding-top: 10px;
    position: relative;

    &:before {
        content: '';
        width: 10px;
        height: 10px;
        top: -10px;
        left: -10px;
        right: 0;
        position: absolute;
        margin: 0 auto;
        border-radius: 50%;
        background:#23524e;
    }

    @media(max-width:900px) {
        display: none;
    }
}

.wysiwyg {
    text-align: justify !important;
}