@media only screen and (min-width: 1px) and (max-width: 749px) {
	
body {
	font-size: 1em;
}

.hide { display: none !important }
.show { display: block !important }

/** ASSETS **/

.button {
	font-size: .8em;
	display: inline-block;
	padding: 1em 1.2em;
	text-transform: uppercase;
	color: #000 !important;
	font-weight: bold;
	background-color: #ffcb05;
	line-height: 1;	
	text-decoration: none;
	border: 2px solid #ffcb05;
}

.button:hover { background-color: #fff }

.center {
	margin-left: auto !important;
	margin-right: auto !important;
}

.black {
	background-color: #000;
	color: #fff;
	border: 2px solid #000;
}

.black:hover {
	background-color: #fff;
	color: #000;
	border: 2px solid #000;
}

blockquote {
	width: 100%;
	padding: 0 1em;
	margin: 2em auto;
}

blockquote p {
	padding: 0 0 0 1em;
	margin: 0 !important;
}

.inside_container img {
	display: block;
	padding: 1em 0;
	max-width: 80%;
	height: auto !important;
}

.inside_container img.alignnone {
	margin: 0px auto;
	display: block;
}

.inside_container .alignleft,
.inside_container img.alignleft {
	display: inline;
	float: left;
}

.inside_container img.alignleft {
	margin-right: 20px;
}

.inside_container .alignright,
.inside_container img.alignright {
	display: inline;
	float: right;
}
.inside_container img.alignright {
	margin-left: 20px;
}

.inside_container .aligncenter,
.inside_container img.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.aligncenter img,
.alignright img,
.alignleft img {
	margin: 0 auto;
}

.inside_container img.alignleft,
.inside_container img.alignright {
	max-width: 40%;
	margin-bottom: 15px;
}

.inside_container .attachment img {
	display: block;
	margin: 0 auto;
}

/** HEADER **/

header {
	position: fixed;
	padding: 0;
	box-shadow: 0 0 2em rgba(0,0,0,.25);
	overflow: visible;
}

header .container {
	background-color: #fff;
	padding: 1em;
}

.logo_container {
	margin: 0 auto;
	width: 10em;
	height: 3em;
}

.logo_container:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}

header nav .nav_menu_icon {
	display: block;
	position: absolute;
	z-index: 999;
	cursor: pointer;
	top: 50%;
	transform: translateY(-50%);
	height: 1.25em;
	width: 1.75em;
	margin: 0 .5em;
	background-image: url('/images/menu.png');
	background-size: 100% 100%;
	background-position: center center
}

.expand {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

header nav .nav_menu {
	position: fixed;
	top: -100%;
	display: block;
	width: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
	height: -moz-calc(100% - 5em) !important;
    height: -webkit-calc(100% - 5em) !important;
    height: calc(100% - 5em) !important;
	z-index: -1;
    padding: 2em;
    background-color: #ffcb05;
    transform: translateY(0);
}

#expand:checked + label.expand > .nav_menu {
	top: 5em;
}

header.stick nav #expand:checked + label.expand > .nav_menu {
	top: 3.9em;
	height: -moz-calc(100% - 3.9em) !important;
    height: -webkit-calc(100% - 3.9em) !important;
    height: calc(100% - 3.9em) !important;
}

#expand:checked + label.expand > .nav_menu_icon {
	background-image: url('/images/cross.png');
}

header nav .nav_menu div.nav_item {
	display: block;
}

header nav .nav_menu div.nav_item a {
	display: block;
	text-decoration: none;
	color: #000;
	padding: .75em 0;
	font-weight: bold;
	position: relative;
}

header nav .nav_menu div.nav_drop {
	position: relative;
	padding: 0;
	opacity: 1;
	pointer-events: inherit;
	border: none;
	transform: none;
	left: 0;
}

header nav .nav_menu div.nav_drop a {
	display: block;
	font-weight: normal;
	text-align: left;
	padding-left: 1em;
}

header nav .nav_menu div.nav_drop a:before {
    content: "- ";
}

