#spdvSection .border_button.active,
#spdvSection .border_button:hover {
    border: 2px solid #f12d1a;
    background-color: #f12d1a;
    color: #fff;
    text-decoration: none;
}
#spdvSection .border_button a,
#spdvSection .border_button span {
    color: #000;
}
#spdvSection .border_button.active a,
#spdvSection .border_button:hover a,
#spdvSection .border_button.active span,
#spdvSection .border_button:hover span {
    color: #fff;
}
#spdvSection .border_button span {
    max-width: 280px;
    text-align: center;
}

.spdv-section {
    display: flex;
    width: 100vw;
    min-height: 100vh;
    flex-direction: column;
    height: auto;
    padding-bottom: 4vh;
}
.spdv-header {
    width: 100%;
}
.spdv-header .spdv-cover {
    height: 34vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    min-height: 350px;
}
.spdv-header .spdv-cover-movil {
    display: none;
}
.spdv-header_container {
    width: 90%;
    margin: 0 auto 4vh;
}
.spdv-header_container .section_title {
    margin: 4vh 0 8vh;
}
.spdv-header_container .spdv-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.spdv-header_container .spdv-action-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.spdv-header_container .spdv-action-item a {
    max-width: 280px;
    text-align: center;
}

.spdv-content {
    width: 90%;
    margin: 0 auto;
}
.spdv-item {
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.spdv-item.in {
    opacity: 1;
    visibility: visible;
    display: block;
}
.spdv-item.out {
    opacity: 0;
    display: none;
}

.spdv-text {
    width: 90%;
    margin: 0 auto;
}
.spdv-infografy {
    padding: 40px 0 0;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}
.spdv-infografy img {
    max-width: 900px;
    height: auto;
    width: 100%;
}

.spdv-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 0 0;
    width: 90%;
    margin: 0 auto;
    gap: 20px;
    justify-content: space-between;
}
.spdv-grid .grid-item {
    display: flex;
    flex-direction: column;
    width: 23%;
    background-color: antiquewhite;
    border-radius: 20px;
    max-width: 300px;
}
.spdv-grid .grid-item-top {
    display: flex;
    align-items: center;
    padding: 30px 0px;
    gap: 30px;
    flex-direction: column;
}
.spdv-grid .grid-item-top img {
    height: 100px;
    width: auto;
}
.spdv-grid .grid-item-top h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1rem;
}
.spdv-grid .grid-item-content {
    padding: 30px;
    flex: 1 0 auto;
    text-align: center;
}
.spdv-grid .grid-item-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2rem;
}

@media (max-width:992px) {
    .spdv-grid .grid-item {
        width: 45%;
        max-width: 100%;
    }
}
@media (max-width:767px) {
    .spdv-header .spdv-cover {
        height: auto;
        min-height: auto;
        background-image: none !important;
        text-align: center;
    }
    .spdv-header .spdv-cover-movil {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        max-width: 100%;
        margin: 0 auto;
        max-height: 250px;
    }
}
@media (max-width:500px) {
    .spdv-grid .grid-item {
        width: 100%;
    }
}