@charset "utf-8";
/* CSS Document */


/* general styles for the modal */
button {
	font-family: 'Oswald', sans-serif;
	font-size: 15px;
	font-weight: 300;
	font-style: normal;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.5;
	letter-spacing: 1px;
	border: none;
	background: #a5281b;
	cursor: pointer;
	display: inline-block;
	margin: 3px 2px;
	padding: 5px 10px;
}

button:hover {
	background: #c0392b;
}

/* 
styles for the html/body for special modal where we want 3d effects. note that we need a container wrapping all content on the page for the perspective effects (not including the modals and the overlay).
*/

.md-perspective,
.md-perspective body {
	height: 100%;
	overflow: hidden;
}

.md-perspective body  {
	background: none;
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
	perspective: 600px;
}

.md-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 50%;
	max-width: 630px;
	min-width: 320px;
	height: auto;
	z-index: 2000;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.md-show {
	visibility: visible;
}

.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: rgba(0,0,0,0.8);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show ~ .md-overlay {
	opacity: 1;
	visibility: visible;
}


/* content styles */
.md-content {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.5;
	font-style: normal;
	font-weight: normal;
	text-align: center;
	color: #000;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	background: #fff;
	position: relative;
	margin: 0 auto;
}

.md-content a {
	color: #ff0000;
	font-weight: bold;
	text-decoration: none;
	outline: none;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
}

.md-content a:hover {
	color: #000;
	text-decoration: none;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
}

.md-content h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 50px;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	color: #000;
	text-shadow: none;
	margin: 0;
	padding: 30px 0 20px 0;
	line-height: 1;
	letter-spacing: normal;
}

.md-content > div {
	padding: 20px 30px 30px 30px;
	margin: 0;
}

.md-content > div p {
	margin: 0;
	padding: 10px 0;
}

.md-content > div ul {
	margin: 0;
	padding: 0 0 30px 20px;
}

.md-content > div ul li {
	padding: 5px 0;
}

.md-content button {
	display: block;
	margin: 40px auto 0 auto;
	font-size: 15;
	line-height: 1.5;
	letter-spacing: 1px;
}


/* individual modal styles with animations/transitions */

/* effect 1: fade in and scale up */
.md-effect-1 .md-content {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-1 .md-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}


/* extras */
.contact-left {
width: 50%; height: auto; float: left;
}

.contact-left strong {
font-family: 'Oswald', sans-serif;
font-size: 18px;
font-weight: 400;
font-style: normal;
text-transform: uppercase;
text-align: center;
color: #000;
}

.contact-right {
width: 50%; height: auto; float: right;
}

.contact-right strong {
font-family: 'Oswald', sans-serif;
font-size: 18px;
font-weight: 400;
font-style: normal;
text-transform: uppercase;
text-align: center;
color: #000;
}

.divider {
width: 100%; height: 15px; overflow: hidden;
}