/*
Theme Name: Americian Society of Primatologists
Author: X-CD
Description: A custom theme for ASP
Version: 1.00
*/
@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Aleo|Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i');

/* CSS Document */
/* RESET */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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%;	
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* END RESET */

/* 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%; /* Image does not overflow the content area */
    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 p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

.wp-block-columns {
	max-width: 1650px;
    margin: 0 auto;
	padding: 15px 25px 0px;
	box-sizing: border-box;
}

main .wp-block-columns h1, main .wp-block-columns h2, main .wp-block-columns h3, main .wp-block-columns h4 {
	padding:0;
}  

main .wp-block-columns p {
	padding:10px 0;
}

main .wp-block-columns p.button {
	padding:5px;
	margin:10px 0;
}

main .wp-block-columns ul {
	padding:15px 50px;
}

main .wp-block-gallery .blocks-gallery-item {
	margin:0 5px 10px;
}
/* END WORDPRESS CORE */

/* SLIDEOUT */
.slideout-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 500px;
  min-height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
  display: none;
}

#mobile-menu-wrap {  
	width: 500px;
	min-width: 500px;
	opacity: 0;
	visibility: hidden;
}

#mobile-menu-wrap.visible {
	opacity: 1;
	visibility: visible;
}

.slideout-menu-left {
  left: 0;
}

.slideout-menu-right {
  right: 0;
}

.slideout-panel {
  position: relative;
  z-index: 1;
  background-color: #FFF; /* A background-color is required */
  min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

#panel:before {
  content: '';
  display: block;
  background-color: rgba(0,0,0,0);
  transition: background-color 0.5s ease-in-out;
}

#panel.panel-open:before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0,0,0,.5);
  z-index: 99;
}

#close-mobile {
	height: 46px;
    background:#9f6a36;
    text-align: right;
    padding:0 25px;
    box-sizing: border-box;
	margin-bottom:25px;
	display: flex;
	justify-content: space-between;
}

#close-mobile a {
	display: inline-block;
	color:#fff;
	font-size:26px;
	line-height: 48px;
}

#mobile-menu-back {
	visibility: hidden;
}

#mobile-menu-back.active {
	visibility: visible;
}

#mobileSearch {
	display:block;
	width:100%;
	margin-bottom:30px;
	text-align: center;
}

#mobileSearch .searchForm input[type="text"] {
	width:85%;
}

#mobile-menu {
	padding:0 25px;
	box-sizing: border-box;
	margin-bottom:60px;
}

#mobile-menu li {
	border-bottom:1px solid #dbd9d2;
	padding:25px 0;
}

#mobile-menu li.menu-item-has-children:after {
	display:inline-block;
	content:">";
	color:#164444;
	font-family: "Montserrat", sans-serif;
	font-size:18px;
	font-weight: 500;
}

#mobile-menu li a {
	display: inline-block;
	width:90%;
	font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
}

#mobile-menu li a.button {
	color:#fff;
}

#mobile-menu li:last-child, #mobile-menu li:nth-last-child(2) {
	border-bottom:none;
}

#mobile-menu li ul {
	display:none;
	position: absolute;
    height: 100%;
    width: 100%;
    background: #fff;
    top: 61px;
    left: 0px;
	padding-left: 25px;
	box-sizing: border-box;
}

#mobile-menu li ul.expanded {
	display:block;
	z-index: 20;
}

#mobile-menu li ul.expanded ul.expanded {
	top:0;
}

#mobile-menu .mobileParentItem:after {
	display:inline-block;
	content:">";
	position: absolute;
	right:30px;
	z-index: 10;
}

#mobile-menu-wrap .button {
	display: block;
	width:200px;
	margin:0 auto 15px;
	text-align: center;
}
/* END SLIDEOUT */

/* GENERAL */
img {
	max-width: 100%;
	height: auto;
}

.button, main .button {
	font-family: 'Montserrat', sans-serif;
	font-size:16px;
	font-weight: 500;
	color:#fff;
	text-decoration: none;
	background: #164444;
	padding:10px 15px;
	border:2px solid #164444;
	border-radius: 8px;
	display: inline-block;
	box-sizing: border-box;
	text-align: center;
}

