.pricing-options {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
}
.pricing--item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	border-radius: 12px;
	background: #F5F5F5;
	overflow: hidden;
	padding: 1.5rem 1rem;
	flex: 1 1 100%;
	width: 100%;
	position: relative;
}
.pricing--item__title,
.pricing--item__price,
.pricing--item__description {
	flex: 1 1 100%;
}
.pricing-options h1,
.pricing-options h2,
.pricing-options h3,
.pricing-options h4,
.pricing-options h5,
.pricing--item__description p:last-of-type,
.pricing--item__description li:last-of-type {
	margin: 0;
}
h2.pricing-options__heading {
	font-size: calc(22px + (38 - 22) * (100vw - 380px) / (1920 - 380));
}
h2.pricing--item__title {
	font-size: calc(18px + (32 - 18) * (100vw - 380px) / (1920 - 380));
}
.pricing--item__price {
	font-size: calc(28px + (65 - 28) * (100vw - 380px) / (1920 - 380));
	color: var(--header-blue, #032B68);
    font-weight: 700;
}
.pricing--item:before,
.pricing--item:after {
	position: absolute;
	content: '';
	height: 0.5rem;
	width: 100%;
	display: block;
	left: 0;
}
.pricing--item:before {
	top: 0;
}
.pricing--item:after {
	bottom: 0;
}
.pricing--item:nth-of-type(1):before,
.pricing--item:nth-of-type(1):after {
	background: var(--light-blue);
}
.pricing--item:nth-of-type(2):before,
.pricing--item:nth-of-type(2):after {
	background: var(--brand-green);
}
.pricing--item:nth-of-type(3):before,
.pricing--item:nth-of-type(3):after {
	background: var(--brand-orange);
}
.pricing--item:nth-of-type(4):before,
.pricing--item:nth-of-type(4):after {
	background: var(--brand-red);
}
.pricing--item:nth-of-type(5):before,
.pricing--item:nth-of-type(5):after {
	background: var(--brand-purple);
}
@media screen and (min-width: 850px) {
	.pricing--item {
		flex-wrap: nowrap;
		padding: 3.5rem 2rem;
	}
	.pricing--item__title {
		flex: 0 0 280px;
	}
	.pricing--item__price {
		flex: 0 0 140px;
	}
	.pricing--item__description {
		flex: 0 0 525px;
	}
}