﻿@charset "UTF-8";

:root {
	--white:#fff;
	--nearwhite: #fbfbff;
	--offwhite:#f0f0fa;
	
	
	--intracblue:#02076f;
	--altblue:#1b1f83;
	--darkblue:#030535;
	
	--intracgreen:#3d951a;
	--altgreen:#438e25;
	--darkgreen:#134300;
	
	--lightgray:#e1e1e5;
	--gray:#cfcfcf;

	--nearblack: #1c1c1c;
	--black: #0e0e0e;
}

/* RESET 
------------------------------------------------*/
* {margin:0; padding: 0; border: 0; outline: 0; background: transparent;}
	


/* GLOBAL SITE FRAMEWORK
------------------------------------------------*/
html {scroll-behavior: smooth;}
body {font-size:100%; font-family: "nexa-text", sans-serif !important; background:var(--nearwhite);}

::selection {color:var(--nearwhite); background:var(--intracblue);}
::-moz-selection {color:var(--nearwhite); background:var(--intracblue);}

.clear {clear: both;}

/* HEADERS */
h1, h2, h3, h4 ,h5 ,h6 {line-height: normal;}
h1 {font-size:26px; font-weight:normal;}
h2 {font-size:24px; font-weight:normal;}
h3 {font-size:20px; font-weight:normal;}
h4 {font-size:18px; font-weight:normal;}
h5 {font-size:16px; font-weight:normal;}
h6 {font-size:14px; font-weight:normal;}


/* LINKS */
a{transition:.35s ease-in;}
a:link, a:visited {color:inherit; text-decoration:none;}
a:hover, a:active {color:inherit; text-decoration:none;}

a[href^="tel:"] {color:inherit;  text-decoration: none;}

img {display:block;}





/*  BUTTONS
------------------------------------------------*/
a.solid-button {position:relative; display:inline-block; margin:5px; padding:18px 25px 16px 25px; line-height:1; font-weight:800; text-transform: uppercase; color:var(--white); border-radius:1px; background:var(--intracblue);}
a.solid-button:hover {background:var(--altgreen); transform: scale(1.1);}

a.pill-button {position:relative; display:inline-block; margin:5px; padding:18px 25px; line-height:1; font-weight:800; text-transform: uppercase; color:var(--white); border-radius:35px; background:var(--intracblue);}
a.pill-button:hover {background:var(--intracgreen); transform: scale(1.1);}

a.outline-button {display:inline-block; margin:5px; padding:18px 25px; line-height:1; font-weight:800; text-transform: uppercase; color:var(--nearwhite); border:2px var(--nearwhite) solid; border-radius:4px; background:transparent;}
a.outline-button:hover {color:#333; border:2px #333 solid; background:#efefef; transform: scale(1.1);}



/* HEADER
------------------------------------------------*/	
.head-top {padding:12px 3.5%; color:var(--nearwhite); background:var(--intracblue);}

.head-contact {margin:0 0 0 auto; font-size:21px; line-height:1; text-align:right;}
.head-contact i.fa-solid {width:35px; height:35px; margin-right:8px; font-size:14px; line-height:35px; text-align:center; color:var(--white); border-radius:50%; background:var(--altblue); transition:.5s ease-in-out;}

.head-contact a {display:inline-flex; flex-flow:row wrap; align-items:center;}
.head-contact a:nth-of-type(n+2) {margin-left:30px;}
.head-contact a:hover i.fa-solid {color:var(--white);}


.site-header {display:flex; flex-flow:row; align-items:center; justify-content:space-between; padding:25px 3.5%;}
	

/* LOGO
------------------------------------------------*/	
.head-logo {margin-right:35px;}
.head-logo img {max-width:100%;}


/*  NAVIGATION
------------------------------------------------*/
#menu-button{display:none;}
nav.mobile {display:none;}

nav.primary {z-index:500; position:relative; margin:0 0 0 auto; padding:0;}

nav.primary ul {display:flex; flex-flow:row; align-items:center; justify-content:space-around; margin:0; padding:0;}
nav.primary ul li {margin:0; padding:0; list-style-type:none; }

nav.primary ul li.dropdown-icon {position: relative; margin-right:13px;}
nav.primary ul li.dropdown-icon::after {content: "\2b"; position: absolute; z-index:2; top:15px; right:1px; font-size:13px; font-weight:400; color:var(--intracgreen); transition:.5s ease-in-out; font-family: FontAwesome;}

nav.primary ul li a {
	display:block; margin:0 5px; padding:12px 15px;
    font-size:22px; line-height:1; font-weight:600; text-align:center; text-decoration:none; text-transform:uppercase; color:var(--darkblue); cursor:pointer; transition:.5s ease-in;	
}	

nav.primary ul li a:hover {color:var(--altblue); background:var(--offwhite);}


/*  SUB NAV
------------------------------------------------*/
nav.primary ul li li.dropdown-icon::after {top:10px;right:-12px;}
nav.primary ul li li a {padding:8px 5px; font-size: 18px; line-height:1; font-weight: 600; text-align: left; text-transform: none; color:var(--darkblue);}
nav.primary ul li li a:hover {padding-left:10px; padding-right:0; color:var(--altblue); background: transparent;}

/*  NAV DROPDOWNS
------------------------------------------------*/
nav.primary ul ul {display: none; position: absolute; width: max-content; padding:12px 15px; background:var(--nearwhite); box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.075); }
nav.primary ul ul ul {position: absolute; left: 100%; top:-13px;}
nav.primary ul li:hover>ul {display: block !important; z-index: 100; animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;}

