/*Font styles used for the site*/
body {  
	font-family: "Open Sans", sans-serif;
	font-size:16px;
	line-height:1.8;
	line-height:1.5;
	color:var(--body_colour,#000);
	font-weight: 400;
}
img {
	max-width:100%;
	height:auto;
}
a {
	color:var(--link_colour);
	text-decoration:underline;
}
a:hover {
	color:var(--link_colour_hover);
	text-decoration:none;
}
a:focus {
	text-decoration:none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
	color:var(--title_colour,#000);
	font-family: "proxima-nova",sans-serif;
}
h1,.h1 {
	font-size: 36px;
	line-height: 1.4;
	margin-bottom: 30px;
	text-transform: uppercase;
}

h1:after,.h1:after {
	width: 67px;
	height: 9px;
	content: '';
	display: block;
	margin: 10px 0 0;
	background: url('../images/title-bg.png') left top no-repeat;
}




h2,.h2 {
	font-size: 30px;
	line-height: 1.3334;
	margin-bottom: 30px;
	text-transform: uppercase;
}

h2:after,.h2:after {
	width: 67px;
	height: 9px;
	content: '';
	display: block;
	margin: 10px 0 0;
	background: url('../images/title-bg.png') left top no-repeat;
}


h3,.h3 {
	font-size: 22px;
	line-height: 1.25;
	margin-bottom: 30px;
	text-transform: uppercase;
}

h3:after,.h3:after {
	width: 67px;
	height: 9px;
	content: '';
	display: block;
	margin: 10px 0 0;
	background: url('../images/title-bg.png') left top no-repeat;
}



h4,.h4{
	
}
h5,.h5{
	
}
h6,.h6{
	
}
p {
	margin-bottom: 30px;	
}
table {
	width:100%;
	margin-bottom:1em;
}
@media (min-width:992px){
	body {  
		font-size:20px;	
	}
	h1,.h1 {
		font-size: 42px; 
	}
	h2,.h2 {
		font-size: 36px;
	}
	h3,.h3 {
		font-size: 24px;
	}
}
/*Button*/
.blockButton > a,
.button {
	display: inline-block;
    color: var(--button_colour,#fff);
    border: solid 1px var(--button_bg,#000);
    background: var(--button_bg,#000);
	text-decoration:none;
    line-height: 1.2;
    padding: 22px 20px;
    position: relative;
    transition: 300ms;
	border-radius: 59px;
	min-width: 174px;
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2.8px;
}
.blockButton> a:hover,
.button:hover {
	background:var(--button_bg_hover,#000);
	color:var(--button_colour_hover,#fff);
	border-color:var(--button_bg_hover,#000);
}
button:focus {
	outline:0;
}


.alternate-btn,
.altButton > a {
	font-size: 14px;
	line-height: 1.25;
	text-transform: uppercase;
	text-decoration:none;
	display: inline-block;
	font-weight: 400;
	letter-spacing: 2.8px;
	color: var(--alt_btn_colour);
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	padding-right:97px;
	position:relative;
}

.alternate-btn:after,
.altButton > a:after {
	content: '';
	position: absolute;
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 13px;
	
	background-color: currentColor;
	mask-image:url('../images/btn-arrow.png');
	mask-position:right;
	mask-repeat:no-repeat;
	mask-size: 100% 100%;
	top:50%;
	right:40px;
	transition: 300ms;
	margin-top: -7px;

}

.alternate-btn:hover,
.altButton > a:hover {
	color: var(--alt_btn_colour);
}

.alternate-btn:hover:after,
.altButton > a:hover:after {
	right:0px;
}

blockquote {
	font-style:normal;
	font-size: 36px;
	font-weight: 700;
	padding:2.2em 1.1em;
	text-align:left;
	font-family: "Open Sans", sans-serif;
	line-height: 1.25;
	position: relative;
}
blockquote:before {
	content: '\201C';
	font-size: 65px;
	line-height: 0.75;
	width: 30px;
	height: 30px;
	position: absolute;
	left: -65px;
    top: -40px;
	display: block;
	color: currentColor;
	font-family: "proxima-nova",sans-serif;
}

blockquote:after {
	content: '\201D';
	font-size: 65px;
	line-height: 0.75;
	width: 30px;
	height: 30px;
	position: absolute;
	right: -20px;
    bottom: 30px;
	display: block;
	color: currentColor;
	font-family: "proxima-nova",sans-serif;
	
}



blockquote cite{
	font-weight:700;
}
tbody, td, tbody, th {
	padding:0.3125rem 0.625rem;
}
tbody, td, tfoot, th, thead, tr {
	border-width:1px;
}

.gallery  {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
	text-align:center;
}
.gallery  .gallery-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
	padding:7.5px;
	margin-bottom:0;
}
.gallery.gallery-columns-2 .gallery-item {
	-ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
	-ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.gallery.gallery-columns-4 .gallery-item {
	-ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.gallery.gallery-columns-5 .gallery-item {
	-ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}
@media (max-width:767.99px){
	.alignright,
	.alignleft,
	a img.alignright,
	a img.alignleft{
		float:none;
		margin:5px auto 20px;
		display:block;
	}
}