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

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #0B0F14;
	color: #F2F5F8;
	font-family: "Roboto", Arial, sans-serif;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* HEADINGS */
h1 {
	margin: 0 0 24px;
	font-family: "Benguiat Pro ITC", Georgia, serif;
	font-size: clamp(54px, 4.2vw, 78px);
	font-weight: 400;
	line-height: 1.03;
	letter-spacing: -.8px;
	text-transform: uppercase;
	color: #F2F5F8;
}

h2 {
	margin: 0 0 12px;
	font-family: "Benguiat Pro ITC", Georgia, serif;
	font-size: clamp(30px, 2.4vw, 42px);
	font-weight: 400;
	line-height: 1.15;
	color: #F2F5F8;
}

h3 {
	margin: 0 0 10px;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: .8px;
	text-transform: uppercase;
	color: #F2F5F8;
}

h4 {
	margin: 0;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #C9A44C;
}

p {
	font-family: "Roboto", Arial, sans-serif;
	line-height: 1.65;
}

.container {
	width: min(1500px, calc(100% - 80px));
	margin: 0 auto;
}

/* buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 48px;
	padding: 0 28px;
	background: linear-gradient(180deg, #E0BC59 0%, #C9A44C 100%);
	border: 1px solid #C9A44C;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .7px;
	text-transform: uppercase;
	color: #0B0F14;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
	background: #F2F5F8;
	border-color: #F2F5F8;
	color: #0B0F14;
}

.btn-secondary {
	background: transparent;
	border-color: #C9A44C;
	color: #F2F5F8;
}

.btn-secondary:hover {
	background: #C9A44C;
	border-color: #C9A44C;
	color: #0B0F14;
}

/* ******************************
   *********** HEADER ***********
   ****************************** */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(11, 15, 20, .96);
	border-bottom: 1px solid rgba(122, 133, 148, .16);
	backdrop-filter: blur(12px);
	transition:
		background .25s ease,
		box-shadow .25s ease,
		border-color .25s ease;
}

.site-header.scrolled {
	background: rgba(11, 15, 20, .98);
	border-bottom-color: rgba(201, 164, 76, .20);
	box-shadow: 0 8px 30px rgba(0, 0, 0, .28);
}

.header-inner {
	display: flex;
	align-items: center;
	min-height: 108px;
	gap: 44px;
}

.site-logo {
	width: 125px;
	margin-right: auto;
}

.site-logo img {
	width: 100%;
	height: auto;
    margin: 25px;
}

.main-nav ul {
	display: flex;
	align-items: center;
	gap: 44px;
}

.main-nav a {
	position: relative;
	display: block;
	padding: 42px 0 38px;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .45px;
	text-transform: uppercase;
	color: #F2F5F8;
}

.main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 27px;
	width: 0;
	height: 2px;
	background: #C9A44C;
	transition: width .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
	color: #C9A44C;
}

.main-nav a:hover::after,
.main-nav a.active::after {
	width: 24px;
}

.header-btn {
	flex: 0 0 auto;
}

.mobile-toggle {
	display: none;
	width: 40px;
	height: 40px;
	padding: 7px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.mobile-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	margin: 6px 0;
	background: #F2F5F8;
}

/* ******************************
   *********** FOOTER ***********
   ****************************** */
.site-footer {
	position: relative;
	background: #07101A;
	border-top: 1px solid rgba(31, 106, 225, .18);
	color: #F2F5F8;
	overflow: hidden;
}

.footer-inner {
	padding-top: 74px;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.65fr repeat(4, 1fr) 1.55fr;
	gap: 46px;
	align-items: start;
}

.footer-brand {
	padding-right: 46px;
	border-right: 1px solid rgba(122, 133, 148, .25);
}

.footer-brand > img {
	width: 195px;
	margin-bottom: 22px;
}

.footer-brand p {
	max-width: 310px;
	margin-bottom: 18px;
	color: #C9D0D8;
	font-size: 15px;
}

.footer-brand .footer-tagline {
	color: #C9A44C;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.6px;
	line-height: 1.6;
	text-transform: uppercase;
}

.footer-socials {
	display: flex;
	align-items: center;
	gap: 18px;
	padding-top: 12px;
}

.footer-socials a {
	display: block;
	width: 24px;
	height: 24px;
	opacity: .85;
	transition: opacity .2s ease;
}

.footer-socials img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer-socials a:hover {
	opacity: 1;
}

.footer-column h3 {
	margin-bottom: 27px;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	color: #C9A44C;
}

.footer-column h3::after {
	content: "";
	display: block;
	width: 34px;
	height: 2px;
	margin-top: 14px;
	background: #C9A44C;
}

.footer-column li + li {
	margin-top: 17px;
}

.footer-column li a {
	position: relative;
	padding-left: 17px;
	font-size: 14px;
	color: #D7DCE2;
}

.footer-column li a::before {
	content: "›";
	position: absolute;
	left: 0;
	top: -2px;
	color: #1F6AE1;
	font-size: 19px;
}

.footer-column li a:hover,
.footer-presence a:hover {
	color: #C9A44C;
}

.footer-presence {
	position: relative;
}

.presence-item {
	display: grid;
	gap: 5px;
	margin-bottom: 23px;
	padding-left: 0;
}

.presence-item strong {
	font-size: 14px;
}

.presence-item span,
.presence-item a {
	font-size: 13px;
	line-height: 1.55;
	color: #C9D0D8;
}

.footer-certifications {
	margin-top: 62px;
	padding: 0 0 58px;
}

.footer-rule {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 24px;
}

.footer-rule::before,
.footer-rule::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, #C9A44C);
}

.footer-rule::after {
	background: linear-gradient(90deg, #C9A44C, transparent);
}

.footer-pillar {
	color: #C9A44C;
	font-family: Georgia, serif;
	font-size: 29px;
}

.certification-heading {
	margin-bottom: 30px;
	text-align: center;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #DDE3E8;
}

.certification-list {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 18px;
	align-items: center;
	text-align: center;
}

.certification-list span {
	display: grid;
	place-items: center;
	min-height: 64px;
	padding: 10px;
	border: 1px solid rgba(122, 133, 148, .2);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .7px;
	color: #D6DCE3;
}

.footer-bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
	min-height: 82px;
	border-top: 1px solid rgba(201, 164, 76, .35);
	font-size: 13px;
	color: #C2CAD3;
}

.footer-bottom p {
	margin: 0;
}

.footer-legal {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.footer-legal a {
	padding: 0 18px;
}

.footer-legal a + a {
	border-left: 1px solid #C9A44C;
}

.footer-legal a:hover {
	color: #C9A44C;
}

.footer-crafted {
	justify-self: end;
}

.footer-crafted span {
	color: #C9A44C;
}