.fp-hero-section {
	padding: 10px 0;
	background: #F4FAFF;
}

@media (min-width: 768px) {
	.fp-hero-section {
		padding: 35px;
	}
}

.fp-hero-section__trust-label {
	color: var(--theme-color-2);
	background: var(--tab-bg-active);
	padding: 10px 20px;
	border-radius: 99px;
	margin-bottom: 10px;
	display: inline-flex;
	gap: 10px;
	font-weight: var(--font-weight-bold);
	align-self: center;
}

@media (min-width: 768px) {
	.fp-hero-section__trust-label {
		align-self: flex-start;
	}
}

.fp-hero-section__inner-wrapper {
	display: flex;
	flex-direction: column;
	background: #fff;
	padding: 18px;
	border-radius: 24px;
	background: #FFF url(../img/hero/frontpage/fp-hero-bg-form.svg) bottom center no-repeat;
	background-size: 100% auto;
	box-shadow: 0 4px 32px 0 rgba(23, 83, 227, 0.15);
	min-height: 400px;
}

/* @media (min-width: 768px) {
	.fp-hero-section__inner-wrapper {
		padding: 18px;
	}
} */

.fp-hero-section__inner-wrapper-limited {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.fp-hero-section h1 {
	font-size: 3.6rem;
	max-width: 550px;
	margin-bottom: 0;
	line-height: 1.1;
}

@media (min-width: 768px) {
	.fp-hero-section h1 {
		font-size: 6.4rem;
	}
}

.fp-hero-section h1 span {
	color: var(--theme-color-2);
}

.fp-hero-section__intro-text {
	font-size: 1.6rem;
}

@media (min-width: 768px) {
	.fp-hero-section__intro-text {
		font-size: 2rem;
		max-width: 800px;
		margin: 0 auto;
		line-height: 1.5;
	}
}

.hero-section-ctas {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	max-width: 650px;
	margin: 25px 0;
}

.hero-section-ctas a {
	flex-grow: 1;
	width: 100%;
}

@media (min-width: 768px) {
	.hero-section-ctas {
		flex-direction: row;
		gap: 25px;
	}

	.hero-section-ctas a {
		padding: 18px 15px
	}
}

.hero-section-claims {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1000px;
	padding: 0 15px;
	justify-content: center;
	align-items: flex-start;
	gap: 1px;
	border-radius: 12px;
	background: #FFF;
	box-shadow: 0 4px 32px 0 rgba(23, 83, 227, 0.15);
}

@media (min-width: 768px) {
	.hero-section-claims {
		flex-direction: row;
		padding: 20px 30px;
		gap: 20px;
		align-items: stretch;
		font-size: 1.6rem;
	}
}

.hero-section-claims > div {
	display: flex;
	align-items: center;
	gap: 15px;
	text-align: left;
	line-height: var(--line-height-reduced);
	padding: 15px 0;
	width: 100%;
	color: var(--reduced-color);
}

.hero-section-claims > div:not(:last-child) {
	border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
	.hero-section-claims > div:not(:last-child) {
		border-bottom: none;
		border-right: 1px solid var(--border-color);
		padding-right: 15px;
	}

}

.hero-section-claims > div img {
	width: 46px;
	height: 46px;
}

.hero-section-claims > div b {
	display: block;
	color: #000;
}

.hero-section-claims > div div {
	display: flex;
	flex-direction: column;
	gap: 5px;
}