.button.white, main .button.white {
	color:#164444;
	background: #fff;
}

.button.squared {
	border-radius: 0;
}

.button.whiteborder {
	border:2px solid #fff;
}

.button.gold {
	background: #9f6a36;
	border:1px solid #fff;
}

main {
	padding-top:235px;
}

main#single {
	max-width:1650px;
	width:100%;
	margin:0 auto;
	padding-top:350px;
}

main h1, main h2 {
	font-family:"Montserrat", sans-serif;
}

main .serif {
	font-family: "Aleo", serif;
}

main h1 {
	font-size: 42px;
	font-weight: 500;
	margin: 10px auto 25px;
	max-width: 1650px;
	padding:0 15px;
	line-height: 40px;
}

main h2 {
	font-size: 38px;
	font-weight: 400;
	margin: 50px auto 15px;
	padding:0 25px;
	max-width: 1650px;
}

main h3 {
	font-family: "Montserrat", sans-serif;
	padding:0 25px;
	font-size: 30px;
	font-weight: 400;
	margin:40px auto;
	max-width: 1650px;
}

main h4 {
	font-family: "Montserrat", sans-serif;
	padding:0 25px;
	font-size: 28px;
	margin:35px auto;
	max-width: 1650px;
}

main a {
	font-family: "Montserrat", sans-serif;
	color: #164444;
	font-weight: 500;
	text-decoration: underline;
}

main .button a {
	color: #fff;
}

main .button.white a {
	color:#164444;
}

main ul, main ol {
	padding:10px 45px;
	margin:0 auto 0 auto;
	font-family: "Montserrat", sans-serif;
	max-width: 1600px;
}

main ul {
	list-style: disc;
}

main ul ul {
	padding:15px 25px;
	list-style: circle;
}

main ol {
	list-style:decimal;
}

main ol ol {
	padding:10px;
	list-style: lower-alpha;
}

main ul li, main ol li {
	margin:0 0 10px;
	line-height: 25px;
}

main p {
	padding:15px 25px;
	font-family: "Montserrat", sans-serif;
	font-size:16px;
	font-weight: 400;
	line-height: 26px;
	max-width: 1650px;
	margin:0 auto;
}

main sup, main p sup {
	vertical-align: super;
    font-size: smaller;
}

main cite {
	font-family: "Montserrat", sans-serif;
	font-size:13px;
	font-weight: 400;
	line-height: 26px;
	max-width: 1650px;
	margin:0 auto;	
	padding:5px 30px;
}

main cite em {
	font-family: "Montserrat", sans-serif;
	font-size:13px;
	font-weight: 400;
	line-height: 26px;
	max-width: 1650px;
	margin:0 auto;	
	padding:5px 30px;
}

main .wp-block-table {
	padding:15px 50px;
}

main table {
	max-width:1650px;
	font-family: "Montserrat", sans-serif;
	font-size:16px;
	font-weight: 400;
	line-height: 26px;
	margin:0 auto;
}

main table thead {
	background:#164444;
	color:#fff;
	text-align: left;
}

main table thead th {
	border:2px solid #fff;
	padding:10px;
}

main table td {
	padding:10px;
}

.searchForm input[type="text"] {
    width: 200px;
    height: 31px;
	padding-left:15px;
    position: relative;
    z-index: 1;
	border:2px solid #e8e8e8;
}
.searchForm input[type="submit"] {
    margin-left: -50px;
    height: 20px;
    width: 50px;
    position: relative;
    z-index: 10;
    background-image: url(img/caccn-magnify.png);
    background-color: transparent;
    border: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
	cursor: pointer;
}
/* END GENERAL */

/* HEADER */
header {
	position: fixed;
	width:100%;
	display:block;
	z-index:10;
}

#announcements {
	display:block;
	padding:15px 25px;
	background:#9f6a36;
	box-sizing: border-box;
	text-align: center;
}

#announcements a {
	color:#FFF;
	font-size:14px;
	line-height: 20px;
	font-weight: 500;
	font-family:"Montserrat", sans-serif;
}

