/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
*/
.contenedor_2 {
  color: #000000;
  text-align: center;
}
.cartel_2 {
  width: 109px;
  height: 109px;
  padding: 10px 0px 5px 0px;
  text-align: center;
  display: inline-block;
  margin: 5px;
  border: 3px solid #000000;
  border-radius: 5px;
}
.cartel_2>div{
  font-size: 50px;
  font-family: 'Chela One', sans serif;
  animation: fade 3s;
  line-height: 30px;
  margin-top: 5px;
}
.cartel_2>div>h3 {
  margin-top: 15px;
  font-size: 20px;
  font-weight: normal;
}

.contenedor_2 {
  margin-top: 3%;
}
.contenido_2 {
  width: 80%;
  margin: 0 auto;
  border: 0px solid black;
  z-index: 10;
}
.contenedor_2 li {
  display: inline-block;
  font-size: 1.5em;
  list-style-type: none;
  padding: 1em;
  text-transform: uppercase;
}
.contenedor_2 li span {
  display: block;
  font-size: 4.5rem;
}
.numeros {
  font-family: 'Chela one', sans-serif;
  font-size: 60px;
  transition: .3s;
  animation-name: fade;
  animation-duration: 3s;
}
.responsivo1_2 {
  display: inline-block
}
.responsivo2 {
  display: inline-block
}
@media (max-width: 450px) {  
  .contenedor {
    margin-top: 15%;
  }
  .banner {
   margin-bottom: 30px; 
  }
  .cartel_2 {
    height: 99px;
    width: 99px;
  }
  .cartel_2>div{
    font-size: 45px;
  }
  .cartel_2>div>h3 {
    font-size: 15px;
    margin-top: 0px;
  }
}
@keyframes fade {
    0%   {
      opacity: 0;
  }
    30%   {
      opacity: 0;
  }  
    100% {
      opacity: 1;
  }
}