.gridformation .show {
	display: flex;
}

.container {
	margin-top: 20px;
	overflow: hidden;
}

/* Style the buttons */
#myBtnContainer {
	display: flex;
	justify-content: center;

	margin: 20px auto;
	gap: 20px;
	flex-wrap: wrap;
}

.btn {
	width: fit-content;
	padding: 20px;
	border-radius: 20px;
	color: white;
	background-color: #00a99e;
}

.btn:hover {
	background-color: #ddd;
	color: black;
}

.btn.filteractive {
	background-color: #8064a2;
	color: white;
}

.container {
	margin-top: 20px;
	overflow: hidden;
}

.bandeau {
	height: 120px;
	background-color: #00a99e;
	padding: 15px;
	display: flex;
	align-items: center;
	background-image: url("../image/backgroundallforma.jpg");
	background-repeat: no-repeat;

	background-position-x: 75%;
	background-position-y: 30%;
}

h1 {
	font-family: "bebas Neue", Arial, Helvetica, sans-serif;
	font-size: 55px;
	font-weight: 500;
	color: white;
}

.gridformation {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.theformation {
	display: none;
	position: relative;

	height: 350px;
	width: 270px;
	margin: 10px;
	background-color: red;
	border-radius: 25%;
}
.satisfaction {
	position: absolute;
	top: -10%;
	left: -12%;
	width: 100px;
	transform: rotate(-15deg);
}
.gridformation div .thetextformation {
	display: flex;
	border-radius: 20%;
	flex-direction: column;
	justify-content: flex-end;
	background-color: #3333338c;
	position: absolute;
	height: 100%;
	text-overflow: ellipsis;
	width: 100%;
	bottom: 0;
	padding: 10%;
}

.gridformation div .date {
	position: absolute;
	z-index: 1;
	font-size: 20px;
	background-color: #333333;
	padding: 10px;
	border-radius: 0 0 20% 20%;
	top: 0;
	left: 60%;
}

.gridformation div .bgforma {
	border-radius: 20%;
	width: 100%;

	object-fit: cover;
}
h3 {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	font-size: 40px;
	color: white;
	text-shadow: 1px 5px 2px rgba(0, 0, 0, 0.45);
	z-index: 2;
}

p {
	font-family: "Roboto", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 26px;

	color: #ffffff;
}

button {
	display: flex;
	align-items: center;
	justify-content: center;

	font-family: "Inter", sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 22px;
	line-height: 27px;
	color: #ffffff;
	width: 100%;
	max-height: 60px;
	background-color: #d9d9d900;

	border: 1px solid #ffffff;
}

button img {
	width: 25px;
	margin-right: 8px;
}

button:hover {
	cursor: pointer;
	box-shadow: 0px 3px 21px 5px rgba(255, 255, 255, 0.296);
	background-color: rgba(255, 255, 255, 0.245);
}
.undefinedButton:hover {
	cursor: default;
	box-shadow: none;
	background-color: unset;
}
@media screen and (max-width: 890px) {
	.gridformation {
		justify-content: space-around;
	}
	.satisfaction {
		width: 70%;
	}
	.theformation {
		width: 300px;
		height: auto;
		aspect-ratio: 27 / 35;
	}
	#myBtnContainer {
		flex-wrap: wrap;
		justify-content: space-around;
	}
}
@media screen and (max-width: 660px) {
	.theformation {
		width: 100%;
		height: 100%;
		height: auto;
		aspect-ratio: 27 / 35;
	}
	.satisfaction {
		top: 0;
		left: 0;
		width: 70%;
		transform: translate(-10%, -20%) rotate(-15deg);
	}
	.gridformation div .date {
		font-size: 48px;
		padding: 20px;
	}
}
