/* ----- FONTS ----- */
@font-face {
    font-family: 'HelveticaThin';
    src: url('../fonts/helveticaneue-thin-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneue-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaCondensedBold';
    src: url('../fonts/helveticaneue-condensedbold-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneue-condensedbold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaExtraBold';
    src: url('../fonts/futura_condensed_extra_bold-webfont.woff2') format('woff2'),
         url('../fonts/futura_condensed_extra_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaMedium';
    src: url('../fonts/futura_condensed_medium-webfont.woff2') format('woff2'),
         url('../fonts/futura_condensed_medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ----- GENERIC STYLING ----- */
html
{
	position: relative;
	min-height: 100%;
	font-size: 12px;
}

@media (min-width: 768px) { html { font-size: 12px; } }
@media (min-width: 992px) { html { font-size: 14px; } }
@media (min-width: 1200px) { html { font-size: 16px; } }

body
{
	line-height: 1.5;
	font-size: 1rem;
	margin-bottom: 100px;
	background: white;
    font-family: 'HelveticaThin', sans-serif;
	color: black;
}

h1 
{
	font-family: 'HelveticaCondensedBold', sans-serif;
	font-weight: 400;
	color: #043D10;
	margin-bottom: 20px;
	font-size: 2.75rem;
}

h2
{
	font-family: 'HelveticaCondensedBold', sans-serif;
	font-weight: 400;
	color: #043D10;
	margin-bottom: 20px;
}

.button
{
	border: 1px solid #043D10;
	padding: 10px 20px;
	font-size: 1.75rem;
	color: white;
	font-weight: 300;
	margin-top: 20px;
	display: inline-block;
	background: #043D10;
	text-align: center;
}

.button:hover
{
	background: white;
	color: #043D10;
	cursor: pointer;
}

.button.alt
{
	border: 1px solid #C19A23;
	background: #C19A23;
}

.button.alt:hover
{
	background: white;
	color: #C19A23;
}

.block 
{
	display: block;
}

main
{
	padding-top: 100px;
	padding-bottom: 40px;
	font-size: 1.25rem;
}

@media (min-width: 992px) { main { padding-top: 60px; } }

.gap
{
	padding-bottom: 50px
}

.jump
{
	margin-top: 30px
}


#intro
{
	padding-bottom: 50px;
}

/* ----- MOBILE NAV ----- */
.navbar 
{
	color: white;
	background: #043D10;
    border: none;
    border-radius: 0;
}

.navbar-brand 
{
    border-bottom: none;
    font-size: 2rem;
}

#mobilenav a 
{
    border-bottom: none;
    font-size: 2rem;
}

/* ----- MAIN NAV---- */
nav a 
{
	text-decoration: none;
	color: white;
	position: relative;
	display: block;
	font-family: 'FuturaMedium', sans-serif;
	padding: 5px 20px;
	font-size: 1.3rem;
}

nav > ul 
{
	list-style: none;
}

.toggle 
{
	font-size: 3.5rem;
	position: absolute;
	right: 20px;
	top: 50px;
	color: white;
}

nav ul ul 
{
	display: none;
}

@media (min-width: 768px) {

	#menu {
		padding-top: 10px;
	}

	nav {
		display: block;
	}
	
	nav > ul li {
		display: inline-block;
	}

	nav > ul > li {
		position: relative;
	}

	nav ul ul {
		position: absolute;
		top: 0px;
		background: #D4C9AB;
		padding: 5px 0;
		z-index: 5;
		list-style: none;
		text-align: center;
		padding-top: 50px;
	}

	nav ul ul li {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	nav ul ul li a {
		padding: 0;
		line-height: 1.5rem;
		color: #043D10;
	}

	nav ul ul li a:hover {
		color: rgba(4, 61, 16, 0.50);
		text-decoration: none;
	}
		
	.drop:hover > a { 
		z-index: 6;
	}

	nav ul > li:hover > ul { 
		display: block; 
	}

	nav ul ul a:hover {
		color: white;
	}

	nav > ul > li > a.active, nav > ul > li > a:hover, .drop:hover > a {
		color: #043D10;
		background: #C19A23;
		text-decoration: none;
	}
}

@media (max-width: 767px) { 
	nav {
		display: none;
		position: absolute;
		width: 100%;
		left: 0;
		z-index: 10;
		background: #0A2044;
		padding: 20px 0px 5px 20px;
	}

	nav ul ul {
		display: block !important;
		list-style: none;		
	}

	nav a {		
		font-size: 1.1rem !important;
	}

	nav ul ul li a {
		font-size: 0.9rem !important;
	}

	nav a:hover {		
		color: #D4C9AB;
	}

	nav.show li {
		margin-bottom: 5px !important;
		margin-top: 5px !important;
	}

	nav.show {
		display: block;
	}

	nav.show li {
		margin-bottom: 10px;
	}

	nav.show a { 
		padding: 5px 0;
	}
}

/* ----- HEADER---- */

header 
{
	background: #043D10;
    color: white;
	padding: 10px 20px;
}

#logo 
{
	padding: 0px 20px 0px 0px;
}

header .right-col
{
	text-align: right;
}

#buttons 
{
    padding-top: 10px;
}

header form 
{
	display: inline-block;
	margin: 0;
}

#search .phone, #search .phone:hover 
{
	background: #C19A23;
	color: white;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 10px;
	text-decoration: none;
}

#search .phone i 
{
	margin-right: 10px;
}

#search input 
{
	margin-top: -1px;
	padding: 3px 10px 5px 10px;
	border: 1px solid white;
}

header .social i 
{
	font-size: 2.4rem;
}

.social, .social:hover 
{ 
	color: #C19A23;
}

#search > div > * 
{
    vertical-align:middle;
}

/* ----- FOOTER ----- */
footer
{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100px;
	font-size: 1rem;
	padding-top: 15px;
	color: white;
	background: #043D10;
}

@media (min-width: 768px) 
{ 
	footer .centre-col
	{
		text-align: center;
	}

	footer .right-col
	{
		text-align: right;
	}
}

footer .left-col
{
	padding-bottom: 0px !important;
}

footer img
{
	max-height: 70px;
	margin: 0 5px;
}

footer span
{
	display: block;
}

footer a
{
	color: white;
	display: block;
}

footer a:hover
{
	color: white;
	text-decoration: underline;
}

/* ----- HOME ----- */
#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:#043D10;
	font-weight: bold;
	font-size: 1.1rem;
}

#reviews blockquote i
{
	color:#C19A23;
	display: inline-block;
}

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

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

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

.icon i
{
	color: #C19A23;
	font-size: 2rem;
	margin-right: 20px;
}

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

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

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

.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: #043D10;
	color: white;
	text-align: center;
	padding: 10px 50px;
	font-size: 1.4rem;
}

.tile a:hover span
{
	background: white;
	color: #043D10;
}

#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: #043D10;
	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 #043D10;
	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: #043D10;
	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: #C19A23;
}

/***** 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 #043D10;
	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: #043D10;
	font-weight: bold;
}

#form input, #form select
{
	color: black;
	border: 1px solid #043D10;
	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: #C19A23;
	color: black;
	padding: 10px;
}

#form select.alt
{
	color: black;
	border: 2px solid #C19A23;
	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: #C19A23;
    text-decoration: none;
}

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

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