/* CSS Auxiliar para Bootstrap */
/* Autor: Infrusch S.A. de C.V  */
/*Fecha: 15-10-2023*/

/* PARRAFOS */

.text-centro{
    text-align: center;
}

.text-izquierda{
    text-align: left;
}

.text-derecha{
    text-align: right; 
}

/* AJUSTAR TAMAÑOS DE DIV */

.ajuste-100{
    width: 100%
}

.ajuste-90{
    width: 90%
}


.ajuste-80{
    width: 80%
}


.ajuste-70{
    width: 70%
}

/* AJUSTAR TAMAÑOS CLASE TOP */

.top-10{
    margin-top: 10px;
}

.top-20{
    margin-top: 20px;
}

.top-30{
    margin-top: 30px;
}

.top-40{
    margin-top: 40px;
}

.top-50{
    margin-top: 50px;
}

.container-cultura {
  display: flex;
  width: 100%;
  padding: 4% 2%;
  box-sizing: border-box;
  height: 100vh;
}

.box {
  flex: 1;
  overflow: hidden;
  transition: .5s;
  margin: 0 2%;
  box-shadow: 0 20px 30px rgba(0,0,0,.1);
  line-height: 0;
}

.box > img {
  width: 200%;
  height: calc(100% - 10vh);
  object-fit: cover; 
  transition: .5s;
}

.box > span {
  font-size: 3.8vh;
  display: block;
  text-align: center;
  height: 10vh;
  line-height: 2.6;
  color: #000;
}

.box:hover { flex: 1 1 50%; }
.box:hover > img {
  width: 100%;
  height: 100%;
}
.list-unstyled a{
    color: #000 !important;
}
 



