.bullets {
	position: relative;
	padding: 120px 0;
}

.bullets>.container>.title {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 44px;
	font-style: normal;
	font-weight: 700;
	line-height: 50px; 
	margin: 0 auto 48px auto;
}

.bullets .title span {
	color: #8DD3BF;
}

.bullets .points {
	position: relative;
	display: flex;
	gap: 20;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 108px;
}

.bullets .points .point {
	position: relative;
	width: calc(33% - 108px);	
}

.bullets .points .point img {
	position: relative;
	width: 97px;
	height: 96px;
	z-index: 9999;
}

.bullets .points .point p.title {
	color: #8DD3BF;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 38px; 
	margin: 32px auto 32px auto;
	text-align: left;
}

.bullets .points .point p.desc {
	margin: 0 auto;
	text-align: left;
	color: #FFF;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.bullets .points .point:after {
	content: " ";
	position: absolute;
	display: block;
	width: 210px;
	height: 2px;
	background: #8DD3BF;
	right: 0;
    top: 45px;
	z-index: 9;
}

@media only screen and (max-width: 996px) {
	.bullets {
		padding: 80px 0 40px 0;
	}

	.bullets>.container>.title {
		font-size: 32px;
		font-style: normal;
		font-weight: 700;
		line-height: 42px;
	}

	.bullets .points .point:after { 
		display: none;
	}	

	.bullets .points {
		flex-wrap: wrap;
		row-gap: 48px;
	}

	.bullets .points .half .point p.title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.bullets .points .point {
		width: 100%;
	}
}