/* ========================================== */
/* ROOT VARIABLES */
/* ========================================== */

:root {
	/*** COLORS ***/
	--color-primary: #0E3656;
	--color-secondary: #C5983C;
	--color-grey-100: #F8F8F8;
	
	/*** FONT FAMILY ***/
	--font-family-base: "nimbus-sans", sans-serif;
	--font-family-headers: "futura-pt", sans-serif;
	--font-family-script: "fave-script-pro", sans-serif;
	
	/*** FONT SIZES ***/
	/* --font-size-125: clamp(1rem, calc(14.94px + 0.2128vw), 1.125rem); */
	/* --font-size-150: clamp(1rem, calc(13.88px + 0.4255vw), 1.25rem); */
	--font-size-175: clamp(1.25rem, calc(18.72px + 0.2553vw), 1.4rem);
	--font-size-200: clamp(1.5rem, calc(21.87px + 0.4255vw), 1.75rem);
	--font-size-225: clamp(1.75rem, calc(19.74px + 0.8511vw), 1.875rem);
	--font-size-250: clamp(1.5rem, calc(18.68px + 1.0638vw), 2.125rem);
	--font-size-300: clamp(1.75rem, calc(21.62px + 1.2766vw), 2.5rem);
	--font-size-325: clamp(2rem, calc(23.49px + 1.7021vw), 3rem);
	--font-size-330: clamp(2.25rem, calc(25.36px + 2.1277vw), 3.5rem);
	--font-size-350: clamp(2.5rem, calc(27.23px + 2.5532vw), 4rem);
	--font-size-400: clamp(3rem, calc(29.11px + 2.9787vw), 4.75rem);
	--font-size-800: clamp(3rem, calc(30.98px + 3.4043vw), 8rem);
	
	/*** LINE HEIGHT ***/
	--line-height-100: 0.8;
	--line-height-200: 1;
	--line-height-500: 1.3;
	
	/*** FONT WEIGHT ***/
	--font-weight-400: 400;
	--font-weight-500: 500;
	--font-weight-700: 700;
	
	/*** WIDTHS ***/
	/* --max-width-sm: 928px; */
	--max-width-base: 1480px;
	--max-width-lg: 1540px;
	--max-width-xl: 1756px;
	
	/*** SECTION PADDING ***/
	--space-y-tightest: clamp(2.5rem, calc(31.4894px + 1.7021vw), 3.5rem);
	/* --space-y-tight: clamp(2.5rem, calc(29.3617px + 2.1277vw), 3.75rem); */
	--space-y-md: clamp(2.5rem, calc(27.2340px + 2.5532vw), 4rem);
	--space-y-base: clamp(3rem, calc(18.2128px + 5.9574vw), 6.5rem);
	--space-y-lg: clamp(3rem, calc(9.7021px + 7.6596vw), 7.5rem);
	--space-y-xl: clamp(3rem, calc(-11.5745px + 11.9149vw), 10rem);
	--space-x-base: 1rem;
	
	/*** SPACE ***/
	/* --space-0: 0rem; */
	/* --space-25: 0.125rem; */
	/* --space-50: 0.25rem; */
	/* --space-75: 0.375rem; */
	/* --space-100: 0.5rem; */
	/* --space-125: 0.75rem; */
	--space-150: 1rem;
	/* --space-175: 1.25rem; */
	/* --space-200: 1.5rem; */
	--space-225: 2rem;
	/* --space-250: clamp(1.75rem, calc(21.62px + 1.2766vw), 2.5rem); */
	/* --space-275: clamp(2rem, calc(23.49px + 1.7021vw), 3rem); */
	/* --space-300: clamp(2.25rem, calc(25.36px + 2.1277vw), 3.5rem); */
	/* --space-325: clamp(2.5rem, calc(27.23px + 2.5532vw), 4rem); */
	/* --space-350: clamp(2.75rem, calc(29.11px + 2.9787vw), 4.5rem); */
	--space-375: clamp(3rem, calc(30.98px + 3.4043vw), 5rem);
	
	/*** SERVICE ***/
	--service-gap: 2rem;
	--side-pad: 1.125rem;
	--stage-maxw: 1700px;
	--row-h: clamp(420px, 62vh, 720px);
}

/* ========================================== */
/* BASE RESET*/
/* ========================================== */

