.bloque1 {
    margin: 0 auto;
    max-width: 1170px;
    text-align: center;
    margin-top: 70px;
}

.bloque1 .color-naranja {
    color: #ee730a;
}

.bloque1 .title h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 40px 0 10px 0;
}

.bloque1 .grid-col-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.bloque1 .banner {
    margin-bottom: 20px;
}

.acordion-content {
    margin-bottom: 9px;
    background-color: #fff;
    padding: 0 15px;
}

.acordion-content a {
    color: #006cba;
}

.acordion-content ul {
    list-style: inside;
    margin-left: 10px;
}

.acordion-heading {
    display: flex;
    margin: 0;
    padding: 10px 0px;
    color: #000;
    justify-content: space-between;
    cursor: pointer;
}

.acordion-heading .fa-chevron-down {
    transform: rotate(0deg);
    transition: all .2s;
    height: 20px;
}

.acordion-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .2s ease-out;
}

.acordion-checkbox {
    display: none;
}

.acordion-checkbox:checked+.acordion-heading+.acordion-body {
    max-height: 9999px;
    transition: max-height 1s ease-in;
    text-align: left;
}

.acordion-checkbox:checked+.acordion-heading .fa-chevron-down {
    transform: rotate(180deg);
}

@media only screen and (min-width: 768px) {
    .bloque1 .title h2 {
        font-size: 32px;
        font-weight: bold;
        margin: 40px 0 10px 0;
    }
    .bloque1 .grid-col-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}