.no-hero {
	background-color: #05324E;
	padding-top: 100px;
	padding-bottom: 40px;
}

.no-hero__inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.no-hero__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 55%;
	padding-right: 88px;
}

.no-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
}

.no-hero__eyebrow-icon-img {
	width: 39px;
	height: 39px;
	display: block;
}

.no-hero__eyebrow-text {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: #FFFFFF;
}

.no-hero__heading {
	margin: 0 0 30px 0;
	font-size: 48px;
	font-weight: 500;
	line-height: 52px;
	color: #FFFFFF;
}

.no-hero__description {
	margin: 0 0 40px 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #FFFFFFB2;
}

.no-hero__button {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	background-color: #0072FF;
	border-radius: 50px;
	padding: 4px 4px 4px 24px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.no-hero__button:hover {
	background-color: #0061D9;
}

.no-hero__button-text {
	margin: 0 24px 0 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	color: #FFFFFF;
}

.no-hero__button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #FFFFFF;
	color: #0072FF;
	flex-shrink: 0;
}

.no-hero__coverage {
	margin: 16px 0 0 0;
	font-size: 16px;
	font-weight: 300;
	line-height: 20px;
	color: #FFFFFFB2;
}

/* Right column */
.no-hero__side {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 45%;
}

.no-hero__side-label {
	display: flex;
	align-items: center;
	gap: 12px;
}

.no-hero__side-label-icon-img {
	width: 32px;
	height: 32px;
	display: block;
}

.no-hero__side-label-text {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: #FFFFFF;
}

.no-hero__side-heading {
	margin: 0;
	font-size: 16px;
	font-weight: 300;
	line-height: 20px;
	color: #FFFFFFB2;
}

.no-hero__bullet {
	display: flex;
	align-items: center;
	gap: 20px;
	background-color: #FFFFFF;
	border-radius: 12px;
	padding: 16px 20px;
}

.no-hero__bullet-icon-img {
	width: 32px;
	height: 32px;
	display: block;
	flex-shrink: 0;
}

.no-hero__bullet-text {
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #031527;
}

@media (max-width: 1024px) {
	.no-hero {
		padding-top: 80px;
		padding-bottom: 40px;
	}

	.no-hero__inner {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 40px;
	}

	.no-hero__content {
		width: 100%;
		padding-right: 0;
	}

	.no-hero__heading {
		font-size: 42px;
		line-height: 48px;
	}

	.no-hero__side {
		width: 100%;
		align-items: flex-start;
	}

	.no-hero__bullet {
		padding: 12px 16px;
	}
}

@media (max-width: 767px) {
	.no-hero {
		padding-top: 60px;
		padding-bottom: 40px;
	}

	.no-hero__inner {
		flex-direction: column;
		gap: 20px;
	}

	.no-hero__heading {
		font-size: 36px;
		line-height: 42px;
	}

	.no-hero__bullet {
		gap: 12px;
		padding: 8px 12px;
	}
}