* {
	box-sizing: border-box
}
html {
	scroll-behavior: smooth;
	height: 100%;
	margin: 0;
	font-size: 16px;
	font-family: var(--font-family-base);
	font-synthesis: none;
	font-variant-ligatures: contextual;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-feature-settings: "kern";
	font-weight: 400;
	font-style: normal;
	font-optical-sizing: auto;
}
html,
body {
	min-height: 100%;
	width: 100%;
	font-family: var(--font-family-base);
}
body {
	margin: 0;
	font-size: 1.125rem;
	line-height: var(--line-height-500);
	color: var(--color-primary);
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-weight: var(--font-weight-400);
	background: #fff;
	font-style: normal;
	overflow-x: hidden;
	-webkit-tap-highlight-color: transparent;
	text-rendering: optimizeLegibility;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
::selection {
	color: #fff;
	background: var(--color-primary, #0E3656);
}
::-moz-selection {
	color: #fff;
	background: var(--color-primary, #0E3656);
}
main {
	flex: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-headers);
	font-weight: var(--font-weight-500);
	line-height: var(--line-height-100, 0.8);
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	text-rendering: optimizeSpeed;
}
h2 {
	color: var(--color-primary, #0E3656);
	font-size: var(--font-size-400);
}
h3 {
	font-size: var(--font-size-330);
	color: var(--color-secondary, #C5983C);
}
svg,
text,
tspan,
button,
input,
textarea {
	font-family: var(--font-family-base);
	font-style: normal;
	font-weight: inherit;
	font-synthesis: none;
	-moz-font-feature-settings: "kern";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeSpeed;
}
em {
	font-style: italic;
}
strong,
b {
	font-weight: var(--font-weight-700, 700);
}
img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
p {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}

/* ========================================== */
/* SCROLL REVEAL         */
/* ========================================== */

.animate {
	opacity: 0;
	transition: transform 600ms cubic-bezier(.22, 1, .36, 1), opacity 600ms cubic-bezier(.22, 1, .36, 1);
	will-change: transform, opacity;
}
/* Slides */

.animate.slide-left {
	transform: translate3d(24px, 0, 0);
}
.animate.slide-right {
	transform: translate3d(-24px, 0, 0);
}
.animate.slide-up {
	transform: translate3d(0, 24px, 0);
}
.animate.slide-down {
	transform: translate3d(0, -24px, 0);
}
/* Pop / Zoom / Rotate */

.animate.pop {
	transform: scale(0.2);
	opacity: 0;
}
.animate.pop.in-view {
	transform: scale(1);
	opacity: 1;
	transition: transform 1200ms cubic-bezier(.22, 1.25, .36, 1), opacity 600ms cubic-bezier(.22, 1, .36, 1);
}
.animate.zoom-in {
	transform: scale(0.92);
}
.animate.zoom-out {
	transform: scale(1.06);
}
.animate.rotate-in {
	transform: translate3d(0, 12px, 0) rotate(-2deg);
}
/* Fade-only */

.animate.fade {}
/* Blur */

/* Speed + delay */

.animate.fast {
	transition-duration: 400ms;
}
.animate.slow {
	transition-duration: 900ms;
}
.animate.delay-1 {
	transition-delay: 50ms;
	/*transition-delay: 80ms;*/
}
.animate.delay-2 {
	transition-delay: 100ms;
	/*transition-delay: 160ms;*/
}
.animate.delay-3 {
	transition-delay: 140ms;
	/*transition-delay: 240ms;*/
}
.animate.delay-4 {
	transition-delay: 220ms;
	/*transition-delay: 320ms;*/
}
.animate.delay-5 {
	transition-delay: 300ms;
	/*transition-delay: 400ms;*/
}
.animate.delay-6 {
	transition-delay: 380ms;
	/*transition-delay: 480ms;*/
}
/* Stagger */

.stagger-children>.animate:nth-child(1) {
	transition-delay: 0ms;
}
.stagger-children>.animate:nth-child(2) {
	transition-delay: 90ms;
}
.stagger-children>.animate:nth-child(3) {
	transition-delay: 180ms;
}
.stagger-children>.animate:nth-child(4) {
	transition-delay: 270ms;
}
.stagger-children>.animate:nth-child(5) {
	transition-delay: 360ms;
}
.stagger-children>.animate:nth-child(6) {
	transition-delay: 450ms;
}
/* Final state (must come after variants) */

.animate.in-view {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.animate,
	.animate.in-view {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
		filter: none !important;
		clip-path: none !important;
	}
}

/* ========================================== */
/* BUTTON LINK WITH ANIMATED ARROW + UNDERLINE */
/* ========================================== */

.btn-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: var(--font-weight-700);
	font-size: 1.125rem;
	color: var(--color-primary, #0E3656);
	text-decoration: none;
	cursor: pointer;
	padding: 0.25em 0;
}
.btn-link__arrow {
	transform: rotate(0deg);
	transition: transform 0.4s ease;
	color: var(--color-secondary, #C5983C);
}
.btn-link__underline {
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 1px;
	width: 0;
	background: var(--color-secondary, #C5983C);
	transition: width 0.4s ease;
	width: 100%;
}
.btn-link:hover .btn-link__arrow {
	transform: rotate(45deg);
}
.btn-link:hover .btn-link__underline {
	width: 100%;
}

/* ========================================== */
/* HEADER */
/* ========================================== */

header {
	padding: 1rem var(--space-x-base);
	position: relative;
	z-index: 999;
	top: 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 4rem;
	height: 6.5rem;
	background: #fff;
	max-width:1700px;
	margin: 0 auto;
	align-items: center;
}
header .logo-box {
	display: flex;
	align-items: flex-end;
}
header .logo-box span {
	font-size: 2rem;
	font-family: var(--font-family-script);
	line-height: 1;
	position: relative;
	display: block;
	padding: 0.125rem 0 0.125rem 1rem;
	margin-bottom: 0.25rem;
	left: -1px;
}
header .logo-box span::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--color-secondary);
}
#logo-header {
	max-width: 100%;
	flex: 0 0 12rem;
}
@media (max-width: 600px) {
	header {
		height: 5rem;
		gap: 2rem;
	}
	header .logo-box span {
		display: none;
	}
	#logo-header {
		flex: 0 0 8rem;
		max-width:90%;
	}

	.comp-commitment__header h2{
		margin:0 0 0 20px!important;

	}
}
/* ========================================== */
/* STATIC HERO */
/* ========================================== */

.hero-static {
	position: relative;
	min-height: calc(100vh - 6.5rem);
	max-width: 1700px;
	margin: 0 auto;
	display: flex;
	align-items: center;
}



.hero-static:before,
.hero-static:after {
	content: "";
	height:100%;
	background:#fff;
	width:1rem;
	position:absolute;
	z-index:3
}
.hero-static:before {
	top:0;
	left:0;
}
.hero-static:after {
	top:0;
	right:0;
}
.hero-static__media {
	position: absolute;
	inset: 0;
	z-index: 2;
}
.hero-static__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}
.hero-static__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(14, 54, 86, 0) 0%, rgba(14, 54, 86, 0) 42%, rgba(14, 54, 86, 0.75) 100%);
	pointer-events: none;
	z-index: 4;
}
.hero-static__inner {
	height: 100%;
	padding: 4rem var(--space-375);
	width: 100%;
	position: relative;
	z-index: 5;
}
.hero-static__content {
	margin-left: auto;
	text-align: right;
	color: #fff;
	max-width: 34rem;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: flex-end;
	z-index: 5;
}
.hero-static__content p {
	margin: 0;
	max-width: 19rem;
}
.hero-static__title {
	font-size: var(--font-size-800);
	line-height: 0.8;
	font-weight: var(--font-weight-500);
}
.hero-static__lede {
	font-size: 1.125rem;
}
.hero-static__highlight {
	font-size: 1.875rem;
	color: var(--color-secondary);
	font-weight: var(--font-weight-700);
	line-height: 1.1;
}
.hero-static__content .btn-link {
	color: #fff;
	text-decoration: none;
}

