/***** VARS *****/
:root {
  --primary: #043d10;
  --secondary: #C19A23;
  --primaryshade: #032a0b;
  --secondaryshade: #d4ab34;
}

/* ---- COMMON ----- */
.hero-overlay {
	background: linear-gradient(to right, rgba(4,61,16,.9) 0%, rgba(4,61,16,.7) 50%, transparent 100%);
}

/* ----- HOME ----- */
.about-section { 
	padding: 5rem 0; 
	background: #fff; 
}

.section-eyebrow {
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: .875rem;
}

.section-heading {
    font-weight: 700;
    color: var(--primary);
    margin-top: .75rem;
    margin-bottom: 1.5rem;
}

.quote-box { 
	background: var(--primary); 
	padding: 2.5rem; 
}

.quote-box h3 { 
	color: #fff; 
	font-weight: 700; 
	margin-bottom: .75rem; 
	font-size: 1.5rem; 
}

.quote-box p { 
	color: rgba(255,255,255,.8); 
	margin-bottom: 1.5rem; 
}

.btn-quote {
	display: block;
	width: 100%;
	padding: 1rem;
	background: var(--secondary);
	color: var(--primary);
	font-weight: 700;
	border: none;
	border-radius: 0;
	font-size: 1rem;
	transition: background .2s;
	cursor: pointer;
}

.btn-quote:hover { 
	background: var(--secondaryshade); 
}

.testimonial-ticker { 
	background: #f9fafb; 
	padding: 3rem 0; 
	overflow: hidden; 
}

.ticker-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    padding: 0 2rem;
}
 
.ticker-item svg { 
	width: 2.5rem; 
	height: 2.5rem; 
	color: var(--secondary); 
	flex-shrink: 0; 
}

.ticker-item p { 
	color: #374151; 
	font-style: italic; 
	font-size: 1.125rem; 
	white-space: nowrap; 
	margin: 0; 
}

.ticker-item span { 
	color: var(--primary); 
	font-weight: 600; 
	white-space: nowrap; 
}
    
.services-section { 
	padding: 5rem 0 5rem; 
	background: #fff; 
}
    
.service-card {
    background: #fff;
    border: 2px solid #f3f4f6;
    padding: 2rem;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    height: 100%;
}

.service-card:hover {
    border-color: var(--secondary);
    transform: translateY(-.5rem);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background .3s;
}

.service-card:hover .service-icon { 
	background: var(--secondary); 
}
    
.service-icon svg { 
	width: 2rem; 
	height: 2rem; 
	color: #fff; 
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: .75rem;
}

.service-card p {
	color: #4b5563; 
	margin-bottom: 1rem;
}

.learn-more {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    transition: gap .2s;
}

.learn-more:hover { 
	gap: .5rem; 
	color: var(--secondary); 
}

.learn-more svg { 
	width: 1rem; 
	height: 1rem; 
}

.icon
{
	padding: 10px 15px 15px 15px;
	display: flex;
    align-items: center;
}

.icon i
{
	color: var(--secondary);
	font-size: 2rem;
	margin-right: 20px;
}

.icon span
{
	font-size: 1rem;
	color: white;
}

.highlights
{
	padding: 20px 10px 10px 10px;
}

/*

.box
{
	border: 1px solid black;
	padding: 10px;
}

#slideshow .carousel-item
{
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
    padding: 100px 0px 0px 0px;
	min-height: 50vh;
	box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.3);
	text-align: center;
	background-position: center;
}

#slideshow .carousel-item h1
{
	display: block;
    color:white;
}

#slideshow .carousel-item p
{
    padding: 5px 10px;
	font-size: 1.5rem;
	font-weight: 400;
	color: white;
}

#reviews
{
	text-align: center;
	padding: 10px;
}

#reviews img
{
	max-height: 100px;
}

#reviews blockquote
{
	color:var(--primary);
	font-weight: bold;
	font-size: 1.1rem;
}

#reviews blockquote i
{
	color:var(--secondary);
	display: inline-block;
}

#reviews blockquote .fa-quote-left
{
	margin-right: 5px;
}

#reviews blockquote .fa-quote-right
{
	margin-left: 5px;
}

.tile a
{
	background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
	min-height: 40vh;
	height: 100%;
	box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.3);
	display: block;
	position: relative;
	border: 1px solid black;
}

.tile span
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--primary);
	color: white;
	text-align: center;
	padding: 10px 50px;
	font-size: 1.4rem;
}

.tile a:hover span
{
	background: white;
	color: var(--primary);
}

#services h1
{
	margin-bottom: 50px;
}
*/

