@import url('https://fonts.googleapis.com/css2?family=Dongle:wght@300;400;700&family=Jacques+Francois&family=Poppins:wght@100;300;400;500;600;700&display=swap');

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

body
{
    background: #E8E8E8;
}


.contenedor
{
    width: 100%;
    position: relative;
    display: flex;

}

.video-portada
{
    width: 100%;
    display: flex;
    position: relative;

}

.texto-portada{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 6vh;
    font-weight: bold;
    mix-blend-mode: screen;
    -webkit-text-stroke: 2px #999;
    }

.text-1
{
    position: absolute;
    font-size: 6vh;
    bottom: 1em;
    right: 0;
    left: 0;
    font-family: 'Bebas Neue', cursive;
    font-weight: 100;
    letter-spacing: 5px;
   
    
}

.text-2
{
    position: absolute;
    font-size: 4vh;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: 'Roboto Mono', monospace;
}

.ubicacion
{
    position: absolute;
    bottom: 10px;
    right: 1em;
}

.ubicacion a
{
    text-decoration: none;
}

.icon-ubicacion
{
    width: 1.5em;
    display: grid;
    margin: .2em auto;
}

.text-ubicacion
{
    font-size: .5rem;
    color: #fff;
}






/**********************************
      menu mavegacion responsivo
***********************************/


.enlaces{
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 0;
    
}

.toggler{  /*esto es toda la navegacion de el icono hamburguesa*/
    position: absolute;
    top: 42%;
    left: 0.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0;
    z-index: 3;
}

.hamburger{ /*esto es el icono de la hamburguesa*/
    position: absolute;
    top: 42%;
    left: 0.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1B262C;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;

}
.hamburger:hover, .toggler:hover {
    cursor: pointer;
}

/*esto es la transicion de la hamburguesa*/
.hamburger>div{
    position: absolute;
    top: 46%;
    width: 50%;
    height: 3px;
    border-radius: 1.5px;
    background-color: #fff;
    transition: .4s;
}

.hamburger>div:before, .hamburger>div:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 1.5px;
    background-color: #fff;
    transition: .4s;
}

.hamburger>div:before{
top: -10px;
}

.hamburger>div::after{
    top: 10px;
}

.toggler:checked + .hamburger>div{
    transform: rotate(135deg);

}

.toggler:checked:hover + .hamburger>div{
    transform: rotate(225deg);

}

.toggler:checked + .hamburger>div:after, .toggler:checked + .hamburger>div:before{
    transform: rotate(90deg);
    top: 0;
}

.toggler:checked ~ .menu{
    visibility: visible;
}

.toggler:checked ~ .menu >div{
    transform: translateX(-50%) translateY(-50%);
}

.toggler:checked ~ .menu > div > div{
    opacity: 1;
}

/*esto es el fondo y la configuracion de los links de navegacion*/
.menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: .6s;
    visibility: hidden;
    transition: .6s;


}


