@charset "utf-8";

/* reglas generales */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}

/*BODY*/

.body {
    font-family: 'Poppins', sans-serif
}

/*NAVEGACIÓN PRINCIPAL*/

header {
    z-index: 10;
    display: flex;
    background-color: #b8c8a4;
    align-items: center;
}


.logo {
    z-index: 9;
    cursor: pointer;
    max-height: 150px;
    padding: 20px
}

/*NAVEGACIÓN PRINCIPAL*/
header {
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 .5em;
}

.logo {
    cursor: pointer;
    max-height: 5em;
    margin: .5em 0em;
    padding: .5em;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 100px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/*MENU HAMBURGUESA*/

#llamamenu { /*botón que llama al menú */

    background-color: #b8c8a4;
    color: #1d5353;
    padding: 1.5em;
    border: none;
    transition: all 0.3s ease 0s;
    display: flex;
    position: relative;
    z-index: 9999;
}


button:hover {
  color: rgba(126, 126, 126, 0.74);
}

header nav ul { /*capa menu desplegable*/
    color: #b8c8a4;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 100%;
    z-index: 9990;
    padding-top: 7em;
    transition: all .5s ease;
}

.visible { /*clase que lee el js para hacer visible la hamburguesa*/
    left: 0%;
    transition: all .3s ease;
}

/*MENÚ SECCIONES*/
/*
nav {
    z-index: 9;
    background: #b8c8a4;
    height: 80px;
    width: 100%;
}

nav img {
    width: 130px;
    height: 5em;
    position: absolute;
    top: 0;
    left 12%;
}

/*label.logo{
  color: white;
  font-size: 35px;
  line-height: 80px;
  padding: 0 100px;
  font-weight: bold;
}*/
nav ul {
    float: right;
    margin-right: 20px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 15px;
}

nav ul li a {
    position: relative;
    color: #1d5353;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}

a.active,
a:hover {
    transition: .5s;
    color: #3b978a;
}

.checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

/*>>>  M O B I L E   F I R S T <<<*/

/*SLIDER CARRUSEL*/

/*SLIDER*/

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
    z-index: 3;
    max-width: 100%;
    position: relative;
    margin: auto;
    background-color:#f9ebce; 
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
    z-index: 2;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.puntitos{
    background-color: #f9ebce;
    
}

/* The dots/bullets/indicators */
.dot {
    
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition:background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/*PARA TODAS LAS SECCIONES*/

h2 {
    /*Tamaño título de Sección*/
    font-size: 2.2em;
    padding: 0.55em;
}

/*BOTON PARA ARRIBA*/
#buttonf {
    display: inline-block;
    background-color: rgba(0, 0, 0, .4);
    width: 3em;
    height: 2.8em;
    text-align: center;
    border-radius: 4px;
    margin: 12px;
    position: fixed;
    bottom: .1px;
    right: .1px;
    transition: background-color .3s;
    z-index: 1000;
}

#buttonf:hover {
    cursor: pointer;
    background-color: #333;
}

#buttonf:active {
    background-color: #555;
}

#buttonf::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

/*FIN BOTON*/

/*SECCIÓN 1 FIRMÁ*/

.section1 {
    width: 100%;
    height: auto;
    background-color: #f9ebce;
    color: #023536;
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: left;

}

.section1 img {
    width: 13em;
    height: auto;
}

.firma1 {
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: .2em;
    width: 30rem;
    flex: none | [ <'flex-grow'>];

    background-color: #f9ebce;
}

.firma1 h2 {
    font-size: 2.5em;
    padding-bottom: .4em;
    line-height: 1.2em;
}

.firmap1 {
    margin-left: 1.5em;
    margin-right: 2em;
    margin-bottom: 2em;
    line-height: 1.5em;
}

.firmap2 {
    margin-left: 1.5em;
    margin-right: 2em;
    margin-top: .2em;
    margin-bottom: 1em;
    line-height: 1.5em;
    font-weight: 600;
}

.comentarios {
    margin-left: 1em;
    margin-right: 1em;
    margin-bottom: 3em;
    flex: none;
    margin-top: 2em;
    padding: 1em;
    width: 20rem;
    background-color: #f9ebce;
    border: .1em solid #b8c8a4;
    border-radius: 1em;
}

.coment1 {

    background-color: rgb(184, 200, 164);
    border-radius: 10px;
    margin-top: 0.5em;
    padding: 0.5em;
    line-height: 1.25em;

}

#progressbar {
    margin-left: 1em;
    margin-top: 1em;
    margin-right: 2em;
    background-color: white;
    border-radius: 13px;
    padding: 3px;
}

#progressbar > div {
    background-color: #3d978a;
    width: 40%;
    height: 20px;
    border-radius: 10px;
}

.botonf {
    margin-left: 0em;
    margin-right: 1em;
    margin-top: 1em;
    margin-bottom: 2em;
}

.botonfirma {
    text-decoration: none;
    font-weight: 600;
    font-size: 25px;
    color: #ffffff;
    background-color: #b8c8a4;
    border-radius: 8px;
    border: 2px solid #fff;
    margin-left: 2.5em;
    padding: 0.4em;
    padding-left: 2em;
    padding-right: 2em;
}

.botonfirma:hover {
    color: #fff;
    background-color: #023536;
}

/*FIN SECCIÓN 1 FIRMÁ*/

/* ---- SECCIÓN 2 NOVEDADES ----*/