#topNav {
	background: #164444;
	display:flex;
	justify-content: flex-end;
	padding:10px 25px 0;
	box-sizing: border-box;
}

#topNav ul {
	display:flex;
	justify-content: flex-end;
	align-items: center;
}

#topNav li {
	margin:0 0 0 15px;
}

#topNav li a {
	font-family: "Montserrat", sans-serif;
	color:#fff;
	font-weight: 400;
	font-size:14px;
	text-decoration: none;
}

#topNav li .button {
	border-radius:0;
	padding:5px;
	box-shadow: none;
	border:1px solid #fff;
	background: transparent;
}

#logoNav {
	display:flex;
	padding:10px 0px 0px 25px;
	box-sizing: border-box;
	background: #164444;
	align-items: stretch;
}

#mainLogo {
	width:20%;
	padding:10px 10px 10px 0;
	box-sizing: border-box;
	min-width:379px;
}

#mainNav {
	display: flex;
	width:80%;
	padding:15px 15px;
	box-sizing: border-box;
	align-items: flex-end;
	position: relative;
}

#mainNav div:first-of-type {
	width:100%;
}

#mainNav ul.menu {
	display:flex;
	justify-content: flex-end;
	width:100%;
	align-items: center;
}

#mainNav ul.menu li {
	margin-right:20px;
}

#mainNav ul.menu a {
	color:#FFF;
	text-decoration: none;
	font-family: "Montserrat", sans-serif;
	font-size:16px;
	font-weight: 500;
}

#mainNav ul.menu .menu-button a {
	padding:5px 10px;
	background: #9f6a36;
	border:1px solid #9f6a36;
	border-radius: 0;
	color:#fff;
	box-shadow: none;
	font-size:14px;
	white-space: nowrap;
}

#mainNav ul.menu .menu-button.grey a {
	background: #efefef;
	color:#164444;
	border:1px solid #efefef;
}

#mainNav .sub-menu {
	display:none;
}

#mobileMenuButton {
	display:none;
}

#mobileMenuButton a {
	font-size:30px;
	color:#000;
}

#subMenu {
	display: block;
	max-width:350px;
    opacity: 0;
    padding: 10px;
    position: absolute;
    top: 165px;
    left: 0;
    background: #FFF;
    z-index: 99;
    transition: .3s ease;
    -webkit-box-shadow: 0px 13px 10px 0px rgb(20 21 23 / 15%);
    -moz-box-shadow: 0px 13px 10px 0px rgba(20,21,23,.15);
    box-shadow: 0px 13px 10px 0px rgb(20 21 23 / 15%);
    border-radius: 0px 0px 5px 5px;
}

#subMenu.active {
	opacity: 1;
}

#subMenuItems {
    opacity: 0;
    transition: .3s ease;
}

#subMenuItems.active {
	opacity:1;
}

#logoNav #mainNav #subMenuItems ul {
	display:block;
}

#logoNav #mainNav #subMenuItems li {
	padding:10px 0;
	list-style: none;
}

#subMenuItems li a {
	font-family: "Montserrat", sans-serif;
	color:#000;
	font-weight: 400;
	font-size:14px;
	line-height: 20px;
	text-decoration: none;
}

.x-cd-login-wrapper- {
	padding:25px;
}

.x-cd-login-slim-form input.x-cd-slim-login-submit {
	width:100% !important;
}

.x-cd-login-slim-form .form-actions a {
	font-family: "Montserrat", sans-serif;
    color: #164444;
    font-weight: 500;
    text-decoration: underline;
}
/* END HEADER */

/*  BLOCKS */
.wp-block-button a {
	font-family: "Montserrat", sans-serif;
}

.donateCTA {
	position: relative;
	display: block;
	padding:0 12% 0 0;
	box-sizing: border-box;
}

.donateInner {
	padding:25px 35px;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.6);
	-moz-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.6);
	box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.6);
	background: url(img/ASP_Show-Your-Support_Background.png);
	background-size:100%;
	position:relative;
}

.donateInner h2, .donateInner p {
	text-align: center;
	color:#164444;
}