.div-links{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translateX(-150%) translateY(-50%);
    background: #1B262C;
    transition: .6s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div-url{

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;

}

/*configuracion de los a de navegacion*/
.links{
    text-decoration: none;
    margin: .5rem;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    transition: .3s;
}

.decoracion
{
    padding: .3em;
    border-radius: 10px;
}



/* video de presentacion */

.video-presentacion
{
    width: 100%;
    height: 26em;
    background: #fff;
}

.texto-presentacion
{
    text-align: center;
    font-weight: 300;
    padding: 1.5em 0;
}
.video
{
    display: grid;
    width: 95%;
    height: 250px;
    margin: auto;
}

.slider{
    position: relative;
    background: #022c43;
    width: 100%;
    height: 30em;
  }

.text-slider
{
    
    margin:0 3em;
    text-align: center;
    padding: 2em 0;
    color: #fff;
    font-weight: 100;
}  

  .slider2{
      height: 18em;
      width: 95%;
      margin: auto;
      overflow: hidden;
      
  }
  
  .slider2 ul{

      display: flex;
      padding: 0;
      width: 600%;

      animation: cambio 40s infinite alternate;
      animation-timing-function: ease-in;
  }

  .slider2 li{
      width: 100%;
      list-style: none;
  }
  .slider2 img{
      width: 100%;
      height: 200px;
      border-radius: 2px;
  }
  

  @keyframes cambio{
      0% {margin-left: 0;}
      10% {margin-left: 0;}

      15% {margin-left: -100%;}
      25% {margin-left: -100%;}

      30% {margin-left: -200%;}
      40% {margin-left: -200%;}

      45% {margin-left: -300%;}
      60% {margin-left: -300%;}

      65% {margin-left: -400%;}
      80% {margin-left: -400%;}

      85% {margin-left: -500%;}
      100% {margin-left: -500%;}
  }




  /*********************************
  *************mision y vision**************
  *****************************************/

.vision-mision
{
    width: 100%;
    height: 70rem;
    background: #1B262C;
    position: relative;
}

.titulo-mision
{
    display: flex;
    justify-content: center;
    padding: 1em;
    
    font-size: 2rem;
    color: #fff;
    letter-spacing: 5px;
    font-weight: 100;
    

}

.titulo-mision span
{
    font-family: 'Jacques Francois', serif;
}

.img-vision
{
    width: 90%;
    margin: auto;
    display: flex;
    border-radius: 5px;
}

.texto-vision
{
    margin: 1em 1.5em;
    color: #fff;
    text-align: justify;
}


/*********************************
***********HISTORIA***************
*********************************/


.pastores
{
    padding: 1.5em;
    margin: 1em;
}

.img-historia
{
    width: 75%;
    margin: 1em auto;
    display: flex;
}

.titulo-historia
{
    text-align: center;
    margin: 1em;
}

.texto-pastores
{
    text-align: justify;
}






/*******************************
************instalaciones******
*********************************/


.titulo-instalaciones
{
    margin: 2em;
    text-align: center;
}

.inst
{
    display: flex;
    flex-wrap: wrap;
}

.box-inst
{
    width: 100%;
}


.img-inst{
    width: 90%;
    margin: auto;
    display: flex;
}

.text-inst
{
    position: relative;
    width: 90%;
    height:15em;
    background: #022c43;
    margin: .5em auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
    color: #fff;
}



/**************************
*******maps****************
**************************/

.maps
{
    width: 100%;
    height: 22em;
    background: #1B262C;
}

.h1-titulos
{
    text-align: center;
    margin: 2em;
    color: #fff;
    font-weight: 200;
}




/*********************************
*************footer*****************
************************************/


.footer
{
    width: 100%;
    height: 18em;
    background: #fff;
    display: flex;
    flex-wrap: wrap-reverse;
    
    
}

.sobre-cares
{
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 1em;
}

.text-footer
{
    font-size: 1rem;
    font-weight: 300;
    color: #000;
}


.cares
{
    font-size: 1.1em;
    font-family: 'Jacques Francois', serif;
}




.text-redes
{
    font-size: 1em;
    text-align: center;
    margin: 1em;
    color: #fff;
}

.redes-sociales
{
    width: 99%;
    background: #022c43;
    height: 7em;
}

.container-icon
{
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-icon a{
    cursor: pointer;
}

.icons-redes
{
    width: 2em;
    margin: .3em;
    
}



.derechos-autor
{
    font-size: 1em;
    font-weight: 300;
    text-align: center;
}



.redes-socials
{
    display: none;
}

.enlaces-pc
{
    display: none;
}

.mision2
{
    display: none;
}



.text-prueba
{
    display: none;
}

.text-prueba1
{
    display: flex;
}

/******************************************
********     Responsivo    ****************
******************************************/
 



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

.hamburger{
    width: 40px;
    height: 40px;
}
    

.redes-socials
{
    position: absolute;
    display: block;
    z-index: 2;
}

.icon-redes
{
    position: relative;
    display: grid;
    width: 2.5em;
    top: 5em;
    left: 1.5em;
    padding: .3em;
    cursor: pointer;
}
.text-1{
    font-size: 3rem;
    bottom: 1.5em;
}

.text-2{
    font-size: 2.5rem;
    bottom: .3em;
}

.icon-ubicacion
{
    width: 1.5em;
    margin: .2em auto;
}

.text-ubicacion
{
    font-size: .7rem;
    color: #fff;
}



/**********************************
*******video presentacion*********
**********************************/

.video-presentacion
{
    width: 100%;
    height: 40em;
    background: #fff;
}


.video
{
    display: grid;
    width: 90%;
    height: 400px;
    


/**************************************
***********mision y vision*************
**************************************/
   
}

.vision-mision
{
    width: 100%;
    height: 95rem;
    background: #1B262C;
    position: relative;
}

.img-vision
{
    width: 75%;
    margin: auto;
    display: flex;
    border-radius: 5px;
}

.texto-vision
{
    margin: 1.5em 5em;
    color: #fff;
    text-align: justify;
    font-size: 1.3rem;
}




/*********************************
***********historia****************
***********************************/

.texto-pastores
{
    font-size: 1.3rem;
}


/*****************************************
*************slider*********************
*******************************************/

.slider{
    height: 38em;
  }

.slider2{
    height: 25em;
}
.slider2 img{
   
    height: 400px;
    
}

}

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

.enlaces
{
    display: none;
}

.icon-redes
{
    position: relative;
    display: grid;
    width: 3em;
    top: 7em;
    left: 1.5em;
    padding: .5em;
    cursor: pointer;
}

.enlaces-pc
{
    
    background: #1B262C ;
    position: fixed;
    top: 0;
    width: 100%;
    height: 4em;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: -1;
    transition: .3s;
}



.img-logo
{
    width: 6em;
}

.img-logo2
{
    width: 4em;
    margin: auto;
    display: grid;
}

.enlace-texto{
    width: 40%;
}

.enlace-texto1
{
    display: flex;
    justify-content: space-around;
    
}

.texto-enlaces1
{
    color: #fff;
    font-size: .8rem;
}

.plataforma-click
{
    transition: .3s ease;
}

.plataforma-click:hover
{
    background: #fff;
    color: #000;
    font-size: .8rem;
    padding: .5em;
    border-radius: 5px;
    text-transform: uppercase;
}

.show
{
    z-index: 10;
    animation: popp .7s ease-in-out;
}



@keyframes popp{
    0%{
       transform: scale(0);
    }
    50%{
        transform: scale(1.1);
        margin-top: 1em;
        
    }
    100%{
        transform: scale(1);
    }
}





.vision-mision
{
    
    height: 65em;
    
}

.vision
{
    display: flex;
    width: 85%;
    justify-content: center;
    padding: 5em 1em;
    margin: auto;
}

.mision
{
    display: flex;
    width: 85%;
    justify-content: center;
    margin: auto;
}


.titulo-mision
{
    display: grid;
    text-align: center;
    width: 15%;
    
}

.contender-vision
{
    width: 50%;
}

.img-vision
{
    width: 70%;
    margin: auto;
    display: flex;
    border-radius: 5px;
}

.texto-vision
{
    margin: 1em 7em;
    color: #fff;
    text-align: justify;
    font-size: .8rem;
}

.mision1{
    padding-left: 3em;
}

.mision2{
    padding-right: 3em;
}

.mision3

{
    display: none;
}

.img-historia
{
    width: 55%;
    
}

.texto-pastores
{
    text-align: justify;
    font-size: 1rem;
    margin: 2em;
}

.slider2 img{
    width: 85%;
    justify-content: center;
    align-items: center;
    margin-left: 4.5em;
}

.text-prueba1
{
    display: none;
}

.text-prueba
{
    display: flex;
    
}

.inst{
    width: 100%;
    display: flex;  

}

.box-inst
{
    width: 50%;
}

.img-inst{
    margin: 0;
    padding: 0;
    width: 100%;
}

.text-inst
{
    width: 50%;
    height: auto;
    margin: 0;
}

.maps
{
    height: 25em;
}
}