/* ========================================== */
/* DESKTOP MENU */
/* ========================================== */

.main-nav {
	flex: 1
}
.nav-items {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2.5rem;
	align-items: center;
}
.nav-items ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-items>li {
	position: relative;
}
.nav-items a {
	color: var(--color-primary);
	text-decoration: none;
	padding: 0;
	height: 4.25rem;
	display: flex;
	align-items: center;
	font-size: 1rem;
}
@media (max-width: 1600px) {
	.nav-items a {
		padding: 0 1rem;
	}
}
.nav-items a:hover,
.nav-items a.current {
	color: var(--color-secondary);
}
.nav-items>li:last-of-type a {
	padding-right: 0;
}
.nav-items a.btn-link {
	height: auto;
	padding-right: 0;
	padding-left: 0;
}
/* Submenu styles */

.submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	display: none;
	flex-direction: row;
	padding: 0.5rem;
	border-radius: 4px;
	white-space: nowrap;
	z-index: 1000;
}
.submenu li.has-submenu {
	padding: 0 2rem;
}
@media (max-width: 1600px) {
	.submenu li.has-submenu {
		padding: 0 1rem;
	}
}
.has-submenu:hover .submenu {
	display: flex;
}
.submenu li {
	margin: 0;
}
.submenu a {
	padding: 0 1.5rem;
}
.has-submenu>a {
	position: relative;
	padding: 0 2rem;
}
.has-submenu>a::after {
	content: '';
	position: static;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 0.3rem;
	height: 0.3rem;
	border: solid color: #ffffff;
	border-width: 0 1px 1px 0;
	display: inline-block;
	pointer-events: none;
	transition: transform 0.3s ease;
	margin-left: 0.25rem;
}
.main-nav.lightNav .has-submenu>a::after {
	content: '';
	position: static;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 0.3rem;
	height: 0.3rem;
	border: solid #fff;
	border-width: 0 1px 1px 0;
	display: inline-block;
	pointer-events: none;
	transition: transform 0.3s ease;
	margin-left: 0.25rem;
}
.has-submenu:hover>a::after,
.main-nav.lightNav .has-submenu:hover>a::after {
	transform: translateY(-50%) rotate(-135deg);
}
@media (max-width: 1100px) {
	.main-nav {
		display: none;
	}
}

/* ========================================== */
/* MOBILE MENU */
/* ========================================== */

.mobile-menu__toggle-wrapper {
	position: absolute;
	top: 2rem;
	right: 2rem;
	z-index: 1001;
	display: none;
}
@media (max-width: 1099px) {
	.mobile-menu__toggle-wrapper {
		display: block;
		top: 2.75rem;

	}

	.mobile-menu__hamburger{


	}
}
@media (max-width: 600px) {
	.mobile-menu__toggle-wrapper {
		display: block;
		top: 2rem;
	}
}
.mobile-menu__hamburger {
	width: 28px;
	height: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
}
.mobile-menu__hamburger div {
	display: block;
	height: 2px;
	width: 100%;
	background: #000;
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.2s ease;
}
.mobile-menu__hamburger.active div:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}
.mobile-menu__hamburger.active div:nth-child(2) {
	opacity: 0;
}
.mobile-menu__hamburger.active div:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}
/* === Mobile Menu Container === */

.mobile-menu {
	position: relative;
	z-index: 1000;
	display: none;
}
@media (max-width: 1099px) {
	.mobile-menu {
		display: block;
	}
}
/* === Drawer === */

.mobile-menu__drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 400px;
	height: 100%;
	background: #f8f8f8;
	padding: 2rem;
	box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
	transform: translateX(-100%);
	transition: transform 0.3s ease-in-out;
	z-index: 1000;
}
.mobile-menu__drawer.open {
	transform: translateX(0);
}
/* === Menu Items === */

.mobile-menu__drawer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.mobile-menu__item {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 1rem 0;
	font-size: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.mobile-menu__chevron {
	display: inline-block;
	transition: transform 0.3s ease;
	border: solid #000;
	border-width: 0 2px 2px 0;
	padding: 4px;
	transform: rotate(45deg);
}
.mobile-menu__item.open .mobile-menu__chevron {
	transform: rotate(-135deg);
}
/* === Submenu === */

.mobile-menu__submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.mobile-menu__item.open+.mobile-menu__submenu {
	max-height: 300px;
}
.mobile-menu__submenu li a {
	display: block;
	padding: 0.5rem 0 0.5rem 1rem;
	text-decoration: none;
	color: #ffffff;
}
/* === Backdrop === */

.mobile-menu__backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 999;
}
.mobile-menu__backdrop.visible {
	opacity: 1;
	pointer-events: auto;
}
.mobile-menu__link {
	display: block;
	padding: 1rem 0;
	text-decoration: none;
	color: #000;
	font-size: 1rem;
	border: none;
	background: none;
}

/* ========================================== */
/* COMMITMENT — BASE                          */
/* ========================================== */