main .donateInner p {
	padding-bottom:75px;
}

main .donateInner .button {
	padding: .667em 1.333em;
	width:auto;
}

.donateCTA .amazonCTA {
	position: absolute;
	bottom:-40%;
	right:0px;
	width:275px;
	right:0;
	padding:15px;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.6);
	-moz-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.6);
	box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.6);
	background:#fff;
	text-align: center;
	border-radius: 5px;
}

.donateCTA .amazonCTA a, .donateCTA .amazonCTA p {
	font-size:12px;
	color: #164416;
}

.donateCTA .amazonCTA a.button {
	margin-top:5px;
	border:1px solid #164444;
}

.donateSecondary {
	position: absolute;
    right: 25px;
    bottom: 25px;
}

.donateSecondary .button {
}

.newsBreak {
	display:block;
	padding:0px 35px;
	box-sizing: border-box;
}

.newsBkg {
	width:100%;
	max-width:1650px;
	margin:0 auto;
	padding:50px 25px 100px;
	box-sizing: border-box;
	position: relative;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#164444+25,ffffff+25,ffffff+25 */
	background: #164444; /* Old browsers */
	background: -moz-linear-gradient(top,  #164444 45%, #ffffff 45%, #ffffff 45%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #164444 45%,#ffffff 45%,#ffffff 45%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #164444 45%,#ffffff 45%,#ffffff 45%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#164444', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */

}

.newsBkg h2 {
	padding-bottom:50px;
}

.newsBreak .newsItems {
	display:flex;
	justify-content: center;
	align-items: stretch;
	width:100%;
}

.newsBreak .newsItems article {
	background:#fff;
	width:23%;
	margin:0 1%;
	-webkit-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.6);
	-moz-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.6);
	box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.6);
}

.newsBreak .newsItems article img {
	width:100%;
	height: auto;
}

.newsBreak .newsItems article .date {
	color: #9f6a36;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 25px;
}

.newsBreak .newsItems article h2 {
	padding: 10px 25px;
    color: #164444;
    font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
    margin: 0;
}

.newsBreak .newsItems article a {
	text-decoration: none;
}

.newsBreak .newsItems article p {
	font-size:14px;
	line-height: 19px;
}

.featuredEvent {
	background:#164444;
	padding:25px;
	display: block;
	box-sizing: border-box;
	text-align: center;
	color:#fff;
	margin:10px auto 20px;
}

.featuredEvent .featuredEventDetails {
	background: #fff;
	color:#164444;
	padding:25px;
	margin:35px auto;
}

.featuredEvent .button {
	width:100%;
	max-width:250px;
}


.upcomingEvents {
	display: block;
	background: #fff;
	padding:25px;
	box-sizing: border-box;
	margin:10px auto 20px;
	color: #164444;
	height:95%;
}

.upcomingEvents h2 {
	text-align: center;
}

.upcomingEvents article {
	display:flex;
	justify-content: space-between;
	margin:20px auto;
}

.upcomingEvents .eventDate {
	width:50px;
}

.upcomingEvents .eventTitle {
	width:calc(100% - 50px);
}

.upcomingEvents .eventDate p:first-of-type, .upcomingEvents .eventTitle p {
	font-size:14px;
	color:#a1a2a4;
	font-weight: 400;
}

.upcomingEvents .eventTitle h2, .upcomingEvents .eventDate p:last-of-type {
	font-size:20px;
	color:#164444;
	font-weight: 500;
	text-align: left;
	padding:5px 0px;
	margin:0;
}

.upcomingEvents .viewAll {
	color:#9f6a36;
	font-family: "Montserrat", sans-serif;
	text-decoration: underline;
	margin:15px 0 15px 50px;
}

