/* LINKS HOME */
.boxLinksHome {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	padding:0; 
	overflow: hidden;
	-webkit-transition: all 1s; /* Safari */
	transition: all 1s;
}

.boxLinksHome img{
	width: 100%; 
	transform: scale(1.1);
	-webkit-transition: all 0.5s; /* Safari */
	transition: all 0.5s; 
}

.boxLinksHome:hover img{
	transform: scale(1);
	-webkit-transition: all 0.5s; /* Safari */
	transition: all 0.5s; 
}

.backLinks {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(222, 68, 58);
    opacity: 0;
    transition: all 1s;
    height: 0;
    width: 0;
}

.boxLinksHome:hover .backLinks {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(222, 68, 58);
    opacity: 0.7;
    transition: width 0.5s, height 1s;
    height: 100%;
    width: 100%;
}

.boxLinksHome h3, .boxLinksHome h5, .boxLinksHome a button {
	color: #de443a;
} 

.boxLinksHome:hover h3, .boxLinksHome:hover h5, .boxLinksHome:hover a button {
	color: #fff;
} 

.boxLinksHome{
	transition: all 1s;
}

.boxLinksHome h5 {
	display: none;
	transition: all 1s;
	opacity: 0;
} 

.boxLinksHome:hover h5 {
	display: block;
	transition: all 1s;
	opacity: 1;
} 

.boxLinksHome button {
	border: 1px solid #de443a;
	padding: 5px 15px;
	background-color: transparent;
	transition: all 1s;
}

.boxLinksHome:hover button {
	border: 1px solid #fff;
	padding: 5px 15px;
	background-color: transparent;
	transition: all 1s;
}

.boxLinksHome a button:hover {
	border: 1px solid #fff;
	padding: 5px 15px;
	background-color: #fff;
	color: #de443a;
}

/* LINKS HOME */