@media only screen and ( min-width: 1024px)
{
    .vision-mision
    {
        
        height: 75em;
        
    }
    
.texto-portada
{
    opacity: 0;
    transition: 2s ease-in-out;
}

.texto-portada:hover{
    opacity: 1;
    
}
.text-1{
    bottom: 4em;
    font-size: 5rem;
}

.text-2
{
    bottom: 3.5em;
    font-size: 4rem;
}
}

@media only screen and ( min-width: 1300px)
{
    .icon-redes
    {
        top: 15em;
        left: 1.5em;
        
    }

    .video-presentacion
{
    height: 55em;
    
}

.video
{
   
    width: 75%;
    height: 650px;
  
}

.vision-mision
{
    
    height: 100%;
    
}

.vision
{
    display: flex;
    width: 65%;
    justify-content: center;
    padding: 5em 1em;
    margin: auto;
}

.mision
{
    display: flex;
    width: 65%;
    justify-content: center;
    margin: auto;
    padding-bottom: 5em;
}

.texto-vision
{
    margin: 1em 8em;
    color: #fff;
    text-align: justify;
    font-size: 1rem;
}

.img-historia
{
    width: 35%;
    
}

.texto-pastores
{
    text-align: justify;
    font-size: 1rem;
    margin: 3em 8em;
}


.slider{
    width: 100%;
    height: 55em;
    margin: auto;
  }

  .slider2{
      height: 100%;
  }

  .slider2 img{
    width: 95%;
    height: 700px;
    justify-content: center;
    align-items: center;
    margin-left: 2em;
}

.inst{
    width: 95%;
    display: flex;  
    margin: auto;

}

.h1-titulos
{
    padding: 1em;
}

}