.section2 {
    background-color: #1d5353;
    color: #f9f3e5;
    overflow: hidden;
}

.titunovedades {
    padding-top: .5em;
    color: #f9f3e5;
}

/*Contenedor de NOVEDADES*/
.novedades {
    /*TEXTO, NO IMAGEN*/
    position: relative;
    text-align: left;
    color: white;
}

/*Efecto de zoom in al posar el cursor*/
.fotonovedad1 {
    max-width: 100%;
    height: auto;
    overflow: hidden;
    filter: brightness(60%);
    margin-top: 0;
    margin-bottom: .5em;
}

.fotonovedad2 {
    max-width: 100%;
    height: auto;
    overflow: hidden;
    filter: brightness(60%);
    margin-top: 0;
    margin-bottom: .5em;
}

.fotonovedad3 {
    max-width: 100%;
    height: auto;
    overflow: hidden;
    filter: brightness(60%);
    margin-top: 0;
    margin-bottom: 1em;
}

.fotonovedad1 img {
    transition: all 0.8s ease 0s;
}

.fotonovedad1:hover img {
    transform: scale(1.5);
    filter: opacity(70%);
}

.fotonovedad2 img {
    transition: all 0.8s ease 0s;
}

.fotonovedad2:hover img {
    transform: scale(1.5);
    filter: opacity(70%);
}

.fotonovedad3 img {
    transition: all 0.8s ease 0s;
}

.fotonovedad3:hover img {
    transform: scale(1.5);
    filter: opacity(70%);
}

/*FECHA - esquina superior izquierda*/
.fechanovedad {
    position: absolute;
    top: 7%;
    left: 1em;
    font-size: 1.1em;
    text-shadow: rgba(0, 0, 0, 0.69) 0.1em 0.1em 0.1em;
}

/*Título de Novedad + breve resumen - esquina inferior izquierda*/
.titulonovedad {
    position: absolute;
    bottom: 10%;
    left: 1.2em;
    margin-right: 2em;
    text-shadow: rgba(0, 0, 0, 0.69) 0.1em 0.1em 0.1em;
}

.titulonovedad h3 {
    margin-bottom: .3em;
    font-size: 1.1em;
    line-height: 1.4em;
}

.titulonovedad article {
    font-size: .91em;
    line-height: 1.4em;
}


/*Botón Ver Más*/

.botonvermas {
    /*caja contenedora*/
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.vermas {
    /*texto*/
    background: #1d5353;
    border-color: white;
    color: #f9f3e5;
    font-size: 1em;
    margin-top: .5em;
    margin-bottom: 2em;
    padding-left: 8.2em;
    padding-right: 8em;
    padding-bottom: 1em;
    padding-top: 1em;
}

.vermas {
    /*borde redondeado*/
    border-radius: 0.5em
}

.vermas:hover {
    transition: all 0.3s ease 0s;
    background: rgba(211, 220, 193, 0.31);
}

/*PRÓXIMOS EVENTOS*/
.ProxEventos {
    padding-left: 1.2em;
}

.ProxEventos h3 {
    font-size: 1.5em;
    padding-bottom: 1em;
}

.calendario {
    padding-left: 1.2em;
}

.mes {
    margin-left: .9em;
    margin-right: .8em;
    padding: 0.4em;
    text-align: center;
    border-radius: 0.2em;
}

.mes {
    background: #f9f3e5;
    color: #023536;
    font-size: 1.3em;
    font-weight: 600;
}

.cajaeventos {
    display: flex;
    padding-top: .7em;
    padding-bottom: 3.2em;
    margin-right: 1.2em;
}

.cajaeventos .tarjeta {
    /*cada caja de evento*/
    background: #f9f3e5;
    color: #023536;
    width: 35%;
    border-radius: 0.5em;

}

.cajaeventos .tarjeta:not(:last-of-type) {
    margin-right: .8em;
}

.cajaeventos .tarjeta .evento {
    padding-top: .4em;
    padding-right: .6em;
    padding-left: .6em;
    padding-bottom: .5em;
}

.cajaeventos .tarjeta .evento a {
    text-decoration: none;
    color: #023536;
}

.cajaeventos .tarjeta:hover {
    background-color: #f9ebce;
}


.cajaeventos .tarjeta .evento .titulo {
    /*fecha del evento*/
    font-size: 2em;
    font-weight: 600;
}


.cajaeventos .tarjeta .evento .subtitulo {
    /*resumen del evento*/
    font-size: .9em;
}


/*html aparte - prox eventos*/

.eventohtml {
    background-color: #f9f3e5;
    padding-left: 2em;
    padding-right: 10%;
    padding-bottom: 3em;
    color: #023536;
}

.breadcrumbsnov {
    background-color: #f9f3e5;
    padding-left: 2em;
    padding-right: 10%;
    padding-top: .9em;
    font-size: .9em;
}

.breadcrumbsnov__item {
    display: inline-block;
}

.breadcrumbsnov__item:not(:last-of-type)::after {
    content: '>';
    margin: 0 5px;
}

.breadcrumbsnov__link {
    text-decoration: none;
    color: #023536;
}

.breadcrumbsnov__link:hover {}

.breadcrumbsnov__link--active {
    text-decoration: none;
    color: #3b978a;
    font-weight: 600;
}

.titueventohtml {
    text-align: left;
    padding-right: 40%;
    padding-left: 0;
    font-size: 2.8em;
    font-weight: 800;
}

.memoevento {
    margin-top: 3em;
    padding: 1em;
    border: solid #023536;
    border-radius: .5em;
    line-height: 1.5em;
    /*interlineado*/
}

.quieroparticipar {

    background: #1d5353;
    border-color: white;
    color: white;
    font-size: 1em;
    position: relative;
    margin-top: 2.5em;
    margin-bottom: 2em;
    margin-left: -0.10em;
    padding-left: 8.2em;
    padding-right: 8em;
    padding-bottom: 1em;
    padding-top: 1em;
    border-radius: .5em;

}

/*FIN NOVEDADES*/

/* ----- SECCIÓN 4 / Aprende Jugando ----- */

.aprendejugando {
    background-color: #b8c8a4;
    color: #023536;
    padding-bottom: 1em;
}

.titujuego h2 {
    padding-top: .9em;
    line-height: 1.em;
}

.gifjuego-mobile {
    width: 100%;
    height: auto;
}

.figjuego-gif {
    width: 100%;
    height: auto; 
    display: flex;
    justify-content: center;}  



.gifjuego {
    width: 100%;
    height: auto;
}

.figjuego {
    width: 100%;
    height: auto; 
    display: none;
    justify-content: center;
}

.titujuego p {

    font-weight: 300;
    padding-left: 1.4em;
    padding-right: 1.4em;
    padding-bottom: 1em;
    line-height: 1.4em;
}


/*caja contenedora*/

.botonjugar {
    width: 100%;
    padding-top: 1em;
    padding-left: 1.4em;
    padding-bottom: 1.3em;

}

.jugar_ahora {
    padding: 0.5em;
    font-size: 1em;
    font-weight: 500;
    border-radius: 0.5em;
}


/*FIN SECCIÓN 4 JUEGO*/


/* QUIENES SOMOS */

.quienessomos {
    background-color: #1d5353;
    color: #f9f3e5;
    padding-bottom: 2.5em;
}

.quienessomos h2 {
    padding-top: 1em;
}

.quienesinfo {
    padding-right: 1.4em;
    padding-left: 1.4em;
    padding-bottom: 1.7em;
}

.videardo {
    position: relative;
    margin: 0 auto;
    height: 0;
    padding-bottom: 56.25%;
}

.videardo iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
}