header nav .nav_menu div.nav_item.social a img {
	display: block;
	height: 1.25em;
	width: 1.5em;
}

header nav .nav_menu div.nav_item.callout a {
	display: block;
	text-decoration: none;
	color: #000;
	padding: .75em 0;
	font-weight: bold;
	position: relative;
	background-color: #ffcb05;
	border: none;
	text-transform: none;
	margin: 0;
}

header nav .nav_menu div.nav_item.callout:hover a {
	background-color: #ffcb05 !important;
}

header nav .nav_menu div.nav_item a .line {
	display: none
}

/** STICKY HEADER **/

header.stick {
	top: 0;
	padding: 0;
}

header.stick .header_container {
	padding: .75em;
}

header.stick .logo_container {
	width: 8em;
	height: 2.4em
}


/** FOOTER **/

footer {
	padding: 2em;
}

footer .logo_container {
	margin: 0 auto;
	width: 10em;
}

footer a {
	color: #ffcb05;
	text-decoration: none;
}

footer .text {
	margin: 1.5em auto 0;
	width: 100%;
	font-size: .8em
}

footer .bullet {
	display: inline-block;
	padding: 0 1em;
}

footer .bullet:last-child {
	display: none
}

footer nav {
	display: none;
}

/** FEATURE **/

.feature {
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	background-color: #333;
	box-shadow: inset 0 0 5em #111;
}

.feature .background {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	box-shadow: 0 0 5em #111;
	overflow: auto;
}

.feature .slider {
	position: relative;
	z-index: 1;
}

.feature .slider * { transition: none }

.feature .cover {
	width: 50%;
	margin: 0 auto;
	display: block;
	position: absolute;
	z-index: 4;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.feature .arrow {
	display: none
}

@-webkit-keyframes bounce {
    40%   { bottom: 2em }
    50%   { bottom: 3.5em }
    60% { bottom: 2em }
}

@-moz-keyframes bounce {
    40%   { bottom: 2em }
    50%   { bottom: 3.5em }
    60% { bottom: 2em }
}

@-o-keyframes bounce {
    40%   { bottom: 2em }
    50%   { bottom: 3.5em }
    60% { bottom: 2em }
}

@keyframes bounce {
    40%   { bottom: 2em }
    50%   { bottom: 3.5em }
    60% { bottom: 2em }
}

.feature .overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background-color: rgba(0,0,0,.5);
	width: 100%;
	height: 100%;
}

.feature .overlay2 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: rgba(255,203,5,0.4);
	background: -moz-linear-gradient(45deg, rgba(255,203,5,0.4) 0%, rgba(255,203,5,0) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(255,203,5,0.4)), color-stop(100%, rgba(255,203,5,0)));
	background: -webkit-linear-gradient(45deg, rgba(255,203,5,0.4) 0%, rgba(255,203,5,0) 100%);
	background: -o-linear-gradient(45deg, rgba(255,203,5,0.4) 0%, rgba(255,203,5,0) 100%);
	background: -ms-linear-gradient(45deg, rgba(255,203,5,0.4) 0%, rgba(255,203,5,0) 100%);
	background: linear-gradient(45deg, rgba(255,203,5,0.4) 0%, rgba(255,203,5,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffcb05', endColorstr='#ffcb05', GradientType=1 );
}

.feature .video_container {
	width: 100%;
	padding-top: 42%;
	position: relative;
	overflow: hidden;
}

.feature video {
	position: absolute;
	top: 0;
	width: auto;
	margin: 0 auto;
	width: 100%;
}

/** HOME **/

.home .title {
	font-size: 1.3em;
}

.home .text {
	font-size: 1em;
}

.home .icon {
    height: 4em;
}

.home u {
	white-space: normal;
}

/** ABOUT **/

.about {
	padding: 3em;
	text-align: center
}

.about .animate {
	display: none
}

.about .indent {
	border-left: none;
	padding-left: 0;
	position: relative;
	z-index: 10;
}

.about .title,
.about .text {
	width: 100%;
}

/** BUSINESS **/

.business {
	padding: 3em;
}

.coalition_gallery {
	margin: 2em -2em;
	text-align: center;
}

.coalition_gallery img,
.coalition_gallery.small img {
	width: 24%;
	padding-top: 0;
	padding-bottom: 0;
}

.columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 3em;
    -moz-column-gap: 3em;
    column-gap: 3em;
    padding: 0 3em;
    font-size: .8em;
}

