#latest-informations {
    margin: 3em 0;
}
.information-res-item {
    margin-bottom: 7px;
}
.information-res-wrap {
    background-color: #EFEFEF;
    padding: 0 5em;
    -webkit-transition: all .35s ease;
	-moz-transition: all .35s ease;
	-o-transition: all .35s ease;
	transition: all .35s ease;
}
.information-res-image-back {
    height: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.information-res-image-back::before {
    content: "\f178";
    background-color: rgba(52,124,191,0.49);
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: Icons;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    opacity: 0;
    -webkit-transition: all .35s ease;
	-moz-transition: all .35s ease;
	-o-transition: all .35s ease;
	transition: all .35s ease;
    animation-name: arrow;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
.information-res-image-back img {
    display: none;
}
.information-res-text {
    text-align: right;
    padding-top: 1em;
    padding-bottom: 1em;
}
.information-res-text h4 {
	margin-top: 0;
    font-size: 22px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 35px;
    height: 70px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-transform: uppercase;
}
.information-res-paragraph {
    color: #425E7F;
    line-height: 1.5;
}
.information-res-link {
    margin-top: 20px;
    display: inline-block;
    text-decoration: underline;
}
.information-res-wrap:hover {
    background-color: rgba(52,124,191,0.49);
}
.information-res-wrap:hover .information-res-image-back::before {
    opacity: 1;
}
.information-res-wrap:hover .information-res-text, .information-res-wrap:hover .information-res-paragraph {
	color: white;
}
#latest-informations .sk.button {
	margin-top: 1.25em;
    padding: 0.75em 2.5em;
}
@keyframes arrow {
  0%   {padding-left: 0;}
  50%  {padding-left: 1.5em;}
  100% {padding-left: 0;}
}
/*Responsive*/
@media only screen and (max-width:769px) {
.information-res-item {
    margin-bottom: 25px;
}
.information-res-wrap {
    padding: 0;
}
.information-res-image-back {
    height: 50vw;
}
.information-res-text {
    padding: 1em 2em;
}
.information-res-text h4 {
    height: auto;
}
#latest-informations .sk.button {
    margin-top: 0;
}
}