@media screen and (max-width: 898px) {
	.hero-slide__image {
		object-position: 93%;
	}

	.column__section {
		padding: 3rem 0;
		border-bottom: solid 1px #ffffff;
	}

	.column__section:first-of-type {
		padding-top: 0;
	}

	.column__section:last-of-type {
		padding-bottom: 0;
		border: none;
	}
}

.hero-slide__cta {
	background-color: #14123b;
}

.hero-slide__cta span:before,
.hero-slide__cta span:after {
	color: #ffffff;
}

.rtb-stats__container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 2rem;
}

.rtb-stats {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--copy-default);
}

.rtb-stats h4 {
	font-size: 3rem;
	color: var(--brand-commercial-deep);
}

.rtb-stats span:not(.stat) {
	font-size: 1.25rem;
	text-align: center;
}

.rich-text-block:has(.content-blocks) {
	background: #14123b;
}

.content-blocks h3 {
	color: #ffffff;
}

.content-block {
	position: relative;
	background-color: var(--brand-commercial);
	color: #ffffff;
	border-radius: 0.625rem;
	padding: 1rem;
}

.content-block__wrapper {
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.content-block__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	color: var(--copy-default);
	border-radius: 50%;
	background-color: #ffffff;
	position: absolute;
	bottom: -1rem;
	left: 1rem;
}

.content-block h4 {
	margin-bottom: 1rem;
	font-size: 1.25rem;
	line-height: normal;
	color: #ffffff;
}

.content-block p {
	color: #ffffff;
}

.icon-grid {
	color: var(--copy-default);
	margin-bottom: 2rem;
}

.icon-grid__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
}

.icon-grid__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.icon-grid__item .front {
	display: none;
}

.icon-grid__item .back {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.icon-grid__item .front h4 {
	color: #ffffff;
}

.icon-grid h4 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.icon-grid img {
	max-width: 75px;
	border-radius: 50%;
}

.icon-grid p {
	text-align: center;
	padding: 0 0.5rem;
}

.icon-grid__item .icon {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 2rem;
	height: 2rem;
}

.rich-text-block:has(.column-blocks) {
	background: #14123b;
}

.column-blocks h3 {
	color: #ffffff;
}

.column__block {
	border-radius: 0.625rem;
	padding: 1rem;
	display: flex;
	align-items: center;
	background: var(--brand-commercial);
}

.column__block.fade {
	position: relative;
	margin-bottom: 3rem;
}

.column__block.fade:after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 25px 0 25px;
	border-color: var(--brand-commercial) transparent transparent transparent;
	position: absolute;
	right: 0;
	left: 0;
	top: auto;
	bottom: -30px;
	margin: auto;
}

.column__block p {
	color: #ffffff;
}

.column__section {
	margin: 1rem 0;
}

.column__section.two .column__block {
	background-color: #b94bff75;
}

.column__section.two .fade::after {
	border-color: #b94bff75 transparent transparent transparent;
}

.column__section.three .column__block {
	background-color: #b94bff55;
}

.column__section.three .fade::after {
	border-color: #b94bff55 transparent transparent transparent;
}

.column__section.four .column__block {
	background-color: #b94bff35;
}

.column__section.four .fade::after {
	border-color: #b94bff35 transparent transparent transparent;
}



@media screen and (min-width: 599px) {
	.icon-grid__item {
		width: 40%;
	}

	.icon-grid__wrapper {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.content-block__wrapper {
		flex-direction: row;
		justify-content: space-between;
	}
}

@media screen and (min-width: 768px) {
	.rtb-stats__container {
		flex-direction: row;
		justify-content: center;
	}

	.rtb-stats {
		width: 25%;
	}
}

@media screen and (min-width: 899px) {
	.content-block {
		opacity: 0;
	}

	.animated .content-block {
		-webkit-animation: fadeIn ease-in 2s;
		-moz-animation: fadeIn ease-in 2s;
		-ms-animation: fadeIn ease-in 2s;
		-o-animation: fadeIn ease-in 2s;
		animation: fadeIn ease-in 2s;
		animation-fill-mode: forwards;
	}

	.animated .content-block:nth-of-type(2) {
		animation-delay: 1.5s;
	}

	.animated .content-block:nth-of-type(3) {
		animation-delay: 3s;
	}

	.animated .column__block.fade {
		-webkit-animation: 2s fadeIn forwards;
		-moz-animation: 2s fadeIn forwards;
		-ms-animation: 2s fadeIn forwards;
		-o-animation: 2s fadeIn forwards;
		animation: 2s fadeIn forwards;
	}

	.animated .column__block.slide-right {
		-webkit-animation: 2s slide-right forwards;
		-moz-animation: 2s slide-right forwards;
		-ms-animation: 2s slide-right forwards;
		-o-animation: 2s slide-right forwards;
		animation: 2s slide-right forwards;
		animation-delay: 1s;
	}

	.content-block {
		width: 30%;
	}

	.column__block {
		width: 40%;
	}

	.column__section.two .fade::after {
		border-color: transparent transparent transparent #b94bff75;
	}

	.column__section.three .fade::after {
		border-color: transparent transparent transparent #b94bff55;
	}

	.column__section.four .fade::after {
		border-color: transparent transparent transparent #b94bff35;
	}

	.animated .column__section.two .fade {
		animation-delay: 2s;
	}

	.animated .column__section.two .slide-right {
		animation-delay: 3s;
	}

	.animated .column__section.three .fade {
		animation-delay: 4s;
	}

	.animated .column__section.three .slide-right {
		animation-delay: 5s;
	}

	.animated .column__section.four .fade {
		animation-delay: 6s;
	}

	.animated .column__section.four .slide-right {
		animation-delay: 7s;
	}

	.column__block.fade {
		opacity: 0;
		margin-bottom: 0;
	}

	.column__block.fade:after {
		border-width: 25px 0 25px 30px;
		border-color: transparent transparent transparent var(--brand-commercial);
		right: -30px;
		left: auto;
		top: 0;
		bottom: 0;
	}

	.column__block.slide-right {
		opacity: 0;
	}

	.column__section {
		display: flex;
		justify-content: center;
		gap: 5rem;
	}

	.icon-grid__item {
		width: 230px;
		height: 260px;
	}

	.icon-grid__item .front,
	.icon-grid__item .back {
		position: absolute;
		top: 0;
		left: 0;
		backface-visibility: hidden;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		border-radius: 0.625rem;
		transition: all 0.5s ease-in-out;
		width: 100%;
		height: 100%;
	}

	.icon-grid__item .front {
		-moz-transform: rotateY(0deg);
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
		background: #14123b;
	}

	.icon-grid__item .back {
		-moz-transform: rotateY(180deg);
		-webkit-transform: rotateY(180deg);
		transform: rotateY(180deg);
		border: solid 2px var(--brand-commercial-deep);
		box-shadow: 1px 1px 5px 0px var(--brand-commercial);
	}

	.icon-grid__item:hover {
		cursor: pointer;
	}

	.icon-grid__item:hover .front {
		transform: rotateY(-180deg);
	}

	.icon-grid__item:hover .back {
		transform: rotateY(0deg);
	}
}

@keyframes slide-right {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 100%;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}