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


/* ******************************
   ************* HERO ***********
   ****************************** */

.home-hero {
	min-height: auto;
}

.hero-inner {
	min-height: 580px;
	align-items: flex-end;
}

.hero-content {
	width: 100%;
	padding: 220px 0 58px;
}

.hero-content h1 {
	font-size: clamp(42px, 8vw, 64px);
}

.hero-copy {
	max-width: 560px;
	font-size: 16px;
}

.hero-visual {
	width: 100%;
	height: 580px;
}

.hero-image-slot {
	background:
		linear-gradient(
			180deg,
			rgba(11, 15, 20, .08) 0%,
			rgba(11, 15, 20, .34) 38%,
			rgba(11, 15, 20, .92) 72%,
			#0B0F14 100%
		),
		url("images/lev-hero.webp") center center / cover no-repeat;
}

.home-hero::before {
	width: 100%;
	background: linear-gradient(
		180deg,
		rgba(11, 15, 20, .04) 0%,
		rgba(11, 15, 20, .18) 38%,
		rgba(11, 15, 20, .76) 72%,
		#0B0F14 100%
	);
}

.hero-support {
	min-height: 64px;
	padding: 14px 0;
	text-align: center;
}

.hero-support p {
	font-size: 12px;
	letter-spacing: 1.7px;
}


/* ******************************
   ****** CORE CAPABILITIES *****
   ****************************** */

.core-capabilities {
	padding: 44px 0 56px;
}

.capabilities-grid {
	grid-template-columns: 1fr;
	gap: 18px;
}

.capability-card {
	display: grid;
	grid-template-columns: 38% 62%;
}

.capability-image {
	height: 100%;
	min-height: 240px;
}

.capability-content {
	padding: 28px;
}

.capability-content p {
	min-height: 0;
	margin-bottom: 20px;
}


/* ******************************
   ******** WHY LEVITICUS *******
   ****************************** */

.why-leviticus {
	grid-template-columns: 1fr;
}

.why-image {
	min-height: 320px;
}

.why-content {
	padding: 42px 44px 48px;
}

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

.why-item {
	min-height: 140px;
	padding: 22px 24px;
}

.why-item:nth-child(4),
.why-item:nth-child(5),
.why-item:nth-child(6) {
	border-bottom: 1px solid rgba(31, 106, 225, .18);
}

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


/* ******************************
   ****** INDUSTRIES SERVED *****
   ****************************** */

.industries-served {
	padding: 48px 0 58px;
}

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

.industry-card {
	min-height: 250px;
}

.industry-content {
	padding: 20px;
}


/* ******************************
   ******** OUR MISSION *********
   ****************************** */

.our-mission {
	padding: 56px 0 62px;
}

.mission-content {
	grid-template-columns: 1fr;
	gap: 28px;
}

.mission-statement {
	max-width: 100%;
}

.mission-copy {
	padding-top: 0;
	max-width: 680px;
}


/* ******************************
   *********** CONTACT **********
   ****************************** */

.home-contact {
	padding: 48px 0 54px;
}

.contact-wrap {
	grid-template-columns: 1fr;
	gap: 24px;
}

.contact-details {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	padding-top: 0;
}

.contact-item {
	margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
	min-height: 48px;
}


/* ******************************
   ******** SMALL MOBILE ********
   ****************************** */

@media (max-width: 600px) {

	.hero-inner {
		min-height: 540px;
	}

	.hero-content {
		padding: 190px 0 46px;
	}

	.hero-content h1 {
		font-size: clamp(38px, 11vw, 52px);
	}

	.hero-copy {
		font-size: 15px;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.section-heading {
		gap: 14px;
	}

	.section-heading span {
		width: 26px;
	}

	.capability-card {
		display: block;
	}

	.capability-image {
		height: 210px;
		min-height: 0;
	}

	.capability-content {
		padding: 24px 22px 26px;
	}

	.why-image {
		min-height: 240px;
	}

	.why-content {
		padding: 36px 22px 42px;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

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

	.why-item:nth-child(5),
	.why-item:nth-child(6) {
		border-bottom: 1px solid rgba(31, 106, 225, .18);
	}

	.why-item:last-child {
		border-bottom: 0;
	}

	.industries-grid {
		grid-template-columns: 1fr;
	}

	.industry-card {
		min-height: 230px;
	}

	.mission-heading {
		margin-bottom: 26px;
	}

	.mission-content {
		gap: 20px;
	}

	.contact-details {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

}