.bullets {
	position: relative;
	padding: 120px 0;
	text-align: center;
}

.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 .btn {
	margin-top: 48px;
}

.bullets .points {
	display: flex;
	gap: 20;
	justify-content: space-between;
}

.bullets .points .half {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: calc(50% - 10px);
	row-gap: 48px;
}

.bullets .points .half .point {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 40px 44px 60px 44px;
	gap: 32px;
	min-height: 242px;
}

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

.bullets .points .half .point .texts {
	width: calc(100% - 129px);
}

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

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

.bullets .points .half:after {
	content: " ";
	position: absolute;
	display: block;
	width: 2px;
	height: 100%;
	background: #8DD3BF;
	left: 90px;
    top: 0;
	z-index: 9;
}

.bullets .points .half .point:nth-child(1):after {
	content: " ";
	position: absolute;
	display: block;
	width: 2px;
	height: 180px;
	background: #16263c;
	left: 90px;
    top: 0;
	z-index: 99;
}

.bullets .points .half .point:nth-child(2):after {
	content: " ";
	position: absolute;
	display: block;
	width: 2px;
	height: 100%;
	background: #16263c;
	left: 90px;
    bottom: 0;
	z-index: 99;
}

@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 {
		flex-wrap: wrap;
	}

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

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

	.bullets .points .half + .half {
		margin-top: 48px;
	}

	.bullets .points .half .point {
		padding: 0;
		min-height: auto;
	}

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


}