/* CSS des Cards*/
* {
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	z-index: 0;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	min-height: 100vh;
}

section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#58DA8E, #58DACF);
	clip-path: circle(30% at right 70%);
}

section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#00AAFF, #8D4005);
	clip-path: circle(20% at 10% 10%);
}

.container {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 40px 0;
}

.container .card {
	position: relative;
	width: 300px;
	height: 400px;
	background: rgba(255, 255, 255, 0.05);
	margin: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(7px);
}

.container .card .content {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: 0.5s;
}

.container .card:hover .content {
	transform: translateY(-20px);
}

.container .card .content .imgBx {
	position: relative;
	width: 150px;
	height: 150px;
	overflow: hidden;
}

.container .card .content .imgBx img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    border-radius: 7px;
	object-fit: cover;
}

.container .card .content .contentBx h3 {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	margin: 20px 0 10px;
	line-height: 1.1em;
}

.container .card .content .contentBx h3 span {
	font-size: 12px;
	font-weight: 300;
	text-transform: initial;
}

.container .card .sci {
	position: absolute;
	bottom: 50px;
	display: flex;
}

.container .card .sci li {
	list-style: none;
	margin: 0 10px;
	transform: translateY(40px);
	transition: 0.5s;
	opacity: 0;
}

.container .card:hover .sci li {
	transform: translateY(0px);
	opacity: 1;
}

.container .card .sci li a {
	color: #fff;
	font-size: 20px;
}

.fa-circle-xmark{
	position: absolute;
	color: red;
	right: 390%;
	bottom: 950%;
}

.bandeau{
	visibility:visible;
	position: absolute;
	border-bottom: 27px solid green;
	border-left  : 26px solid transparent; 
	border-right : 28px solid transparent;
	border-radius: 4px;
	height : 0;
	width  : 32%;
	top: 3%;
	left: 76%;
	transform: rotate(45deg);
}

.waterImg{
    display: block;
    left: 25%;
    z-index: 1;
    height: 30%;
    width: 30%;
}

@media screen and (max-width: 900px){

	.bandeau{
		width: 32%;
	}
	
	.fa-circle-xmark{
		right: 360%;
		bottom: 940%;
	}
	
	.waterImg{
	    height: 75%;
        width: 75%;
	}
}