/* ------ CONTACT ----- */
.contact .left-col
{
	padding-right: 30px;
	padding-bottom: 30px;
}

.contact .right-col
{
	padding-left: 30px;
}

#wtw
{
	color: black;
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 10px;
	display: inline-block;
}

#wtw span
{
	color: red;
}

/***** SERVICES *****/
#services .item
{
	background-color: var(--primary);
	border: 1px solid black;
	color: white;
	padding: 0px;
	height: 100%;
	width: 100%;
}

#services .item h2
{ 
	color: white;
	font-size: 1.5rem;
	padding: 10px;
}

#services .item p
{ 
	color: white;
	font-size: 1rem;
	padding: 10px;
}

#services .item .serviceimg
{
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
	height: 200px;
	box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.3);
	width: 100%;
	margin: 0px;
}

#services .card-body
{
	padding: 0px !important;
}

/***** STUDIES *****/
#studies > div 
{
	margin-bottom: 30px;
}

#studies .item
{
	background-color: #F6F6F6;
	border: 2px solid #0A2044;
	color: black;
	margin: 0px;
	padding: 0px !important;
	height: 100%;
	width: 100%;
}

#studies fieldset
{
	padding: 0 10px;
}

#studies fieldset label
{
	font-weight: bold;
	width: 100px;
	font-family: 'HelveticaCondensedBold', sans-serif;
}

#studies .item h2
{ 
	color: black;
	font-size: 1.25rem;
	padding: 0 10px;
	margin-bottom: 0;
	margin-top: 10px;
}

#studies .item p
{ 
	color: black;
	padding: 10px;
	margin: 0;
}

#studies .item .studyimg
{
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
	height: 200px;
	box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.3);
	width: 100%;
	margin-bottom: 20px;
}

/***** DOCUMENTS *****/
#docs .item
{
	background-color: white;
	border: 1px solid var(--primary);
	color: white;
	padding: 0px !important;
	height: 100%;
	width: 100%;
}

#docs .item span
{ 
	display: block;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px;
	margin-top: 10px;
	background: var(--primary);
	color: white;
}

#docs .item .docimg
{
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
	height: 250px;
	width: 100%;
	margin: 20px 0px;
}

#docs .item a:hover span
{
	color: var(--secondary);
}

/***** ONBOARDING *****/
#onboarding main
{
	font-size: 1.25rem;
}

#onboarding #progress h1
{
	color: white;
}

#onboarding .progress
{
	max-width: 400px;
}

#onboarding .instruction
{
	color: red;
	margin-bottom: 30px;
}

#onboarding .instruction span
{
	text-decoration: underline;
	font-weight: bold;
	text-transform: uppercase;
}

/***** COMMON *****/
/*
#banner
{
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
    padding: 75px 0px 0px 0px;
	min-height: 30vh;
	box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.3);
	text-align: center;
}

#banner h1
{
	color: white;
}
*/
#form textarea
{
	color: black;
	border: 1px solid var(--primary);
	padding:10px;
	display: block;
	width: 100%;
	margin-bottom: 0px;
	font-size: 1.25rem;
	resize: none;
	height: 150px;
}

#form textarea.full
{
	height: 665px;
}

#form label
{
	display: block;
	color: var(--primary);
	font-weight: bold;
}

#form input, #form select
{
	color: black;
	border: 1px solid var(--primary);
	padding:10px;
	display: block;
	font-size: 1.25rem;
	margin-bottom: 30px;
	width: 100%;
}

#form button
{
	display: inline-block;
	margin-top: 40px;
}

#form label.alt
{
	display: inline-block;
	margin-right: 10px;
	background: var(--secondary);
	color: black;
	padding: 10px;
}

#form select.alt
{
	color: black;
	border: 2px solid var(--secondary);
	padding: 8px;
	display: inline-block;
	font-size: 1.25rem;
	margin-bottom: 30px;
}

main a
{
	color: #043D10;
	font-weight: bold;
    text-decoration: none;
}

main a:hover
{
	color: var(--secondary);
    text-decoration: none;
}

main .alert
{
	margin-bottom: 40px;
}

.main-image
{
	float: right;
	margin: 0px 0px 20px 20px;
	max-width: 40%;
}