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

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

.about-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	width: 50%;
	padding-right: 88px;
}

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

.about-hero__description {
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #FFFFFFB2;
}

.about-hero__description p {
	margin: 0 0 20px 0;
}

.about-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;
}

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

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

.about-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;
}

/* Images */
.about-hero__images {
	display: flex;
	flex-direction: row;
	gap: 20px;
	width: 50%;
}

.about-hero__image-main {
	width: 47.321%;
	max-width: 47.321%;
	flex-grow: 0;
	flex-shrink: 0;
}

.about-hero__image-stack {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	text-align: right;
}

.about-hero__img {
	max-width: 100%;
	height: auto;
	border-radius: 24px;
}

.about-hero__image-main .about-hero__img {
	width: 100%;
	display: block;
}

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

	.about-hero__inner {
		flex-direction: column;
		gap: 40px;
	}

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

	.about-hero__headline {
		font-size: 42px;
		line-height: 48px;
	}

	.about-hero__images {
		width: 100%;
		align-items: center;
	}

	.about-hero__image-main {
		text-align: center;
	}

	.about-hero__image-stack {
		text-align: center;
	}
}

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

	.about-hero__inner {
		gap: 20px;
	}

	.about-hero__headline {
		font-size: 36px;
		line-height: 42px;
	}

	.about-hero__images {
		flex-wrap: wrap;
	}

	.about-hero__image-main {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}
}