/* ----- CONTACTO ----- */

.contacto {
    background-color: #3b978a;
    color: #f9f3e5;
    padding-top: .5em;
}

.contacto h2 {
    margin: 0;
}

contacto a:hover {
    color: #f9ebce;
}


.titucontacto {
    background-color: none;
    padding: 1em;
}

.iconocontacto {
    width: 1em;
}

.mapagoogle {
    position: relative;
    padding-bottom: 2em;
    height: 100%;
}

.mapagoogle iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
}

/*FIN CONTACTO*/

/* ------ FOOTER -----*/

.SC {
    background-color: #b8c8a4;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: .8em;
    padding-top: 2em;
    color: #023536;
}

.infofooter {
    padding: 1em;
    text-align: center;
    line-height: 1.5em;
}

.conteinerlogo {
    padding-top: 0.7em;
    padding-bottom: .7em;
    text-align: center;
}

.conteinerlogo a {
    margin: 1em;
    /*separación entre los íconos de redes sociales*/
}

.conteinerlogo a img {
    height: 3em;
    width: 3em;
}


/*FIN FOOTER*/

/*FORMULARIO FIRMAR*/

.section5 {
    padding-top:2em; 
    background-color: #f9ebce;
    
   
}
.elproyecto{
    text-align: center;
    background-color: #f9ebce;
    margin-left: 2em;
    padding: 1em;
    width: 80%;
    border: .16em solid #000;
    border-radius: 1em;
    margin-left: auto;
    margin-right: auto;
   
}
.formulariofirma {
    background-color: #f9ebce;
    padding: 1em;
}

.formfirma {
    width: 95%;
    margin: 0.5em;
    background: #f9ebce;
    padding: 1em;
    margin-bottom: 0;
    border-radius: 7px;
}

.tituform {
    color: black;
    text-align: center;
    margin: 0;
    margin-bottom: 20px;
}

input,
textarea {
    background-color: lightgray;
    width: 100%;
    margin-bottom: 20px;
    padding: 7px;
    box-sizing: border-box;
    border: none;
}

textarea {

    max-height: 5em;
    max-width: 100%;
}

textarea,
mensaje {
    padding-bottom: 6em;
}


/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    -webkit-animation-name: fadeIn;
    /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}
.botoncaja{
    min-width: 20em;
    background-color: #f9ebce;
    padding-bottom: 2em;
    padding-left: .6em;
}

#mybtn {
    border: 2px solid lightgrey;
    margin-left: 1em;
    background-color: lightgray;
    padding: 1.5em;
    }

#mybtn:hover {
    border: 2px solid black;
    cursor: pointer;
    color: white;
    background-color: black;
}


/* Modal Content */
.modal-content {
    position: relative;
    margin: 1em;
    bottom: 1em;
    background-color: #f9ebce;
    width: 90%;
    height: auto;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s
}

/* The Close Button */
.close {
    padding-right: 0.5em;
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    margin-top: 20%;
    padding: 5px 0px 0px;
    background-color: #f9ebce;
    color: black;
}

.modalfirma {
    margin-right: 6em;
}

