.contenidoZigZag2 {
    display: block;
    width: 100%;
}

.contenidoZigZag2 section.seccion {
    display: flex;
    position: relative;
}

.contenidoZigZag2 section.seccion:nth-child(even) {
    display: flex;
    flex-direction: row-reverse;
}

.contenidoZigZag2 section.seccion:nth-child(odd) .contenido {
    position: absolute;
    bottom: 0px;
    left: 68%;
    text-align: left;
    transition: all 0.3s linear;
}

.contenidoZigZag2 section.seccion:nth-child(even) .contenido {
    position: absolute;
    bottom: 0px;
    right: 68%;
    text-align: right;
    transition: all 0.3s linear;
}



.contenidoZigZag2 section.seccion:hover .contenido {
    bottom: 28px;
    transition: all 0.3s linear;
}


.contenidoZigZag2 section.seccion .contenido h3.h3Innobasque {
    font-family: "Poppins", Arial, sans-serif !important;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    display: block;
    align-items: center;
    color: #1F1F1F;
    margin: 0px;
    margin-bottom: 8px;
    position: relative;
}

.contenidoZigZag2 section.seccion:nth-child(odd) .contenido h3.h3Innobasque:after {
    border: 2px solid #88C3A3;
    content: "";
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.3s linear;
}

.contenidoZigZag2 section.seccion:nth-child(odd):hover .contenido h3.h3Innobasque:after {
    width: 15px;
    height: 15px;
    background: #88C3A3;
    transition: all 0.3s linear;
}

.contenidoZigZag2 section.seccion:nth-child(even) .contenido h3.h3Innobasque:after {
    border: 2px solid #88C3A3;
    content: "";
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.3s linear;
}

.contenidoZigZag2 section.seccion:nth-child(even):hover .contenido h3.h3Innobasque:after {
    width: 15px;
    height: 15px;
    background: #88C3A3;
    transition: all 0.3s linear;
}


.contenidoZigZag2 section.seccion .contenido p.descripcionZigZag {
    font-family: "Poppins", Arial, sans-serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.03em;
    color: #1F1F1F;
    margin: 0px;
}

.contenidoZigZag2 section.seccion .contenido a {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.03em;
    color: #88C3A3 !important;
    position: relative;
    padding-right: 35px;
    margin-top: 25px;
    display: inline-block;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s linear;
}

.contenidoZigZag2 section.seccion .contenido a:hover {
    color: #eb7d57 !important;
    transition: all 0.3s linear;   
    padding-right: 40px;
}


.contenidoZigZag2 section.seccion:hover .contenido a{   
    visibility: visible;
    opacity: 1;
    transition: all 0.3s linear;
}


.contenidoZigZag2 section.seccion .contenido a:before {
    content: "";
    position: absolute !important;
    right: 3px;
    left: auto !important;
    width: 7px !important;
    height: 7px !important;
    border: 1px solid #88C3A3;
    top: 50% !important;
    transform: translateY(-50%) rotate(45deg);
    border-left: 0px solid transparent;
    border-bottom: 0px solid transparent;
    transition: all 0.3s linear !important;
}


.contenidoZigZag2 section.seccion .contenido a:hover:before{   
    transition: all 0.3s linear;
    border: 1px solid #eb7d57;
    border-left: 0px solid transparent;
    border-bottom: 0px solid transparent;
}



.contenidoZigZag2 section.seccion .contenido a:after {
    content: "";
    position: absolute !important;
    right: 3px;
    left: auto !important;
    width: 25px !important;
    height: 1px !important;
    background: #88C3A3;
    top: 50% !important;
    transform: translateY(-50%);
    transition: all 0.3s linear !important;
}

.contenidoZigZag2 section.seccion .contenido a:hover:after{   
    transition: all 0.3s linear;
    background: #eb7d57;
}

section.seccion.seccion .imagen {
    width: 60%;
    height: 450px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 20px;
    position: relative;
}

.contenidoZigZag2 section.seccion:nth-child(even) .imagen:after {
    content: "";
    position: absolute;
    width: 313px;
    height: 1px;
    background: #000;
    bottom: -20px;
    left: -20px;
}

.contenidoZigZag2 section.seccion:nth-child(even) .imagen:before {
    content: "";
    position: absolute;
    height: 220px;
    width: 1px;
    background: #000;
    bottom: -20px;
    left: -20px;
}


.contenidoZigZag2 section.seccion:nth-child(odd) .imagen:after {
    content: "";
    position: absolute;
    width: 313px;
    height: 1px;
    background: #000;
    bottom: -20px;
    right: -20px;
}

.contenidoZigZag2 section.seccion:nth-child(odd) .imagen:before {
    content: "";
    position: absolute;
    height: 220px;
    width: 1px;
    background: #000;
    bottom: -20px;
    right: -20px;
}



@media only screen and (max-width: 782px) {
    .contenidoZigZag2 section.seccion {
        display: block;
        position: relative;
    }

    section.seccion.seccion .imagen {
        width: 100%;
        height: 250px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        margin: 0px;
        position: relative;
        display: block;
    }

    .contenidoZigZag2 section.seccion:nth-child(odd) .imagen:before{
        display: none;
    }

    .contenidoZigZag2 section.seccion:nth-child(odd) .imagen:after{
        display: none;
    }

    .contenidoZigZag2 section.seccion:nth-child(odd) .contenido {
        position: relative;
        bottom: 0px;
        left: 0%;
        text-align: left;
        transition: all 0.3s linear;
        padding: 20px 20px 40px 40px;
    }

    .contenidoZigZag2 section.seccion:nth-child(odd):hover .contenido {
        bottom: 0px;
    }

    .contenidoZigZag2 section.seccion .contenido a {
        visibility: visible;
        opacity: 1;
    }

    .contenidoZigZag2 section.seccion:nth-child(even) {
        display: block;
        flex-direction: row-reverse;
    }

    .contenidoZigZag2 section.seccion:nth-child(even) .contenido {
        position: relative;
        bottom: 0px;
        right: 0%;
        text-align: left;
        transition: all 0.3s linear;
    }

    .contenidoZigZag2 section.seccion:nth-child(even) .imagen:before{
        display: none;
    }

    .contenidoZigZag2 section.seccion:nth-child(even) .imagen:after{
        display: none;
    }

    .contenidoZigZag2 section.seccion:nth-child(even) .contenido h3.h3Innobasque:after {
        border: 2px solid #88C3A3;
        content: "";
        position: absolute;
        right: auto;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        transition: all 0.3s linear;
        left: -40px;
    }

    .contenidoZigZag2 section.seccion:nth-child(even) .contenido {
        position: relative;
        bottom: 0px;
        right: 0%;
        text-align: left;
        transition: all 0.3s linear;
        padding: 20px 20px 40px 40px;
    }
}