nav.primary ul ul li {
	float: none;
	position: relative;
	margin: 0;
	padding-right: 15px;
	display: block;
}







/*  HERO
------------------------------------------------*/
.hero {
	position: relative; color:var(--white); background:var(--nearblack) url("/siteart/hero/line-up-backhoes-wheel-loaders-excavators.jpg") no-repeat center; background-size: cover;
}

.hero::before {
	content:''; position:absolute; z-index:1; width:100%; height:100%; background:#0D0D0D; background: linear-gradient(30deg, rgba(13, 13, 13, 0.85) 0%, rgba(12, 12, 12, 0.67) 100%);
}


.hero-overlay {position:relative; z-index: 5; padding:185px 8.5% 85px 8.5%; animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;}
.hero-overlay h1 {max-width:1180px; font-size:58px; line-height:70px; font-weight:900;}
.hero-overlay p {max-width:950px; margin:50px 0 40px 0; font-size:27px; line-height: 35px; font-weight:600;}




/*  SCROLLING INVENTORY
------------------------------------------------*/
.scrolling-wrap {width:100%; height:90px; overflow:hidden; margin:10px 0;}
.scrollinginv{width:100%; height:90px;}








/* 	INTRO SECTIONS
------------------------------------------------*/	
.intro-wrap {position: relative; display:flex; justify-content: space-between;}

.intro-dark::before {
	content:''; display:block; position:absolute; z-index:0; width:100%; height:100%;
	background:#0D0D0D; background: linear-gradient(30deg, rgba(13, 13, 13, 0.90) 0%, rgba(12, 12, 12, 0.8) 100%);
}
.intro-dark {position: relative; width:calc(50% - 5px); color:var(--white); background:var(--nearblack) url("/siteart/backhoe-wheel-loaders.jpg") no-repeat center; background-size: cover;}
.intro-dark img {filter: brightness(0.35) saturate(100%)}

.intro-dark .intro-body {animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;}

.intro-light::before {
	content:''; display:block; position:absolute; z-index:0; width:100%; height:100%;
	background: #02076F; background: linear-gradient(30deg, rgba(250, 250, 255, .9) 0%, rgba(250, 250, 255, 0.88) 100%);
}
.intro-light {position: relative; width:calc(50% - 5px); text-align: right; background:url("/siteart/wheel-loaders-excavators.jpg") no-repeat center; background-size: cover;}
.intro-light h2 {color:var(--intracblue);}
.intro-light img {filter: brightness(200%) contrast(86%);}


.intro-body {position: relative; z-index: 1; display:flex; flex-flow:column wrap; align-items:flex-start; justify-content:space-between; max-width:610px; height:-webkit-fill-available; padding:85px; padding-top:100px;}
.intro-body h2 {margin: 0 0 35px 0; font-size:42px; line-height:1; font-weight:900; text-transform: uppercase;}
.intro-body p {margin: 0 0 25px 0; font-size:23px; line-height:29px;}
.intro-body a {display:block;}

.intro-light .intro-body {align-items:flex-end; margin:0 0 0 auto; animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;}


