/*
Table Of Contents
 
1.)   Typography
2.)   Default Styles
3.)   Container - Main
4.)   Header 
5.)   Banner - Main
6.)   Intro - Content
7.)   Bottom - Content
8.)   Footer

9.)   Interior - Page
10.)  News - Page

===============================================*/

/*
1.) Typography
----------------------------------------*/

@import url("/cssnew/fontawesome-all.min.css") all;
@import url("/cssnew/fa-brands.min.css") all;
@import url("/cssnew/fa-light.min.css") all;
@import url("/cssnew/fa-regular.min.css") all;
@import url("/cssnew/fa-solid.min.css") all;

@font-face {
    font-family: 'museo_slab300';
    src: url('/webfonts/museoslab-300-webfont.eot');
    src: url('/webfonts/museoslab-300-webfont.eot?#iefix') format('embedded-opentype'),
         url('/webfonts/museoslab-300-webfont.woff2') format('woff2'),
         url('/webfonts/museoslab-300-webfont.woff') format('woff'),
         url('/webfonts/museoslab-300-webfont.ttf') format('truetype'),
         url('/webfonts/museoslab-300-webfont.svg#museo_slab300') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sharp_sansthin_italic';
    src: url('/webfonts/sharpsans-thinitalic-webfont.eot');
    src: url('/webfonts/sharpsans-thinitalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('/webfonts/sharpsans-thinitalic-webfont.woff2') format('woff2'),
         url('/webfonts/sharpsans-thinitalic-webfont.woff') format('woff'),
         url('/webfonts/sharpsans-thinitalic-webfont.ttf') format('truetype'),
         url('/webfonts/sharpsans-thinitalic-webfont.svg#sharp_sansthin_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sharp_sansmedium';
    src: url('/webfonts/sharpsans-medium-webfont.eot');
    src: url('/webfonts/sharpsans-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('/webfonts/sharpsans-medium-webfont.woff2') format('woff2'),
         url('/webfonts/sharpsans-medium-webfont.woff') format('woff'),
         url('/webfonts/sharpsans-medium-webfont.ttf') format('truetype'),
         url('/webfonts/sharpsans-medium-webfont.svg#sharp_sansmedium') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sharp_sanssemibold';
    src: url('/webfonts/sharpsans-semibold-webfont.eot');
    src: url('/webfonts/sharpsans-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/webfonts/sharpsans-semibold-webfont.woff2') format('woff2'),
         url('/webfonts/sharpsans-semibold-webfont.woff') format('woff'),
         url('/webfonts/sharpsans-semibold-webfont.ttf') format('truetype'),
         url('/webfonts/sharpsans-semibold-webfont.svg#sharp_sanssemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sharp_sansbold';
    src: url('/webfonts/sharpsans-bold-webfont.eot');
    src: url('/webfonts/sharpsans-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/webfonts/sharpsans-bold-webfont.woff2') format('woff2'),
         url('/webfonts/sharpsans-bold-webfont.woff') format('woff'),
         url('/webfonts/sharpsans-bold-webfont.ttf') format('truetype'),
         url('/webfonts/sharpsans-bold-webfont.svg#sharp_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sharp_sansextrabold';
    src: url('/webfonts/sharpsans-extrabold-webfont.eot');
    src: url('/webfonts/sharpsans-extrabold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/webfonts/sharpsans-extrabold-webfont.woff2') format('woff2'),
         url('/webfonts/sharpsans-extrabold-webfont.woff') format('woff'),
         url('/webfonts/sharpsans-extrabold-webfont.ttf') format('truetype'),
         url('/webfonts/sharpsans-extrabold-webfont.svg#sharp_sansextrabold') format('svg');
    font-weight: normal;
    font-style: normal;
}

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


/*
 2.) Default Styles
----------------------------------------*/

* {
	margin: 0;
	padding: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* render html5 elements as block */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

sub, sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
	font-size: 20px;
}

sub {
	bottom: -0.25em;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
	line-height: .5em;
}


/*  Custom animations
/*-------------------------------------------------- */
@-webkit-keyframes 
reveal {
 0% {
 opacity: 0;
}
 1% {
 opacity: 0;
 -webkit-transform: scale(0.98) translateY(-15px);
}
 80% {
 -webkit-transform: scale(1);
}
 100% {
 -webkit-transform: translateY(0);
}
}
 @-moz-keyframes 
reveal {
 0% {
 opacity: 0;
}
 1% {
 opacity: 0;
 -moz-transform: scale(0.98) translateY(-15px);
}
 80% {
 -moz-transform: scale(1);
}
 100% {
 -moz-transform: translateY(0);
}
}


/* #Basic Styles
================================================== */

body {
	font-family: "sharp_sansbold", Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #7e7e7e;
	line-height: 28px;
	background: #ffffff;
}

@media only screen and (max-width: 1023px) {
body {
	font-size: 17px;
	line-height: 27px;
}
}

@media only screen and (max-width: 767px) {
body {
	font-size: 15px;
	line-height: 24px;
}
}

/* #Links
================================================== */

a {
	color: #1a214d;
	outline: 0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	cursor: pointer;
	text-decoration: none;
}

a:hover {
	color: #1a214d;
	text-decoration: underline;
	outline: 0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

a:focus, a:active, a:visited {
	outline: 0;
	text-decoration: none;
}

/* #Typography
================================================== */

h1, h2, h3, h4, h5, h6 {
	font-family: "sharp_sansbold", Arial, Helvetica, sans-serif;
	font-size: 20px; 
	text-transform: uppercase;
	line-height: 1.3em;
	padding: 0 0 20px 0;
	margin: 0;
}

h1 {
	font-size: 75px;
}

h2 {
	font-size: 40px; 
	color: #0069a5;
}

h3 {
	font-size: 32px;
}

h4 {
	font-size: 20px;
}

p {
	padding: 0 0 28px 0;
}

strong { 
	font-weight: normal; 
	font-family: "sharp_sansextrabold", Arial, Helvetica, sans-serif;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
p:last-child {
	padding-bottom: 0;
}

@media only screen and (max-width: 1023px) {
h1 {
	font-size: 60px;
}

h2 {
	font-size: 33px; 
}

h3 {
	font-size: 26px;
}

h4 {
	font-size: 18px;
}
}

@media only screen and (max-width: 767px) {
h1, h2, h3, h4, h5, h6 {
	padding: 0 0 17px 0;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 26px; 
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 16px;
}

p {
	padding: 0 0 22px 0;
}
}

/* #Order and Unorder Styles
================================================= */

ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

li {
	position: relative;
	padding: 0 0 10px 15px;
	margin: 0;
}

li:last-child {
	padding-bottom: 0;
}

ul li:before {
	content: "";
	width: 5px;
	height: 5px;
	float: left;
	background: #0069a5;
	border-radius: 10px;
	position: absolute;
	top: 10px;
	left: 0;
}

@media only screen and (max-width: 1023px) {
ul li:before {
	top: 11px;
}
}

@media only screen and (max-width: 767px) {
ul li:before {
	top: 9px;
}
}


/* #Input
================================================= */

form ul li:before {
	content: "";
	display: none;
}

input, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
	outline: 0;
}

input, textarea {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

.input, .textarea {
	width: 100%;
	height: 55px;
	float: left;
	font-family: "sharp_sanssemibold", Arial, Helvetica, sans-serif;
	font-size: 21px;
	color: #666666;
	line-height: 24px;
	letter-spacing: normal;
	text-transform: none;
	background: #eaeaea; 
	box-shadow:inset rgba(0, 0, 0, 0.070) 0 0 20px !important;
	border: none;
	border-radius: 3px!important;
	outline: none;
	position: relative;
	padding: 12px 15px;
	margin: 0 0 16px 0;
}

.textarea {
	height: 120px;
	padding: 12px 15px;
	outline: none;
	resize: none;
}

:placeholder {
	 color: #a8a8a8;
}

::-webkit-input-placeholder, ::-webkit-textarea-placeholder {
	 color: #a8a8a8;
}
 input::-moz-placeholder, textarea::-moz-placeholder {
	 color: #a8a8a8;
}

::-moz-placeholder {
	 color: #a8a8a8;
}

:-ms-input-placeholder {
	 color: #a8a8a8;
}

@media only screen and (max-width: 1023px) {
.input, .textarea {
	height: 50px;
	font-size: 18px;
	line-height: 22px;
	padding: 10px 15px;
}

.textarea {
	padding: 10px 15px;
}
}

@media only screen and (max-width:767px) {
.input, .textarea {
	height: 45px;
	font-size: 16px;
	line-height: 20px;
	padding: 8px 12px;
}

.textarea {
	height: 100px;
	padding: 8px 12px;
}
}

/* #Buttons
================================================== */

.btn,
button,
input[type="button"],
input[type="submit"] {
	width:auto;
	height: auto;
	float: none;
	display: inline-block;
	font-weight: normal;
	font-family: "sharp_sansbold", Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #ffffff;
	line-height: 17px;
	letter-spacing: normal;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: normal;
	vertical-align: middle;
	background: #1a214d;
	border: none;
	box-shadow: none;
	filter: 0;
	border-radius: 1px;
	position: relative;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	cursor: pointer;
	padding: 19px 22px 17px 22px;
	margin: 0;
}

.btn span,
button span,
input[type="button"] span,
input[type="submit"] span { 
	float: none; 
	display: inline-block; 
	vertical-align: middle; 
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	position: relative;
}

.btn span:after,
button span:after,
input[type="button"] span:after,
input[type="submit"] span:after { 
	content: "\00bb"; 
	width:auto; float:right; 
	font-weight: 400; 
	font-family: "Font Awesome\ 5 Pro"; 
	font-size: 23px; 
	opacity: 0; 
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	position: absolute; 
	top: -3.5px; 
	right: -21px;
}

.btn:hover span,
.btn:focus span,
.btn:active span,
.btn:active:focus span,
.btn.active span,
.btn.active:focus span,
button:hover span,
button:focus span,
button:active span,
button:active:focus span,
button.active span,
button.active:focus span,
input[type="button"]:hover span,
input[type="button"]:focus span,
input[type="button"]:active span,
input[type="button"]:active:focus span,
input[type="button"].active span,
input[type="button"].active:focus span,
input[type="submit"]:hover span,
input[type="submit"]:focus span,
input[type="submit"]:active span,
input[type="submit"]:active span:focus,
input[type="submit"].active span,
input[type="submit"].active span:focus { 
	padding-right: 25px;
}

.btn:hover span:after,
.btn:focus span:after,
.btn:active span:after,
.btn:active:focus span:after,
.btn.active span:after,
.btn.active:focus span:after,
button:hover span:after,
button:focus span:after,
button:active span:after,
button:active:focus span:after,
button.active span:after,
button.active:focus span:after,
input[type="button"]:hover span:after,
input[type="button"]:focus span:after,
input[type="button"]:active span:after,
input[type="button"]:active span:focus:after,
input[type="button"].active span:after,
input[type="button"].active span:focus:after,
input[type="submit"]:hover span:after,
input[type="submit"]:focus span:after,
input[type="submit"]:active span:after,
input[type="submit"]:active span:focus:after,
input[type="submit"].active span:after,
input[type="submit"].active span:focus:after {  
	opacity: 1; 
	right: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
button:hover,
button:focus,
button:active,
button:active:focus,
button.active,
button.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus {
	color: #ffffff;
	text-decoration: none;
	box-shadow: none;
	background: #6db1ff;
}

.btn-red {
	background: #cc3748;
}

.btn-red:hover, 
.btn-red:focus, 
.btn-red:active, 
.btn-red:active:focus, 
.btn-red.active:focus {
	background: #cc3748;
	box-shadow: inset rgba(0, 0, 0, 0.25) 0 0 40px;
}

.btn.disabled, 
.btn[disabled], 
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled, 
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-out {
	width: 100%;
	float: left;
}

@media only screen and (max-width:1023px) {
.btn,
button,
input[type="button"],
input[type="submit"] {
	padding: 17px 20px 16px 20px;
}

.btn span:after,
button span:after,
input[type="button"] span:after,
input[type="submit"] span:after { 
	font-size: 20px; 
	top: -3.5px; 
	right: -21px;
}
}

@media only screen and (max-width:767px) {
.btn,
button,
input[type="button"],
input[type="submit"] {
	font-size: 14px;
	padding: 13px 17px 12px 17px;
}
}


/* #Show-Hide Responsive Options
================================================== */

.show_mobile {
	display: none;
}

.hide_mobile {
	display: block;
}

.show_both {
	display: none;
}

.hide_both {
	display: block;
}

@media only screen and (max-width:1023px) {
.show_both {
	display: block;
}

.hide_both {
	display: none;
}
}

@media only screen and (max-width:767px) {
.show_mobile {
	display: block
}

.hide_mobile {
	display: none
}
}

/*
 3.) Home page
----------------------------------------*/

.container-main {
	width: 100%;
	float: left;
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
}

.container-med {
	width: 100%;
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 30px;
}

.container-sml {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	padding: 0 30px;
}

@media only screen and (max-width: 767px) {
.container {
	max-width: 100%;
	padding: 0 5%;
}

.container-med {
	max-width: 100%;
	padding: 0 5%;
}

.container-sml {
	max-width: 100%;
	padding: 0 5%;
}
}

/* Vertical Align - Middle */
.outer-bg {
	width: 100%;
	height: 100%;
	float: none;
	display: table;
	margin: 0 auto
}

.inner-bg {
	width: 100%;
	height: 100%;
	float: none;
	display: table-cell;
	vertical-align: middle;
}

/* Social - Links */
.social-links {
	width: 100%;
	float: left;
	text-align: center;
	padding: 0 0 50px 0;
}

.social-links:last-child {
	padding-bottom: 0;
}

.social-links ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0 0 -20px 0;
}

.social-links ul li {
	float: none;
	display: inline-block;
	vertical-align: top;
	font-size: 33px;
	padding: 0 0 0 0;
	margin: 0 10px 20px 10px;
}

.social-links ul li:before {
	display: none;
}

.social-links ul li span {
	display: none;
}

.social-links ul li a {
	color: #0069a5;
	text-decoration: none;
}

.social-links ul li a:hover {
	color: #1a214d;
	margin: -5px 0 0 0;
}

.social-links ul li a.active {
	color: #1a214d;
}

@media only screen and (max-width: 1199px) {
.social-links {
	padding: 0 0 40px 0;
}
}

@media only screen and (max-width: 1023px) {
.social-links {
	padding: 0 0 35px 0;
}

.social-links ul {
	margin: 0 0 -16px 0;
}

.social-links ul li {
	font-size: 28px;
	margin: 0 8px 16px 8px;
}
}

@media only screen and (max-width: 767px) {
.social-links {
	padding: 0 0 30px 0;
}

.social-links ul {
	margin: 0 0 -12px 0;
}

.social-links ul li {
	font-size: 23px;
	margin: 0 6px 12px 6px;
}
}

/* Sub - Title */
.sub-title {
	width: 100%;
	float: left;
	font-family: "sharp_sansbold", Arial, Helvetica, sans-serif;
	font-size: 30px;
	color: #1a214d;
	text-transform: uppercase;
	line-height: 34px;
	padding: 0 0 8px 0;
}

@media only screen and (max-width: 1023px) {
.sub-title {
	font-size: 27px;
	line-height: 31px;
}
}

@media only screen and (max-width: 767px) {
.sub-title {
	font-size: 22px;
	line-height: 27px;
}
}

@media only screen and (max-width: 479px) {
.sub-title {
	font-size: 20px;
	line-height: 25px;
}
}

/*
 4.) Header
----------------------------------------*/
.header-main {
	width: 100%;
	height: 100px;
	float: left;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 300;
	background: rgba(0, 0, 0, 0.000);
}

.header-main .logo {
width: 350px;
	float: left;
	margin: 18px -150px 0 0;
}

.header-main .logo img {
	width: 100%;
}

.header-main .nav-bar {
	float: right;
}

.header-main .nav-bar nav {
	float: left;
	padding: 35px 0 0 0;
}

.header-main .nav-bar nav ul {
	float: left;
}

.header-main .nav-bar nav ul li {
	float: left;
	font-family: "sharp_sansbold", Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #ffffff;
	line-height: 18px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	padding: 0;
	margin: 0 0 0 45px;
}

.header-main .nav-bar nav ul li:before {
	display: none;
}

.header-main .nav-bar nav ul li a {
	float: left;
	color: #ffffff;
	text-decoration: none;
	padding-bottom: 2px;
	text-shadow: 0px 0px 16px rgba(0,0,0,.5);
}

.header-main .nav-bar nav ul li a:before {
	content: "";
	width: 0;
	height: 2px;
	float: left;
	position: absolute;
	bottom: 0;
	left: 50%;
	background: #ffffff;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.header-main .nav-bar nav ul li a:hover:before {
	width: 100%;
	left: 0;
}

.header-main .nav-bar nav ul li:hover a {
	color: #ffffff;
}

.header-main .nav-bar nav ul li.active a {
	color: #ffffff;
}

.header-main .nav-bar nav ul li.active a:before {
	width: 100%;
	left: 0;
}

.header-main .nav-bar .btn {
	width: 195px;
	height: 43px;
	font-size: 16px;
	line-height: 48px;
	border-radius: 3px;
	padding: 0 10px;
	margin: 20px 0 0 35px;
}

@media only screen and (max-width:1023px) {
.header-main {
	height: 90px;
	padding: 23px 0;
}

.header-main .logo {
	width: 200px;
	margin: 0;
}

.header-main .nav-bar {
	width: 100%;
	max-width: 100%;
	height: auto;
	float: right;
	display: none;
	background: rgba(0, 0, 0, 0.8);
	position: absolute;
	top: 90px;
	right: 0;
	padding: 22px 30px 30px 30px;
}

.header-main .nav-bar nav {
	width: 100%;
	height: auto;
	padding: 0;
}

.header-main .nav-bar nav ul {
	width: 100%;
}

.header-main .nav-bar nav ul li {
	width: 100%;
	height: auto;
	margin: 0;
}

.header-main .nav-bar nav ul li a {
	width: 100%;
	height: auto;
	line-height: inherit;
	padding: 10px 0;
}

.header-main .nav-bar nav ul li a:hover {
	color: #01abfe;
}

.header-main .nav-bar nav ul li.active a {
	color: #01abfe;
}

.header-main .nav-bar nav ul li a:before {
	display: none;
}

.header-main .nav-bar .btn {
	width: 100%;
	max-width: 220px;
	height: 40px;
	font-size: 14px;
	line-height: 40px;
	border-radius: 0;
	padding: 0 20px;
	margin: 13px 0 0 0;
}
}

@media only screen and (max-width:767px) {
.header-main {
	height: 80px;
	padding: 22px 0;
}

.header-main .logo {
	width: 200px;
	margin: 0;
}

.header-main .nav-bar {
	top: 80px;
	padding: 20px 5% 25px 5%;
}

.header-main .nav-bar nav ul li {
	font-size: 14px;
}

.header-main .nav-bar nav ul li a {
	padding: 8px 0;
}

.header-main .nav-bar .btn {
	max-width: 180px;
}
}

/* Menu - Btn */
.header-main .menu-btn {
	width: 26px;
	height: 20px;
	float: left;
	display: none;
	cursor: pointer;
	z-index: 10001;
	position: absolute;
	top: 34px;
	right: 30px;
}

.header-main .menu-btn span {
	width: 100%;
	float: right;
	text-decoration: none;
	position: relative;
}

.header-main .menu-btn span {
	width: 100%;
	height: 3px;
	float: left;
	background: #ffffff;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	margin: 10px 0 0 0;
}

.header-main .menu-btn span:before {
	content: "";
	width: 100%;
	height: 3px;
	float: left;
	background: #ffffff;
	position: absolute;
	top: -7px;
	left: 0;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.header-main .menu-btn span:after {
	content: "";
	width: 100%;
	height: 3px;
	float: left;
	background: #ffffff;
	position: absolute;
	top: 7px;
	left: 0;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.header-main .menu-btn.active {
	color: #ffffff;
}

.header-main .menu-btn.active span {
	background: none;
}

.header-main .menu-btn.active span:before {
	height: 3.3px;
	top: 0;
	background: #ffffff;
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}

.header-main .menu-btn.active span:after {
	height: 3.3px;
	top: 0;
	background: #ffffff;
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}

@media only screen and (max-width: 1023px) {
.header-main .menu-btn {
	display: block;
}
}

@media only screen and (max-width: 767px) {
.header-main .menu-btn {
	top: 28px;
	right: 5%;
}
}

/*
 5.) Banner - Main
----------------------------------------*/
.banner-main {
	width: 100%;
	float: left;
	position: relative;
	overflow: hidden;
}

.banner-main figure {
	width: 100%;
	float: left;
	text-align: center;
	overflow: hidden;
	position: relative;
}

.banner-main figure img {
	width: 100%;
	min-width: 2000px;
	margin: 0 -1000px;
}

.banner-main .donation-bar {
	width: 100%;
	float: left;
	text-align: center;
	position: absolute;
	bottom: 105px;
	left: 0;
}

.banner-main .donation {
	width: 100%;
	max-width: 400px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.banner-main .donation aside {
	width: 100%;
	float: left;
	padding: 0 0 10px 0;
}

.banner-main .donation aside h2 {
	font-family: "sharp_sansbold", Arial, Helvetica, sans-serif;
	font-size: 36px;
	color: #ffffff;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.banner-main .donation aside p {
	width: 100%;
	float: left;
	font-family: "sharp_sansthin_italic", Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffff;
	line-height: 18px;
	letter-spacing: 0.02em;
	padding: 0 5%;
}

.banner-main .donation ul {
	width: 104.5%;
	float: left;
	padding: 0;
	margin: 0 -2.25% -4.5% -2.25%;
}

.banner-main .donation ul li {
	width: 20%;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 2.05% 4.5% 2.05%;
}

.banner-main .donation ul li:before {
	display: none;
}

.banner-main .donation ul li a {
	width: 100%;
	height: 52px;
	float: left;
	font-family: "gothamboldregular", Arial, Helvetica, sans-serif;
	font-size: 22px;
	color: #ffffff;
	line-height: 52px;
	letter-spacing: 0.02em;
	background: #cc3748;
	border-radius: 3px;
	position: relative;
	padding: 0 5px;
	overflow: hidden;
	z-index: 1;
}

.banner-main .donation ul li a:before {
	content: "";
	width: 100%;
	height: 100%;
	background: #ec2332;
	position: absolute;
	top: 52px;
	left: 0;
	z-index: -1;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.banner-main .donation ul li a:hover:before {
	top: 0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.banner-main .donation ul li a:hover {
	text-decoration: none;
}

@media only screen and (max-width: 1023px) {
.banner-main figure img {
	min-width: 1300px;
	margin: 0 -650px;
}

.banner-main .donation-bar {
	bottom: 80px;
}

.banner-main .donation aside h2 {
	font-size: 30px;
	margin: 0;
}

.banner-main .donation ul li a {
	height: 47px;
	font-size: 20px;
	line-height: 47px;
}

.banner-main .donation ul li a:before {
	top: 47px;
}
}

@media only screen and (max-width: 767px) {
.banner-main {
	text-align: right;
}

.banner-main figure img {
	min-width: 900px;
	margin: 0 0 0 -250px;
}

.banner-main .donation-bar {
	border-bottom: 1px solid #eaeaea;
	position: relative;
	bottom: 0;
	padding: 38px 0 40px 0;
}

.banner-main .donation aside h2 {
	font-size: 26px;
	color: #0069a5;
	margin: 0 0 3px 0;
}

.banner-main .donation aside p {
	color: #0069a5;
}

.banner-main .donation ul li a {
	height: 42px;
	font-size: 17px;
	line-height: 42px;
}

.banner-main .donation ul li a:before {
	top: 42px;
}
}

/*
 6.) Intro - Content
----------------------------------------*/
.intro-content {
	width: 100%;
	float: left;
	padding: 0 0 50px 0;
}

@media only screen and (max-width: 1023px) {
.intro-content .container {
	max-width: 710px;
}
}

@media only screen and (max-width: 767px) {
.intro-content {
	padding: 45px 0;
}
}

/* Split - Content - out */
.split-content-out {
	width: 100%;
	float: left;
	position: relative;
	margin: -85px 0 0 0;
	z-index: 10;
}

@media only screen and (max-width: 1023px) {
.split-content-out {
	margin: -60px 0 0 0;
}
}

@media only screen and (max-width: 767px) {
.split-content-out {
	margin: 0;
}
}

/* Split - Content */
.split-content {
	width: 100%;
	float: left;
	background: #f0f0f0;
	box-shadow: rgba(0, 0, 0, 0.15) 0 0 15px;
	margin: 0 0 60px 0;
}

.split-content:last-child {
	margin-bottom: 0;
}

.split-content .left-panel {
	width: 50.75%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 20px 45px;
	margin: 0 -1px;
}

.split-content .join-form {
	width: 100%;
	float: left;
}

.split-content .join-form h2 {
	line-height: 1.1em;
	padding: 0;
}

.split-content .join-form .sub-title {
	padding: 0;
}

.split-content .join-form .input {
	margin: 0;
}

.split-content .join-form ul {
	width: 103.2%;
	float: left;
	padding: 0 0 20px 0;
	margin: 0 0 -20px 0;
}

.split-content .join-form ul li {
	width: 100%;
	float: left;
	padding: 0 3.2% 20px 0;
}

.split-content .join-form ul li.email-cl {
	width: 66%;
}

.split-content .join-form ul li.zip-cl {
	width: 34%;
}

.split-content .join-form .btn,
.split-content .join-form button,
.split-content .join-form input[type="button"],
.split-content .join-form input[type="submit"]  {
	width: 31.5%;
	float: right;
}

.split-content .video {
	width: 49.25%;
	float: none;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	margin: 0 -2px;
	overflow: hidden;
}

.split-content .video img {
	width: 100%;
	min-width: 640px;
	margin: 0 -320px;
}

@media only screen and (max-width: 1199px) {
.split-content .join-form h2 {
	font-size: 35px;
}

.split-content .left-panel {
	padding: 45px;
}
}

@media only screen and (max-width: 1023px) {
.split-content {
	margin: 0 0 50px 0;
}

.split-content .left-panel {
	width: 100%;
	padding: 35px 30px;
}

.split-content .join-form .sub-title {
	padding: 0 0 10px 0;
}

.split-content .video {
	width: 100%;
	margin: 0;
}
}

@media only screen and (max-width: 767px) {
.split-content {
	text-align: center;
	margin: 0 0 40px 0;
}

.split-content .left-panel {
	padding: 25px 15px;
}

.split-content .join-form {
	max-width: 450px;
	float: none;
	display: inline-block;
	vertical-align: middle;
}

.split-content .join-form h2 {
	font-size: 30px;
}

.split-content .join-form ul {
	width: 100%;
	padding: 0 0 15px 0;
	margin: 0 0 -15px 0;
}

.split-content .join-form ul li {
	padding: 0 0 15px 0;
}

.split-content .join-form ul li.email-cl {
	width: 100%;
}

.split-content .join-form ul li.zip-cl {
	width: 100%;
}

.split-content .join-form .btn,
.split-content .join-form button,
.split-content .join-form input[type="button"],
.split-content .join-form input[type="submit"] {
	width: 100%;
	float: left;
}

.split-content .video img {
	min-width: 100%;
	margin: 0;
}
}

@media only screen and (max-width: 479px) {
.split-content .join-form h2 {
	font-size: 24px;
}
}

/* Split  - Content2 */
.split-content2 {
	width: 100%;
	float: left;
	box-shadow: rgba(0, 0, 0, 0.12) 0 0 15px;
	background: #f0f0f0;
	position: relative;
	margin: 0 0 60px 0;
}

.split-content2:last-child {
	margin-bottom: 0;
}

.split-content2 figure {
	width: 49.25%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	overflow: hidden;
	margin: 0 -3px 0 0;
}

.split-content2 figure img {
	width: 100%;
	min-width: 680px;
}

.split-content2 aside {
	width: 50.75%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	padding: 30px 6.7%;
	margin: 0 0 0 -3px;
}

.split-content2 aside h2 {
	font-size: 45px;
	color: #1a214d;
	padding: 0 0 7px 0;
	margin: 0;
}

.split-content2 aside p {
	font-family: "museo_slab300", Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #0069a5;
	line-height: 30px;
}

.split-content2 aside p:last-child {
	padding-bottom: 0;
}

.split-content2 aside .btn { 
	width: 100%; 
	max-width: 215px; 
	padding-left: 10px; 
	padding-right: 10px;
} 

.split-content2 aside .btn-out {
	padding: 2px 0 0 0;
}

@media only screen and (max-width: 1199px) {
.split-content2 aside {
	padding: 30px 5%;
}
}

@media only screen and (max-width: 1023px) {
.split-content2 {
	margin: 0 0 50px 0;
}

.split-content2 figure {
	width: 100%;
	margin: 0;
}

.split-content2 figure img {
	width: 100%;
	min-width: inherit;
}

.split-content2 aside {
	width: 100%;
	padding: 35px 40px 40px 40px;
	margin: 0;
}

.split-content2 aside h2 {
	font-size: 36px;
	padding: 0 0 7px 0;
	margin: 0;
}

.split-content2 aside p {
	font-size: 18px;
	line-height: 26px;
}

.split-content2 aside p:last-child {
	padding-bottom: 0;
}
}

@media only screen and (max-width: 767px) {
.split-content2 {
	margin: 0 0 40px 0;
}

.split-content2 aside {
	padding: 36px 20px 40px 20px;
}

.split-content2 aside h2 {
	font-size: 28px;
}

.split-content2 aside p {
	font-size: 16px;
	line-height: 24px;
}

.split-content2 aside .btn-out {
	padding: 2px 0 0 0;
}
}

/*
 7.) Bottom - Content
----------------------------------------*/
.bottom-content {
	width: 100%;
	float: left;
	text-align: center;
	background: url(../img/bg-01.jpg) no-repeat bottom center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	padding: 55px 0 150px 0;
}

.bottom-content .news-letter {
	width: 100%;
	max-width: 910px;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: rgba(240, 240, 240, 0.9);
	box-shadow: rgba(0, 0, 0, 0.2) 0 0 25px;
	padding: 85px 30px;
}

.bottom-content .news-letter h2 {
	font-size: 50px;
	line-height: 1.1em;
	padding: 0;
}

.bottom-content .news-letter .sub-title {
	padding: 0 0 5px 0;
}

.bottom-content .news-letter .input {
	margin: 0;
}

.bottom-content .news-letter ul {
	width: 103.2%;
	float: left;
	padding: 0 0 20px 0;
	margin: 0 0 -20px 0;
}

.bottom-content .news-letter ul li {
	width: 100%;
	float: left;
	padding: 0 3.2% 20px 0;
}

.bottom-content .news-letter ul li.email-cl {
	width: 66%;
}

.bottom-content .news-letter ul li.zip-cl {
	width: 34%;
}

.bottom-content .news-letter .btn,
.bottom-content .news-letter button,
.bottom-content .news-letter input[type="button"],
.bottom-content .news-letter input[type="submit"]  {
	width: 31.5%;
	float: right;
}

.bottom-content .news-letter .form-bg {
	width: 100%;
	max-width: 610px;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

@media only screen and (max-width: 1023px) {
.bottom-content .news-letter {
	max-width: 650px;
	padding: 65px 25px;
}

.bottom-content .news-letter h2 {
	font-size: 44px;
}

.bottom-content .news-letter .form-bg {
	max-width: 510px;
}
}

@media only screen and (max-width: 767px) {
.bottom-content {
	padding: 50px 0 160px 0;
}

.bottom-content .news-letter {
	max-width: 450px;
	padding: 30px 20px;
}

.bottom-content .news-letter h2 {
	font-size: 30px;
	padding: 0 0 5px 0;
}

.bottom-content .news-letter ul {
	width: 100%;
	padding: 0 0 15px 0;
	margin: 0 0 -15px 0;
}

.bottom-content .news-letter ul li {
	padding: 0 0 15px 0;
}

.bottom-content .news-letter ul li.email-cl {
	width: 100%;
}

.bottom-content .news-letter ul li.zip-cl {
	width: 100%;
}

.bottom-content .news-letter .btn,
.bottom-content .news-letter button,
.bottom-content .news-letter input[type="button"],
.bottom-content .news-letter input[type="submit"] {
	width: 100%;
	float: left;
}

.bottom-content .news-letter .form-bg {
	max-width: 340px;
}
}

@media only screen and (max-width: 479px) {
.bottom-content .news-letter h2 {
	font-size: 24px;
}
}

/*
 8.) Footer
----------------------------------------*/
.footer-main {
	width: 100%;
	float: left;
	text-align: center;
	padding: 50px 0 30px 0;
}

.footer-main p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #474747;
	letter-spacing: 0.02em;
	padding: 0;
	margin: 0 0 8px 0;
}

.footer-main p:last-child {
	margin-bottom: 0;
}

.footer-main p a {
	color: #474747;
	text-decoration: none;
}

.footer-main p a:hover {
	color: #474747;
}

.footer-main p a.active {
	color: #474747;
}

.footer-main p.box {
	float: none;
	display: inline-block;
	vertical-align: middle;
	border: 1px solid #474747;
	padding: 3px 40px 2px 40px;
}

.footer-main p.text {
	font-style: italic;
}

.footer-main p.text a {
	text-decoration: underline;
}

.footer-main p.text a:hover {
	color: #1a214d;
}

.container-home .footer-main {
	background: none;
	margin: -152px 0 0 0;
}

.container-home .footer-main p {
	color: #ffffff;
}

.container-home .footer-main p.box {
	border-color: #ffffff;
}

.container-home .footer-main p a {
	color: #ffffff;
}

.container-home .footer-main p a:hover {
	color: #1a214d;
}

@media only screen and (max-width: 1023px) {
.footer-main p.box {
	padding: 3px 30px 2px 30px;
}
}

@media only screen and (max-width: 767px) {
.footer-main {
	padding: 40px 0 30px 0;
}

.footer-main p {
	font-size: 15px;
}

.footer-main p.box {
	padding: 3px 20px 2px 20px;
}
}

/*
 9.) Interior - Page
----------------------------------------*/
/* Banner - Inner */
.banner-inner {
	width: 100%;
	float: left;
	position: relative;
	overflow: hidden;
}

.banner-inner figure {
	width: 100%;
	float: left;
	text-align: center;
	overflow: hidden;
	position: relative;
}

.banner-inner figure img {
	width: 100%;
	min-width: 2000px;
	margin: 0 -1000px;
}

.banner-inner .banner-content {
	width: 100%;
	height: 100%;
	float: left;
	position: absolute;
	top: 0;
	left: 0;
	padding: 100px 0 310px 0;
}

.banner-inner .banner-content h1 {
	width: 100%;
	float: left;
	color: #ffffff;
	text-align: center;
	padding: 0;
	text-shadow: 0px 0px 16px rgba(0,0,0,.5);
}

@media only screen and (max-width: 1023px) {
.banner-inner figure img {
	min-width: 1300px;
	margin: 0 -650px;
}

.banner-inner .banner-content {
	padding: 90px 0 180px 0;
}
}

@media only screen and (max-width: 767px) {
.banner-inner figure img {
	min-width: 800px;
	margin: 0 -400px;
}

.banner-inner .banner-content {
	padding: 80px 0;
}
}

/* Content - Inner */
.content-inner {
	width: 100%;
	float: left;
}

/* Content - Box - our */
.content-box-out {
	width: 100%;
	float: left;
	position: relative;
	margin: -310px 0 0 0;
	z-index: 10;
}

@media only screen and (max-width: 1023px) {
.content-box-out {
	margin: -180px 0 0 0;
}
}

@media only screen and (max-width: 767px) {
.content-box-out {
	margin: -80px 0 0 0;
}
}

/* Content - Box */
.content-box {
	width: 100%;
	float: left;
	background: #f0f0f0;
	box-shadow: rgba(0, 0, 0, 0.15) 0 0 30px;
	padding: 30px 75px 520px 75px;
}

@media only screen and (max-width: 1199px) {
.content-box {
	padding: 30px 55px 380px 55px;
}
}

@media only screen and (max-width: 1023px) {
.content-box {
	padding: 35px 40px;
}
}

@media only screen and (max-width: 767px) {
.content-box {
	box-shadow: rgba(0, 0, 0, 0.25) 0 0 20px;
	padding: 25px 15px;
}
}

/* Left- Content */
.left-content {
	width: 62%;
	float: left;
	padding: 20px 70px 0 0;
}

@media only screen and (max-width: 1199px) {
.left-content {
	padding: 20px 50px 0 0;
}
}

@media only screen and (max-width: 1023px) {
.left-content {
	width: 100%;
	padding: 0 0 30px 0;
}
}

/* Side - Bar */
.side-bar {
	width: 48%;
	float: right;
	text-align: center;
	margin: 0 -10% 0 0;
}

.side-bar aside {
	width: 100%;
	float: left;
	margin: 0 0 30px 0;
}

.side-bar aside:last-child {
	margin: 0;
}

.side-bar aside figure {
	width: 100%;
	float: left;
	text-align: center;
	overflow: hidden;
}

.side-bar aside figure img {
	width: 100%;
}

.side-bar .join-form {
	width: 100%;
	float: left;
	background: #ffffff;
	box-shadow: rgba(0, 0, 0, 0.070) 0 0 8px;
	padding: 27px 30px 27px 30px;
}

.side-bar .join-form h2 {
	padding: 0;
}

.side-bar .join-form .form-bg {
	width: 100%;
	max-width: 365px;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0 0 25px 0;
}

.side-bar .join-form .form-bg:last-child {
	padding-bottom: 0;
}

.side-bar .join-form .btn,
.side-bar .join-form button,
.side-bar .join-form input[type="button"],
.side-bar .join-form input[type="submit"]  {
	width: 100%;
}

@media only screen and (max-width: 1199px) {
.side-bar {
	width: 47%;
	margin: 0 -9% 0 0;
}

.side-bar .join-form {
	padding: 27px 30px;
}

.side-bar .join-form h2 {
	font-size: 35px;
}
}

@media only screen and (max-width: 1023px) {
.side-bar {
	width: 100%;
	text-align: center;
	margin: 0;
}

.side-bar aside {
	max-width: 420px;
	float: none;
	display: inline-block;
	margin: 0 20px 25px 20px;
}

.side-bar .join-form {
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 33px 25px;
}

.side-bar .join-form .form-bg {
	padding: 0 0 25px 0;
}
}

@media only screen and (max-width: 767px) {
.side-bar aside {
	margin: 0 0 20px 0;
}

.side-bar .join-form {
	padding: 25px 15px;
}

.side-bar .join-form h2 {
	font-size: 26px;
	padding: 0 0 4px 0;
}
}

/*
 10.) News - Page
----------------------------------------*/
/* News - Info */
.news-info {
	width: 100%;
	float: left;
}

.news-info .article {
	width: 100%;
	float: left;
	position: relative;
	background: #f0f0f0;
	box-shadow: rgba(0, 0, 0, 0.15) 0 0 25px;
	padding: 70px 60px 35px 60px;
	margin: 0 0 95px 0;
}

.news-info .article:after {
	content: "";
	width: 100%;
	max-width: 400px;
	height: 2px;
	float: left;
	position: absolute;
	bottom: 35px;
	left: 50%;
	background: #7e7e7e;
	margin: 0 0 0 -200px;
}

.news-info .article h3 {
	font-family: "sharp_sansmedium", Arial, Helvetica, sans-serif;
	line-height: 1.4em;
	padding: 0 0 12px 0;
}

.news-info .article h3 a {
	color: #7e7e7e;
}

.news-info .article h3 a:hover {
	color: #1a214d;
}

.news-info .article h3 strong {
	font-family: "sharp_sansbold", Arial, Helvetica, sans-serif;
}

.news-info .article p {
	font-size: 14px;
	line-height: 26px;
}

.news-info .article p.date-txt {
	padding: 0 0 8px 0;
}

.news-info .article .read-more {
	width: 100%;
	float: left;
	padding: 0 0 35px 0;
}

.news-info .article .read-more a {
	float: right;
	font-family: "sharp_sansbold", Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #7e7e7e;
	line-height: 18px;
	text-transform: uppercase;
	text-decoration: none;
}

.news-info .article .read-more a:hover {
	color: #1a214d;
}

.news-info .article:last-child {
	margin-bottom: 0;
}

@media only screen and (max-width: 1023px) {
.news-info .article {
	padding: 40px 35px 25px 35px;
	margin: 0 0 65px 0;
}

.news-info .article:after {
	max-width: 300px;
	bottom: 30px;
	margin: 0 0 0 -150px;
}
}

@media only screen and (max-width: 767px) {
.news-info .article {
	padding: 25px 15px;
	margin: 0 0 45px 0;
}

.news-info .article:after {
	max-width: 200px;
	bottom: 25px;
	margin: 0 0 0 -100px;
}

.news-info .article .read-more {
	padding: 0 0 25px 0;
}
}

.left-content p, .article p{
    padding: 0 0 20px 0;
    font-family: 'sharp_sansmedium';
    font-size: 14px;
    line-height: 18px;
}


.homepage_quote{color: white; font-style: italic;
text-shadow: 0px 0px 16px rgba(0,0,0,1);
font-size: 28px;
text-transform: none;
}

@media only screen and (max-width: 767px) {
.homepage_quote{
color: #1a214d; font-style: italic;
text-shadow: 0px 0px 16px rgba(0,0,0,0);
}
}

@media only screen and (max-width: 1500px) {
.homepage_quote{font-size: 20px;
}
}



