.onboarding {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.onboarding-heading {
	max-width: 759px;
	margin: 0 auto;
	text-align: center;
}

.onboarding-heading h2 {
  font-size: 56px;
	font-family: 'National';
	color: #1F2A37;
	margin: 0;
}

.onboarding-heading p {
	color: #6C737F;
	font-family: 'National';
	font-size: 20px;
	line-height: normal;
}

.onboarding-contents {
	display: flex;
	gap: 15px;
}

.onboarding__content-card {
	background: #fff;
	border-radius: 20px;
	height: fit-content;
}

.onboarding__card-heading {
	font-size: 30px;
	font-family: 'National';
	line-height: normal;
	text-align: center;
	margin: 15px;
}

.onboarding__card-details {
	padding: 10px 20px 15px;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
}

.onboarding__detail-sub_heading {
	font-size: 18px;
	color: #1F2A37;
	font-weight: 600;
	margin-bottom: 0;
	font-family: 'National';
	line-height: normal;
}

.onboarding__card-img {
	width: 100%;
}

.onboarding__detail-description {
	font-size: 14px;
	color: #1F2A37;
	line-height: normal;
	font-family: 'National';
	margin: 0;
}

.onboarding__detail-cta {
	font-size: 18px;
	font-family: National!important;
	border: 1px solid #0D121C;
	background-color: #0D121C;
  color: #fff;
	border-radius: 5px;
	font-weight: 600;
	display: block;
	text-align: center;
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 5px;
	justify-content: center;
}

.onboarding__detail-cta:hover {
	color: #0D121C;
	border: 1px solid #0D121C;
	background-color: #fff;
}

.onboarding__detail-includes {
	padding: 15px;
	border-top: 1px solid #E5E7EB;
	margin-top: 5px;
}

.onboarding__detail-includes h5 {
	font-size: 15px;
	font-family: 'National';
	font-weight: 600;
	margin-bottom: 10px;
	color: #6C737F;
}

.onboarding-include {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 12px;
}

.onboarding-include p {
	font-size: 16px;
	line-height: normal;
	color: #1F2A37;
	margin: 0;
	font-family: 'National';
}

@media screen and (max-width: 768px) {
	.onboarding-contents {
		flex-direction: column;
	}
}


.three-column__heading-title {
	color: #fff;
	font-size: 56px;
	font-weight: 700;
	line-height: normal;
	margin: 0;
	text-align: center;
}

.three-column__heading-description {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: normal;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.three-column__contents {
	display: flex;
	margin-top: 50px;
	gap: 40px;
}

.three-column__content-card {
	width: calc(33.33% - 20px);
	background: #ffffffab;
	border-radius: 25px;
}

.three-column__card-details {
	padding: 20px 50px;
}

.three-column__card-img {
	width: 100%;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}

.three-column__card-heading {
	color: #1F2A37;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	margin: 0;
}

.three-column__card-description {
	margin-top: 20px;
	color: #1F2A37;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}

.three-column__ctas {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 50px;
}

.three-column__cta {
	border-radius: 38px;
	padding: 10px 20px;
	color: #fff!important;
	min-width: 250px;
	font-size: 20px;
	font-weight: 700!important;
	display: block;
	width: fit-content;
	text-align: center;
}

.three-column__cta.first {
	border: 1px solid #29343B;
	background: var(--Gradient-Green-Yellow, linear-gradient(90deg, #64D994 10.58%, #EBD89A 100%));
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.three-column__cta.second {
	border: 1px solid #F0F0F0;
	background: rgba(5, 46, 28, 0.72);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);\
}


@media screen and (max-width: 768px) {
	.three-column__contents, .three-column__ctas {
		flex-direction: column;
	}
	.three-column__ctas {
		align-items: center;
	}
	
	.three-column__content-card {
		width: 100%;
	}
}
