/* ==========================================================================*/
/* Fonts
/* ==========================================================================*/

@font-face {
	font-family: ArmyStamp;
	src: url('../fonts/ArmyStamp.ttf');
}

@font-face {
	font-family: Catenary;
	src: url('../fonts/Catenary-Stamp.ttf');
}

@font-face {
	font-family: stampact;
	src: url('../fonts/STAMPACT.TTF');
}

@font-face {
	font-family: stamaj__;
	src: url('../fonts/STAMAJ__.TTF');
}

@font-face {
	font-family: Stampede;
	src: url('../fonts/Stampede.ttf');
}

/* ==========================================================================*/
/* Body and Container
/* ==========================================================================*/

body {
	background: #525659;
}

.header-row {
	background: #fff;
}

.menu-row {
	background: #fff;
}

.content-row {

	background: #fff;
	padding-bottom: 20px;

	.content-grid {

		padding: 20px;

		img {
			margin-bottom: 20px;
		}

	}

}

.footer-row {

	background: #EC008C;

	.footer-grid {
		padding: 20px;
		color: #fff;
	}

}

/* ==========================================================================*/
/* Menu
/* ==========================================================================*/

.menu-grid {

	.navbar-default {

		background: #4D4D4F;
		color: #fff;

		ul.navbar-nav li {
			background: #4D4D4F;
		}

		ul.navbar-nav li.active a {
			background: #EC008C;
		}

		ul.navbar-nav li:hover a, ul.navbar-nav li.active:hover a {
			background: #EC008C;
			text-decoration: none;
		}

	}

}

/* ==========================================================================*/
/* Footer
/* ==========================================================================*/


/* ==========================================================================*/
/* Slideshow
/* ==========================================================================*/

.slideshow-grid {

	margin-top: 20px;
	margin-bottom: 20px;

	.slideshow {

		color: #fff;

		.overlay {
			padding: 10px;
			width: 100%;
			height: 80px;
			position: absolute;
			bottom: 60px;
			background: rgba(0, 0, 0, 0.6);
			color: #fff;
			font-size: 20px;
			text-align: center;
			z-index: 999;
		}

		.carousel-control {
			width: 60px;
			display: none;
		}

		.carousel-indicators li {
			background-color: #000;
		}

		.carousel-indicators li.active {
			background-color: #fff;
		}

	}

}

/* ==========================================================================*/
/* CTA
/* ==========================================================================*/

.cta {

	font-size: 24px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 20px;

	.prompt {
		color: #4D4D4F;
		font-size: 24px;
	}

	.phone {
		color: #EC008C;
		font-size: 32px;
		line-height: 32px;
	}

	.email {
		color: #EC008C;
		font-size: 18px;
		line-height: 18px;
	}

	.website {
		color: #EC008C;
	}


}

/* ==========================================================================*/
/* General Base Styles
/* ==========================================================================*/

body {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0px;
	margin-bottom: 20px;
}

h1 {
	font-size: 48px;
	color: #EC008C;
}

h2 {
	font-size: 36px;
	color: #EC008C;
}

h3 {
	font-size: 28px;
	color: #EC008C;
}

h4 {
	font-size: 28px;
	color: #EC008C;
	margin-bottom: 10px;
	text-decoration: underline;
}

h5 {
	font-size: 24px;
	color: #333333;
	text-decoration: underline
}

h6 {
	font-size: 16px;
	color: #333333;
	text-decoration: underline
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
	text-decoration: underline;
}

hr {
	border-top: 1px solid #ddd;
	margin-top: 20px;
	margin-bottom: 20px;
}

.big {
	font-size: 18px;
}

.italic {
	font-style: italic;
}

p {
	font-size: 18px;
}

blockquote {
	display: inline-block;
	vertical-align: middle;
	border-left: 2px solid #ccc;
	margin: 0px;
	padding: 20px;
	quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
	color: #ccc;
	content: open-quote;
	font-size: 3em;
	line-height: 0.2em;
	margin-right: 10px;
	vertical-align: -0.4em;
}
blockquote:after {
	color: #ccc;
	content: close-quote;
	font-size: 3em;
	line-height: 0.1em;
	margin-left: 10px;
	vertical-align: -0.4em;
}

figcaption {
	color: #EC008C;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.clear {
	display: block;
	clear: both;
}

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	text-align: center;
}

.company {
	font-size: inherit;
	font-weight: bold;
}

.credits {
	font-size: 12px;
}

/* ==========================================================================*/
/* Class to fix wrapping of long lines such as emails and URLs
/* ==========================================================================*/

.wrap {

  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;

  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;

  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;

}

