/*------------------------------------*\
	COLOURS
\*------------------------------------*

	Red				#d1232a
	Font			#000000
	Form			#565656
	Bar				#f6f6f6
	
*/

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@import url('../fonts/fontawesome/fontawesome.css');
@import url('../fonts/brandon/brandon.css');

@font-face {
  font-family: 'CoreCircusRough';
  src: url('../fonts/CoreCircusRough.eot?#iefix') format('embedded-opentype'),  url('../fonts/CoreCircusRough.otf')  format('opentype'),
	     url('../fonts/CoreCircusRough.woff') format('woff'), url('../fonts/CoreCircusRough.ttf')  format('truetype'), url('../fonts/CoreCircusRough.svg#CoreCircusRough') format('svg');
  font-weight: normal;
  font-style: normal;
}

/*------------------------------------*\
    STYLES
\*------------------------------------*/

.wow {
	visibility: hidden;
}

span.heading {
	float:left;
	width:100%;
	text-align:center;
	margin-top:35px;
	margin-bottom:50px;
	font-family: 'CoreCircusRough';
	text-transform:uppercase;
	font-size:40px;
	line-height:1.2;
	font-weight:bold;
	color:#231F20;
}

html,
button,
input,
select,
textarea {
	font-size: 16px;
	font-family: 'brandon_light', Arial, sans-serif;
	color: #000;
	font-weight: normal;
}

body {
	line-height: 1;
	margin: 0;
}

a {
	color: #d1232a;
	font-family: 'brandon_bold';
	font-weight: normal;
	text-decoration: none;
	
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;	
}
a:hover {
	color: #d1232a;
	text-decoration: underline;
}
a:focus,
a:hover,
a:active {
	outline: 0;
}

p {
	line-height: 1.15;
	padding: 0 0 20px;
}

p strong {
	font-weight: normal;
	font-family: 'brandon_bold';
}

p small {
	font-size: 14px;
}

h1,
h2 {
	font-family: 'brandon_regular';
	font-weight: normal;
	line-height: 1.2;
	padding: 0 0 20px;
	color: #000;
	margin: 0;
}

h1 a,
h2 a {
	font-family: 'brandon_regular';
	text-decoration: none;
	color: #000;
}

h1 {
	font-size: 25px;
	text-transform: uppercase;
}

h2 {
	font-size: 16px;
	/*text-decoration: underline;*/
	padding: 0;
	padding-bottom: 3px;
}

h5 {
	line-height: 1.7 !important;
	font-size: 15px !important;
	margin-bottom: 20px !important;
}

img {
	max-width: 100%:
}

body > div.page main ul {
	list-style: none;
	padding: 0 0 20px;
	margin: 0;
	position: relative;
}

/*
body > div.page main ul li {
    padding-left: 30px; 
    line-height: 1.4;
	position: relative;
	
	&:before {
	    content: '•';
	    position: absolute;
	    left: 2px;
	    top: -14px;
	    color: #444;
		font-size: 32px;
	}
}
*/

body > div.page main blockquote { 
    display: block; 
    position: relative;
    margin: 0;
    background: #d1232a; 
    margin-bottom: 20px;
    padding: 10px 10px; 
    color: #fff;
}

body > div.page main hr {
	width: 90%;
	height: 3px;
	background-color: #d1232a;
	margin: 0 0 20px;
}

/*------------------------------------*\
    FORMS
\*------------------------------------*/

input,
select,
textarea {
	outline: 0;
	border: none;
	border-radius: 0;
	padding: 0 5px;
	height: 26px;
	line-height: 26px;
	font-size: 16px;
	color: #565656;
	
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;		
	-webkit-appearance: none;
}
input:focus,
select:focus,
textarea:focus {
	outline: 0;
	border: none;
}
textarea {
	height: 90px;
}
input[type="button"],
input[type="submit"],
.button {
	display: inline-block;
	outline:0;
	border: none;
	border-radius: 0;
	padding: 0 5px;
	height: 26px;
	line-height: 26px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	background-color: #000;
	letter-spacing: 1px;
	font-family: 'brandon_medium';
	
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;	
}
input[type="button"]:hover,
input[type="submit"]:hover,
.button:hover {
	background-color: #fff;
	color: #d1232a;
	border: none;
}

