  body {
    background-image: url(../images/sitio/fondo1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }

  .centrar{
    background: #0ea2f8;
    border: 1px solid #fbfbfc;
    text-align: center;
    height: 80px;
    padding-top: 15px;
    border-radius: 10px;
  }

  h1 {
    font: oblique 120% cursive;
    text-align: center;
    color: #fff;
  }

  .centrar2{
    background: #0ea2f8;
    border: 1px solid #fbfbfc;
    text-align: center;
    height: 80px;
    padding: 15px 12% 0 12%;
    border-radius: 10px;
  }

  .centrar3{
    background: black;
    border: 1px solid #0404fa;
    text-align: center;
    height: 20px;
    padding: 5px 12% 0 12%;
  }

  .contenedor {
    display: flex;
    width: 100%;
    padding: 15px 12% 20px 12%;
  }
  
  .columna {
    border: 1px solid #ddd;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: all 0.3s ease-in-out;
  }
  
  .columna:hover {
    border: 1px solid #777;
    transform: scale(1.1);
    box-shadow: 13px 15px 37px black;
  }

  .fila {
    padding: 0 0 0 0;
    width: 25%;
    border: 1px solid rgb(7, 7, 7);
    margin-left: 10px;
    margin-right: 10px;
    outline: 1px solid greenyellow;
    position: relative;
    transition: .5s;
  }

  .fila .mascara {
    width: 250px;
    height: 80px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    }

  .fila h6 {
      text-transform: uppercase;
      color: #fff;
      text-align: center;
      position: relative;
      font-size: 17px;
      padding: 10px;
      background: rgba(0, 0, 0, 0.9);
      margin: 20px 0 0 0;
      }

  .fila:hover {
    border: 1px solid #777;
    transform: scale(1.1);
    box-shadow: 13px 15px 37px black;
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  img.tam1 {
    /* Para que sea responsiva */
    width: 100%;
    height: 100%;
  }

  img.tam1:hover {
    box-shadow: 0 0 2px 1px rgba(6, 8, 8, 0.5);
  }

  img.tam2{
    width: 25px;
    height: 25px;
    vertical-align: middle;
  }

  p.texto1 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 13px;
    color:blue;
    padding-left: 5px;
    padding-top: 0.1px;
  }

  p.texto2 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 18px;
    color:rgb(1, 1, 12);
    padding-left: 5px;
    padding-top: 0.5px;
    padding-bottom: 10px;
    text-align: center;
  }

  .pie{
    height:400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/sitio/fiesta.jpg) center;
    background-size: cover;
  }

  .info{
    padding: 5rem 30rem;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    box-shadow: 0px 0px 25px #222;
    backdrop-filter: blur(20px);
  }

  h3{
    font-size: 2.5rem;
    font-family: 'Times New Roman', Times, serif;
  }

  h4{
    font-size: 1.5rem ;
    font-family: 'Times New Roman', Times, serif;
  }

  h5{
    font-size: .8rem ;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    color: #fff;
  }

  .titulo .mascara {
    opacity: 0;
    background-color: rgba(46,157,120, 0.7);
    transition: all 0.3s ease-in-out;
    }

  .titulo h6 {
    transform: translateX(-200px);/*Desplazamos a la izquierda*/
    opacity: 0;
    transition: all 0.7s ease-in-out;
    }

  .titulo:hover .mascara {
    opacity: 1;
    }

  .titulo:hover h6 {
    opacity: 1;
    transform: translateX(0px);/*Regresamos a las posiciones originales*/
    }

  @media  (max-width: 1500px) {  
      .fila .mascara {
        width: 100%;
        height: 40px;
        }
    
      .fila h6 {
          font-size: 13px;
          padding: 2px;
          margin: 10px 0 0 0;
          }
    }

  @media  (max-width: 1240px) {
    .centrar {
      padding-top: 7px;
    }

    h1 {
      font: oblique 105% cursive;
    }
  }
  
  @media  (max-width: 952px) {
    h1 {
      font: oblique 105% cursive;
    }

    .fila {
      width: 25%;
      margin: 6px 0;
    }

    p.texto2{
      font-size: 14px;
    }
  }

  @media  (max-width: 700px) {
    h1 {
      font: oblique 90% cursive;
    }

    .fila {
      width: 25%;
      margin: 6px 0;
    }

    p.texto2{
      font-size: 14px;
    }
  }
  
  @media  (max-width: 500px) {
    .fila {
      width: 25%;
    }

    h1 {
      font: oblique 80% cursive;
    }

    .fila .mascara {
      width: 100%;
      height: 25px;
      }
  
    .fila h6 {
      padding: 2px;
      margin: 6px 0 0 0;
      font-size: 8px;
    }
  }
  
  