.journalBreak {
	display: flex;
	max-width:1650px;
	padding:15px 25px;
	margin: 50px auto 100px;
	box-sizing: border-box;
	background: url(img/ASP_Monkey-Break_Background.png);
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

.journalBreakImage {
	width:35%;
	margin-right:2%;
	position: relative;
}

.journalBreakImage img {
	position: absolute;
	transform: scale(1.05);
	max-height: 115%;
}

.journalBreakText {
	width:50%;
	margin-left:5%;
	text-align: center;
	color:#fff;
}

.journalBreakText h2 {
	font-family: "Aleo", serif;
}

.journalBreakText .featuredJournalArticle {
	background:#fff;
	color:#164444;
	padding:25px;
	box-sizing: border-box;
}

.journalBreakText .featuredJournalArticle h2 {
	font-size:24px;
}

.journalBreakText .featuredJournalArticle .button {
	width:100%;
	max-width:250px;
}

.wp-block-kadence-accordion {
	max-width:1600px;
	margin:0 auto;
	padding:50px 25px;
	box-sizing: border-box;
}

.wp-block-image figcaption {
	font-family: "Montserrat", sans-serif;
	font-size:13px;
}

.wp-block-quote {
	border-left:3px solid #9f6a36;
}

.imageBreak {
	display:flex;
	width:100%;
	padding:15px 25px 0;
	box-sizing: border-box;
	flex-wrap:wrap;
}

.imageBreak .breakImg {
	width:25%;
	margin-right:-50px;
	margin-top:-15px;
	position: relative;
}

.imageBreak .breakImg img {
	min-width:90%;
}

.imageBreak .breakContent {
	background:#164444;
	color:#fff !important;
	width:75%;
	padding: 60px 0 50px 65px;
	box-sizing: border-box;
}
main .imageBreak .breakContent a {
	color:#9f6a36;
}

.blocks-gallery-grid figcaption, .wp-block-gallery figcaption {
    padding: 0 55px;
	font-family: "Montserrat", sans-serif;
	font-size:12px;
	box-sizing: border-box;
}

.wp-block-file {
	padding:10px 25px;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
	font-size:14px;
}
/* END BLOCKS */

/* ARCHIVE */
#archiveList {
	padding-top:50px;
}

#archiveList article {
	max-width:1400px;
	margin:50px auto;
	padding: 0 25px 50px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, .1);

}

#archiveList article  h2 {
	padding:0px;
}

#archiveList article p {
	padding:15px 0;
}

#archiveList article p.postDate {
	font-size:14px;
	padding:0 0 15px;
}

#archiveList article a {
	font-family: "Montserrat", sans-serif;
	font-size:16px;
	margin-top:15px;
	display:inline-block;
}
/* END ARCHIVE */

/* FOOTER */
footer {
	background:#164444;
	margin-top:75px;
}

#footerCTA {
	display:block;
	max-width:1200px;
	padding:50px 25px 35px;
	margin:0 auto;
	box-sizing: border-box;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}

#footerCTA .button {
	background:#9f6a36;
	border-bottom: 1px solid #fff;
	padding:20px;
	font-size:18px;
	box-shadow: none;
	width:100%;
	max-width: 250px;
}

#footerNav {
	display: block;
	max-width:1300px;
	margin:0 auto;
	padding:15px 25px 35px;
	box-sizing: border-box;
}

#footerNav ul {
	display: flex;
	justify-content:center;
	width:100%;
}

#footerNav ul li {
	padding:0 10px;
}

#footerNav ul li a {
	font-family: "Montserrat", sans-serif;
	font-size:16px;
	color:#fff;
	text-decoration: none;
}

#footerNav ul li ul {
	display:none;
}

#footerSocial {
	display:block;
	max-width:1200px;
	margin:0  auto;
	padding:35px 25px 60px;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}

#footerSocial ul {
	display:flex;
	justify-content: center;
}

#footerSocial ul li {
	padding:0px 15px;
}

#footerSocial ul li a {
	color:#fff;
	font-size:28px;
}

#legalInfo {
	max-width:1200px;
	padding:35px 25px;
	margin:0 auto;
	color:#fff;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-size:14px;
	line-height: 18px;
}
/* END FOOTER */

@media screen and (max-width:1605px) {
	#mainNav ul.menu a {
		font-size: 15px;
	}
}

@media screen and (max-width:1590px) {
	#mainNav ul.menu li {
		margin-right:15px;
	}

	#mainNav ul.menu a {
		font-size: 15px;
	}

	#mainNav ul.menu .menu-button a {
		font-size:13px;
	}
}

