@charset "UTF-8";
video{ 
  border: 2px solid #FFE04D;
  max-width: 100%;
}

/*ACORDEON ABIERTO-----------*/
.content {
  background-color:var(--color1);
  width: 90%;
  margin: 0 auto; }

.accordion {
  font-family: Arial, Helvetica, sans-serif;
  border: 1px solid #000;
  width: 700px;
  padding: 10px;
  /*fondo general*/
  background: var(--color2);
  max-width:100%;}

.accordion ul {
  list-style: none; }

.accordion [type=radio], .accordion [type=checkbox] {
  display: none; }

.accordion label {
  display: block;
  line-height: 16px;
  /*fondo de las barras*/
  background:var(--color1);
  font-weight: 600;
  cursor: pointer; }

.accordion ul li label:hover, .accordion [type=radio]:checked ~ label, .accordion [type=checkbox]:checked ~ label {
  /*fondo de la barra seleccion*/
  background: var(--color3);
  color: red; }

.accordion .content {
  padding: 0 10px;
  overflow: hidden;
  /*border: 1px solid #fff;*/
                          /*fondo parrafo*/
  background:hsla(200,100%,85%,0.4);
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out; }

.accordion p {
  color: #000;
  margin: 0 0 10px; }

.accordion h3 {
  color: #000;
  padding: 0;
  margin: 10px 0; }

/* Vertical */
.vertical ul li {
  overflow: hidden;
  margin: 0 0 1px; }

.vertical ul li label {
  padding: 10px; }

.vertical [type=radio]:checked ~ label, .vertical [type=checkbox]:checked ~ label {
  border-bottom: 1px solid #000; }

.vertical ul li label:hover {
  border: 1px solid #F8ED06;
  /* We don't want the border to disappear on hover */ }

.vertical ul li .content {
  height: 1px;
  border-top: 0; }

/* Tamaño vertical del acordion*/
.vertical [type=radio]:checked ~ label ~ .content, .vertical [type=checkbox]:checked ~ label ~ .content {
  height: 320px;
  border: 1px solid #ccc; }

/*TERMINA ACORDEON ABIERTO--------------------------*/
/*VENTANA MODAL BANNER*/

[class*=banner]{
  border: solid 1px #fff;
  width: 450px;
  height: 280px;
  background-size: 100% 100%;
  margin: 0 auto;
}
  
  .banner{  
  -webkit-animation: banner 7s infinite;
  animation: banner 7s infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  max-width: 100%;}
  
  .banner-2{  
  -webkit-animation: banner-2 7s infinite;
  animation: banner-2 7s infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  max-width: 100%;}
  
  
  
@-webkit-keyframes banner {
  0%, 30% {
    background-image: url(../banner/banner1.jpg);
    opacity: 1; }
  31%, 34% {
    opacity: 0.3; }
  35%, 65% {
    background-image: url(../banner/banner2.jpg);
    opacity: 1; }
  67%, 69% {
    opacity: 0.3; }
  70%, 89% {
    background-image: url(../banner/banner3.jpg);
    opacity: 1; }
  67%, 69% {
    opacity: 0.3; }
  93%, 100% {
    background-image: url(../banner/banner4.jpg);
    opacity: 1; } }

@keyframes banner {
  0%, 30% {
    background-image: url(../banner/banner1.jpg);
    opacity: 1; }
  31%, 34% {
    opacity: 0.3; }
  35%, 65% {
    background-image: url(../banner/banner2.jpg);
    opacity: 1; }
  67%, 69% {
    opacity: 0.3; }
  70%, 89% {
    background-image: url(../banner/banner3.jpg);
    opacity: 1; }
  67%, 69% {
    opacity: 0.3; }
  93%, 100% {
    background-image: url(../banner/banner4.jpg);
    opacity: 1; } }

/*
###BANNER-2------------------
*/
@-webkit-keyframes banner-2 {
  0%, 30% {
    background-image: url(../banner/banner5.jpg);
    opacity: 1; }
  31%, 34% {
    opacity: 0.3; }
  35%, 65% {
    background-image: url(../banner/banner6.jpg);
    opacity: 1; }
  67%, 69% {
    opacity: 0.3; }
  70%, 89% {
    background-image: url(../banner/banner7.jpg);
    opacity: 1; }
  67%, 69% {
    opacity: 0.3; }
  93%, 100% {
    background-image: url(../banner/banner8.jpg);
    opacity: 1; } }

@keyframes banner-2 {
  0%, 30% {
    background-image: url(../banner/banner5.jpg);
    opacity: 1; }
  31%, 34% {
    opacity: 0.3; }
  35%, 65% {
    background-image: url(../banner/banner6.jpg);
    opacity: 1; }
  67%, 69% {
    opacity: 0.3; }
  70%, 89% {
    background-image: url(../banner/banner7.jpg);
    opacity: 1; }
  67%, 69% {
    opacity: 0.3; }
  93%, 100% {
    background-image: url(../banner/banner8.jpg);
    opacity: 1; } }

/*GALERIA DE FOTOS*/
/*-----GALERIA--------------------------*/
.separar {
  margin: 0 3em;
  border: 1px solid #F8ED06; }

.seccion-galeria {
  background: rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 2px 2px #000;
  box-shadow: 1px 2px 2px #000;
  width: 95%;
  margin: auto; }

.galeria {
  width: 100%;
  margin: auto;
  list-style: none;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*para que pasen abajo las img*/
  -ms-flex-pack: distribute;
  justify-content: space-around;
  /*para crear espacios entre las img*/ }

.galeria li {
  margin: 5px;
  /*check---*/ }

.galeria img {
  width: 200px;
  height: auto;
  /*Tamaño miniaturas---*/
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid #ffe04d;
  /*check*/ }

.galeria img:hover {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07); }

/*-----------ESTILOS PARA EL MODAL-----------*/
.modal {
  width: 100%;
  display: none; }

.modal:target {
  display: block;
  margin: 0 auto;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500; }

.modal h3 {
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin: 15px 0; }

.imagen-gal {
  width: 100%;
  height: auto;
  /*check auto*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*para que la imagen se adapte al tamaño de la ventana*/
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*------check*-------*/ }

.imagen-gal a {
  /*para los simbolos de avance y cierre*/
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  margin: 0 10px;
  /* Un margen a los lados de 10px*/ }

.imagen-gal a:nth-child(2) {
  margin: 0;
  height: 100%;
  -ms-flex-negative: 2;
  flex-shrink: 2; }

.imagen-gal img {
  width: 700px;
  /*para que ocupe el ancho de la ventana--check--700*/
  height: auto;
  /*para que ocupe todo el alto de la ventana--check--auto*/
  max-width: 100%;
  border: 2px solid #fff;
  /*para un border blanco para que parezca foto*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*para */ }

.cerrar {
  display: block;
  /*background: #fff;*/
  width: 25px;
  height: 25px;
  margin: 10px auto;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  color: #fff;
  padding: 5px;
  /*border-radius: 50%;  pra hacer un circulo en caracteres*/
  line-height: 25px; }
  
  .social {
  position:fixed;
    right:20px;
   bottom:230px;
   z-index: 2000;
   margin-left: 5px;
 }
 
 .social img{
     position:fixed;
     display: block;
     margin: 2em 0;
 }

.blanco{
   color:#fff;
 }