.coalition_form {
	padding: 3em;
	width: 100%;
}

.form_columns {
	display: block;
}

.form_column_1 {
	display: block;
	width: 100% !important;
	padding: 0;
	border-right: none;
}

.form_column_2 {
	display: block;
	width: 100%;
	padding: 0 0 0 0;
}

.coalition_form input,
.coalition_form select,
.coalition_form textarea {
	font-size: 1em;
}

.coalition_form label {
	display: block;
	font-weight: 700;
	font-size: 1em;
}

.coalition_form .form_column_1 input:last-child,
.coalition_form .form_column_2 input:last-child {
	margin-bottom: 1.5em
}

/** JOIN **/

.join {
	padding: 3em 1.5em;
}

.join .gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(0,0,0,0.65);
	background: -moz-linear-gradient(left, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0) 80%, rgba(0,0,0,0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,0.65)), color-stop(45%, rgba(0,0,0,0.65)), color-stop(80%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0)));
	background: -webkit-linear-gradient(left, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0) 80%, rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(left, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0) 80%, rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(left, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0) 80%, rgba(0,0,0,0) 100%);
	background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0) 80%, rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1 );
}

.join .half_container {
	width: 70%;
	position: relative;
	z-index: 2
	
}

.join .title {
	line-height: 1.4;
}

.join .button:hover {
	background-color: transparent;
	color: #fff !important;
}

/** FACTS **/

.facts {
	padding: 0;
}

.facts .container {
	display: block;
}

.facts .fact {
	display: table;
	width: 100% !important;
	padding: 2em;
	vertical-align: top;
	border-bottom: 1px solid #fff;
	border-right: none;
	text-align: center;
}