@media screen and (max-width:1500px) {
	#mainNav ul.menu li {
		margin-right: 10px;
	}

	#mainNav ul.menu a {
		font-size: 14px;
	}

	#mainNav ul.menu .menu-button a {
		font-size:10px;
	}
}

@media screen and (max-width:1375px) {
	#mainNav ul.menu a {
		font-size: 13px;
	}
}

@media screen and (max-width:1315px) {
	#mainNav ul.menu .menu-button {
		display:none;
	}

	#mainNav ul.menu a {
		font-size: 15px;
	}
}

@media screen and (max-width:1210px) {
	#mainNav ul.menu a {
		font-size: 13px;
	}
}

@media screen and (max-width:1150px) {
	#mainNav {
		display:none;
	}
	#mobileMenuButton {
		display: flex;
		background: #164444;
		width: 75%;
		justify-content: flex-end;
		align-items: center;
		padding: 15px 25px;
		box-sizing: border-box;
	}

	#mobileMenuButton a {
		color:#fff;
	}

	.journalBreakImage {
		width:45%;
		margin-right:5%;
	}

	.journalBreakText {
		width:45%;
		margin-left:5%;
	}

	.journalBreakImage img {
		position: relative;
		width:100%;
		transform: scale(1);
	}
}

@media screen and (max-width:1100px) {
	main .wp-block-columns {
		flex-wrap:wrap;
	}

	main .wp-block-columns .wp-block-column {
		width:100%;
		flex-basis: 100% !important;
	}

	main .wp-block-columns .wp-block-column:not(:first-child) {
		margin-left:0;
	}
}

@media screen and (max-width:1050px)  {
	.journalBreak {
		flex-wrap: wrap;
	}

	.journalBreakImage {
		width:100%;
		text-align: center;
		margin:0;
	}

	.journalBreakImage img {
		width:50%;
	}

	.journalBreakText {
		width:100%;
		margin:0;
	}
}

@media screen and (max-width:1024px) {
	.newsBreak .newsItems {
		flex-wrap: wrap;
	}

	.newsBreak .newsItems article {
		width:45%;
    	margin: 10px 2.5%;
	}
}

@media screen and (max-width:900px) {
	main h1 {
		font-size: 38px;
	}
	
	main h2 {
		font-size: 30px;
	}
	
	main h3 {
		font-family: "Montserrat", sans-serif;
		font-size: 24px;
	}
	
	main h4 {
		font-family: "Montserrat", sans-serif;
		font-size: 24px;
	}

	#footerNav ul li a {
		font-size:12px;
	}
}

@media screen and (max-width:700px) {
	.donateCTA {
		padding:0 0 217px 0;
		transition: .1s ease;
	}

	.donateInner {
		text-align: center;
	}

	.donateCTA .amazonCTA {
		bottom:0;
		left:50%;
		transform:translateX(-50%);
	}

	.newsBreak .newsItems article {
		width:100%;
	}

	.imageBreak .breakImg {
		width:100%;
		margin:0 auto;
	}

	.imageBreak .breakContent {
		width:100%;
		padding:50px 25px;
	}

	#footerNav {
		display:none;
	}
}

@media screen and (max-width:600px) {
	main h1 {
		font-size: 30px;
	}
	
	main h2 {
		font-size: 24px;
	}
	
	main h3 {
		font-family: "Montserrat", sans-serif;
		font-size: 18px;
	}
	
	main h4 {
		font-family: "Montserrat", sans-serif;
		font-size: 18px;
	}

	#topNav li a {
		font-size:11px;
	}

	#logoNav {
		padding:10px 0 0 15px;
	}

	#mainLogo {
		width:75%;
		min-width: auto;
	}

	#mobileMenuButton {
		width:25%;
	}

	#mobileMenuButton a {
		display:block;
		margin:0 auto;
	}

	#mobile-menu-wrap {
		width:100%;
		min-width: auto;
	}

	main {
		padding-top: 260px;
	}

	main#single {
		padding-top:300px;
	}
}