.row.equal-cols {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.equal-cols:before,
.row.equal-cols:after {
    display: block;
}

.row.equal-cols>[class*='col-'] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.row.equal-cols>[class*='col-']>* {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.site-heading h3 .bg-vector {
    position: absolute;
    left: 0;
    top: 0px;
    width: 287px;
    height: 7px;
    background: url(assets/img/home/barra_txt.svg) no-repeat;
    z-index: 0;
    -webkit-animation: shape-animation 3s infinite;
    animation: shape-animation 3s infinite;
}

.difuminado {
    position: relative;
    padding: 20px 100px;
    border-radius: 30px;
    background: inherit;
    margin-left: -5%;
}

.difuminado::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    padding: 2px;
    /* Grosor del borde */
    background: linear-gradient(to right, #318CE7, rgba(49, 140, 231, 0));
    -webkit-mask: linear-gradient(white, white) content-box,
        linear-gradient(white, white);
    mask: linear-gradient(white, white) content-box,
        linear-gradient(white, white);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    /* Para que no bloquee interacciones */
}

@media (max-width: 768px) {
    .difuminado {
        padding: 0;
        margin-left: 0;
        border-radius: 0;
    }

    .difuminado::before {
        display: none;
    }
}

.fa-bars:before {
    content: url(../img/home/menu.svg) !important;
}

.fa-times:before {
    content: url(../img/home/menu-up.svg) !important;
}