.bulles_container {
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 40px;
	max-width: 900px;
	margin: auto;
	flex-wrap: wrap;
}

.bulle_single_container {
	text-align: center;
	border-radius: 20px;
	box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.2);
	padding: 50px 35px;
	background-color:#FFFFFF;
	width: calc(25% - 30px);
}

.bulle_single_upper_content {
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-bottom: 3px solid var(--color_sky_blue);
}

.bulle_single_upper_title {
	color: var(--color_dark_blue);
	font-size: 2.2rem;
	font-weight: 600;
}

.bulle_single_below_content {
	font-family: 'DM Sans';
	line-height: 1.1;
	color: var(--color_blue);
	font-size: 1.3rem;
	font-weight: 500;
	padding-top: 20px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.bulle_single_upper_unite {
	background-color: #EAEAEB;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	position: relative;
}

.bulle_single_upper_unite span {
	font-family: 'DM Sans';
	color: var(--color_blue);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: 700;
	font-size: 1rem;
}

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

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

	.bulle_single_container {
		width: calc(50% - 20px);
	}
	.bulles_container {
		max-width: 500px;
	}
}

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

}

@media screen and (max-width: 480px) {
	.bulle_single_container {
		width: 100%;
	}
	.bulles_container {
		max-width: 200px;
	}
}