.fondoConsultoria {
    width: 100%;
    height: 100vh;
    background: url(../img/fondoConsultoria.png) no-repeat;
    background-size: cover;
    mix-blend-mode: multiply;
    opacity: 0.2;
    position: fixed;
}
.fondoDegradado {
    background-attachment: fixed;
}

.consultoriaBox {
    max-width: 500px;
    padding: 130px 20px 20px 20px;
    text-align: center;
}
.consultoriaBox h2 {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 20px;
}
.consultoriaBox img {
    width: auto;
    height: 35px;
}
.consultoria {
    position: relative;
}
.consultoriaSwiper {
    max-width: 900px;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    margin: 15px 0;
    overflow: hidden;
    padding: 0 30px;
    justify-content: flex-start;
    flex-flow: row nowrap;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.consultoriaBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: normal;
    max-width: 200px;
    height: 100%;
    padding: 0 15px;
    color: #3F3F3F;
    position: relative;
}
.consultoriaBtn img {
    width: auto;
    height: 30px;
    margin-right: 15px;
}
.consultoriaBtn:hover {
    color: #FF322C;
}
.consultoriaBtnLine {
    position: absolute;
    width: calc(100% - 30px);
    height: 2px;
    background: #FF322C;
    bottom: 0;
    opacity: 0;
}
.activeConsultoria {
    color: #FF322C;
}
.activeConsultoria .consultoriaBtnLine {
    opacity: 1;
}
.consultoriaContenido {
    width: 100%;
    border-radius: 24px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}
.consultoriaTitulo {
    border: 1px solid #FD5954;
    border-radius: 24px;
    padding: 30px;
    max-width: 350px;
    width: 100%;
}
.consultoriaTitulo img {
    width: auto;
    height: 40px;
    margin-bottom: 10px;
}
.consultoriaContenido h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    text-align: center;
}
.consultoriaContenido h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding: 10px 20px;
    border: 1px solid #FD5954;
    border-radius: 12px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}
.consultoriaContenido p {
    line-height: 24px;
}
.consultoriaTop, .consultoriaMid, .consultoriaBot {
    width: 100%;
}
.consultoriaUno ,.consultoriaDos {
    width: 50%;
    height: 400px;
    overflow: hidden;
    position: relative;
    padding: 0 30px;
}
.consultoriaUno {
    background: linear-gradient(115deg, rgba(18,14,15,1) 40%, rgba(127,0,20,1) 100%);
}

.consultoriaDos .imagenConsultoria {
    left: 50%;
    top: 50px;
    transform: translateX(-50%) scale(0.5);
    position: relative;
}

.consultoriaDos .iconosBox {
    bottom: 20%;
}
.iconConsultoria img {
    width: auto;
    height: 35px;
}

.consultoriaMid {
    min-height: 300px;
    background: #121212;
    align-items: flex-start;
}
.consultoriaTres, .consultoriaCuatro {
    width: 50%;
    min-height: 300px;
    position: relative;
    padding: 30px;
    justify-content: flex-start;
}
.consultoriaTres div, .consultoriaCuatro div {
    max-width: 370px;
}
.consultoriaTres::after, .consultoriaCinco::after {
    content: "";
    width: 1px;
    height: 70%;
    background: #FD5954;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.consultoriaBot {
    background: linear-gradient(115deg, rgba(18,14,15,1) 40%, rgba(127,0,20,1) 100%);
    flex-wrap: nowrap;
    align-items: flex-start;
}

.consultoriaCinco, .consultoriaSeis {
    width: 50%;
    min-height: 400px;
    position: relative;
    padding: 30px;
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.consultoriaItems {
    gap: 30px;
    margin-bottom: 30px;
}
.consultoriaLista {
    max-width: 260px;
    align-items: flex-start;
    flex-wrap: nowrap;
}
.consultoriaNumero {
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    border: 1px solid #FD5954;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    color: #FD5954;
    margin-right: 15px;
}

/*----------------------Responsive 768----------------------*/
@media only screen and (max-width: 768px){
    .consultoriaUno ,.consultoriaDos, .consultoriaTres,
    .consultoriaCuatro, .consultoriaCinco, .consultoriaSeis {
        width: 100%;
    }
    .consultoriaBot {
        flex-wrap: wrap;
    }
    .consultoriaTres::after, .consultoriaCinco::after {
        height: 1px;
        width: 70%;
        right: inherit;
        top: inherit;
        bottom: 15px;
    }
}
/*----------------------Responsive 480----------------------*/
@media only screen and (max-width: 480px) {
    .consultoriaBox h2 {
        font-size: 30px;
        line-height: 40px;
    }
}