

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  Montserrat,Arial,sans-serif
}

body{
    
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background:#eee;
  
/*       background: linear-gradient(50deg, #ffffff, #0099ff);  */
}
.contenedor{
    width: 100%;
 
    background:white;
position: relative;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 40px 80px;
padding: 50px 50px;
/* margin-left: auto; */
/* margin-right: auto; */
background: #eee;

}

.contenedor .cards {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 150px;
    height:120px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.contenedor .cards:hover {
    height: 160px;
   
}

.contenedor .cards .imgBx {
    position: absolute;
    top: 10px;
    width: 100px;
    height: 60px;
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
}

.contenedor .cards:hover .imgBx {
top: -30px;
scale: 0.75;
box-shadow: 0 15px 45px rgba(0,0,0,0.2);

}

.contenedor .cards .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contenedor .cards .content{

    position: absolute;
    width: 100%;
    top: 85px;
    padding: 0 30px;
    height: 30px;
    overflow: hidden;
    text-align: center;
    transition: 0.5s;
}

.contenedor .cards:hover .content{
top: 35px;
height: 230px;
}
.contenedor .cards:hover .content h2{
color:#0000CC;
}

.contenedor .cards .content  a span{

    position: relative;
    top: 10px;
    display: inline-block;
    padding: 5px 35px;
    background: #0099ff;
    font-weight: bold;
    text-decoration: none;
    font-size: 11px;
    color: white;
    border-radius: 8px;
 

}
.contenedor .cards .content  a span:hover{

  
    background: #0000cc;
  
 

}

.header{
	
	position: absolute;
	display: contents;
}
.footer{
	
	position: absolute;
	display: contents;
	
}
.logo, .text, .pie{
	width: 60%;
    margin-left: auto;
    margin-right: auto;
    background: white;
}
h2{
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 0.7rem;
  
	
}
h5{
	font-size: 11px;
	margin-bottom: 0;

}