.container-accesos-rapidos {
    max-width: min(1240px,95%);
    margin: auto;
    padding: 0 10px;
}

.accesos-rapidos .py-5>p,
.ct-fondo-rojo>p {
    color: white;
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.ct-enlaces-destacados {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    width: 100%;
    border-radius: 10px 0 0 10px;
    padding: 2%;
    height: 115px;
    gap: 2%;
}

.ct-enlaces {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 5px 5px #0000000f;
    z-index: 2;
    position: relative;
    border-radius: 0 0 10px 10px;
}

a.btn-desplegarAccesos {
    background: var(--red);
    border-radius: 0 10px 10px 0;
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 37px 20px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    width: 17%;
    min-width: 125px;
    height: 115px;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
}

a.btn-desplegarAccesos:hover {
    background: black;
}

a.btn-desplegarAccesos:before {
    content: "+";
    border: 1px solid white;
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    border-radius: 6px;
    font-size: 19px;
    font-weight: bold;
    padding: 0px 7px;
}

a.btn-desplegarAccesos.active:before {
    content: "-";
}

a.flex-icons {
    display: flex;
    align-items: center;
    text-decoration: none;
    column-gap: 10px;
}

a.flex-icons p {
    margin: 0;
    line-height: 21px;
}

.ct-enlaces-destacados .lista-accesos {
    width: 100%;
}

a.btn-desplegarAccesos span {
    width: 60px;
}

.ct-mas-enlaces {
    display: flex;
    flex-wrap: wrap;
}

.ct-mas-enlaces {
    width: 100%;
    gap: 20px 4%;
    padding: 30px;
    margin-top: -10px;
    align-items: center;
    border-radius: 0 0 10px 10px;
    display: none;
}

.ct-mas-enlaces.active {
    display: flex;
}

.lista-accesos {
    width: 22%;
}

a.flex-icons:hover p {
    color: var(--red) !important;
}

@media only screen and (max-width:768px) {
    .ct-enlaces-destacados .lista-accesos {
        width: 50%;
    }
    
    .ct-enlaces-destacados {
        flex-wrap: wrap;
        gap: 40px 0;
        height: fit-content;
        border-radius: 10px;
        padding: 15px;
    }
    
    a.btn-desplegarAccesos {
        position: absolute;
        right: 0;
        bottom: 0;
        border-radius: 0 0 10px 0;
        height: 62px;
        width: 50%;
        padding: 10px;
    }

    .lista-accesos {
        width: 48%;
    }

    .ct-fondo-rojo>p {
        padding: 0 15px;
        line-height: 25px;
    }

    .Destacado:nth-child(6) {
        margin-bottom: 65px;
    }
}