

h2 {
    font-size: calc(var(--font-size) * 2);
    font-weight: 500;
    margin-bottom: .6em;
}

p {
    margin-bottom: 0;
}

.contenedor-soportes {
    margin-top: 3em;
    margin-bottom: 5em;
}

.soporte {
    display: flex;
    background-color: #f5f5f5;
    border-radius: 2em;
    margin-bottom: 3em;
}

.soporte-image {
    /* flex: 1; */
    /* width: 70%; */
    width: 40%;
}

.soporte-image > img {
    min-height: 17em;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 2em;
    border-bottom-left-radius: 2em;
}

.soporte-image:nth-child(2n) > img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 2em;
    border-bottom-right-radius: 2em;
}

.soporte-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    padding: 0 2.5em;
    /* border: 2px solid green; */
}

.soporte-content ul {
    padding-left: 1em;
}


@media (max-width: 1200px) {
    h2 {
        font-size: calc(var(--font-size) * 1.8);
        margin-bottom: .4em;
    }
}
@media (max-width: 1000px) {
    h2 {
        font-size: calc(var(--font-size) * 1.6);
        margin-bottom: .4em;
    }
    .soporte-content {
        padding: 0 2em;
    }
}
@media (max-width: 900px) {

    .soporte-image {
        width: 50%;
    }
    .soporte-image > img{
        min-height: 15em;
    }
    p, li {
        font-size: .85em;
    }
    ul li::marker {
        font-size: .85em;
      }
}
@media (max-width: 800px) {

    .soporte-content {
        padding: 0 1.2em;
    }

}

@media (max-width: 650px) {
    /* .soporte {
        position: relative;
    }
    .soporte-image {
        width: 100%;
        z-index: 1;
    }
    .soporte-image > img {
        border-radius: 2em;
    }
    .soporte-content {
        border-radius: 2em;
        background-color: #00000063;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 3;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .soporte-content ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    } */

    .soporte {
        /* border: 2px solid green; */
        display: flex;
        flex-direction: column;
    }
    .soporte > div {
        width: 100%;
    }
    .soporte-image > img {
        border-radius: 0;
        border-top-left-radius: 1.5em;
        border-top-right-radius: 1.5em;
        min-height: 10em;
    }
    .soporte-content {
        margin-top: .4em;
        padding: 1.4em;
    }
    .soporte {
        border-bottom-left-radius: 1.5em;
        border-bottom-right-radius: 1.5em;
    }
    .soporte:nth-child(2n) {
        /* border: 2px solid red; */
        flex-direction: column-reverse;
    }
    .soporte:nth-child(2n) img {
        border-top-left-radius: 1.5em;
        border-bottom-right-radius: 0;
    }
    ul li::marker {
        font-size: .7em;
    }
}
@media (max-width: 400px) {
    .soporte-image > img {
        border-radius: 0;
        border-top-left-radius: 1em;
        border-top-right-radius: 1em;
    }
    .soporte {
        border-bottom-left-radius: 1em;
        border-bottom-right-radius: 1em;
    }
    .soporte:nth-child(2n) img {
        border-top-left-radius: 1em;
        border-bottom-right-radius: 0;
    }
}