.facts .fact:hover .scale {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.facts .fact:last-child {
	border-right: none;
	border-bottom: none;
}

.facts .fact .left {
	display: table-cell;
	width: 25%;
	vertical-align: middle;
}

.facts .fact .right {
	display: table-cell;
	width: 75%;
	vertical-align: middle;
	padding-left: 2em;
	text-align: left;
}

.facts .fact .fact_image {
	margin: 0 auto 0;
	width: 100%;
}

.facts .fact .title {
	font-size: 1em;
	display: inline;
	text-transform: none
}

.facts .fact .text {
	font-size: 1em;
	display: inline;
}

/** ENDORSEMENTS **/

.endorse {
	padding: 3em 1em;
}

.endorsement {
	display: block;
	padding: 0 3em;
}

.endorse_photo {
	width: 100%;
	margin: 0 auto;
	display: block;
}

.endorse_photo .photo {
	width: 30%;
	padding-top: 30%;
	margin: 0 auto;
}

.endorse_quote {
	width: 100%;
	padding-left: 0;
	padding-top: 1em;
	display: block;
	position: relative;
}

.endorse .text {
	margin: 0 0 1em 0;
	max-width: 100% !important;
	text-align: center;
}

.endorse .title {
	margin: 0;
	font-size: 1em;
	text-align: center;
}

/** VOICES **/

.voices {
	padding: 3em 0;
}

.voices .button {
	margin: .5em;
}

.voices .container {
	padding: 0 3em;
}

.voices .container:nth-child(2) {
	padding: 0 1em;
}

.voices .voices_container {
	padding: 0 2.5em;
	margin: 2em 0 0;
}

.voices .voice {
	padding: 0 .5em;
}

.voices .voice:hover .thumb .overlay {
	background-color: rgba(0,0,0,0);
}

.voices .voice .thumb .button {
	display: none;
}

.voices .voice .title {
	font-size: 1em;
}

.voices .voice .text {
	font-size: .8em;
}

.voices .voice .line {
	margin: .75em auto;
	width: 50%;
}

.voices .voice:hover .line {
	width: 50%;
}

.slick-arrow {
	width: 2em;
	height: 2em;
}

.slick-arrow::before {
	width: 2em;
	height: 2em;
}

.voices.category_voices {
	padding: 0;
}

.voices.category_voices .container {
	padding: 0;
}

.voices.category_voices .voice {
	width: 100%;
	padding: 2em;
}

.voices.category_voices .voice .cat_side {
	overflow: auto;
	float: left;
	padding-left: 2em;
	width: 75%;
	text-align: left;
}

.voices.category_voices .voice .line {
	display: none
}

.voices.category_voices .voice .title {
	font-weight: normal;
	text-align: left;
	margin: 0;
}

.voices.category_voices .voice .text {
    width: auto;
    color: #000;
    font-weight: bold;
    margin: 1em 0 0 0;
    padding: 1em 1em 0 0;
    display: inline-block;
    border-top: 2px solid #ffcb05;
}

.voices.category_voices .voice:nth-child(2n-1) {
    background-color: #f0f0f0;
}

.voices.category_voices .voices_container {
	overflow: auto;
	padding: 0;
	margin: 0;
}

.voices.category_voices .voice .thumb {
    width: 25%;
    padding-top: 18.75%;
    float: left;
}



/** NEWS & TWITTER **/

.news {
	padding: 3em 0 0;
}

.news .container {
	display: block;
}

.news .container .column {
	display: block;
	width: 50%;
	float: left;
	border-right: none;
	padding: 0 3em;
	vertical-align: top;
}

.news .container .column:nth-child(2) {
	border-left: 1px solid #ccc;
}

.news .news_story {
	padding: 1.5em 0;
}

.news .news_story:hover .thumb .overlay {
	background-color: rgba(0,0,0,0);
}

.news .news_story .thumb .button {
	display: none
}

.news .news_story .title {
	font-size: 1em;
}

.news .news_story .text {
	font-size: .8em;
}

.news .news_story p {
	margin: 0
}

.news .container .column:last-child {
	display: block;
	background-color: #ffcb05;
	padding: 3em;
	width: 100%;
	margin-top: 3em;
	border-bottom: none;
	text-align: center;
	margin-bottom: -1px;
}

.news .container .column:last-child u {
	text-decoration: none;
	border-bottom: solid 2px #fff;
	white-space: nowrap;
}

.news .container .column:last-child .text {
	color: #000
}

.news .container .column:last-child .button {
	color: #fff !important;
	background-color: #000;
	border: 2px solid #000;
}

.news .container .column:last-child .button:hover {
	background-color: transparent;
	color: #000 !important
}

/** PAGE AND SINGLE **/

.page {
	padding: 0;
}

.page .container {
	max-width: 100%;
	padding: 0 3em;
}

.buffer {
	margin: 3em 0;
}

hr {
	margin: 2em auto;
}

.page .title {
	font-size: 1.3em;
}

.page span.text {
	font-size: 1em;
	margin-bottom: 0;
	text-align: justify !important;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

.page span.text p {
	text-align: justify !important
}

.page span.text twitterwidget {
	max-width: 100% !important;
}

.share b {
	font-size: 1em;
}

.share a img {
	height: 1.5em !important;
}

/** CATEGORY **/

.prev,.next,.page-numbers {
	font-size: .8em;
}

/** NEWS CATEGORY **/

.cat_news .news_story {
	border: none
}

.cat_news {
	margin: 0 -3em;
	width: -moz-calc(100% + 6em) !important;
    width: -webkit-calc(100% + 6em) !important;
    width: calc(100% + 6em) !important;
}

.cat_news .news_story .title {
	font-size: 1em;
}

.cat_news .news_story .text {
	font-size: .8em;
}

}