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

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

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

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

.bullets_new .points .point {
	position: relative;
	width: calc(25% - 88px);	
}

.bullets_new .points .point svg {
	position: relative;
	width: 42px;
	height: 42px;
	z-index: 9999;
}

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

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

.bullets_new .points:after {
	content: " ";
    position: absolute;
    display: block;
    width: 105%;
    height: 2px;
    background: #8DD3BF;
    left: -2%;
    top: 20px;
    z-index: 9;
}

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

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

	.bullets_new .points:after {
		display: none;
	}	

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

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

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