:root {
    --_highlight: color-mix(in oklab, #99ffff, transparent 75%);
}

/* body{
    background-color: #7ebcc3;
} */

objetivos-especificos{
    width: 100%;
    background-color: #7ebcc3;
    min-height: 100vh;
}

.objetivos-especificos{
    padding-top: 1rem;
    padding-bottom: 1rem;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.objetivos-especificos h1{
    padding: 1rem 2rem;
    font-size: 3.7rem;
}

.objetivos-especificos p{
    padding: 1rem 2.6rem;
    text-align: justify;
    text-justify: inter-word;
    margin: 0;
}

.objetivos-especificos .principal{
    width: 81%;
    padding: 1rem 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
}

.objetivos-especificos .secundario{
    margin-left: auto;
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
    width: 6.3rem;
}

.objetivos-especificos img{
    width: 100%;
}

.objetivos-especificos .caja{
    width: 99.6%;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.objetivos-especificos .bloques{
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    overflow-y: hidden;
}

.objetivos-especificos .bloques .bloque .numero{
    padding: 24px 39px;
    font-size: 1.3rem;
    font-weight: bold;
    color: black;
}

.objetivos-especificos .bloque {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 400px;
}

.objetivos-especificos .bloque .box{
    width: 83%;
    margin-left: auto;
    margin-right: auto;
}


.objetivos-especificos .bloque:before{
    position: absolute;
    content: '';
    border-left: 1px solid black;
    height: 320px;
    transform: translateY(15%);
}


/*
.objetivos-especificos .segundo:after, .objetivos-especificos .cuarto:after{
    position: absolute;
    content: '';
    right: 0;
    border-right: 1px solid black;
    height: 300px;
    transform: translateY(15%);
}
*/

.objetivos-especificos .bloque .descripcion{
    text-align: justify;
    padding-top: 12px;
    padding-left: 39px;
    padding-right: 39px;
    padding-bottom: 60px;
}

.objetivos-especificos button{
    background-color: rgba(100, 230, 10, 0.25);
    box-shadow: 0 0 0 0 rgba(100, 230, 10, 0.25);
    padding: .5rem;
    border-radius: 25px;
    transition: box-shadow 145ms cubic-bezier(.25, 0, .2, 1), outline-offset 145ms cubic-bezier(.25, 0, .2, 1);
}


.objetivos-especificos .controls{
    position: absolute;
    top: calc(50% - 39px/2);
    left: 1%;
    width: 98%;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
}

.objetivos-especificos button {
    cursor: pointer;
    color: white;
    background: #00737f;
    border: 2px solid #00545e;
    border-radius: 1e5px;
    box-shadow: 0 0 0 0 var(--_highlight);
    padding: .5rem;
    transition: box-shadow 145ms cubic-bezier(.25,0,.2,1), outline-offset 145ms cubic-bezier(.25,0,.2,1);
    font-family: system-ui, sans-serif;
    transition-duration: .25s;
  }

.objetivos-especificos button:hover{
    box-shadow: 0 0 0 .5rem var(--_highlight);
    transition-duration: .25s;
}

.objetivos-especificos button:disabled,
.objetivos-especificos button[disabled]{
    cursor: default;
}

.objetivos-especificos button svg{
    display: block;
    block-size: 2ch;
}


/*     GRID  Tablets    */
@media screen and (max-width: 992px) {
    nav .chkBtn{
        background-color: white;
    }

    .objetivos-especificos .controls{
        width: 100%;
        left: 0;
        padding: 0 12px;
    }

    .objetivos-especificos .bloque{
        width: 50%;
        min-width: 50vw;
    }
}

/*     moviles    */
@media screen and (max-width: 576px) {
    .objetivos-especificos h1{
        padding: 0.5rem 0.9rem;
        font-size: 14vw;
    }
    .objetivos-especificos .bloque{
        width: 90%;
        min-width: 100vw;
    }
}