{# GENERAL
-------------------------------------------------------------------------------------------------------------------------------------------------- #}
.point-list-wrapper {
	display : flex;
	justify-content: space-between;
}

.point-list {
	display: flex;
	position: relative;
}

.point-list__title {
	position: relative;
}

.point-list__number {
	max-width: 30px;
	position: absolute;
	width: 100%;
}

.point-list__number span {
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: -0.01em;
	text-transform: uppercase;
}

.point-list__number:after {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #83BB26;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

.point-list__title h3 {
	font-weight: 400;
	font-size: 38px;
	line-height: 46px;
	letter-spacing: -0.01em;
}

.point-list__image {
	margin: 0;
	border-radius: 16px;
	width: 100%;
}

@media (max-width: 767px) {

	.point-list__title h3 {
    text-align: center;
		margin-left: 0px;
		font-size: 25px;
		line-height: 31px;
	}

	.point-list__image-wrapper {
		margin-bottom: 24px;
	}

	.point-list__description--mobile {
		margin-left: 0px;
	}

	.point-list__number span {
		font-size: 14px;
		line-height: 23px;
	}

	.point-list__description *:not(h1,h2,h3,h4,h5,h6) {
		font-size: 15px;
		line-height: 23px;
	}
}

{# TYPE DRIVEN
-------------------------------------------------------------------------------------------------------------------------------------------------- #}

.point-list--type-1 {
	flex-direction: column;
	justify-content: space-between;
	max-width: 430px;
	width: 100%;
	margin-right: 20px;
}

.point-list__number--type-1 {
	top: -40px;
}

.point-list__description--type-1-mobile-lower {
	display: none;
}

.point-list--type-1-image {
	width: 100%;
	max-width: 660px;
	margin-right: 0px;
}

.point-list--type-2 {
	flex-direction: row;
	width: 100%;
}

.point-list--type-2 .point-list__title {
	width: 100%;
}

.point-list--type-2 .point-list__title * {
	max-width: 400px;
}

.point-list__description *:last-child {
	margin-bottom: 0;
}

.point-list__number--type-2 {
	top: -40px;
	justify-content: space-between;
}

.point-list__description--type-2 {
	max-width: 660px;
	padding-left: 20px;
}

.point-list-wrapper--type-3 {
	flex-direction: row;
}

.point-list--type-3-spacer {
	width: 50%;
	position: relative;
}

.point-list--type-3 {
	max-width: 660px;
	flex-direction: column;
}

.point-list__number--type-3 {
	top: 0px;
}

.point-list--type-4 {
	flex-direction: column;
}

.point-list__number--type-4 {
	top: -40px;
}

@media (max-width: 767px) {

	.point-list-wrapper--type-1 {
		flex-direction: column;
	}

	.point-list__description--type-1-mobile-upper {
		display: none;
	}

	.point-list__description--type-1-mobile-lower {
		display: block;
		max-width: 660px;
	}

	.point-list--type-1-image--reverse .point-list__description--type-1-mobile-lower {
		margin-top: 0px;
	}

	.point-list--type-1-image--reverse {
		display: flex;
		flex-direction: column-reverse;
	}

	.point-list--type-2 {
		flex-direction: column;
	}

	.point-list__description--type-2 {
		padding-left: 0px;
	}

	.point-list--type-3-spacer {
		position: absolute;
	}

	.point-list__number--type-3 {
		top: -40px;
	}

	.point-list__number--type-4 {
		top: -40px;
	}
}