/*.cabeza-pagina,
.contenido-pagina,
.pie-pagina {
    margin-top: 20px;
    margin-bottom: 10px;
}*/

.cabeza-pagina_P {
    text-align: left;
    margin: 2px 2px 2px 2px;
    align-items: center;
    padding: 5px 5px 5px 5px;
    /*padding-left: 20px;*/
}

.contenido-pagina_P {
    text-align: left;
    margin: 2px 2px 2px 2px;
    align-items: center;
    padding: 5px 5px 5px 5px;
}

.pie-pagina_P {
    text-align: left;
    margin: 2px 2px 2px 2px;
    text-align: center;
    align-items: center;
    padding: 4px 4px 4px 4px;
}


:root {
    --mar: 2%;
    --pad: 2%;
    --mar_m: 1%;
    --pad_m: 1%;
    --border: 4% / 9%;
}

/*container left*/
.container__left-INS {
    display: flex;
    align-items: center;
    margin: var(--mar);
    padding: var(--pad);
}

.imagen__left-INS {
    width: 55%;
    height: auto;
    border-radius: var(--border);
}

.imagen__left-INS:hover {
    transform: translate(30%, 40%) scale(1.2);
}

.text__right-INS {
    width: 45%;
    padding-left: 15px;
}

.right__title-INS {
    width: 100%;
    font-size: 35px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(to top, #aa4b6b 45%, #6b6b83 45%);
    /*text-shadow: -4px -8px 4px #FFEFBA;*/
    letter-spacing: 2px;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.right__title-INS:hover {

    color: transparent;
    background: linear-gradient(to top, #bdc3c7 45%, #2c3e50 45%);
    /*text-shadow: -4px -8px 4px #FFEFBA;*/
    letter-spacing: 1.5px;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.right__description-INS {
    font-family: 25px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;

}

/*container right*/
.container__right-INS {
    display: flex;
    align-items: center;
    margin: var(--mar);
    padding: var(--pad);
}

.imagen__right-INS {
    width: 55%;
    height: auto;
    border-radius: var(--border);
}

.imagen__right-INS:hover {
    transform: translate(-30%, 40%) scale(1.2);
}

.text__left-INS {
    width: 45%;
    padding-right: 15px;
}

.left__title-INS {

    font-size: 35px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(to top, #aa4b6b 45%, #6b6b83 45%);
    /*text-shadow: -4px -8px 4px #FFEFBA;*/
    letter-spacing: 2px;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.left__title-INS:hover {

    color: transparent;
    background: linear-gradient(to top, #bdc3c7 45%, #2c3e50 45%);
    /*text-shadow: -4px -8px 4px #FFEFBA;*/
    letter-spacing: 1.5px;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.left__description-INS {
    font-family: 25px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
}

.btn__Prin-INS {
    text-decoration: none;
    border: 0;
    background: darkcyan;
    color: #ffffff;
    font-weight: 900;
    padding: 15px 20px;
    font-size: 13px;
    border-radius: 40px;
    cursor: pointer;
    transition: .5s, color .10s;
}

.btn__Prin-INS:hover {
    background-image: linear-gradient(144deg, #af40af, #5b42f3 50%, #00ddeb);
    color: black;
    transform: scale3d(1.1, 1.1, .3);
}

@media only screen and (max-width: 800px) {
    .btn__Prin-INS {
        background: cornflowerblue;
        color: black;
    }

    /*container left*/
    .container__left-INS {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: var(--mar_m);
        padding: var(--pad_m);
        flex-wrap: wrap;
        /* Permite que los elementos se ajusten en una nueva fila en pantallas más pequeñas */
    }

    .imagen__left-INS {
        width: 100%;
        height: auto;
        margin: var(--mar_m);
        padding: var(--pad_m);
        border-radius: 0%;
    }

    .imagen__left-INS:hover {
        transform: none;
        /*transform: scale(1.1) rotate(0deg);*/
        /* Elimina la transformación en hover en pantallas pequeñas */
    }

    .text__right-INS {
        width: 100%;
        /* Ocupa todo el ancho en pantallas pequeñas */
        padding: 0;
    }

    .right__title-INS {
        font-size: 100%;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-transform: uppercase;
        color: transparent;
        background: linear-gradient(to top, #aa4b6b 45%, #6b6b83 45%);
        letter-spacing: 2px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }


    .right__description-INS {
        font-size: 100%;
        /* Corrige la propiedad de fuente */
        font-family: Arial, Helvetica, sans-serif;
        text-align: justify;
    }

    /*container right*/
    .container__right-INS {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: var(--mar_m);
        padding: var(--pad_m);
        flex-wrap: wrap;
    }

    .imagen__right-INS {
        width: 100%;
        height: auto;
        margin: var(--mar_m);
        padding: var(--pad_m);
        border-radius: 0%;
    }

    .imagen__right-INS:hover {
        transform: none;
        /*transform: scale(1.1) rotate(0deg);*/
    }

    .text__left-INS {
        width: 100%;
        padding: 0;
    }

    .left__title-INS {
        font-size: 100%;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-transform: uppercase;
        color: transparent;
        background: linear-gradient(to top, #aa4b6b 45%, #6b6b83 45%);
        letter-spacing: 2px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .left__description-INS {
        font-size: 100%;
        font-family: Arial, Helvetica, sans-serif;
        text-align: justify;
    }

}

/*Conten noticia*/
.Cont_noticia-INS {
    width: 90%;
    margin: 20px auto;
    background-color: #449;
    color: #fff;
    padding: 15px;
    height: 15%;
    text-align: center;
    align-items: center;
}

.reset {
    clear: both;
}

.Cont_Addmaterial-INS {
    width: 90%;
    margin: 10px auto;
    background-color: whitesmoke;
    color: black;
    padding: 15px;
    height: 15%;
    text-align: center;
    align-items: center;
}





/*1330
display: flex;
    flex-direction: column;
    min-height: 100%;
 flex: 1;


.contanier {
    text-align: center;
    margin: 0px 16px 12px;
    padding: 12px 12px;
    background: linear-gradient(#bdc3c7, #7f99b3);
    height: auto;
    width: auto;
}

.title {
    font-size: 34px;
    font-family: 'Verdana';
    text-align: center;
    border-radius: 5px;
    border-bottom: red 5px solid;
}

.barra,
.contenido {
    margin-top: 5px;
    margin-bottom: 10px;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;

    border: 1px solid #e7e7e7;
    background-color: #f3f3f3;

}

.itemlist {
    float: left;
    border-bottom: 1px black solid;
}

.itemlist a {
    font-size: 18px;
    font-family: 'Verdana';
    display: block;
    color: darkblue;
    text-align: center;
    padding: 12px 16px;
    text-decoration: none;
}

.itemlist a:hover {
    background-color: #DECBA4;
}


.img-a {
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
    /*max-width:100%;
    width:auto;
    height:auto;
    overflow: auto;
}

.img-cuerpo {
    width: 500px;
    max-width: 100%;
    width: auto;
    height: auto
}

.context h2 {
    margin: 10px 20px;
}

/*Container
.contenido_descrip {
    display: block;
    transition: all 500ms;
}

.contenido_expli {
    display: none;
    transition: all 500ms;
}

.contenido_guia {
    display: none;
    transition: all 500ms;
}

.contenido_enlace {
    display: none;
    transition: all 500ms;
}

.contenido_subir {
    display: none;
    transition: all 500ms;
}

.subir_archivo {
    margin: 15px 15px 15px 15px;
    text-align: center;
    max-width: auto;
}
.file_in {
    margin: auto;
    text-align: center;
    border-style: dotted dashed;
    border-radius: 5px;
    border-color: #4e594e;
    background: linear-gradient(#f6f6f6, #c5c5c5, #f5f5f5);
    font-family: verdana, arial;
    font-size: 10pt;
    width: auto;
    height: 160px;
    max-width: auto;
    height: 200px;
}

.file_in input[type="file"] {
    opacity: 1;
    width: 200px;
    height: 32px;
    display: inline-block;
}*/