.modal-body {
    width: 70%;

    padding: 1em 1.2em;
    padding-bottom: 8em;
}

.modal-footer {
    height: auto;
    align-items: flex-end;
    padding: 2px 16px;
    background-color: #f9ebce;
    color: black;
}
.logofirma {
    width: 2.6em;
    height: auto;
    margin: 0.4em;
    /*separación entre los íconos de redes sociales*/
    margin-top: 1em;
    align-items: center;
}

.logosfooter {
    width: 2.6em;
    height: auto;
    margin: 0.4em;
    /*separación entre los íconos de redes sociales*/
    margin-top: 1em;
    align-items: center;
}


/*FORMULARIO FIRMA BREADCRUMBS*/
.breadcrumbsfirm {
            background-color: #f9ebce;
            padding-left: 2em;
            padding-right: 10%;
            padding-top: 1.5em;
            font-size: .9em;
        }

        .breadcrumbsfirm__item {
            display: inline-block;
        }

        .breadcrumbsfirm__item:not(:last-of-type)::after {
            /*todos los items menos el último*/
            content: '>';
            /*separador de los items*/
            margin: 0 5px;
        }

        .breadcrumbsfirm__link {
            text-decoration: none;
            color: #023536;
        }

        .breadcrumbsfirm__link:hover {}

        .breadcrumbsfirm__link--active {
            /*pag actual*/
            text-decoration: none;
            color: #3b978a;
            /*poner del mismo color que el hover*/
            font-weight: 600;
        }

/*FIN FORMULARIO FIRMAS*/

/* Add Animation */
@-webkit-keyframes slideIn {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@keyframes slideIn {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/*FIN FORMULARIO FIRMAR*/


/*HAMBURGUESA*/
@media (max-width: 1118px) {
    nav img {
        left: 2%;
    }

}

@media (max-width: 944px) {
    nav img {
        left: 6%;
        top: 0px;
        width: 130px;
    }

    nav ul li a {
        font-size: 14px;
    }
}

/*HAMBURGUESA MOBILE*/
@media (max-width: 858px) {
    .checkbtn {
        display: block;
    }

    ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #232524;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    nav ul li a {
        font-size: 20px;
        color: #b8c8a4;
    }

    a:hover,
    a.active {
        background: none;
        color: #f9ebce;
    }

    #check:checked ~ ul {
        left: 0;
    }



    /*Formulario firma*/
    .formulariofirma {
        background-color: #b8c8a4;
    }
}


/*

>>>  R E G L A S  @ M E D I A  <<<


/* 
 ---------------------   TABLETS  ------------------------
Dispositivos desde 768px de ancho*/