/*****************************************
**************NIVELES********************
*****************************************/


 .programa{
    position: relative;
    width: 100%;
    height: 85em;
  }
 
 .contenido-programa{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

  }
.programa-evento{
    background-color: rgba(255, 255, 255, .8);
    padding: 15px;
    margin-top: 80px;
    margin-bottom: 180px;
  }
  
  .contenedor-niveles
{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;

}
  @media only screen and (min-width: 480px) {
     .programa-evento{
      width: 70%;
    }
  }
  @media only screen and (min-width: 768px) {
    .programa-evento{
      width: 70%;
    }
  }
  .menu-programa{
    width: 100%;
    border-bottom: 1px solid #fe4918;

  }
  @media only screen and (min-width: 768px) {
    .menu-programa{
      display: table;
    }
  }
  .menu-programa a{
    display: block;
    text-align: center;
    color: #000000;
    text-decoration: none;
    font-family: Century Gothic;
    margin-bottom: 10px;
    font-size: 1.3em;
    position: relative;
    padding-bottom: 10px;
  }
  .menu-programa a.activo::after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    height: 20px;
    width: 30px;
    background-image: url("../img/talleres-flecha.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    bottom: -20px;
  }

  @media only screen and (min-width: 768px) {
    .menu-programa a{
      display: table-cell;
    }
  }
  .menu-programa a i{
    color: #fe4918;
    font-size: 1.6em;
    margin-right: 10px;
  }
 .ocultar {
  display: none;
}
  /** Detalle del evento **/
  .detalle-evento{
    margin-top: 20px;
    border-bottom: 1px solid black;
    padding: 0 20px;
  }
  .detalle-evento:nth-child(2){
    border: none;
  }
  .detalle-evento p{
    margin-bottom: 20px;
    font-size: 20px;
  }
  /** Niveles **/
  .niveles-total p{
    text-align: left;
  }
  .detalle-evento{
    padding: 1em;
}
  .foto img{
    max-width: 100%;
  }
@media only screen and (min-width: 768px) {
  .foto img{
    margin: 2em 3em;
    padding: 1em;
    width: 80%;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  }
}
  .detalle-evento li{
    list-style: initial;
    margin-left: 2em;
    padding-left: 1em;
  }
  .clearfix:before,
  .clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
  }

  .clearfix:after {
    clear: both;
  }
  
    @media only screen and ( min-width: 800px){
.programa{
    height: 75em;
  }
  }

  
  @media only screen and ( min-width: 1200px){
.programa{
    height: 85em;
  }
  }