.gform_wrapper {
	display: inline-block;
}
.ginput_container,
.gform_body,
.gform_body label,
.gform_footer {
	float: left;
}
.gform_anchor {
	display: none;
}
.validation_error,
.validation_message,
.gform_footer img {
	display: none;
}
.gfield_error input {
	color: #d1232a;
}
.gform_confirmation_message {
	color: #fff;
	font-size: 18px;
}
@-moz-document url-prefix() { 
	.gform_footer {
		margin-top: -1px;
	}
}
/*------------------------------------*\
    BASE
\*------------------------------------*/

html,
body {
	width: 100%;
	height: 100%;
	font-size: 100%;
}

body {
	background-color: #fff;
	background-image: url('../img/bg.jpg');
	overflow-x: hidden;
}

body > div.page {
	position: relative;
	width: 100%;
	height: 100%;
}

body > div.page .container {
	position: relative;
	min-width:320px;
	max-width:980px;
	margin:0 auto;
	padding: 0 85px;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

body > div.page header {	
	position: relative;
	text-align: center;
}
body > div.page header section.top {
	position: relative;
	width: 100%;
	background-color: #d1232a;
	text-align: center;
	height: 80px;
	line-height: 80px;
}

body > div.page header section.top label {
	color: #fff;
	margin-right: 25px;
}

body > div.page header section.top input[type=text] {
	width: 250px;
}

body > div.page header div.logo {	
	margin: 80px 0;
	display: block;
	width: 100%;
}
body > div.page header div.logo a {	
	display: inline-block;
	width: 100%;
}
body > div.page header div.logo img {	
	width: 100%;
	max-width: 416px;
}

body > div.page header div.social {	
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
}
body > div.page header div.social a.icon {	
	width: 32px;
	height: 32px;
	line-height: 32px;
	color: #fff;
	background-color: #d1232a;
	display: block;
	float: right;
	margin-bottom: 10px;
	font-size: 20px;
}
body > div.page header div.social a.icon:hover {	
	background-color: #000;
}
body > div.page header div.social a.icon i {	
	line-height: 32px;
	font-size: 20px;
}

body > div.page div.main {
	position: relative;
	overflow-x: hidden;
	width: 100%;
}

body > div.page footer {
	position: relative;
	width: 100%;
}

body > div.page footer section.logos {
	position: relative;
	width: 100%;
	background-color: #f7f7f7;
	text-align: center;
	height: 115px;
	line-height: 115px;
	overflow: hidden;
}
body > div.page footer section.logos p {
	text-align: center;
	color: #000;
	padding: 0;
	padding-top: 28px;
}
body > div.page footer section.logos p a {
	width: 150px;
	display: inline-block;
	margin-right: 60px;
	margin-bottom: 20px;
}
body > div.page footer section.logos p a img {
	width: 150px;
	max-width: 150px;
	vertical-align: baseline;
}
body > div.page footer section.logos p a:last-child {
	margin-right: 0;
	width: 115px;
}
body > div.page footer section.logos p a:last-child img {
	width: 115px;
	max-width: 115px;
}

body > div.page footer section.links {
	position: relative;
	width: 100%;
	background-color: #000;
	text-align: right;
	height: 85px;
	line-height: 85px;
	overflow: hidden;
}
body > div.page footer section.links p {
	text-align: right;
	height: 80px;
	line-height: 80px;
	color: #fff;
	padding: 0;
	padding-top: 5px;
}
body > div.page footer section.links p a:not(:last-child) {
	margin-right: 15px;
}

body > div.page footer section.links p a img {	
	width: 32px;
	vertical-align: middle;
	margin-bottom: 8px;
}

body > div.page footer section.links p a{	
	width: 42px;
	display: inline-block;
	text-align: center;
}
body > div.page footer section.links p a:first-child{	
	position: absolute;
	left: 85px;
}

body > div.page footer section.links p a.icon {	
	height: 42px;
	line-height: 42px;
	color: #000;
	background-color: #fff;
	border-radius: 50%;
}
body > div.page footer section.links p a.icon:hover {	
	background-color: #d1232a;
}
body > div.page footer section.links p a.icon i {	
	line-height: 42px;
	font-size: 28px;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

body > div.page div.main section .featured {
	min-width: 100%;
	max-width: 100%;
}
body > div.page div.main section a.popup-youtube {
	display: block;
	position: relative;
}
body > div.page div.main section a.popup-youtube:after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url('../img/play.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20%;
}
body > div.page div.main section a.popup-youtube:hover:after {
	opacity: 0.8;
	
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;	
}

body > div.page div.main section article  {
	padding: 50px 0;
}

body > div.page div.main section article div.left  {
	float: left;
	width: 50%;
	padding-right: 30px;
}
body > div.page div.main section article div.left img  {
	max-width: 100%;
}
body > div.page div.main section article div.right  {
	float: left;
	width: 50%;
	padding-left: 30px;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:768px) {
	body {
		max-width: 100vw;
		overflow-x: hidden;
	}
}

@media only screen and (max-width:767px) {
	
	body > div.page .container {
	    padding: 0px 20px;
	}
	span.heading {
		font-size:32px;
	}
	body > div.page footer section.links p a:first-child {
	    position: absolute;
	    left: 20px;
	}
	
	body > div.page footer section.logos {
	    height: auto;
	}
	body > div.page footer section.logos p a {
	    width: 100% !important;
	    margin-right: 0 !important;
	}
	body > div.page footer section.logos p img {
	    width: 70% !important;
	    max-width: 300px !important;
	}
	body > div.page footer section.logos p a:last-child {
	    margin-top: 20px !important;
	}
	body > div.page footer section.logos p a:last-child img {
	    width: 50% !important;
	}
	
	body > div.page div.main section article div.left {
	    float: none;
	    width: 100%;
	    padding-right: 0;
	}
	
	body > div.page div.main section article div.right {
	    float: none;
	    width: 100%;
	    padding-left: 0;
	    padding-top: 50px;
	}
	
	body > div.page header div.logo {
	    margin: 50px 0px;
	    display: block;
	}
	
	.gform_wrapper {
		margin-top: 8px;
		position: relative;
	}
	
	.ginput_container, .gform_body label{
	    float: none;
	}
	
	.gform_footer {
		top: 30px;
		position: absolute;
		right: 0px;
	}
	
	body > div.page header section.top label {
	    margin: 0;
	    display: block;
	}
	
	body > div.page header section.top {
	    line-height: 30px;
	}
}

@media only screen and (max-width:520px) {
	body > div.page header div.social {
	    display: none;
	}
}

/*------------------------------------*\
    MOBILE FIXES
\*------------------------------------*/

html.touch .wow {
	-webkit-animation-delay: 0s !important;
	-moz-animation-delay: 0s !important;
	-o-animation-delay: 0s !important;
	-ms-animation-delay: 0s !important;
	animation-delay: 0s !important;         
}

/*------------------------------------*\
    HELPERS
\*------------------------------------*/

.clear {
    clear:both;
}

.v-wrap{
    height: 100%;
    white-space: nowrap;
    text-align: center;
}
.v-wrap:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    margin-right: -.25em;
    height: 100%; 
}
.v-box{
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
}

.no-margin {
	margin: 0 !important;
}

.no-padding {
	padding: 0 !important;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.invisible {
    visibility: hidden;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

html {
  -webkit-tap-highlight-color: transparent; 
}

::selection {
	background: #000;
	color: #FFF;
	text-shadow: none;
}
::-webkit-selection {
	background: #000;
	color: #FFF;
	text-shadow: none;
}
::-moz-selection {
	background: #000;
	color: #FFF;
	text-shadow: none;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	
	a,
	a:visited {
		text-decoration:underline;
	}
	
	a[href]:after {
		content:" (" attr(href) ")";
	}
	
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	
	thead {
		display:table-header-group;
	}
	
	tr,img {
		page-break-inside:avoid;
	}
	
	img {
		max-width:100% !important;
	}
	
	@page {
		margin:0.5cm;
	}
	
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	
	h2,
	h3 {
		page-break-after:avoid;
	}
}
