@viewport{
	zoom: 1.0;
	width: extend-to-zoom;
}

@-ms-viewport{
	width: extend-to-zoom;
	zoom: 1.0;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1 {
	font-size: 120px;
	font-family: 'Cabin', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
}

h1 i {
	font-size: 100px;
	font-family: 'PT Sans', sans-serif;
}

h2 {
	font-size: 48px;
	font-family: 'Gudea', sans-serif;
	font-weight: 600;
}

h3 {
	color: #57575b;
	font-size: 18px;
	font-family: 'Gudea', sans-serif;
	font-weight: 600;
}

h3 span {
	color: #63ac21;
}

.btn-primary {
	cursor: pointer;
	background-color: rgba(175,7,36,1);
	border: none;
	border-radius: 0;
	-webkit-border-radius: 0;
}

.btn-primary:hover,
.btn-primary.active {
	background-color: rgba(175,7,36,.8);
}

.btn-primary:focus {
	box-shadow: 0 0 0 3px rgba(175,7,36,.5);
}

.btn-secondary {
	background-color: rgba(34,118,217,1);
	border: none;
	border-radius: 0;
	-webkit-border-radius: 0;
}

.btn-secondary:hover,
.btn-secondary.active {
	background-color: rgba(34,118,217,.8);
}

.btn-secondary:focus {
	box-shadow: 0 0 0 3px rgba(34,118,217,.5);
}

header {
	background-image: url(../images/splash_banner.jpg);
	background-color: transparent;
	background-position: top center;
	background-repeat: no-repeat;
}

header .row {
	height: 1000px;
}

header h1 {
	color: #fefefe;
}

header p {
	font-size: 32px;
	color: #ffffff;
}

footer {
	background-image: url(../images/splash_bottom_banner.jpg);
	background-color: transparent;
	background-position: top center;
	background-repeat: no-repeat;
}

footer .row {
	height: 700px;
}

footer h2 {
	color: #fefefe;
}

footer p {
	font-size: 24px;
	color: #ffffff;
}

.section-gray {
	background-color: #f4f4f4;
}

.offset-top-40 {
	padding-top: 40px;
}

.offset-bottom-40 {
	padding-bottom: 40px;
}

.offset-top-80 {
	padding-top: 80px;
}

.offset-bottom-80 {
	padding-bottom: 80px;
}

#demoContainer h3 {
	padding: 10px;
	background-color: #2e2e30;
	color: #fff;
}

.col-md-6 img,
.col-md-4 img,
.col-md-3 img {
	width: auto;
	max-width: 100%;
	display: inline-block;
}

.button_base {
	position: relative;
	text-align: center;
	box-shadow: 0 0 15px rgba(0,0,0,.2);
	transition: opacity 0.5s ease-in-out;
	-webkit-transition: opacity 0.5s ease-in-out;
}

.button_base img {
	transition: filter 0.5s linear, opacity 0.5s ease-in-out 0.3s;
	-webkit-transition: -webkit-filter 0.5s linear, opacity 0.5s ease-in-out 0.3s;
}

.button_base .btn {
	color: #fff;
	background-color: rgba(175,7,36,1);
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	border-color: transparent;
	border-radius: 0;
	-webkit-border-radius: 0;

	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.button_base .btn:hover {
	background-color: #fff;
	color: rgba(175,7,36,1);
}

.button_base .front {
	width: 170px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;

	-webkit-transform: translateX(-50%) translateY(-50%) rotateY( 0deg );
	-ms-transform: translateX(-50%) translateY(-50%) rotateY( 0deg );
	transform: translateX(-50%) translateY(-50%) rotateY( 0deg );

	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: -webkit-transform .5s linear 0s, opacity .5s ease-in-out 0s;
	transition: transform .5s linear 0s, opacity .5s ease-in-out 0s;
	opacity: 0;
}

.button_base .back {
	width: 170px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;

	-webkit-transform: translateX(-50%) translateY(-50%) rotateY( 180deg );
	-ms-transform: translateX(-50%) translateY(-50%) rotateY( 180deg );
	transform: translateX(-50%) translateY(-50%) rotateY( 180deg );

	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: -webkit-transform .5s linear 0s, opacity .5s ease-in-out 0s;
	transition: transform .5s linear 0s, opacity .5s ease-in-out 0s;
	opacity: 0;
}

.button_base:hover img {
	opacity: 0.5;
	-webkit-filter: blur(3px);
	filter: blur(3px);
}

.button_base:hover .front {
	-webkit-transform: translateX(-50%) translateY(-50%) rotateY( -180deg );
	transform: translateX(-50%) translateY(-50%) rotateY( -180deg );
	opacity: 1;
}

.button_base:hover .back {
	-webkit-transform: translateX(-50%) translateY(-50%) rotateY( 0deg );
	transform: translateX(-50%) translateY(-50%) rotateY( 0deg );
	opacity: 1;
}

.feature-box {
	margin: 20px 0;
	padding: 10px;
	background-color: #f4f4f4;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-flow: row nowrap;
	-moz-flex-flow: row nowrap;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
}

.feature-pic {
	padding-right: 20px;
}

.feature-content {
	margin: auto 0;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {

	h1 { font-size: 7vw; }
	h1 i { font-size: 6vw; }
	h2 { font-size: 5vw; }

	header .row,
	footer .row {
		height: 400px;
	}

	header p,
	footer p {
		font-size: 20px;
	}

}

@media only screen and (max-width: 767px) {

	h1 { font-size: 7vw; }
	h1 i { font-size: 6vw; }
	h2 { font-size: 5vw; }

	header .row,
	footer .row {
		height: 400px;
	}

	header p,
	footer p {
		font-size: 16px;
	}

	.button_base {
		margin-top: 80px;
	}

	.row [class^="col-md-"]:first-child > .button_base {
		margin-top: 0;
	}

}