.comp-commitment {
	padding: var(--space-y-md) 0 var(--space-y-xl);
	position: relative;
	z-index: 1;
	padding-bottom: 0;
}
.comp-commitment,
.comp-commitment__container {
	position: relative;
	width: 100%;
}
.comp-commitment__header,
.comp-commitment__grid {
	max-width: var(--max-width-lg);
	margin: 0 auto;
	width: 100%;
	position: relative;
	padding: var(--space-y-md) var(--space-x-base);
}
.comp-commitment__header {
	padding-bottom: 2rem;
}
.comp-commitment__header h2,
.comp-commitment__header h3,
.comp-commitment__header p {
	line-height: 1;
	margin: 0;
}
.comp-commitment__header p {
	line-height: 1.3;
}
.comp-commitment__header h2 {
	font-size: var(--font-size-250);
	color: var(--color-secondary, #C5983C);
	letter-spacing: 3px;
	margin:0 0 0 160px;
}
.comp-commitment__grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1rem;
}
.comp-commitment__grid>* {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.commit-icon-1,
.commit-icon-2,
.commit-icon-3 {
	position: absolute;
	top: 2rem;
	right: 2rem;
}
@media (min-width: 1000px) {
	.commit-icon-1 {
		top: 5rem;
		right: -3rem;
	}
	.commit-icon-2 {
		top: 0;
		right: 2rem;
	}
	.commit-icon-3 {
		top: 4rem;
		right: -2rem;
	}
	.comp-commitment {
		padding-bottom: var(--space-y-xl)
	}
	.comp-commitment__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
	.comp-commitment__grid>* {
		justify-content: center;
		align-items: center;
	}
}
.comp-commitment__grid-item {
	position: relative;
}
.comp-commitment__info {
	background: #fff;
	padding: 0.65rem;
	position:relative;
}
.comp-commitment__image-container {
	position: relative;
	width: 4.25rem;
	height: 12rem;
	overflow: hidden;
}
@media (min-width: 70rem) {
	.comp-commitment__grid-item:first-of-type .comp-commitment__image-container {

	}
	.comp-commitment__image-container {

		width: 200px;
		height: 250px;
		margin: 0 -60px 0 0;
	}
}
.comp-commitment__image-container img.number-img {

}
.comp-commitment__info h4 {
	font-size: var(--font-size-350);
	font-weight: var(--font-weight-400);
	color: var(--color-primary, #0E3656);
	line-height: var(--line-height-100);
	margin: 0 0 1rem;
}
.comp-commitment__info h4 span {
	color: var(--color-secondary, #C5983C);
}
.comp-commitment__info p {
	font-size: var(--font-size-175);
	margin: 0;
	line-height: 1.3;
}

/* ========================================== */
/* LINES — SIZE/POSITION      */
/* ========================================== */

.comp-commitment__container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 1.5px;
	width: calc(50% + 44.75rem);
	background: var(--color-secondary, #C5983C);
	transform-origin: left center;
	transform: scaleX(0);
	opacity: 0;
	transition: transform 1000ms cubic-bezier(.22, 1, .36, 1), opacity 200ms ease-out;
	will-change: transform, opacity;
}
.comp-commitment__container::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	height: 1.5px;
	width: calc(50% + 44.75rem);
	background: var(--color-secondary, #C5983C);
	transform-origin: right center;
	transform: scaleX(0);
	opacity: 0;
	transition: transform 1000ms cubic-bezier(.22, 1, .36, 1), opacity 200ms ease-out;
	will-change: transform, opacity;
}
.comp-commitment__container.in-view::before {
	transform: scaleX(1);
	opacity: 1;
	transition-delay: 400ms;
}
.comp-commitment__container.in-view::after {
	transform: scaleX(1);
	opacity: 1;
	transition-delay: 800ms;
}
.comp-commitment__grid-item {
	position: relative
}
@media (max-width:1000px) {
	.comp-commitment__grid {
		gap: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	.comp-commitment__grid-item {
		padding-top: 1.75rem;
		padding-bottom: 1.75rem;
	}
	.comp-commitment__grid-item::before {
		content: "";
		position: absolute;
		bottom: 0;
		height: 1.5px;
		width: 75%;
		background: var(--color-secondary, #C5983C);
		opacity: 0;
		transform: translateY(-50%) scaleX(0);
		transition: transform 900ms cubic-bezier(.22, 1, .36, 1), opacity 200ms ease-out;
		will-change: transform, opacity;
	}
	.comp-commitment__grid-item:nth-child(odd)::before {
		left: 0;
		transform-origin: left center;
	}
	.comp-commitment__grid-item:nth-child(even)::before {
		right: 0;
		transform-origin: right center;
	}
	.comp-commitment__grid-item.in-view::before {
		opacity: 1;
		transform: translateY(-50%) scaleX(1);
	}
	.comp-commitment__grid-item:last-of-type::before {
		display: none;
	}
}
@media (min-width:48rem) {
	.comp-commitment__grid-item::after {
		content: "";
		position: absolute;
		right: 0;
		width: 1.5px;
		background: var(--color-secondary, #C5983C);
		height: 0;
		opacity: 0;
		transition: height 1000ms cubic-bezier(.22, 1, .36, 1), opacity 220ms ease-out;
		will-change: height, opacity;
	}
	.comp-commitment__grid-item:nth-child(odd)::after {
		bottom: -50%;
	}
	.comp-commitment__grid-item:nth-child(even)::after {
		top: -50%;
	}
	.comp-commitment__grid-item.in-view::after {
		height: 10rem;
		opacity: 1;
	}
}

/* ========================================== */
/* REDUCED MOTION                             */
/* ========================================== */

@media (prefers-reduced-motion: reduce) {
	.comp-commitment__container::before,
	.comp-commitment__container::after {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	.comp-commitment__grid-item::nth-child(even),
	.comp-commitment__grid-item:nth-child(odd) {
		opacity: 1 !important;
		height: 10rem !important;
		transition: none !important;
	}
}

/* ========================================== */
/* SERVICE MODEL */
/* ========================================== */

.comp-service-model__stage {
	height: 100vh;
	min-height: calc(var(--head-h, 0px) + var(--row-h));
}
@supports (height: 100svh) {
	.comp-service-model__stage {
		height: 100svh;
	}
}
.comp-service-model__header {
	text-align: center;
	padding: 1.25rem var(--space-x-base) 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .675rem;
}
.comp-service-model__header .btn-link {
	margin-top: .75rem;
}
.comp-service-model__header h2,
.comp-service-model__header h3,
.comp-service-model__header p {
	line-height: 1;
	margin: 0;
	margin-bottom: 0;
}
.comp-service-model__header p {
	line-height: 1.3;
}
.comp-service-model {
	position: relative;
	min-height: 100vh;
	z-index: 0;

}



.comp-service-model::after {
	content: "";
	display: block;
	height: var(--scroll-distance, 0px)
}
.comp-service-model__stage {
	position: sticky;
	top:-100px;
	height: 100vh;
	display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;	
	z-index: 1
}
.comp-service-model__viewport {
	width: 100%;
	max-width: var(--stage-maxw);
	margin: 0 auto;
	overflow: hidden;
	position: relative
}
.comp-service-model__track {
	display: inline-flex;
	align-items: stretch;
	gap: var(--service-gap);
	padding-left: var(--side-pad);
	padding-right: var(--side-pad);
	transform: translate3d(0, 0, 0);
	touch-action:pan-y;
	cursor:grab;w
	ill-change:transform;
}
.is-dragging .comp-service-model__track {
	cursor: grabbing;
}

.comp-service-model__card {
	flex: 0 0 33.3333%;
	min-width: 240px;
	padding: 0;
	height: var(--row-h);
    display: flex;
    flex-direction: column;
}
.comp-service-model__image-wrap {
	overflow: hidden;
	min-height: 0;
	max-height: 500px;
}
.comp-service-model__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	-webkit-user-drag: none;
	user-drag: none;
	pointer-events: none;
}
.comp-service-model__title {
	font-size: var(--font-size-325);
	color: var(--color-secondary);
	margin: 1rem 0 .5rem;
	line-height:1;
	text-transform: uppercase;
}
.comp-service-model__highlight {
	color: var(--color-secondary);
	font-weight: 700;
	font-size:2em;
	margin:0;
	line-height:1.1
}
.comp-service-model__text {
	margin: 0;
	line-height: 1.3;
	font-size: 0.875rem;
}
.is-dragging .comp-service-model__card,
.is-dragging .comp-service-model__title,
.is-dragging .comp-service-model__text {
	user-select: none;
}
@media (max-width:767px) {
	.comp-service-model__stage {
		position: relative;
		height: auto
	}
	.comp-service-model::after {
		height: 0
	}
	.comp-service-model__card {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.comp-service-model__header br {
		display: none
	}
}
.comp-service-model__nav {
	display: none
}
@media (max-width:767px) {
	.comp-service-model__nav {
		display: block
	}
	.comp-service-model__nav__btn {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 44px;
		height: 44px;
		border-radius: 999px;
		background: #fff;
		border: 1px solid #fff;
		display: grid;
		place-items: center;
		cursor: pointer;
		user-select: none
	}
	.comp-service-model__nav__btn:active {
		transform: translateY(-50%) scale(.98)
	}
	.comp-service-model__nav__btn svg {
		width: 22px;
		height: 22px;
		fill: none;
		stroke: #1a1a1d;
		stroke-width: 2
	}
	.comp-service-model__nav__prev {
		left: 2rem
	}
	.comp-service-model__nav__next {
		right: 2rem
	}
}

/* ========================================== */
/* SERVICES */
/* ========================================== */

.comp-projects {
	position: relative;
	background: var(--color-grey-100, #F8F8F8);
	margin:60px 0 0 0;
	padding: var(--space-y-base) 0 var(--space-y-tightest);
}
.comp-projects::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	height: 1.5px;
	width: calc(50% + 44.75rem);
	background: var(--color-secondary, #C5983C);
	opacity: 1;
}
.comp-projects__header {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	max-width: var(--max-width-base);
	margin: 0 auto;
	width: 100%;
	position: relative;
	padding-right: var(--space-x-base);
	padding-left: var(--space-x-base);
	padding-bottom: var(--space-y-md);
}
.comp-projects__header h2,
.comp-projects__header h3,
.comp-projects__header p {
	line-height: 1;
	margin: 0;
}
.comp-projects__header h2 span {
	color: var(--color-secondary);
}
.comp-projects__md-header {
	position: relative;
	margin: 3rem 0;
}
.comp-projects__md-header-inner {
	position: relative;
	max-width: var(--max-width-base);
	margin: 0 auto;
	width: 100%;
	padding: 0 var(--space-x-base);
	text-align: right;
}
.comp-projects__md-header.md-right .comp-projects__md-header-inner {
	text-align: left;
}
.comp-projects__md-header h3 {
	background: var(--color-grey-100, #F8F8F8);
	display: inline;
	position: relative;
	z-index: 2;
	margin: 0;
}
.comp-projects__md-header::after {
	content: "";
	position: absolute;
	bottom: 5px;
	height: 1.5px;
	width: calc(50% + 44.75rem);
	background: var(--color-secondary, #C5983C);
	opacity: 0;
	transform: translateY(-50%) scaleX(0);
	transition: transform 900ms cubic-bezier(.22, 1, .36, 1), opacity 200ms ease-out;
	will-change: transform, opacity;
	z-index: 1
}
.comp-projects__md-header.md-right::after {
	right: 0;
}
.comp-projects__md-header.in-view::after {
	opacity: 1;
	transform: translateY(-50%) scaleX(1);
}
.comp-projects__header p {
	line-height: 1.3;
}
.comp-projects__grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 0rem;
	position: relative;
	margin: 4rem 0;
	max-width: var(--max-width-base);
	margin: 0 auto;
	width: 100%;
	position: relative;
}
.comp-projects__grid>* {
	position: relative;
}
.comp-projects__grid img {
	position: absolute;
	top: 2rem;
	right: 2rem;
}
.comp-projects__grid-info {
	position: relative;
	width: 100%;
	font-size: 1.75rem;
	line-height: 1.1;
	padding: 2rem 1rem;
	width: 100%;
	max-width: 270px;
}
.comp-projects__info h4 {
	font-size: var(--font-size-225);
	color: var(--color-primary, #0E3656);
	margin: 0;
}
.comp-projects__info p {
	font-size: 1rem;
	margin: 0;
	margin-top: 0;
	margin-bottom: 0;
}
@media (min-width: 38rem) {
	.comp-projects__grid img.project-icon-1 {}
	.comp-projects__grid img.project-icon-2 {
		top: .75rem;
	}
	.comp-projects__grid img.project-icon-3 {}
	.comp-projects__grid img.project-icon-4 {
		top: unset;
		bottom: 2.5rem;
	}
	.comp-projects__grid img.project-icon-5 {
		top: 1rem;
	}
	.comp-projects__grid img.project-icon-6 {
		top: 0rem;
	}
	.comp-projects__grid img.project-icon-7 {
		bottom: 3rem;
	}
	.comp-projects__grid img.project-icon-8 {
		bottom: 4rem;
		top: unset;
	}
	.comp-projects__grid img.project-icon-9 {
		top: 1rem;
	}
	.comp-projects__grid img.project-icon-10 {
		top: .75rem;
	}
}
@media (min-width: 38rem) {
	.comp-projects__grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0rem;
	}
}
@media (min-width: 48rem) {
	.comp-projects__grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 0rem;
	}
}
@media (min-width: 78rem) {
	.comp-projects__grid {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 0rem;
	}
}

/* ========================================== */
/* LINES — SIZE/POSITION      */
/* ========================================== */

@media (max-width:47.999rem) {
	.comp-projects__grid-info {
		max-width: 100%;
	}
	.comp-projects__grid-item.top-line::after,
	.comp-projects__grid-item.bottom-line::after {
		display: none;
	}
	.comp-projects__grid-item::before {
		content: "";
		position: absolute;
		bottom: 0;
		height: 1.5px;
		width: 75%;
		background: var(--color-secondary, #C5983C);
		opacity: 0;
		transform: translateY(-50%) scaleX(0);
		transition: transform 900ms cubic-bezier(.22, 1, .36, 1), opacity 200ms ease-out;
		will-change: transform, opacity;
	}
	.comp-projects__grid-item:nth-child(odd)::before {
		left: 0;
		transform-origin: left center;
	}
	.comp-projects__grid-item:nth-child(even)::before {
		right: 0;
		transform-origin: right center;
	}
	.comp-projects__grid-item.in-view::before {
		opacity: 1;
		transform: translateY(-50%) scaleX(1);
	}
	.comp-projects__grid-item:last-of-type::before {
		display: none;
	}
}
@media (min-width:48rem) {
	.comp-projects__grid-item.top-line::after,
	.comp-projects__grid-item.bottom-line::after {
		content: "";
		position: absolute;
		right: 0;
		width: 1.5px;
		background: var(--color-secondary, #C5983C);
		height: 0;
		opacity: 0;
		transition: height 1000ms cubic-bezier(.22, 1, .36, 1), opacity 220ms ease-out;
		will-change: height, opacity;
	}
	.comp-projects__grid-item.bottom-line::after {
		bottom: -50%;
	}
	.comp-projects__grid-item.top-line::after {
		top: -50%;
	}
	.comp-projects__grid-item.top-line.in-view::after,
	.comp-projects__grid-item.bottom-line.in-view::after {
		height: 8rem;
		opacity: 1;
	}

}

/* ========================================== */
/* REDUCED MOTION                             */
/* ========================================== */

@media (prefers-reduced-motion: reduce) {
	.comp-projects__grid::before,
	.comp-projects__grid::after {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	.comp-projects__grid-item.top-line,
	.comp-projects__grid-item.bottom-line {
		opacity: 1 !important;
		height: 8rem !important;
		transition: none !important;
	}
}
.comp-commitment__container.in-view::after {
	transform: scaleX(1);
	opacity: 1;
	transition-delay: 800ms;
}
.comp-commitment__container::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	height: 1.5px;
	width: calc(50% + 44.75rem);
	background: var(--color-secondary, #C5983C);
	transform-origin: right center;
	transform: scaleX(0);
	opacity: 0;
	transition: transform 1000ms cubic-bezier(.22, 1, .36, 1), opacity 200ms ease-out;
	will-change: transform, opacity;
}

/* ========================================== */
/* OUR LEADERSHIP */
/* ========================================== */

.comp-leadership {
	max-width: var(--max-width-xl);
	margin: 0 auto;
	width: 100%;
	padding: var(--space-y-xl) var(--space-x-base);
}
.comp-leadership__header {
	text-align: center;
	padding-bottom: var(--space-y-md);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}
.comp-leadership__header h2,
.comp-leadership__header h3,
.comp-leadership__header p {
	line-height: 1;
	margin: 0;
}
.comp-leadership__header h2 {
	font-size: var(--font-size-250);
	color: var(--color-secondary, #C5983C);
}
.comp-leadership__header h3 {
	font-size: var(--font-size-400);
	color: var(--color-primary, #0E3656);
}
.comp-leadership__header p {
	font-size: var(--font-size-250);
	color: var(--color-secondary, #C5983C);
	font-weight: var(--font-weight-700);
	line-height: 1.3;
}
.comp-leadership__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.comp-leadership__grid>* {
	overflow: hidden;
	position: relative;
}
.comp-leadership__grid img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.7s ease;
	will-change: transform;
	position: relative;
	z-index: 1;
	min-width: calc(100% + 0.75rem);
/*	margin-left: -0.75rem;*/
}
/*
.comp-leadership__grid>*:hover img {
	transform: translateX(0.75rem);
}
*/
.comp-leadership__info {
	position: absolute;
	bottom: 7%;
	right: 9%;
	z-index: 2;
	max-width: 80%;
}
.comp-leadership__quote {
	position: absolute;
	top: 7%;
	right: 5%;
	z-index: 2;
	font-family: var(--font-family-script);
	font-size: 1.2rem;
	line-height: var(--line-height-100);
	color: var(--color-primary, #0E3656);
	width: 100%;
	max-width: 35%;
	text-align: right;
	opacity: 0;
	transform: scale(0.85);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 1.25, 0.5, 1);
	will-change: transform, opacity;
}
@media (min-width: 40rem) {
	.comp-leadership__quote {
		font-size: 2.5rem;
		max-width: 10rem;
	}
}
.comp-leadership__grid>*:hover .comp-leadership__quote {
	opacity: 1;
	transform: scale(1);
}
.comp-leadership__info h4 {
	font-size: var(--font-size-225);
	color: var(--color-primary, #0E3656);
	margin: 0 0 0.25rem 0;
}
.comp-leadership__info p {
	font-size: 1rem;
	margin: 0;
	text-align:right;
}
@media (min-width: 38rem) {
	.comp-leadership__grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}
@media (min-width: 72rem) {
	.comp-leadership__grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 550px) {
	.comp-leadership__info h4 {
		font-size: 16px;
	}

	.comp-leadership__info{
		text-align:right;
	}

	.comp-leadership__info p {
		font-size: 14px;

		text-align: right;
		line-height: 1;
	}
}

/* ========================================== */
/* CONTACT                          */
/* ========================================== */

.comp-contact {
	max-width: var(--max-width-xl);
	margin: 0 auto;
	width: 100%;
	padding: 0 var(--space-x-base);
	display: grid;
	grid-template-columns: 1fr;
}
@media (min-width: 56rem) {
	.comp-contact {
		grid-template-columns: 1fr 1fr;
		min-height: 100vh;
		max-height: 800px;
	}
}
.comp-contact__grid {
	display: flex;
	align-items: center;
	position: relative;
	justify-content: flex-end;
}
@media (min-width: 56rem) {
	.comp-contact__grid {
		padding-right: 3rem;
	}
}
.comp-contact__media {
	position: relative;
	background: #f3f5f7;
	display: flex;
	align-items: center;
	min-height: 600px;
}
@media (min-width: 56rem) {
	.comp-contact__media {
		align-items: center;
		min-height: 800px;
	}
}
.comp-contact__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.comp-contact__form-card {
	position: absolute;
	background: #fff;
	padding: 1.5rem;
	width: 100%;
	max-width: 24rem;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 999;
}
@media (min-width: 56rem) {
	.comp-contact__form-card {
		padding: 2.5rem;
		width: 100%;
		max-width: 24rem;
		margin-left: 0rem;
		z-index: 999;
	}
}
@media (min-width: 72rem) {
	.comp-contact__form-card {
		margin-left: -7rem;
	}
}
.comp-contact__copy {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-bottom: 3rem;
	text-align: center;
	align-items: center;
	flex:1
}
@media (min-width: 56rem) {
	.comp-contact__copy {
		padding-right: 0rem;
		text-align: right;
		align-items: flex-end;
	}
}
@media (min-width: 72rem) {
	.comp-contact__copy {
		padding-right: 9rem;
	}
}
.comp-contact__copy p {
	max-width: 24rem;
}
.comp-contact__highlight {
	font-size: 1.875rem;
	color: var(--color-secondary);
	font-weight: var(--font-weight-700);
	line-height: 1.1;
}
.lead-form {
	display: grid;
	gap: .75rem
}
.lead-form .lead-form__row {
	display: grid;
	gap: .75rem
}
.lead-form .lead-form__row--two {
	grid-template-columns: 1fr
}
.lead-form label {
	display: block;
	font-size: .9375rem;
	text-decoration:underline;

	margin-bottom: .25rem;
	color: #0E3656
}
.lead-form input,
.lead-form textarea,
.lead-form button {
	width: 100%;
	font: inherit;
	border-radius: 2px;
}
.lead-form input,
.lead-form textarea {
	border: 1px solid #d9dee5;
	background: #fff;
	color: #0E3656;
	padding: .875rem .9rem
}
.lead-form input::placeholder,
.lead-form textarea::placeholder {
	color: #6f7c88
}
.lead-form textarea {
	min-height: 8rem;
	resize: vertical;
	margin:0 0 20px 0;
}
.lead-form .lead-form__actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.lead-form a.lead-form__upload {
	font-size: 1rem;
	text-decoration: underline;
	color: #0E3656
}
.lead-form button {
	border: 2px solid #0E3656;
	background: transparent;
	color: #0E3656;
	padding: .875rem 1.25rem;
	font-weight: 800;
	cursor: pointer;
	transition: transform .08s ease, background .2s ease, color .2s ease
}
.lead-form .btn-link {
	align-self: flex-end;
	text-align:right;
	border:none;
	text-transform:capitalize;
	padding:0 0 0px 0;
	margin:20px 0 0 0;
	width:90px;
	float:right;
}

.lead-form .file-input {
	display: none;
}


.lead-form input[type="file"]::-webkit-file-upload-button {
	visibility: hidden;
}

.lead-form .upload-label {
	display: inline-block;
	background-color: transparent;
	border: none;
	cursor: pointer;
	background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"%3E%3Cpath fill="%23000000" d="M43.1 466.5c-58.4-58.4-58.4-153.3 0-211.7L258.6 39.4c39.4-39.4 103.2-39.4 142.6 0s39.4 103.2 0 142.6L160 423.3c-19.7 19.7-51.7 19.7-71.4 0s-19.7-51.7 0-71.4L286.6 154c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L111.1 374.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L364 167.1c26.2-26.2 26.2-68.6 0-94.9s-68.6-26.2-94.9 0L53.8 287.5c-45.9 45.9-45.9 120.3 0 166.2s120.3 45.9 166.2 0L422.6 251c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L242.6 476.2c-58.4 58.4-153.3 58.4-211.7 0z"%3E%3C/path%3E%3C/svg%3E');
	background-repeat:no-repeat;
	background-size:15px;
	font-size:0;
	position:absolute;
	top:5px;
	left:85px;
	width:15px;
	height:28px;
}

#file{
	position: absolute;
	top: 0px;
	left: 25px;
	font-size:13px;
	width: 100%;
	text-align: right;

	border: none;
	background: none;
	color: #0E3656;

	padding:0px;

}

.lead-form .upload .field{
	border: none;
	background: none;
	color: #0E3656;
	font-size:15px;
	text-decoration:underline;

	padding: 0;
}

.lead-form .upload{
	position:relative;
}

/* ========================================== */
/* FOOTER */
/* ========================================== */

footer {
	margin: 0;
	background: #fff;
	color: var(--color-primary);
}
.footer-container {
	padding: 2.5rem var(--space-x-base);
	width: 100%;
	max-width: var(--max-width-xl);
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 2rem;
	border-top: 1px solid #eee;
}
#logo-footer {
	max-width: 100%;
	flex: 0 0 10rem;
}
.footer-info {
	display: flex;
	font-size:16px;
	flex-direction: row;
	gap: 3rem;
	align-items: start;
}
footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
footer ul li a,
footer a {
	display: block;
	color: var(--color-primary);
	font-size: 1rem;


	text-decoration: none
}

footer ul li a{
	font-weight: 700;
}

footer ul li a:hover,
footer a:hover {
	color: var(--color-secondary);
}
.footer-copyright {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	line-height: 1;
	font-size: 0.75rem;
	color: var(--color-primary);
	gap: 0.25rem;
}
.footer-copyright a {
	color: var(--color-primary);
	font-size: 0.75rem;
	font-weight:normal!important;
}
.footer-copyright a:hover {
	color: var(--color-secondary);
}
footer .btn-link__underline {
	display: none
}
.follow-us a {
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1rem;
	line-height: 1;
	padding-bottom: 2rem;
}
.follow-us a svg {
	width: 28px;
	height: 28px;
	fill: var(--color-primary);
}
@media (max-width: 48rem) {
	.footer-container {
		gap: 2rem;
		flex-direction: column;
		align-items: center;
		flex:1;
		width:100%;
	}
	.footer-info {
		flex-direction: column;
		gap: 1rem;
		width:100%;
	}
	#logo-footer {
		max-width: 100%;
		flex: 0 0 3rem;
	}
}

@media (max-width: 1600px) {
	.hero-static, header, .comp-leadership, .comp-commitment__header, .comp-commitment__grid, .comp-service-model__viewport, .footer-container, .comp-contact {
		max-width: 1500px;
	}
}

@media (max-height: 700px) {
	.comp-service-model {
		position: static !important; /* disables sticky */
		padding: 2rem 1rem;
	}
}


@media (max-height:700px) {
	.comp-service-model__card{
		position:relative;
	}

	.comp-service-model__title, .comp-service-model__text{
		position:absolute;
		background:#fff;
	}

	.comp-service-model__title{
		background:#fff;
		padding:5px 2%;
		width:100%;
		bottom:100px;
	}

	.comp-service-model__text{
		bottom:50px;
		padding:5px 10% 5px 2%;
		width:100%;
	}
}

@media (max-width: 1200px) {
	.hero-static__inner{
		width:95%;

	}

	.hero-static__content p{
		margin:10px 0;
	}

	.hero-static__title{
		font-size:40px;
	}

	.comp-commitment__info img{
		width:70px;


	}

	.comp-commitment__info h4{
		font-size:30px;
	}

	.comp-commitment__grid-item:nth-child(odd)::after{
		bottom:-40%;
	}

	.comp-service-model__card{
		margin:0 1%;
	}

	.comp-service-model__track {
		-webkit-overflow-scrolling: touch;
		overflow-y: auto;

	}

	.comp-service-model__title, .comp-service-model__text{
		position:relative;

	}

	.comp-service-model__text {
		bottom: 0px;
		padding: 0%;

	}

	.comp-service-model__title {

		padding: 0%;

		bottom:00px;
	}

	.comp-service-model__stage {
		min-height: auto;
		max-height: 100vh;
	}

	.comp-service-model__stage{
		height:100%;


	}

	.comp-projects__grid-info{
		font-size:16px;
	}

	h3{
		font-size:28px;
	}

	.comp-projects, .comp-leadership{
		padding:50px 0;
	}
	.comp-leadership__header h3{
		margin:10px 0;
	}

	.comp-leadership__header{
		padding:0 0 20px 0;
	}

	.footer-info{
		flex-basis:60%;
	}

	.footer-block{
		flex-basis:400px;
		margin:0 0 0 20px;
	}

	h2{
		font-size:35px;
	}

	.comp-commitment__header, .comp-commitment__grid{
		padding:40px 0;

	}

	.comp-service-model::after{
		display:none;
	}


}

@media (max-width: 1000px) {
	.hero-static{
		min-height:100vh;

	}

	.hero-static{

		background:url(https://liontree.duvys.media/assets/images/hero.jpg);
		background-size:cover;
		background-position:center;
		}

		.hero-static__media img {
			display: none;
		}

	.comp-service-model__stage, .comp-service-model__card, .comp-service-model{
		height:100%;

		min-height:0;

	}

	.footer-block{
		flex-basis:100%;
		margin:0 0 20px 0;
	}

	.footer-copyright{
		align-items:start;
	}

	.footer-container{
		align-items:start;
	}
}

@media (max-width:550px) {

.comp-service-model__track {
	transform: none;
	display:block;

}

	.comp-service-model__track img{
		width:100%;

	}

	.comp-service-model__card{
		display:block;
		flex:0;
		width:100%;

	}
}
