@charset "utf-8";
/* Leviticus | Home CSS | V1.0 */


/* HERO */
.home-hero {
	position: relative;
	min-height: 760px;
	background:
		radial-gradient(circle at 72% 38%, rgba(31, 106, 225, .12), transparent 34%),
		linear-gradient(90deg, #0B0F14 0%, #0B0F14 42%, #08111B 100%);
	overflow: hidden;
}

.home-hero::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 58%;
	background: linear-gradient(
		90deg,
		rgba(11, 15, 20, .88) 0%,
		rgba(11, 15, 20, .42) 18%,
		rgba(11, 15, 20, .08) 42%,
		rgba(11, 15, 20, 0) 65%
	);
	pointer-events: none;
	z-index: 2;
}

.hero-inner {
	position: relative;
	z-index: 3;
	min-height: 650px;
	display: flex;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 4;
	padding: 92px 0 82px;
}

.hero-content h1 span {
	color: #C9A44C;
}

.hero-copy {
	max-width: 610px;
	margin-bottom: 34px;
	font-size: 17px;
	line-height: 1.7;
	color: #D4D9DF;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.hero-visual {
	position: absolute;
	top: 0;
	right: 0;
	width: 72%;
	height: 650px;
	z-index: 1;
}

.hero-image-slot {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			#0B0F14 0%,
			rgba(11, 15, 20, .82) 12%,
			rgba(11, 15, 20, .28) 30%,
			rgba(11, 15, 20, 0) 48%
		),
		url("images/lev-hero.webp") center right / cover no-repeat;
}

.hero-support {
	position: relative;
	z-index: 4;
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 1px solid rgba(31, 106, 225, .2);
}

.hero-support p {
	margin: 0;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2.3px;
	text-transform: uppercase;
	color: #C9A44C;
}


/* CORE CAPABILITIES */
.core-capabilities {
	padding: 48px 0 72px;
	background: #0B0F14;
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin-bottom: 32px;
}

.section-heading span {
	width: 42px;
	height: 1px;
	background: #C9A44C;
}

.capabilities-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.capability-card {
	overflow: hidden;
	background: #0D141C;
	border: 1px solid rgba(201, 164, 76, .55);
}

.capability-image {
	height: 220px;
	overflow: hidden;
}

.capability-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.capability-content {
	padding: 26px 26px 28px;
}

.capability-content p {
	min-height: 138px;
	margin-bottom: 22px;
	font-size: 15px;
	line-height: 1.7;
	color: #C8CED6;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
	color: #C9A44C;
}

.text-link:hover {
	color: #F2F5F8;
}


/* WHY LEVITICUS */
.why-leviticus {
	display: grid;
	grid-template-columns: 38% 62%;
	min-height: 430px;
	background: #08111B;
	border-top: 1px solid rgba(31, 106, 225, .18);
	border-bottom: 1px solid rgba(31, 106, 225, .18);
}

.why-image {
	position: relative;
	min-height: 430px;
	overflow: hidden;
}

.why-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.why-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(11, 15, 20, .08),
		rgba(11, 15, 20, .55)
	);
	pointer-events: none;
}

.why-content {
	padding: 34px 60px 38px;
}

.why-heading {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 26px;
}

.why-heading span {
	width: 34px;
	height: 1px;
	background: #C9A44C;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.why-item {
	min-height: 150px;
	padding: 22px 28px;
	border-left: 1px solid rgba(31, 106, 225, .18);
	border-bottom: 1px solid rgba(31, 106, 225, .18);
}

.why-item:nth-child(4),
.why-item:nth-child(5),
.why-item:nth-child(6) {
	border-bottom: 0;
}

.why-item p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #B7C0CA;
}


/* INDUSTRIES SERVED */
.industries-served {
	padding: 54px 0 70px;
	background: #0B0F14;
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 8px;
}

.industry-card {
	position: relative;
	min-height: 275px;
	overflow: hidden;
	background: #0D141C;
	border: 1px solid rgba(31, 106, 225, .18);
}

.industry-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(11, 15, 20, .08) 0%,
		rgba(11, 15, 20, .35) 38%,
		rgba(11, 15, 20, .96) 100%
	);
	pointer-events: none;
}

.industry-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.industry-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 18px 14px 20px;
}

.industry-content p {
	margin: 0;
	font-size: 12px;
	line-height: 1.55;
	color: #B7C0CA;
}


/* OUR MISSION */
.our-mission {
	position: relative;
	padding: 74px 0 82px;
	background: #08111B;
	border-top: 1px solid rgba(31, 106, 225, .18);
	overflow: hidden;
}

.mission-background {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(8, 17, 27, .30) 0%,
			rgba(8, 17, 27, .62) 32%,
			rgba(8, 17, 27, .72) 68%,
			rgba(8, 17, 27, .30) 100%
		),
		url("images/lev-circuitry.webp") center center / cover no-repeat;
	z-index: 1;
}

.mission-inner {
	position: relative;
	z-index: 2;
}

.mission-heading {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 34px;
}

.mission-heading span {
	width: 34px;
	height: 1px;
	background: #C9A44C;
}

.mission-content {
	display: grid;
	grid-template-columns: 56% 44%;
	gap: 70px;
	align-items: start;
}

.mission-statement {
	max-width: 760px;
}

.mission-copy {
	padding-top: 8px;
}

.mission-copy p {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.75;
	color: #B7C0CA;
}

.mission-copy .btn {
	margin-top: 10px;
}


/* CONTACT */
.home-contact {
	position: relative;
	padding: 44px 0 58px;
	background: #08111B;
	overflow: hidden;
	border-top: 1px solid rgba(31, 106, 225, .28);
}

.home-contact::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 50%;
	width: 76%;
	height: 1px;
	transform: translateX(-50%);
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(31, 106, 225, .22) 18%,
		#1F6AE1 50%,
		rgba(31, 106, 225, .22) 82%,
		transparent 100%
	);
	box-shadow: 0 0 10px rgba(31, 106, 225, .45);
	z-index: 3;
}

.contact-background {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(8, 17, 27, .04) 0%,
			rgba(8, 17, 27, .12) 42%,
			rgba(8, 17, 27, .38) 100%
		),
		url("images/lev-global.webp") center center / cover no-repeat;
	z-index: 1;
}

.contact-inner {
	position: relative;
	z-index: 2;
}

.contact-heading {
	text-align: center;
	margin-bottom: 28px;
}

.contact-heading p {
	margin: 0;
	font-size: 15px;
	color: #B7C0CA;
}

.contact-wrap {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 28px;
	align-items: start;
}

.contact-details {
	padding-top: 5px;
}

.contact-item {
	margin-bottom: 22px;
}

.contact-item p,
.contact-item a {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: #D7DDE4;
}

.contact-item a:hover {
	color: #C9A44C;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	min-height: 42px;
	padding: 0 14px;
	background: rgba(8, 17, 27, .78);
	border: 1px solid rgba(122, 133, 148, .28);
	font-family: "Roboto", Arial, sans-serif;
	font-size: 13px;
	color: #F2F5F8;
	outline: none;
}

.contact-form textarea {
	min-height: 78px;
	padding: 12px 14px;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #7A8594;
	text-transform: uppercase;
	font-size: 11px;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #1F6AE1;
}

.contact-submit {
	width: 100%;
	border: 0;
	cursor: pointer;
}