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

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

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

.landing-columns__labels {
	margin-bottom: 6rem;
	width: 100vw;
	position: relative;
	font-family: "Roboto Mono", monospace;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	color: #1a1c1d;
}

.landing-columns__labels::before {
	content: "";
	border-top: 2px dashed #d5d5d5;
	width: 200vw;
	display: block;
	position: absolute;
	left: -50vw;
	top: 50%;
	transform: translateY(-50%);
}

.landing-columns__label {
	background: #fff;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	position: relative;
	box-shadow: 5px 5px 10px 0px rgba(219, 219, 219, 1);
}

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

.landing-columns__logo img {
	max-height: 5rem;
	width: auto;
	margin-bottom: 1rem;
}

.landing-columns__content > * {
	margin-bottom: 1rem;
}

.landing-columns__content > *:last-child {
	margin-bottom: 0;
}

.landing-columns__content h2 {
	font-weight: 600;
	font-size: 2.5rem;
}

.landing-columns__content h2 span {
	color: #f04e23;
	font-family: "Roboto Mono", monospace;
}

.landing-columns__content li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.25rem;
}

.landing-columns__content li::before {
	content: url('data:image/svg+xml,<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="%23f04e23" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m7 16 4-4-4-4m6 8 4-4-4-4"/></svg>');
	width: 24px;
	height: 24px;
}

.landing-columns__tag {
	opacity: 0.7;
	display: block;
}

.landing-columns .button span,
.landing-columns .button i {
	color: #fff;
	background-color: #f04e23;
	transition: all 0.5s;
}

.landing-columns .button > i i::before,
.landing-columns .button > i i::after {
	background-color: #fff;
}

.no-touch .button:hover span:after,
.no-touch .button:hover > i:after {
	display: none;
}

.landing-columns .button:hover span,
.landing-columns .button:hover i {
	background-color: #898a8a;
}

.landing-columns__image,
.landing-columns__image img {
	border-radius: 2rem;
	overflow: hidden;
}

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

/* Border */
.landing-columns--border {
	position: relative;
	border-top: 0.5rem solid #f04e23;
}

/* Alt */
.landing-columns--alt .landing-columns__content h2 {
	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-columns--alt .button span,
.landing-columns--alt .button i {
	background-color: #1a1c1d;
	border: 2px solid #fff;
}

.landing-columns--alt .button i i {
	border: unset;
}

/* Color Scheme */
.landing-columns--dark {
	color: #fff;
}

.landing-columns--dark .landing-columns__content h2 {
	color: #fff;
	background-image: unset;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
}

.landing-columns--white {
	background-color: #fff;
}

/* Reverse */
.landing-columns--reverse .landing-columns__content {
	order: -1;
}

/* Button Color */
.landing-columns__content .button--gray {
	font-family: "Roboto Mono", monospace;
	font-weight: 500;
}

.landing-columns__content .button--gray > span,
.landing-columns__content .button--gray > i {
	border: 2px solid #fff;
	background: #f2f2f2;
	color: inherit;
	box-shadow: 10px 10px 14px -1px rgba(196, 196, 196, 0.75);
	-webkit-box-shadow: 10px 10px 14px -1px rgba(196, 196, 196, 0.75);
	-moz-box-shadow: 10px 10px 14px -1px rgba(196, 196, 196, 0.75);
}

.landing-columns__content .button--gray i i {
	border: unset;
}

.landing-columns__content .button--gray i i::before,
.landing-columns__content .button--gray i i::after {
	background-color: #1a1b1d;
}

.landing-columns__content .button--gray:hover > span,
.landing-columns__content .button--gray:hover > i {
	background-color: #fff;
}

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

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

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

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