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

.t500-hero__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.t500-hero__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 50%;
	padding-right: 40px;
}

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

.t500-hero__heading .color__yellow {
	color: #FFD367;
}

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

.t500-hero__intro p {
	margin: 0 0 12px 0;
}

.t500-hero__intro p:last-child {
	margin-bottom: 0;
}

.t500-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}

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

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

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

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

.t500-hero__button--outline {
	padding: 13px 24px;
	border: 1px solid rgba(255, 255, 255, 0.698);
	background-color: transparent;
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	color: #FFFFFF;
}

.t500-hero__button--outline:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.t500-hero__images {
	display: flex;
	gap: 16px;
	width: 50%;
}

.t500-hero__image-main {
	width: 47.5%;
	overflow: hidden;
	border-radius: 16px;
}

.t500-hero__image-stack {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 52.5%;
}

.t500-hero__image-stack-item {
	overflow: hidden;
	border-radius: 16px;
}

.t500-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

	.t500-hero__inner {
		flex-direction: column;
		gap: 32px;
	}

	.t500-hero__content,
	.t500-hero__images {
		width: 100%;
		padding-right: 0;
	}

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

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

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

	.t500-hero__buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.t500-hero__button,
	.t500-hero__button--outline {
		justify-content: center;
	}
}
