.landing-cards {
	position: relative;
	background-color: #f5f5f5;
}

.landing-cards__bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.landing-cards__bg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.landing-cards__content {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	align-items: center;
}

.landing-cards__title span {
	display: block;
	margin-bottom: 1rem;
	font-family: "Roboto Mono", monospace;
	opacity: 0.7;
}

.landing-cards__title h3 {
	font-size: 2.5rem;
	background-image: linear-gradient(90deg, #f04e23, #d71612);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.2;
	font-weight: 900;
}

.landing-cards__title p {
	margin-top: 1rem;
}

.landing-cards__cards {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 4rem;
}

.landing-cards__cards--four {
	grid-template-columns: repeat(4, 1fr);
}

.landing-cards__cards--five {
	grid-template-columns: repeat(5, 1fr);
}

.landing-cards__card {
	position: relative;
	background-color: #f2f2f2;
	border-radius: 2rem;
	padding: 2rem;
	border: 0.25rem #fff solid;
	display: grid;
	align-content: start;
	box-shadow: 5px 5px 10px 0px rgba(186, 186, 186, 1);
	overflow: hidden;
}

.landing-cards__card > * {
	position: relative;
}

.landing-cards__card__icon img {
	margin-bottom: 1.5rem;
	border-radius: 0.5rem;
}

.landing-cards__card h4 {
	font-size: 1.5rem;
	background-image: linear-gradient(90deg, #f04e23, #d71612);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.2;
	font-weight: 900;
	margin-bottom: 1rem;
	transition: all 0.3s;
}

.landing-cards__card:hover {
	background: #fff;
}

.landing-cards__card__bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border-radius: 2rem;
	overflow: hidden;
}

.landing-cards__card__bg img {
	margin: unset;
	border-radius: unset;
	height: 100%;
}

.landing-cards__card--alt {
	border: 1rem #fff solid;
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
	padding: 1rem;
}

.landing-cards__card--alt .landing-cards__card__bg {
	border-radius: unset;
}

.landing-cards__card--alt .landing-cards__card__icon {
	margin: -2rem;
	margin-bottom: 1rem;
}

.landing-cards__card--alt .landing-cards__card__icon img {
	margin-bottom: 0;
	border-radius: 0;
}

.landing-cards__card--alt p {
	font-size: 0.9rem;
	color: #fff;
}

.landing-cards__card--simple {
	padding: unset;
	align-content: center;
}

.landing-cards__card--simple:hover {
	background-color: unset;
}

.landing-cards__card--dual {
	display: flex;
	padding: unset;
	border: unset;
	border-radius: unset;
	border-top-left-radius: 1rem;
	overflow: hidden;
}

.landing-cards__card--dual h4 {
	margin: 0;
	padding: 1rem;
	background-clip: unset;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
	background-size: cover;
	color: #fff;
	border-bottom-right-radius: 1rem;
	box-shadow: 5px 5px 10px 0px rgba(186, 186, 186, 1);
	min-width: 9rem;
}

.landing-cards__card--dual p {
	font-size: 0.9rem;
	padding: 1rem;
}

.landing-cards__video {
	order: 1;
}

.landing-cards__video iframe {
	max-width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
	border-radius: 2rem;
	overflow: hidden;
}

/* Alt */
.landing-cards--alt .landing-cards__title h3 {
	background-image: unset;
	background-clip: unset;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
	font-weight: 500;
}

.landing-cards--alt .landing-cards__card h4 {
	background-image: unset;
	background-clip: unset;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
	font-weight: 700;
}

/* Gradient */
.landing-cards--gradient .landing-cards__title h3 {
	background-image: unset;
	background-clip: unset;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
	font-weight: 600;
}

.landing-cards--gradient .landing-cards__title p {
	color: #f04e23;
}

.landing-cards--gradient .landing-cards__card {
	border: unset;
	box-shadow: unset;
	background: unset;
}

.landing-cards--gradient .landing-cards__card h4 {
	background-image: unset;
	background-clip: unset;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
	color: #fff;
	font-weight: 600;
}

.landing-cards--gradient .landing-cards__card p {
	color: #fff;
}

.landing-cards--gradient .landing-cards__card__icon img {
	width: 4rem;
	height: 4rem;
}

.landing-cards--gradient .landing-cards__card--simple p {
	color: inherit;
}

@media (max-width: 1799px) {
}

@media (max-width: 1399px) {
}

@media (max-width: 1199px) {
	.landing-cards__content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 767px) {
	.landing-cards__cards,
	.landing-cards__cards--four,
	.landing-cards__cards--five {
		grid-template-columns: 1fr;
		margin-top: 2rem;
	}
}
