.card a.myButton {
    background-color: transparent;
    color: #000000;
    padding: 10px 22px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
	font-family: adamFont;
    vertical-align: middle;
	overflow: hidden;
	cursor: pointer;
	
	border-bottom: 1px solid transparent;
	border-top: 1px solid transparent;
	transition: border linear 0.5s;
}

.card:hover a.myButton {
	border-top: 1px solid #a7a7a7b8;
	border-bottom: 1px solid #a7a7a7b8;
	transition: border linear 0.8s;
}

.card a.myButton:hover {
	border-color: #5c5c5cb8;
}
/* fin */

/* Cards Grid */
.card-grid {
	flex-wrap: wrap;
}

.card {
	position: relative;
	width: 280px;
	height: 200px;
	background-color: #dadada;
	overflow: hidden;
	margin: 5px;
	border-radius: 5px;
	box-shadow: 7px 5px 6px #b1b1b147;
    transition: box-shadow .8s linear;
}

.card.card-big {
    height: 400px;
}

.card:hover {
	box-shadow: 7px 5px 6px #b1b1b1c2;
    transition: box-shadow .8s linear;
}

.card > img {
	position: absolute;
	top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

}

.card > img.img-portrait {
	max-width: 120%;
}

.card > img.img-paysage {
	min-height: 100%;
    max-height: 120%;
}

.card.card-big > img.img-portrait {
	min-width: inherit;
	max-width: 120%;
	max-height: inherit;
}

.card-content {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: white;
	opacity: 0;
	height: 100%;
	width: 100%;
	transition: .5s ease;
	overflow: hidden;
}

.card:hover > .card-content {
	opacity: 0.8;
}

.card-info {
	display: block;
	text-align: center;
	padding: 5px;
}

.card-info h2 {
    max-height: 35px;
    margin-bottom: 10px;
    font-weight: bold;
}

.card-info p {
	margin: 5px;
	margin-bottom: 18px;
    max-height: 85px;
    overflow: hidden;
}

.card-info .card-date {
	font-style: italic;
	white-space: pre-line;
}

.card-info audio {
	width: 100%;
}

/* Fotorama */
.fotorama {
	transition: ease-in 10s;
}
/* fin */

@media screen and (max-height: 800px), screen and (max-width: 1330px){
	.card.card-big {
		height: 200px;
	}
}