/* Fonts */
@font-face {
    font-family: "Roboto";
    src: url("../fonts/RobotoLight/RobotoLight.eot");
    src: url("../fonts/RobotoLight/RobotoLight.eot?#iefix") format("embedded-opentype"),
         url("../fonts/RobotoLight/RobotoLight.woff") format("woff"),
         url("../fonts/RobotoLight/RobotoLight.ttf") format("truetype");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/RobotoBold/RobotoBold.eot");
    src: url("../fonts/RobotoBold/RobotoBold.eot?#iefix") format("embedded-opentype"),
         url("../fonts/RobotoBold/RobotoBold.woff") format("woff"),
         url("../fonts/RobotoBold/RobotoBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Brutal Type";
    src: url("../fonts/BrutalTypeLight/BrutalTypeLight.eot");
    src: url("../fonts/BrutalTypeLight/BrutalTypeLight.eot?#iefix") format("embedded-opentype"),
         url("../fonts/BrutalTypeLight/BrutalTypeLight.woff") format("woff"),
         url("../fonts/BrutalTypeLight/BrutalTypeLight.ttf") format("truetype");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "Brutal Type";
    src: url("../fonts/BrutalTypeMedium/BrutalTypeMedium.eot");
    src: url("../fonts/BrutalTypeMedium/BrutalTypeMedium.eot?#iefix") format("embedded-opentype"),
         url("../fonts/BrutalTypeMedium/BrutalTypeMedium.woff") format("woff"),
         url("../fonts/BrutalTypeMedium/BrutalTypeMedium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Brutal Type";
    src: url("../fonts/BrutalTypeBold/BrutalTypeBold.eot");
    src: url("../fonts/BrutalTypeBold/BrutalTypeBold.eot?#iefix") format("embedded-opentype"),
         url("../fonts/BrutalTypeBold/BrutalTypeBold.woff") format("woff"),
         url("../fonts/BrutalTypeBold/BrutalTypeBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "AA Haymaker";
    src: url("../fonts/AAHaymakerRegular/AAHaymakerRegular.eot");
    src: url("../fonts/AAHaymakerRegular/AAHaymakerRegular.eot?#iefix") format("embedded-opentype"),
         url("../fonts/AAHaymakerRegular/AAHaymakerRegular.woff") format("woff"),
         url("../fonts/AAHaymakerRegular/AAHaymakerRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
}

/* Base Styles */
html,
body {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;	
	min-width: 1200px;
	min-height: 100%;	
	font-family: "Roboto", sans-serif;
	font-size: 19px;
	font-weight: 300;
	background-color: #f0f0f0;
	color: #232323;
	letter-spacing: .025em;
	overflow-x: hidden;		
}

input,
select,
textarea,
button {
	font-family: "Roboto", sans-serif;
	font-size: 19px;
	font-weight: 400;
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	line-height: 1;
	margin: 0;
	padding: 0;
	transition: .2s;		
}

textarea {
	resize: none;
}

img,
iframe {
	display: block;
	width: 100%;
}

a {
	color: #232323;
	outline: none;
	text-decoration: none;
	transition: .2s;
}

h1, h2, h3,
h4, h5, h6 {
	font-weight: 700;
}

h1, .f1 {
	font-size: 40px;
	line-height: 48px;
}

h2, .f2 {
	font-size: 36px;
	line-height: 44px;
}	

h3, .f3 {
	font-size: 32px;
	line-height: 40px;
}

h4, .f4 {
	font-size: 28px;
	line-height: 36px;
}

h5, .f5 {
	font-size: 24px;
	line-height: 32px;
}

h6, .f6 {
	font-size: 20px;
	line-height: 28px;
}

p {
	line-height: 24px;
}

strong {
	
}

/* Component Styles */
.button-wrapper {
	display: inline-block;
	position: relative;
	background: linear-gradient(to bottom, #fef15f, #fed85b 50%, #f5bc1b 50%, #b27b27);
	border-bottom: 8px solid #6f4a00;
	border-radius: 6px;
	box-shadow: 0 3px 8px rgba(0,0,0,.75);
	padding: 10px 15px 15px;
}

.button {
	display: inline-block;
	position: relative;
	font-family: "Brutal Type", sans-serif;
	font-size: 32px;
	font-weight: 700;
	background: linear-gradient(to bottom, #0bf60c, #03de04 50%, #01ba02 50%, #02c404 75%, #0aef0c);
	color: #fff;
	border-bottom: 6px solid #0dac04;
	border-radius: 6px;
	box-shadow: 0 3px 8px rgba(0,0,0,.75);
	letter-spacing: .04em;
	text-align: center;
	text-shadow: 0 1px 5px rgba(0,0,0,.25);
	text-transform: uppercase;
	overflow: hidden;
	padding: 24px 45px;
	z-index: 1;
}

.button:before,
.button:after {
	display: block;
	position: absolute;
	content: "";
	transition: .2s;
	z-index: -1;
}

.button:before {
	width: 100%;
	height: 100%;
	opacity: 0;
	top: 0;
	left: 0;
}

.button:after {
	width: 200px;
	height: 200%;
	background: linear-gradient(90deg, transparent, #fff, transparent);
	opacity: .75;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(20deg);
	transform-origin: center center;
	animation: button-shine 2s infinite ease-in-out;
}

@keyframes button-shine {
	0% {
		left: -250px;
	}
	50%, 100% {
		left: 105%
	}
}

.button:hover:before,
.button:focus:before,
.button:active:before {
	opacity: 1;
}

.button:hover:before,
.button:focus:before {
	background-color: rgba(255,255,255,.15);
}

.button:active:before {
	background-color: rgba(0,0,0,.15);
}

.button span {
	display: block;
	font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
	margin-top: 10px;
}

.button.button-lg {
	font-size: 38px;
	padding: 28px 55px;
}

/* Template Styles */
.download-helper {
	display: none;
	position: fixed;
	width: 100%;
	min-width: 1200px;
	height: 100%;
	background-color: rgba(0,0,0,.9);
	color: #fff;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 3;	
}

.download-helper .container {
	height: 100%;
}

.download-helper-wrapper {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.download-helper-block {
	position: relative;
	z-index: 1;
}

.download-helper-block.download-helper-block-arrow-tl:after,
.download-helper-block.download-helper-block-arrow-tr:after,
.download-helper-block.download-helper-block-arrow-bl:after,
.download-helper-block.download-helper-block-arrow-b:after,
.download-helper-block.download-helper-block-arrow-br:after {
	position: absolute;
	width: 240px;
	height: 240px;
	content: "";
	z-index: -1;
}

.download-helper-block.download-helper-block-arrow-tl:after {
	background: url(../img/arrow_top_left.png) center center no-repeat;
	top: -220px;
	left: -260px;
}

.download-helper-block.download-helper-block-arrow-tr:after {
	background: url(../img/arrow_top_right.png) center center no-repeat;
	top: -220px;
	right: -260px;
}

.download-helper-block.download-helper-block-arrow-bl:after {
	background: url(../img/arrow_bottom_left.png) center center no-repeat;
	bottom: -220px;
	left: -240px;
}

.download-helper-block.download-helper-block-arrow-b:after {
	background: url(../img/arrow_bottom.png) center center no-repeat;
	bottom: -260px;
	left: 50%;
	transform: translateX(-50%);
}

.download-helper-block.download-helper-block-arrow-br:after {
	background: url(../img/arrow_bottom_right.png) center center no-repeat;
	bottom: -220px;
	right: -240px;
}

.download-helper-subtitle {
	font-weight: 400;
	color: #777;
	margin-top: 15px;
}

.header {
	position: relative;
	height: 220px;
	min-height: 220px;
	text-align: center;
	margin-bottom: -220px;
	z-index: 1;
}

.header .container,
.header .row {
	height: 100%;
}

.header-logo {
	max-width: 800px;
	margin: 0 auto;
}

.content {
	flex-grow: 1;
}

.section {
	padding: 70px 0;
}

.section:first-child {
	padding-top: 220px;
}

.section-block {
	position: relative;
	z-index: 1;
}

.section-block.section-block-dark {
	background-color: rgba(0,0,0,.75);
	color: #fff;
	border: 1px solid #6abc2a;
	padding: 60px 45px;
}

.section-block.section-block-dark:before {
	position: absolute;
	width: 100%;
	height: 100%;
	content: "";
	border-right: 6px solid #609732;
	border-bottom: 6px solid #609732;
	top: 6px;
	left: 6px;
	z-index: -1;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-block .section-header {
	text-align: left;
	margin-bottom: 30px;
}

.section-title {
	text-transform: uppercase;
}

.section-text p:not(:last-child) {
	margin-bottom: 20px;
}

.section-button {
	margin-top: 45px;
}

.main {
	font-family: "Brutal Type", sans-serif;
	font-size: 20px;
	background: url(../img/main_bg.jpg) center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	letter-spacing: normal;
	text-align: center;
	padding-bottom: 45px;
}

.main-block-title {
	text-transform: uppercase;
	margin-bottom: 15px;
}

.main-block-title span {
	display: block;
	font-weight: 300;
}

.main-download-count {
	display: block;
	color: #44b635;
}

.main-download-button {
	margin-top: 45px;
}

.main-info {
	color: #fff;
	margin-top: 180px;
}

.main-info-text {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
}

.main-info-text p {
	line-height: 16px;
}

.main-info-text p:not(:last-child) {
	margin-bottom: 15px;
}

.about {
	background: url(../img/about_bg.png) center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;	
	padding: 130px 0 170px;
}

.friends {
	background: url(../img/friends_bg.jpg) center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 100px 0;
}

.reviews {
	background: url(../img/reviews_bg.png) center center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;		
}

.reviews-item {
	position: relative;
	height: 100%;
	background-color: #fff;
	border-bottom: 6px solid #e5e5e5;
	box-shadow: inset 0 0 46px rgba(0,0,0,.08),
				0 0 46px rgba(0,0,0,.16);
	padding: 70px 30px;
}

.reviews-item:before,
.reviews-item:after {
	position: absolute;
	font-family: "AA Haymaker", fantasy;
	font-size: 300px;
	content: "“";
	line-height: 240px;
	left: 15px;
}

.reviews-item:before {
	color: #3c7110;
	top: -15px;
}

.reviews-item:after {
	color: #3cb436;
	text-shadow: 0 0 1px #7ed552;
	top: -20px;
}

.reviews-item-meta {
	margin-top: 30px;
}

.footer {
	text-align: center;
	padding: 60px 0;
}

.footer-text {
	font-size: 18px;
}

.footer-text p:not(:last-child) {
	margin-bottom: 15px;
}

.footer-text a {
	font-weight: 700;
}

.footer-text a:hover,
.footer-text a:focus,
.footer-text a:active {
	text-decoration: underline;
}