.points_forts_container {
	background-color: var(--oxy_color_8);
	padding: 45px 60px 35px;
}

.points_forts_title {
	background-color: var(--oxy_color_9);
    color: white;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
	font-family: 'Albert Sans';
	padding: 10px;
	text-align: center;
	margin-bottom: 40px;
}

.points_forts_container ul {
	list-style: none;
    padding: 0;
	position: relative;
}

.points_forts_container ul::before {
	content: "";
	display: block;
	width: 2px;
	height: calc(100% + 50px);
	left: 4px;
	top: 5px;
	background-color: var(--oxy_color_6);
	position: absolute;

}

.point_fort_item {
	padding-left: 30px;
	position: relative;
	line-height: 1.3;
    margin-bottom: 20px;
	font-weight: 600;
}

.point_fort_item::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--oxy_color_6);
	position: absolute;
	left: 0;
	top: 4px;
}