@media screen and (min-width : 768px) {

    /*FIRMA*/
 .section1 {
        padding-top: .5em;
        padding-bottom: 1.7em;
        max-width: 100%;
        position: relative;
        width: 100%;
        height: auto;
        background-color: #f9ebce;
        color: #023536;
        font-size: 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: left;

    }

    .firma1 {
        padding: .1em;
        min-width: 38em;
        margin-right: 1em;
        margin-top: 0em;
        margin-right: 3em;
       
    }
    .comentarios {
        margin-right: 3em;
        margin-top: 0em;
        margin-left: 1em;
        margin-bottom: 2em;
        flex: none;
        margin-top: 2em;
        padding: 1em;
        min-width: 36em;

    }
    .elproyecto{
    text-align: center;
    background-color: #f9ebce;
    margin-left: 2em;
    padding: 1em;
    width: 80%;
    border: .16em solid #000;
    border-radius: 1em;
    margin-left: auto;
    margin-right: auto;
   
}
/*FIN FIRMA*/

    /*NOVEDADES*/

    /*Efecto de zoom in al posar el cursor*/
    .fotonovedad1 {
        max-width: 100%;
        height: auto;
        overflow: hidden;
        filter: brightness(60%);
        margin-top: 0;
        margin-bottom: 3em;
    }

    .fotonovedad2 {
        max-width: 100%;
        height: auto;
        overflow: hidden;
        filter: brightness(60%);
        margin-top: 0;
        margin-bottom: 3em;
    }

    .fotonovedad3 {
        max-width: 100%;
        height: auto;
        overflow: hidden;
        filter: brightness(60%);
        margin-top: 0;
        margin-bottom: 2em;
    }

    .fotonovedad1 img {
        transition: all 0.8s ease 0s;
    }

    .fotonovedad1:hover img {
        transform: scale(1.5);
        filter: opacity(70%);
    }

    .fotonovedad2 img {
        transition: all 0.8s ease 0s;
    }

    .fotonovedad2:hover img {
        transform: scale(1.5);
        filter: opacity(70%);
    }

    .fotonovedad3 img {
        transition: all 0.8s ease 0s;
    }

    .fotonovedad3:hover img {
        transform: scale(1.5);
        filter: opacity(70%);
    }

    /*FECHA - esquina superior izquierda*/
    .fechanovedad {
        position: absolute;
        top: 5%;
        left: 1.2em;
        font-size: 1.8em;
    }

    /*Título de Novedad + breve resumen - esquina inferior izquierda*/
    .titulonovedad {
        position: absolute;
        bottom: 10%;
        left: 1.2em;
        font-size: 1.8em;
        margin-right: 60px;
    }

    /*Botón Ver Más*/

    .botonvermas {
        /*caja contenedora*/
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .vermas {
        /*texto*/
        background: #1d5353;
        border-color: white;
        color: white;
        font-size: 1em;
        margin-top: .5em;
        margin-bottom: 2em;
        padding-left: 21em;
        padding-right: 20.5em;
        padding-bottom: 1em;
        padding-top: 1em;
    }

    .vermas {
        /*borde redondeado*/
        border-radius: 4%
    }

    .vermas:hover {
        transition: all 0.3s ease 0s;
        background: rgba(211, 220, 193, 0.31);
    }

    /*PRÓXIMOS EVENTOS*/
    .ProxEventos {
        padding-left: 1.2em;
    }

    .ProxEventos h3 {
        font-size: 2em;
        padding-bottom: 1em;
    }

    .calendario {
        padding-left: 1.2em;
    }

    .mes {
        max-width: 100%;
        margin-left: .9em;
        margin-right: 1.5em;
        padding: 0.4em;
        text-align: center;
        border-radius: .2em;
    }

    .mes {
        background: #f9f3e5;
        color: #023536;
        font-size: 1.3em;
    }

    .cajaeventos {
        display: flex;
        padding-top: .7em;
        padding-bottom: 3.2em;
        margin-right: 1.2em;
    }

    .cajaeventos .tarjeta {
        /*cada caja de evento*/
        background: #f9f3e5;
        color: #023536;
        width: 50%;
        max-width: 100%;
        border-radius: 0.5em;
        margin-right: .8em
    }

    .cajaeventos .tarjeta:not(:last-of-type) {
    margin-right: .8em;
    }
    
    .cajaeventos .tarjeta .evento {
        padding-top: .4em;
        padding-right: .6em;
        padding-left: .6em;
        padding-bottom: .5em;
    }

    .cajaeventos .tarjeta .evento a {
        text-decoration: none;
        color: #023536;
    }

    .cajaeventos .tarjeta:hover {
        background-color: #f9ebce;
    }

    .cajaeventos .tarjeta .evento .titulo {
        /*fecha del evento*/
        font-size: 2em;
        font-weight: 600;
    }

   

    .slidereventos .tarjeta .evento .subtitulo {
        /*resumen del evento*/
        font-size: .9em;
    }

    .slidereventos .tarjeta .evento .subtitulo {
        text-align: left;
        margin-bottom: 0px;
    }


    /* ------ FIN NOVEDADES ------ */

    /*JUEGO*/
    
.aprendejugando {
    background-color: #b8c8a4;
    color: #023536;
    padding-bottom: 1em;
}

.titujuego h2 {
    padding-top: .9em;
    line-height: 1.em;
}
    
 .gifjuego-mobile {
    width: 100%;
    height: auto;
}

.figjuego-gif {
    width: 100%;
    height: auto; 
    display: flex;
    justify-content: center;}

.gifjuego {
    width: 100%;
    height: auto;
}

.figjuego {
    width: 100%;
    height: auto; 
    display: none;
    justify-content: center;
}

.titujuego p {

    font-weight: 300;
    padding-left: 1.4em;
    padding-right: 1.4em;
    padding-bottom: 1em;
    line-height: 1.4em;
}


/*caja contenedora*/

.botonjugar {
    width: 100%;
    padding-top: 1em;
    padding-left: 5.2em;
    padding-bottom: 1.3em;

}

.jugar_ahora {
    padding: 0.5em;
    font-size: 1em;
    font-weight: 500;
    border-radius: 0.5em;
}

   
    /*QUIENES SOMOS*/
    .quienessomos h2{
        margin-left: 1.2em;
        margin-right: 3em;
        min-width: 40rem;
    }
    
    .quienesinfo {
        margin-left: 2.5em;
        margin-right: 3em;
        min-width: 40rem;
    }
    

    /*CONTACTO*/
   
    .contacto{
        max-width: 100%;
    }
    
    .contacto h2 {
        margin-left: 1.2em;
        margin-right: 3em;
        min-width: 40rem;
    }
    .titucontacto 
        {
        margin-left: 3em;
        margin-right: 3em;
        min-width: 40rem;
}
    .iconocontacto {
        padding: .2;
    }
    
    
    .mapagoogle {
        max-width: 100%;
    }

}

/*no quitar este corchete, es el que cierra @media*/

/* 
 ----------------   TABLETS / DESKTOPS  -------------------
Dispositivos desde 992px */

@media screen and (min-width : 992px) {
    
    
#llamamenu { /*botón que llama al menú */
display:none;

}


button:hover {
  color: rgba(126, 126, 126, 0.74);
}

header nav ul { /*capa menu desplegable*/
    color: #b8c8a4;
    text-transform: uppercase;
    position: relative;
    top: 0em;
    bottom: 0;
    left: 0%;
    width: 100%;
    z-index: 9990;
    padding-top: 0em;
    margin-right: 0em;
    transition: all .5s ease;
}

    /*FIRMA*/
    .section1 {
        padding-top: .5em;
        padding-bottom: 1.7em;
        display: flex;
        flex-wrap: wrap;
        align-items: left;
        max-width: 100%;
        position: relative;

    }

    .firma1 {
        padding: .1em;
         width: 20em;
        margin-left: 1em;
        margin-right: 1em;
        margin-top: 0em;
        min-width: 25em;
    }
    
    .firmap1{
        padding: .2em;
    }
    

    .comentarios {
        margin-left: 1em;
        margin-right: 1.8em;
        margin-bottom: 3em;
        flex: none;
        margin-top: 2em;
        padding: 1em;
        min-width: 24.3rem;

    }

    /*FORMULARIO FIRMA*/
    .section5 {
         padding-top:2em; 
         background-color: #f9ebce;
    }
.elproyecto{
        text-align: center;
        background-color: #f9ebce;
        margin-left: 2em;
        padding: 1em;
        width: 60%;
        border: .16em solid #000;
        border-radius: 1em;
        margin-left: auto;
        margin-right: auto;
   
}
    .formfirma {
        text-align: center;
        max-width: 65%;
        padding: 1em;
        margin-top: 1em;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }

    #mybtn {
        margin-left: 13em;
        margin-right: auto;
    }

    /*FIN FORMULARIO FIRMA*/


    /*NOVEDADES*/

    .titunovedades {
        color: #ffffff;
        padding-top: .5em;
        margin-left: .9em;
    }

    .todasnovedades {
        display: flex;
        flex-direction: row;
        align-content: space-between;
        margin-left: 3em;
        /*MARGEN HACIA AFUERA*/
        margin-right: 3em;
    }

    .novedades {
        /*TEXTO, NO IMAGEN*/
        position: relative;
        text-align: left;
        color: white;
    }

    /*Efecto de zoom in al posar el cursor*/
    .fotonovedad1 {
        max-width: 100%;
        height: auto;
        overflow: hidden;
        filter: brightness(60%);
        margin-top: 0;
        margin-bottom: .5em;
    }

    .fotonovedad2 {
        max-width: 100%;
        height: auto;
        overflow: hidden;
        filter: brightness(60%);
        margin-top: 0;
        margin-bottom: .5em;
    }

    .fotonovedad3 {
        max-width: 100%;
        height: auto;
        overflow: hidden;
        filter: brightness(60%);
        margin-top: 0;
        margin-bottom: 1em;
    }

    .fotonovedad1 img {
        transition: all 0.8s ease 0s;
    }

    .fotonovedad1:hover img {
        transform: scale(1.5);
        filter: opacity(70%);
    }

    .fotonovedad2 img {
        transition: all 0.8s ease 0s;
    }

    .fotonovedad2:hover img {
        transform: scale(1.5);
        filter: opacity(70%);
    }

    .fotonovedad3 img {
        transition: all 0.8s ease 0s;
    }

    .fotonovedad3:hover img {
        transform: scale(1.5);
        filter: opacity(70%);
    }

    /*FECHA - esquina superior izquierda*/
    .fechanovedad {
        position: absolute;
        top: 5%;
        left: 1.2em;
        font-size: 1em;
    }

    /*Título de Novedad + breve resumen - esquina inferior izquierda*/

    .titulonovedad {
        position: absolute;
        bottom: 15%;
        left: 1.2em;
        font-size: .8em;
    }

    /*Botón Ver Más*/

    .botonvermas {
        /*caja contenedora*/
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .vermas {
        /*texto*/
        background: #1d5353;
        border-color: white;
        color: white;
        font-size: 1em;
        margin-top: .5em;
        margin-bottom: 4em;
        padding-left: 26.1em;
        padding-right: 26.1em;
        padding-bottom: 1em;
        padding-top: 1em;
    }

    .vermas {
        /*borde redondeado*/
        border-radius: 4%
    }

    .vermas:hover {
        transition: all 0.3s ease 0s;
        background: rgba(211, 220, 193, 0.31);
    }

    /*PRÓXIMOS EVENTOS*/
    .ProxEventos {
        padding-left: 1.2em;
    }

    .ProxEventos h3 {
        font-size: 1.8em;
        padding-top: 1.3em;
        padding-bottom: 1em;
        margin-left: 1em;
    }

    .calendario {
        padding-left: 1.2em;
    }
    
    .cajames {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-right: 1.1em;
         margin-top: -1em;
    }

    .mes {
        justify-content: flex-end;
        max-width: 15%; /*ancho caja mes*/
        position: absolute;
        margin-top: -3.6em;
        padding: 0.4em;
        border-radius: .2em;
    }

    .mes {
        background: #f9f3e5;
        color: #023536;
        font-size: 1.3em;
    }

    .cajaeventos {
        display: flex;
        max-width: 100%;
        padding-top: .7em;
        padding-bottom: 3.5em;
        margin-left: 1.8em;
        margin-right: 2em;
    }

    .cajaeventos .tarjeta {
        /*cada caja de evento*/
        background: #f9f3e5;
        color: #023536;
        max-width: auto;
        height: auto;
        border-radius: .3em;
        
    }
    
    .cajaeventos .tarjeta:not(:last-of-type) {
         margin-right: 1em;
    }

    .cajaeventos .tarjeta .evento {
        padding-top: .4em;
        padding-right: 1em;
        padding-left: 1em;
        padding-bottom: 1em;
    }

    .cajaeventos .tarjeta .evento .titulo {
        /*fecha del evento*/
        font-size: 2.7em;
        font-weight: 600;
    }

    .cajaeventos .tarjeta .evento .subtitulo {
        /*resumen del evento*/
        font-size: 1.2em;
    }


    .cajaeventos .tarjeta .evento .subtitulo {
        text-align: left;
        margin-top: 1.4em;
        margin-bottom: 0px;
    }


    /*html aparte - prox eventos*/

    .eventohtml {
        background-color: #f9f3e5;
        padding-left: 4em;
        padding-right: 10%;
        padding-bottom: 3em;
        color: #023536;
    }

    .breadcrumbsnov {
        background-color: #f9f3e5;
        padding-left: 2em;
        padding-right: 10%;
        padding-top: 1.5em;
        font-size: .9em;
    }

    .breadcrumbsnov__item {
        display: inline-block;
    }

    .breadcrumbsnov__item:not(:last-of-type)::after {
        /*todos los items menos el último*/
        content: '>';
        /*separador de los items*/
        margin: 0 5px;
    }

    .breadcrumbsnov__link {
        text-decoration: none;
        color: #023536;
    }

    .breadcrumbsnov__link:hover {}

    .breadcrumbsnov__link--active {
        /*pag actual*/
        text-decoration: none;
        color: #3b978a;
        /*poner del mismo color que el hover*/
        font-weight: 600;
    }

    .titueventohtml {
        text-align: left;
        padding-right: 40%;
        padding-left: 0;
        font-size: 2.8em;
        font-weight: 800;
    }

    .memoevento {
        margin-top: 3em;
        padding: 1em;
        border: solid #023536;
        border-radius: .5em;
        line-height: 1.5em;
        /*interlineado*/
        width: 85%
    }

    .quieroparticipar {

        background: #1d5353;
        border-color: white;
        color: white;
        font-size: 1em;
        margin-top: .5em;
        margin-top: 2.5em;
        margin-bottom: 2em;
        padding-left: 8.2em;
        padding-right: 8em;
        padding-bottom: 1em;
        padding-top: 1em;

    }


    /*JUEGO*/
    
.aprendejugando {
    background-color: #b8c8a4;
    color: #023536;
    padding-bottom: 1em;
}

.titujuego h2 {
    padding-top: .9em;
    margin-left: .9em;
    line-height: 1.em;
}

    .gifjuego-mobile {
    width: 100%;
    height: auto;
}

.figjuego-gif {
    width: 100%;
    height: auto; 
    display: none;
    justify-content: center;}

    
    
.gifjuego {
    width: 100%;
    height: auto;
}

.figjuego {
    width: 100%;
    height: auto; 
    display: flex;
    justify-content: center;
    margin-bottom: 2.3em;
    
}

.titujuego p {

    font-weight: 300;
    padding-left: 1.4em;
    padding-right: 1.4em;
    padding-bottom: 1em;
    line-height: 1.4em;
    margin-left: 2em;
}
        
    .botonjugar {
        
        display: none;
        }

/*caja contenedora*/

.botonjugar {
    width: 100%;
    padding-top: 1em;
    padding-left: 3.5em;
    padding-bottom: 1.3em;

}

.jugar_ahora {
    padding: 0.5em;
    font-size: 1em;
    font-weight: 500;
    border-radius: 0.5em;
}


    /*QUIENES SOMOS*/

    /*CONTACTO*/

    /*FOOTER*/

}

    /*no quitar este corchete, es el que cierra @media*/

    /* 
 ---------------------   DESKTOPS  ------------------------
Dispositivos desde 1200px */

    @media screen and (min-width : 1200px) {

/*FIRMA*/
        
   .section1 {
    max-width: 100%;
    height: auto;
    background-color: #f9ebce;
    color: #023536;
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: left;

}
    .firma1 {
        padding-left: .5em;
        margin-left: 5em;
        margin-right: .5em;
        margin-top: 0em;
        min-width: 24em;
    }
    .firmap1{
  min-width: 20em; 
    padding-bottom: 1em;
    margin: 0em;
            
        }
    .firma1 h2 {
    font-size: 2.5em;
    line-height: 1.2em;
    padding-left: .1em;
   
}


    .comentarios {
    margin-left: 2em;
    margin-right: 1em;
    margin-bottom: 3em;
    margin-top: 2em;
    flex: none;
    padding: 1em;
    min-width: 23em;
    background-color: #f9ebce;
    border: .1em solid #b8c8a4;
    border-radius: 1em;
}
    #progressbar {
    margin-left: .5em;
    margin-top: 1em;
    margin-right: 2em;
    background-color: white;
    border-radius: 13px;
    padding: 3px;
}
        /*FORMULARIO FIRMAR*/

   #mybtn {
        margin-left: 16em;
        margin-right: auto;
    }


    /*FIN FIRMAS Y FORMULARIO*/
        
    /*NOVEDADES*/

        .titunovedades {
            color: #ffffff;
            padding-top: .5em;
            margin-left: 2.7em;
        }

        .todasnovedades {
            display: flex;
            flex-direction: row;
            align-content: space-between;
            margin-left: 7em;
            /*MARGEN HACIA AFUERA*/
            margin-right: 7em;
        }

        .novedades {
            /*TEXTO, NO IMAGEN*/
            position: relative;
            text-align: left;
            color: white;
        }

        /*Efecto de zoom in al posar el cursor*/
        .fotonovedad1 {
            max-width: %;
            height: auto;
            overflow: hidden;
            filter: brightness(60%);
            margin-top: 0;
            margin-bottom: 1em;
        }

        .fotonovedad2 {
            max-width: 100%;
            height: auto;
            overflow: hidden;
            filter: brightness(60%);
            margin-top: 0;
            margin-bottom: 1em;
        }

        .fotonovedad3 {
            max-width: 100%;
            height: auto;
            overflow: hidden;
            filter: brightness(60%);
            margin-top: 0;
            margin-bottom: 1em;
        }

        .fotonovedad1 img {
            transition: all 0.8s ease 0s;
        }

        .fotonovedad1:hover img {
            transform: scale(1.5);
            filter: opacity(70%);
        }

        .fotonovedad2 img {
            transition: all 0.8s ease 0s;
        }

        .fotonovedad2:hover img {
            transform: scale(1.5);
            filter: opacity(70%);
        }

        .fotonovedad3 img {
            transition: all 0.8s ease 0s;
        }

        .fotonovedad3:hover img {
            transform: scale(1.5);
            filter: opacity(70%);
        }

        /*FECHA - esquina superior izquierda*/
        .fechanovedad {
            position: absolute;
            top: 5%;
            left: 1.2em;
            font-size: 1em;
        }

        /*Título de Novedad + breve resumen - esquina inferior izquierda*/

        .titulonovedad {
            position: absolute;
            bottom: 15%;
            left: 1.2em;
            font-size: .8em;
        }

        /*Botón Ver Más*/

        .botonvermas {
            /*caja contenedora*/
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .vermas {
            /*texto*/
            background: #1d5353;
            border-color: white;
            color: white;
            font-size: 1em;
            margin-top: .5em;
            margin-bottom: 4em;
            padding-left: 38.4em;
            padding-right: 38.4em;
            padding-bottom: 1em;
            padding-top: 1em;
        }

        .vermas {
            /*borde redondeado*/
            border-radius: 4%;
        }

        .vermas:hover {
            transition: all 0.3s ease 0s;
            background: rgba(211, 220, 193, 0.31);
        }

        /*PRÓXIMOS EVENTOS*/
        .ProxEventos {
            padding-left: 1.2em;
        }

        .ProxEventos h3 {
            font-size: 1.8em;
            padding-bottom: 1em;
            margin-left: 3.3em;
        }

        .calendario {
        padding-left: 1.2em;
    }

    .mes {
        max-width: 15%; /*ancho caja mes*/
        position: absolute;
        margin-top: -3.6em;
        left: 44.5em;
        padding: 0.4em;
        border-radius: .2em;
    }

    .mes {
        background: #f9f3e5;
        color: #023536;
        font-size: 1.3em;
    }

    .cajaeventos {
        display: flex;
        max-width: 100%;
        padding-top: .7em;
        padding-bottom: 3.5em;
        margin-left: 5.7em;
        margin-right: 6.4em;
    }

    .cajaeventos .tarjeta {
        /*cada caja de evento*/
        background: #f9f3e5;
        color: #023536;
        max-width: auto;
        height: auto;
        border-radius: .3em;
        
    }
    
    .cajaeventos .tarjeta:not(:last-of-type) {
         margin-right: 1em;
    }

    .cajareventos .tarjeta .evento {
        padding-top: .4em;
        padding-right: .6em;
        padding-left: .6em;
        padding-bottom: .5em;
    }

    .cajaeventos .tarjeta .evento .titulo {
        /*fecha del evento*/
        font-size: 2.7em;
        font-weight: 600;
    }

    .cajaeventos .tarjeta .evento .subtitulo {
        /*resumen del evento*/
        font-size: 1.2em;
    }


    .cajaeventos .tarjeta .evento .subtitulo {
        text-align: left;
        margin-top: 1.4em;
        margin-bottom: 0px;
    }

        /*html aparte - prox eventos*/

        .eventohtml {
            background-color: #f9f3e5;
            padding-left: 4em;
            padding-right: 10%;
            padding-bottom: 3em;
            color: #023536;
        }

        .breadcrumbsnov {
            background-color: #f9f3e5;
            padding-left: 2em;
            padding-right: 10%;
            padding-top: 1.5em;
            font-size: .9em;
        }

        .breadcrumbsnov__item {
            display: inline-block;
        }

        .breadcrumbsnov__item:not(:last-of-type)::after {
            /*todos los items menos el último*/
            content: '>';
            /*separador de los items*/
            margin: 0 5px;
        }

        .breadcrumbsnov__link {
            text-decoration: none;
            color: #023536;
        }

        .breadcrumbsnov__link:hover {}

        .breadcrumbsnov__link--active {
            /*pag actual*/
            text-decoration: none;
            color: #3b978a;
            /*poner del mismo color que el hover*/
            font-weight: 600;
        }

        .titueventohtml {
            text-align: left;
            padding-right: 40%;
            padding-left: 0;
            font-size: 2.8em;
            font-weight: 800;
        }

        .memoevento {
            margin-top: 3em;
            padding: 1em;
            border: solid #023536;
            border-radius: .5em;
            line-height: 1.5em;
            /*interlineado*/
            width: 68%;
        }


        /*JUEGO*/
         
               
        
.gifjuego-mobile {
    width: 100%;
    height: auto;
}

.figjuego-gif {
    width: 100%;
    height: auto; 
    display: none;
    justify-content: center;}        
        
        
        
.gifjuego {
    width: 100%;
    height: auto;
    
}

.figjuego {
    width: 100%;
    height: auto; 
    display: flex;
    justify-content: center;
    margin-bottom: 2.3em;
        }
        
    .botonjugar {
        
        display: none;
        }

        /*QUIENES SOMOS*/

        /*CONTACTO*/



    }

    /*no quitar este corchete, es el que cierra @media*/