/*  INVENTORY MAIN
------------------------------------------------*/
.inv-main {box-sizing:content-box; margin:0 auto; padding:calc(2.5% + 30px) 20px;}
.inv-main h1, .inv-main h2, .inv-main h3, .inv-main h4, .inv-main h5, .inv-main h6 {font-family:"nexa-text", sans-serif;}

/*  SUB HERO
------------------------------------------------*/	
.sub-hero {position:relative; width:100%; background:var(--nearblack);}
.sub-hero::after {content:''; position: absolute; z-index:1; bottom:0; width:100%; height:100%; background:#0D0D0D; background: linear-gradient(30deg, rgba(13, 13, 13, 0.7) 0%, rgba(12, 12, 12, 0.05) 100%);}
.sub-hero h1 {position:absolute; z-index:5; bottom:calc(35px + 3.5%); left:5%; font-size:50px; font-weight:900; text-transform: uppercase; color:var(--white);}
.sub-hero img {width: 100%; height: 680px; object-fit: cover; object-position: center center;}

.sub-hero-mobile {display: none;}

/*  SUB MAIN
------------------------------------------------*/	
.sub-main {margin: 0 auto; padding:calc(35px + 3.5%) 10.5%;}
.sub-main .center-main {text-align:center;}

.sub-main h1 {margin-bottom: 20px; font-size:45px; font-weight:900; text-transform: uppercase; color:var(--intracblue);}
.sub-main h2 {margin-top:30px; margin-bottom: 20px; font-size:33px; font-weight:800; text-transform: uppercase; color:var(--darkblue);}
.sub-main h3 {margin-top:30px; margin-bottom: 20px; font-size:26px; font-weight:800; text-transform: uppercase; color:var(--darkblue);}

/*  ARTICLE
------------------------------------------------*/
article p {font-size:22px;line-height:1.5; font-weight:400;}
article p a{text-decoration:underline !important; color:var(--intracblue) !important;}
article p a:hover {text-decoration:none !important; color:var(--intracgreen) !important;}



/*  REVIEWS
------------------------------------------------*/
.reviews-section {padding:65px 0; background: url("/siteart/tire-threads-background.png") no-repeat top left; }

.reviews-heading {position:relative; display:flex; flex-flow:row wrap; align-items: center; justify-content: space-between; margin:15px 5.5%;}
.reviews-heading h3{position:relative; margin:0 25px 0 0; font-size:45px; line-height:1; font-weight:800; color:var(--intracblue); animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;}

.reviews-social a {display:inline-block; width:75px; height:75px; margin:10px; font-size:40px; line-height:75px; text-align:center; color:var(--white); background:var(--intracblue);}
.reviews-social a:hover {background:var(--darkblue); transform: scale(1.1);}
.reviews-slider {position:relative; overflow:hidden; margin:50px 0;}

.review-prev,
.review-next {
	position:absolute; z-index:10; top: 50%; transform: translatey(-50%); width:110px; height:110px; font-size:80px; line-height:110px; text-align:center; color:var(--intracblue); background:rgba(250,250,255,.8);
}

.review-prev {left:0;}
.review-next {right:0;}

.review-slideshow a {position:relative;margin:0 375px 0 -350px;}
.review-slideshow img {width: 100%;  max-width:500px;}



/*  NUMBERS BANNER
------------------------------------------------*/
.numbers-banner {
	/*display:flex; flex-flow:row wrap; align-items:center; justify-content:space-around;*/
	display:grid; grid-template-columns: repeat(4, 1fr); gap:25px;
	padding:60px 0;
	color:var(--white); background:var(--intracblue) url("/siteart/work-site-tracks-dirt-hill.jpg") no-repeat center; background-size: cover;
}
.numbers-item {
	display:flex; flex-flow:column; align-items:center; justify-content:center;
	font-size:53px; font-weight:800; text-transform: uppercase; text-align:center; 
}
.numbers-item span {font-size:33px; font-weight:200; color:var(--offwhite)}


/*  FOUNDED
------------------------------------------------*/
@property --numyear {
  syntax: '<integer>';
  inherits: true;
  initial-value: 1980;
}

.numbers-item.item-one::before {
  counter-reset: year-counter var(--numyear);
  content: counter(year-counter);
  animation: countyear 3s ease-out forwards;
}

@keyframes countyear {
  to { --numyear: 2001; }
}


/*  EXPERIENCE
------------------------------------------------*/
@property --numexp {
  syntax: '<integer>';
  inherits: true;
  initial-value: 10;
}

.numbers-item.item-two::before {
  counter-reset: exp-counter var(--numexp);
  content: counter(exp-counter) '+';
  animation: countexp 3s ease-out forwards;
}


@keyframes countexp {
  to { --numexp: 50; }
}



/*  GENERATIONS
------------------------------------------------*/
@property --numgen {
  syntax: '<integer>';
  inherits: true;
  initial-value: 1;
}

.numbers-item.item-three::before {
  counter-reset: gen-counter var(--numgen);
  content: counter(gen-counter);
  animation: countgen 2s ease-out forwards;
}


@keyframes countgen {
  to { --numgen: 3; }
}


/*  FAMILY
------------------------------------------------*/
/*
@property --numfam {
  syntax: '<integer>';
  inherits: true;
  initial-value: 5;
}

.numbers-item.item-four::before {
  counter-reset: fam-counter var(--numfam);
  content: counter(fam-counter);
  animation: countfam 5s ease-out forwards;
}


@keyframes countfam {
  to { --numfam: 1; }
}
*/




/*  MOTTO SECTIONS
------------------------------------------------*/
.motto-section {overflow:hidden; padding-top:160px; text-align:center; background:var(--offwhite);}

.motto-section p {max-width:1250px; margin:10px auto; padding:0 7.5%; font-size:28px; line-height:38px; text-align:center; color:var(--darkblue);}
.motto-section img {position:relative; z-index:3; width:100%; margin-top:-6vw; pointer-events: none;}

.motto-topline {font-size:9.15vw; line-height:1; font-weight:900; text-transform: uppercase; color:var(--intracblue); animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;}

.motto-bottomline {display:flex;  justify-content:center; font-size:12vw; line-height:1; font-weight:900; text-transform: uppercase; color:var(--intracblue);}

.motto-bottomline .fronttext {position:relative; z-index: 5; animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;}
.motto-bottomline .backtext {position:relative; z-index: 1; animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;}


/*  STAFF INTRO
------------------------------------------------*/
.staff-intro {max-width:1000px; margin:calc(35px + 3.5%) auto;}
.staff-intro p {font-size:20px;}
.staff-intro img {width:100%; max-width:100%; margin:35px auto;}

/*  STAFF BIOS
------------------------------------------------*/
.staff-section {max-width:1500px; margin:0 auto;}

.staff-section h3 {margin-top:30px; margin-bottom: 20px; font-size:33px; font-weight:800; text-align:center; text-transform: uppercase; color:var(--darkblue);}

.staff-bio {
	display:grid; grid-template-columns: repeat(2, 1fr); gap:35px; padding:calc(35px + 3.5%); background:var(--offwhite);
	animation: slide-in-blurred-left 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}
.staff-bio h3 {color:var(--intracblue);}
.staff-bio img {display:block; max-width:100%;}

.staff-pic {order:1; width:100%;}
.staff-profile {order:2;}
.staff-profile h4 {font-size:28px; font-weight:900;}
.staff-profile h5 {margin-bottom:10px; font-size:22px; font-weight:500; font-style:italic;}
.staff-profile a {font-size:20px;line-height:1.5; font-weight:300;}
.staff-profile a:hover {text-decoration:underline; color:var(--intracblue);} 
.staff-profile p {font-size:20px;line-height:1.5;}

.staff-bio:nth-of-type(even) {padding:calc(35px + 3.5%); animation: slide-in-blurred-right 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;}
.staff-bio:nth-of-type(even) .staff-pic {order:2;}
.staff-bio:nth-of-type(even) .staff-profile {order:1; text-align: right;}

.staff-bio:nth-of-type(n+2) {margin:calc(35px + 2.5%) 0;}


/*  STAFF BIOS CONCLUSION
------------------------------------------------*/
.staff-conclude {max-width:850px; margin:calc(35px + 3.5%) auto;}
.staff-conclude p {font-size:18px; font-weight:300;}
.staff-conclude img {width:100%; margin:35px 0;}


/*  BANNER SECTION
------------------------------------------------*/
.banner-section {margin:calc(35px + 3.5%) auto; padding:calc(35px + 3.5%) 5%;  border-top:1px var(--lightgray) solid; border-bottom: 1px var(--lightgray) solid;}


/*  ACCORDIONS
------------------------------------------------*/
.accordion-section {display: flex; flex-flow: column;}
.accordion-title {position: relative; cursor: pointer;margin:0 0 10px 0; padding:30px 15px;font-size:22px; font-weight:800; text-transform: capitalize; color:var(--nearblack); border-bottom:1px var(--gray) solid;}
.accordion-title::after {
	content: "\2b"; position: absolute; right:10px; width:30px; height:30px; line-height:30px; text-align: center;
	color:var(--white); border-radius:50%; background:var(--intracblue); font-family: "Font Awesome 7 Free";
}

.accordion-body {overflow: hidden; height: 0px; padding: 0 16px; background:var(--white); transition: all 0.3s linear;}
.accordion-body p {font-size:18px; line-height:1.65;}

.accordion-active {margin:0; border:0; background:var(--white);}
.accordion-active::after {content: "\f068"; position: absolute; background:var(--intracgreen);font-family: "Font Awesome 7 Free";}
.accordion-active + .accordion-body {height: unset; padding:35px; padding-top:5px;}


/*  STAFF CONTACT SECTION
------------------------------------------------*/
.contact-section {display:grid; grid-template-columns: repeat(3, 1fr); gap:35px;}

.staff-contact {padding:25px;background:var(--lightgray);}
.staff-contact h4 {margin-bottom:20px; font-size:22px; font-weight:900; text-align:center;}
.staff-contact strong {font-weight: 700;}
.staff-contact ul {list-style:none; margin:0 0 0 45px;}

.staff-contact ul li {position:relative;  margin:8px 0; font-size:20px; line-height:30px; font-weight:300; color:#111;}

.staff-contact ul li.map-icon::before {position: absolute; z-index:1; top:12px; left:-36px; font-size:25px; color: var(--intracblue); content: "\f3c5"; font-family: FontAwesome;}
.staff-contact ul li.phone-icon::before {position: absolute; z-index:1; top:2px; left:-40px; font-size:25px; color: var(--intracblue);  content: "\f095"; font-family: FontAwesome;}
.staff-contact ul li.email-icon::before {position: absolute; z-index:1; top:2px; left:-40px; font-size:25px; color: var(--intracblue); content: "\f0e0"; font-family: FontAwesome;}
.staff-contact ul li.hours-icon::before {position: absolute; z-index:1; top:15px; left:-40px; font-size:25px; color: var(--intracblue); content: "\f017"; font-family: FontAwesome;}


/*  QUICK SOCIALS
------------------------------------------------*/
.quickcontact-heading {display:flex; flex-flow:column wrap; align-items: center; justify-content: space-between; margin:15px 5.5% calc(35px + 3.5%) 5.5%;}
.quickcontact-heading h3{margin:0 auto ; font-size:45px; line-height:1; font-weight:800; text-transform: uppercase; color:var(--intracblue); }

.quickcontact-social {margin:25px auto 0 auto;}
.quickcontact-social a {display:inline-block; width:75px; height:75px; margin:10px; font-size:40px; line-height:75px; text-align:center; color:var(--white); background:var(--intracblue);}


/*  LOCATION MAP
------------------------------------------------*/
.location-map {margin-bottom: 5px}
.location-map iframe {width:100%;}


/*  FOOTER
------------------------------------------------*/
.site-footer {padding:35px 5%; color:var(--black); background:var(--lightgray); }

.foot-main {display:flex; flex-flow:row wrap; align-items:flex-start; justify-content:space-around; position:relative; padding:50px 0;}
.foot-main:after {content:""; position:absolute; z-index:5; left:2.5%; bottom:0; width:95%; height:1px; background:var(--gray);}

.foot-intro {display:flex; flex-flow:row wrap; justify-content:flex-start; margin:0 auto 0 0;}

.foot-logo {width:235px; margin-right:45px;}
.foot-logo img {max-width:100%;}

.foot-contact {margin:8px auto 0 0; font-size:23px; line-height:33px;}
.foot-contact a[href^="tel:"] {font-size:28px; font-weight:800; color:var(--intracblue);}

.foot-nav-wrapper {display:grid; grid-template-columns: repeat(2, 1fr); gap:25px; margin:0 0 0 auto;}
.foot-nav-item strong {font-size:28px; font-weight:800;  color:var(--intracblue);}
.foot-nav-item ul {list-style:none;}
.foot-nav-item ul li a {font-size:24px}
.foot-nav-item ul li a:hover {color:var(--intracblue);}
.foot-social {margin:40px 0; text-align:center;}
.foot-social a{margin:5px; padding:10px; font-size:30px; color:var(--intracblue);}
.foot-social a:hover {color:var(--intracgreen);}
.foot-copyright {font-size:16px; text-align:center;}



/************************************************ Responsive Styles **/

@media screen and (max-width: 1500px) {	
	.intro-body h2 {font-size:38px;}
	.reviews-heading {flex-flow:column wrap;}
	.reviews-heading h3{margin:0; text-align: center;}
	.reviews-social {margin:25px auto 0 auto; text-align: center;}
	
	.contact-section {grid-template-columns: repeat(2, 1fr);}
	
	.foot-intro {display:flex; flex-flow:column wrap;}
	.foot-logo {margin-right:0; margin-bottom:35px;}
}

@media screen and (max-width: 1300px) {
	.head-logo {width:200px;}
	nav.primary ul li a {font-size:20px;}	
	.intro-body h2 {font-size:33px;}
	.intro-body p {font-size: 22px; line-height: 28px;}
	.foot-main {flex-flow:column-reverse; align-items:center; justify-content:space-around;}
	.foot-intro {display:flex; flex-flow:column wrap; margin:0 auto; text-align:center;}
	.foot-logo {margin:0 auto; margin-bottom:35px;}
	.foot-nav-wrapper {margin:0 auto; margin-bottom:calc(35px + 3.5%);}
	.foot-nav-item {text-align:center;}
}

@media screen and (max-width: 1200px) {
	nav.primary ul li a {font-size:17px;}
	.hero-overlay h1 {font-size:43px; line-height:50px;}
	.hero-overlay p {font-weight: 500;}
	.sub-hero img {height: 550px;}
}

@media screen and (max-width: 1100px) {
	nav.primary{display:none;}
	#menu-button{display:block; position: relative; z-index:400; margin:0 0 0 auto;}
	#menu-button a{font-size:28px; line-height:1; color:var(--intracblue); text-decoration: none; padding:0; cursor:pointer;}
	
	nav.mobile ul li a .fa{
		width:25px;
		font-weight:100;
		padding:8px 3px;
		margin:0 0 0 5px;
		text-align:center;
		background:#292929;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}
	
	nav.mobile ul li .fa-solid {position:absolute; right:10px; margin:18px 0 0 0; color:var(--intracgreen)}
	nav.mobile ul li:hover .fa-solid {position:absolute; z-index:5; color:var(--white)}
	
	nav.mobile {
		display:block;
		position: fixed;
		top: 0;
		right: -285px;
		width: 285px;
		height: 100%;
		z-index: 500;
		overflow:auto;
		padding-bottom:40px;
		background: rgb(255,255,255);
		background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(224,224,224,1) 100%);		
	}
	
	/* MENU HEADER SOCIAL MEDIA */
	nav.mobile .social-media {
		position: absolute;
		text-decoration: none;
		vertical-align: top;
		z-index:9999;
		display: inline-block;
		
		top: 15px;
		left: 15px;
		font-size:16px;
		word-spacing:13px;
		color:var(--nearblack) !important;
	}
	
	nav.mobile .social-media a {color:var(--nearblack); text-decoration:none; cursor:pointer;}
	nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:var(--intracblue);}
	
	/* MENU HEADER STYLES */
	nav.mobile .menu-header {	
		color: var(--nearblack);
		padding: 23px 0;
		position: relative;
		font-size: 18px;
	}			
		
	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {position: absolute; top: 8px; right: 10px; padding: 6px 9px 5px; display: inline-block; font-weight: 700; font-size: 18px; line-height: 1; color: var(--nearwhite); text-decoration: none; vertical-align: top; cursor:pointer; background: var(--nearblack); font-family: Arial, sans-serif;}
	nav.mobile .menu-toggle:hover {color: #fff;}
	
	/* MENU LIST STYLE */
	nav.mobile ul {list-style: none; font-weight: 300; margin:0; padding:0;}
	nav.mobile ul li {color: #999; font-size:15px;}
	
	nav.mobile ul li.dropdown-icon {position: relative; }
	nav.mobile ul li.dropdown-icon::after {content: "\2b"; position: absolute; z-index:2; top:18px; right:18px; font-size:13px; font-weight:400; color:var(--intracgreen); transition:.5s ease-in-out; font-family: FontAwesome;}
	
	nav.mobile ul li.dropdown-icon:hover::after {color:var(--white);}
	
	/* FIRST LEVEL */
	nav.mobile ul li a {
		color:var(--nearblack);
		position: relative;
		display: block;
		font-size:16px;
		font-weight:700;
		text-align:left;
		text-decoration: none;
		text-transform: uppercase;
		padding: 15px 35px 15px 20px;
		cursor:pointer;
		transition:.5s ease;	
	}
	nav.mobile ul li a:hover {background:rgba(45,45,45,0.5); color: #fff; border-left:4px var(--intracgreen) solid;}
	
	/* SECOND LEVEL */
	nav.mobile ul li li a {padding: 15px 10px 15px 15px; font-size:16px; font-weight:500;background: #cdcdcd; text-transform: none;}
	nav.mobile ul li li a:hover {background:rgba(55,55,55,0.5);}
	
	/* THIRD LEVEL */
	nav.mobile ul li li li a {font-weight:400; background: #dfdfdf;}
	nav.mobile ul li li li a:hover {background:rgba(65,65,65,0.5);}	
}

@media screen and (max-width: 1024px) {
	.intro-wrap {flex-flow: column;}
	.intro-dark {width:100%; margin-bottom: 10px;}
	.intro-light {width:100%;}
	.intro-body {padding:8% 5%; padding-top:85px;}
	.intro-body h2 {font-size:33px;}
	.numbers-banner {grid-template-columns: repeat(2, 1fr); gap:25px; padding:60px 5%;}
	.motto-section img {width: 120%; margin-left: -10%;}	
	.contact-section {grid-template-columns: repeat(1, 1fr);}
	.staff-section {max-width:600px;}
	.staff-bio {grid-template-columns: repeat(1, 1fr);}
	.staff-pic {order:1 !important;}
	.staff-profile {order:2 !important; text-align:left !important;}
}

@media screen and (max-width: 860px) {
	.review-prev,
	.review-next {width:60px; height:75px; font-size:40px; line-height:75px;}
	.review-slideshow a {position:relative;margin:0 270px 0 -255px;}
	.review-slideshow img {max-width:345px;}
}

@media screen and (max-width: 768px) {
	.head-top {display:flex; flex-flow:row wrap; align-items:center; justify-content:center;}
	.head-contact {margin:0 auto;}
	.head-contact a span {display:none;}
	.head-contact i.fa-solid {width:45px; height:45px; margin-right:0; font-size:18px; line-height:45px; background:var(--darkblue);}
	.hero-overlay {padding:85px 8.5%;}
	.hero-overlay h1 {font-size: 38px; line-height: 45px;}
	.hero-overlay p {font-size:23px; line-height: 33px;}
	.sub-hero h1 {font-size:33px;}
	.sub-hero-desktop {display:none;}
	.sub-hero-mobile {display:block}
	.reviews-heading h3{font-size:38px;}
	.reviews-social a {width:60px; height:60px; font-size:33px; line-height:60px;}
	.numbers-banner {background:url("/siteart/work-site-tracks-dirt-hill-mobile.jpg") no-repeat center; background-size: cover;}
	.motto-section img {width: 150%; margin-left:-25%;}
	.foot-nav-wrapper {grid-template-columns: repeat(1, 1fr);}
}

@media screen and (max-width: 580px){
	.sub-hero img {height:500px;}
	.numbers-banner {grid-template-columns: repeat(1, 1fr); gap:45px;}
	.review-slideshow a {margin: 0 5px 0 5px;}
	.review-slideshow img {max-width:345px;}
	.motto-section {padding-top: 100px;}
}

@media screen and (max-width: 400px){
	.motto-topline {font-size:15vw; line-height:1.3;}
	.motto-section p {margin: 10px auto 30px auto;}
	.motto-bottomline {font-size: 15vw;}
}
@media screen and (max-width: 400px){
	.foot-social a{font-size:26px;}
}

@media screen and (max-width: 355px){
	.review-slideshow img {max-width:305px;}
}
