/*
 * Notes:
 * - primary font = Roboto
 * - 
 * - CAF Gray = #4e4f54
 * - CAF Red = #D3242A
 * - CAF Blue = #253671
 * - Header/footer blue = #5D89B4
 * - Light blue = #79a8c7
 */



/**
 * General Styles
 */

body {

	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-weight: 300;
	letter-spacing: 0.7px;
}

body.admin-bar {
	padding-top: 0;
}

div.hero-outer {
    width: 1000px; /* some width amount needed */
    height:410px;
    margin: 0 auto;
    overflow: visible;
}

div.hero-inner {
    position: relative;
    float: right; /* this was added and display removed */
    right: 50%;
}

.hero-inner img {
}
.hero-text-box {
    position: relative;
    text-align: center;
    top: -130px;
}
.emphasis-box {
    background-color: #fe0000;
    color: white;
    /*text-transform: uppercase;*/
    font: bold 14px 'Roboto Condensed', Arial, Helvetica, sans-serif;
    position: absolute;
    left: calc(50% - 144px);
    top: calc(100% - 90px);
    padding: 3px;
}
.hero-text-box h1 {
    font-family: 'Merriweather',Helvetica,Arial,sans-serif !important;
    font-weight: 700;
    font-size: 50px;
    color:white;
}

div.hero-inner img {
    position: relative;
    right: -50%; /* this was changed from "left" in original */
}
.who-we-are-section {
    padding:50px 0;
    font-family: 'Merriweather',Helvetica,Arial,sans-serif !important;
    text-align: center;
}

.blogs-section {
    padding: 100px 0;
    text-align: center;
}
.get-involved-section {
    padding: 100px 0;
    text-align: center;
}
/*
body::after {
	background: url('../img/160330_SupremeCourt.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	content: ' ';
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0.2;
	z-index: -1;
}
*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-weight: 900;
}

a, a:focus, a:hover {
	color: #4e4f54;
	text-decoration: underline;
}



.btn {
	padding: 0.8rem 2rem;
	white-space: normal;
	border: 2px solid transparent;
	border-radius: 0;
	font-size: 0.8rem;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: none;
}

.btn-primary {
    background-color: #222222;
    border-color: #222222;
    color: #FFF;
}
    .btn-primary:hover {
        background-color: #FFF;
        border-color: #222222;
        color: #222222;
    }
    .btn-primary.donate-btn {
        background-color: #fe0000;
        border-color: #fe0000;
        color: #FFF;
    }
.grey-container {
    background-color: #e1e1e1;
    padding:40px 0;
}
.btn-outline-primary {
    border-color: #253671;
    color: #253671;
}
.btn-outline-primary:hover {
	background-color: #253671;
	border-color: #253671;
	color: #FFF;
}

.btn-secondary {
	background-color: #4e4f54;
	border-color:#4e4f54;
	color: #FFF;
}
.btn-secondary:hover {
	background-color: #4e4f54;
	border-color: #4e4f54;
	color: #DDD;
}

.btn-outline-secondary {
	border-color: #4e4f54;
	color: #4e4f54;
}
.btn-outline-secondary:hover {
	background-color: #4e4f54;
	border-color: #4e4f54;
	color: #FFF;
}

.btn-outline-light {
	border-color: #FFF;
	color: #FFF;
}
.btn-outline-light:hover {
	background-color: #FFF;
	border-color: #FFF;
	color: #4e4f54;
}


.text-caf-red {
	color: #D3242A;
}

.text-caf-blue {
	color: #253671;
}

.text-caf-gray,
.text-caf-grey {
	color: #4e4f54;
}


blockquote {
	border-left: 8px solid #D3242A;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	padding-left: 1rem;
	font-style: italic;
	font-weight: 700;
}


/* From https://codex.wordpress.org/Wrapping_Text_Around_Images#Important_Theme_Code */
img.alignright { float: right; margin: 0 0 1em 1em; }
img.alignleft { float: left; margin: 0 1em 1em 0; }
img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright { float: right; }
.alignleft { float: left; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

.alignnone { float: none; }





/**
 * Site Header
 */

.site-header {
	
}


.site-header .navbar {
	/*position: relative;*/
	overflow: visible;
	background: #FFF;
	color: black;
	text-transform: uppercase;
}

.site-header .navbar.fixed-top {
	top: 0;
}

.admin-bar .site-header .navbar.fixed-top {
	top: 46px;
}

.site-header .navbar .navbar-toggler {
	background: transparent;
	border: none;
	color: #FFF;
	font-size: 1.6rem;
}

.site-header .navbar .navbar-brand {
	width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.site-header .navbar .navbar-brand img {
	/*filter: brightness(0) invert(1);*/ /* Removes all color from image and makes it white */
}

.site-header .navbar .navbar-nav {
	text-align: center;
}

    .site-header .navbar .navbar-nav .nav-link {
        position: relative;
        color: #222222;
        font-weight: 500;
        text-decoration: none;
    }


.site-header .header-social {
	display: none;
	position: absolute;
	top: 1.2rem;
	right: 1.5rem; /* padding of last .nav-link and padding of .navbar */
}

.site-header .header-social-icons {
	text-align: right;
}

.header-social-icons .header-social-icon {
    display: inline-block;
    padding: 0 0.5rem;
    color: #fff;
    text-align: center;
}

.header-social-icons .header-social-icon .fa {
    padding: 0.3rem;
    border: 1px solid #afafaf;
    border-radius: 50%;
    width: 27px;
    height: 27px;
    background-color: #afafaf;
}
.social-final-cta-box .header-social-icon .fa {
    border: 1px solid #222222;
    background-color: #222222;
}
    /**
 * Site Footer
 */
    .site-footer {
    /*padding-top: 2rem;*/
    padding-bottom: 2rem;
    /*margin-top: 15px;*/
    background: #79a8c7;
    color: #FFF;
}


.site-footer > .row {
	padding: 2rem 15px;
}

.site-footer a,
.site-footer a:focus,
.site-footer a:hover,
.site-footer a:active,
.site-footer a:visited {
	color: #FFF;
	/*text-decoration: none;*/
	font-size: 0.8rem;
}


.site-footer .footer-newsletter {
	margin-bottom: 2rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
	background: #D3242A;
	text-align: center;
	font-style: italic;
}

.site-footer .footer-newsletter p {
	width: 100%;
	margin-bottom: 2rem;
}

.site-footer .footer-newsletter form {
	margin-bottom: 0.1em;
}

.site-footer .footer-newsletter input {
	min-width: 15rem;
	border: none;
	font-size: 0.8rem;
}

.site-footer .footer-newsletter button {
	cursor: pointer;
}

.site-footer .footer-newsletter p {
	margin-top: 2rem;
	margin-bottom: 0;
}
.site-footer .footer-newsletter p:first-child {
	margin-top: 0;
}


.site-footer .footer-logo {
	
}


.site-footer .footer-social {
	
}

.site-footer .footer-social-icons,
.footer-social-icons {
	text-align: center;
}

.site-footer a.footer-social-icon,
a.footer-social-icon {
	display: inline-block;
	padding: 0 0.5rem;
	color: #FFF;
	font-size: 1rem;
	text-align: center;
}

.site-footer a.footer-social-icon .fa,
 a.footer-social-icon .fa {
	padding: 0.3rem;
	border: 1px solid #FFF;
	border-radius: 50%;
	width: 27px;
	height: 27px;
}


.site-footer .footer-menus {
	font-size: 0.8rem;
}

.site-footer .footer-menus .menu-title {
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.site-footer .footer-menus .menu-title h5 {
	font-size: 0.8rem;
}

.site-footer .footer-menus .nav {
	margin-bottom: 1rem;
}

.site-footer .footer-menus .nav-item {
	display: block;
	width: 100%;
	text-align: center;
}

.site-footer .footer-menus .nav-link {
	padding-top: 0.1rem;
	padding-bottom: 0.1rem;
	color: #FFF;
	text-decoration: none;
}


.site-footer .footer-legal {
	padding-top: 1rem;
	font-size: 0.8rem;
	text-align: center;
}

.site-footer .footer-legal p {
	width: 100%;
	margin-bottom: 0;
}

.site-footer .footer-legal a,
.site-footer .footer-legal a:focus,
.site-footer .footer-legal a:hover,
.site-footer .footer-legal a:active,
.site-footer .footer-legal a:visited {
	color: #FFF;
}





/**
 * Site-wide notification bar
 */

.site-notify {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 32px;
	padding: 7px 15px;
	background: #D3242A;
	color: #FFF;
	font-size: 1rem;
	line-height: 1.1;
	letter-spacing: 0.7px;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	z-index: 1020; /* Behind the navbar */
}

.site-notify a,
.site-notify a:focus,
.site-notify a:hover, 
.site-notify a:active, 
.site-notify a:visited {
	color: #FFF;
	text-decoration: none;
}





/**
 * Page/Shared Content
 */

.page-content {
    margin-top: 94px;
}



.factstripes {
	
}

.factstripe, .factstripe:focus, .factstripe:hover, .factstripe:active, .factstripe:visited {
	background: #79a8c7;
	color: #FFF;
	text-decoration: none;
}

.factstripe .ftsp-image {
	/*min-height: 150px;*/
	padding-left: 0;
	padding-right: 0;
	background: transparent;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.factstripe .ftsp-image img {
	margin-bottom: 1px;
}

.factstripe .ftsp-text {
	display: flex;
	align-items: center;
	min-height: 125px; /*132px;*/
	padding: 1.5rem 2rem;
}

.factstripe .ftsp-text-rightarrow {
	padding-left: 3rem;
}
.factstripe .ftsp-text-rightarrow::before {
	content: ' ';
	position: absolute;
	top: 50%;
	left: 0.4rem;
	width: 0;
	height: 0;
	transform: translateY(-50%);
	z-index: 5;
	border-style: solid;
	border-width: 30px 0 30px 20px;
	border-color: transparent transparent transparent #547ca2;
}
.factstripe .ftsp-text-rightarrow::after {
	content: ' ';
	position: absolute;
	top: 0;
	/*right: 0;*/
	left: 0;
	width: 1rem;
	height: 100%;
	background: #547ca2;
}

.factstripe .ftsp-text-leftarrow {
	/*padding-right: 1rem;*/
}
.factstripe .ftsp-text-leftarrow::before {
	content: ' ';
	position: absolute;
	top: 50%;
	left: -1rem;
	width: 0;
	height: 0;
	transform: translateY(-50%);
	z-index: 5;
	border-style: solid;
	border-width: 30px 20px 30px 0;
	border-color: transparent #547ca2 transparent transparent;
}
.factstripe .ftsp-text-leftarrow::after {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	width: 1rem;
	height: 100%;
	background: #547ca2;
}

.factstripe .ftsp-title {
	margin-bottom: 0;
	font-size: 1.3em;
	font-weight: 500;
}

.factstripe .ftsp-excerpt {
	margin-top: 1em;
}

.factstripe .ftsp-excerpt p {
	margin-bottom: 0;
}

.factstripe .ftsp-facts {
	display: flex;
	align-items: center;
	padding: 1.5rem;
	padding-left: 2.5rem;
	background: #DDD;
	font-size: 0.9rem;
	color: #253671;
}

.factstripe .ftsp-facts-list {
	
}

.factstripe .ftsp-facts-list p:last-of-type {
	margin-bottom: 0;
}


.block-tag {
	display: inline-block;
	margin-right: 0.5em;
	margin-bottom: 1em;
	padding: 0.5em 1em;
	background: #253671;
	color: #FFF;
	font-size: 0.6rem;
	font-weight: 900;
	text-transform: uppercase;
}

.red-block-tag {
	background-color: #D3242A;
}


.modbar {
	/*margin-top: -15px;*/
	margin-bottom: 15px;
	padding: 1rem;
	background: #79a8c7;
	align-items: center;
	color: #FFF;
}

.modbar-title {
	margin-bottom: 0;
	font-size: 1.75rem;
	line-height: 1.2;
	font-weight: bold;
	text-transform: uppercase;
}

.modbar .search-form {
	display: block;
	width: 100%;
	font-size: 0.8rem;
}

.modbar .search-form input {
	border: none;
	font-size: 0.8rem;
}


.archive-filterbar {
	margin-top: 5rem;
	margin-bottom: 5rem;
	padding: 1rem;
	background: #D3242A;
	align-items: center;
	color: #FFF;
}

.archive-filter-form {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.archive-filter-form .form-group {
	margin-right: 1rem;
	padding-left: 0;
	padding-right: 0;
}

.archive-filter-form .form-group:last-of-type {
	margin-right: 0;
}

.archive-filter-form .form-group label {
	margin-bottom: 0.5rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 0.8;
}

.archive-filters {
	
}


.archive-filter {
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px !important;
	padding-right: 15px !important;
	font-size: 0.8rem;
	
	/* From https://stackoverflow.com/a/37462242 */
	-webkit-appearance: none;
    -webkit-border-radius: 0px;
	border-radius: 0;
	border-width: 0;
	background: #FFFFFF;
    background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='#444' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
    background-position: 97% 50%;
    background-repeat: no-repeat;
}

.archive-filters .btn {
	margin-right: 1rem;
}


.author-bio {
	align-items: center;
}

.author-bio .author-photo {
	text-align: center;
}

.author-bio .author-photo img {
	border-radius: 50%;
}

.author-bio .author-info {
	
}

.author-bio .author-name {
	margin-bottom: 0.5em;
	font-weight: 500;
}

.author-bio h4.author-name {
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 500;
	text-transform: uppercase;
}

.author-bio .author-links {
	margin-bottom: 0.6em;
}

.author-bio .author-links a {
	margin-right: 1rem;
	margin-bottom: 1rem;
	color: #4e4f54;
	text-decoration: none;
}

.author-bio .author-description {
	margin-bottom: 0.6em;
}





/**
 * Blog/archive/search pages
 */

body.blog, body.archive, body.search {
	
}


.archive-author {
	margin-top: 5rem;
}


.archive-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 5rem;
	padding-left: 0;
	padding-right: 0;
}

.archive-list .hentry {
	margin-bottom: 15px;
	padding-left: 0;
	padding-right: 0;
}

.archive-list .hentry a,
.archive-list .hentry a:focus,
.archive-list .hentry a:hover {
	text-decoration: none;
}

.archive-list .entry-wrapper {
	display: block;
	background: #FFF;
	outline: 1px solid #4e4f54; /* Not border because of some nasty rounding issues */
	color: #4e4f54;
}

.archive-list .entry-posttype {
	display: block;
	width: 100%;
}

.archive-list .entry-media {
	/*margin-left: -0.1px;*/ /* to remove an annoying white line from rounding errors */
}

.archive-list .entry-content {
	padding: 1rem;
}

.archive-list .entry-title {
	margin-bottom: 0.5rem;
	font-size: 1.75rem;
	line-height: 1.2;
	font-weight: bold;
	text-transform: uppercase;
}

.archive-list .entry-meta {
	margin-bottom: 0.5rem;
	font-size: 0.8em;
	color: #8e8e8e;
}

.archive-list .entry-author .photo {
	margin-right: 12px;
	border-radius: 50%;
}

.archive-list .entry-excerpt {
	
}

.archive-list .entry-excerpt p:last-child {
	margin-bottom: 0;
}

.archive-list .block-tag {
	margin-bottom: 0;
}


.archive-pagination {
	margin-bottom: 5rem;
	text-align: center;
}

.archive-pagination div[class*=col] {
	padding-left: 0;
	padding-right: 0;
}


.archive-featured {
	position: relative;
	width: 100%;
	margin-top: 5rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
}

.archive-featured .carousel {
	width: 100%;
}

.archive-featured .carousel .carousel-indicators li {
	width: 15px;
	max-width: 15px;
	height: 15px;
	margin-left: 5px;
	margin-right: 5px;
	background:#BBB;
	border: 3px solid #BBB;
	border-radius: 50%;
}

.archive-featured .carousel .carousel-indicators .active {
	background-color: #FFF;
	border-color: #FFF;
}


.archive-featured .carousel-inner .article-link.carousel-item {
	width: 100%;
	/*padding-bottom: 47.62%;*/
	padding-bottom: 35%;
	background: #FFF;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	color: #FFF;
	text-decoration: none;
}

.archive-featured .carousel .carousel-caption {
	display: flex !important;
	align-items: flex-start;
    top: 0;
	right: 0;
	bottom: 0;
    left: 0;
	height: 100%;
	padding: 2rem 4rem;
	background: #79a8c7;
	background: rgba(121, 168, 199, 0.8);
	text-align: left;
}

.archive-featured .carousel .carousel-caption::before {
	content: ' ';
	position: absolute;
	/*
	top: -10%;
	left: 62%;
	width: 50%;
	height: 110%;
	transform: rotate(10deg);
	z-index: 6;
	background: rgba(121,168,199,0.9);
	*/
	
	top: 0;
	left: 100%;
	width: 0;
	height: 0;
	/*transform: translateY(-50%);*/
	z-index: 5;
	border-style: solid;
	border-width: 425px 75px 0 0;
	border-color: rgba(121,168,199,0.8) transparent transparent transparent;
}

.archive-featured .carousel .carousel-caption::after {
	content: ' ';
	position: absolute;
	top: -20%;
	left: -20%;
	width: 130%;
	height: 150%;
	transform: rotate(10deg);
	z-index: 5;
	background: rgba(121,168,199,0.5);
}

.archive-featured .carousel-caption .article-snippet {
	z-index: 10;
}

.archive-featured .carousel-caption .article-title {
	margin-bottom: 3rem;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 1.2;
}

.archive-featured .carousel-caption .article-excerpt {
	margin-bottom: 3rem;
	font-size: 1.1rem;
	line-height: 1.1;
	color: #253671;
}

.archive-featured .carousel-caption .article-cta {
	text-align: left;
}

.archive-featured .carousel-caption .article-cta .btn {
	text-transform: uppercase;
}

.archive-featured .slide-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}


.search .archive-list {
	
}

.search.search-no-results .archive-list {
	/*margin-bottom: 5rem;*/
}





/**
 * Single posts/pages
 */

body.single {
	
}

.single .single-entry,
.page .single-entry {
	margin-top: 5rem;
	margin-bottom: 5rem;
}

.single-entry .hentry hr {
	margin: 2rem 0;
	border-color: #8e8e8e;
}

.single-entry h4 {
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: bold;
	text-transform: uppercase;
}

.single-entry .entry-header {
	margin-bottom: 2rem;
}

.single-entry .entry-header a,
.single-entry .entry-header a:focus,
.single-entry .entry-header a:hover,
.single-entry .entry-header a:active,
.single-entry .entry-header a:visited {
	text-decoration: none;
}

.single-entry .entry-title {
	margin-bottom: 1.2rem; /* Not 2rem to account for line height */
	font-size: 1.75rem;
	line-height: 1.2;
	font-weight: bold;
	text-transform: uppercase;
}

.single-entry .entry-title a,
.single-entry .entry-title a:focus,
.single-entry .entry-title a:hover,
.single-entry .entry-title a:active, 
.single-entry .entry-title a:visited {
	color: #4e4f54;
	text-decoration: none;
}

.single-entry .entry-meta {
	font-size: 0.8em;
	color: #8e8e8e;
}

.single-entry .entry-author-link,
.single-entry .entry-author-link:focus,
.single-entry .entry-author-link:hover,
.single-entry .entry-author-link:active,
.single-entry .entry-author-link:visited {
	color: #8e8e8e;
	text-decoration: none;
}

.single-entry .entry-author .photo {
	margin-right: 12px;
	border-radius: 50%;
}

.single-entry .entry-author .nickname {
	font-weight: 500;
}

.single-entry .entry-media {
	margin-bottom: 2rem;
}

.single-entry .entry-content {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #8e8e8e;
}

.single-entry .entry-content p:last-child {
	margin-bottom: 0;
}

.single-entry .entry-footer {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #8e8e8e;
}

.single-entry .entry-content h1:not(:first-child),
.single-entry .entry-content h2:not(:first-child),
.single-entry .entry-content h3:not(:first-child),
.single-entry .entry-content h4:not(:first-child),
.single-entry .entry-content h5:not(:first-child),
.single-entry .entry-content h6:not(:first-child) {
	margin-top: 2rem;
}

.single-entry .entry-content .entry-details {
	word-wrap: break-word;
	word-break: normal;
}


.single-entry .entry-footer .entry_recommendations {
	margin-bottom: 2rem;
}

.single-entry .entry-footer .entry_recommendation {
    display: inline-block;
    width: 32.0%;
    box-sizing: border-box;
    margin-right: 2%;
    margin-bottom: 0;
    vertical-align: top;
	text-decoration: none;
}

.single-entry .entry-footer .entry_recommendation:nth-of-type(3n) {
    margin-right: 0;
}

.single-entry .entry_recommendation .recommendation_image {
	margin-bottom: 0.2em;
}

.single-entry .entry_recommendation .recommendation_title {
	margin: 0.2em 0;
	font-size: 0.8rem;
	line-height: 1.2;
	font-weight: bold;
	text-transform: uppercase;
	color: #4e4f54;
}


.single-entry .entry-comments {
	
}

.entry-comments .comment-reply-title,
.entry-comments .comments-number {
	margin-bottom: 1.5rem;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: bold;
	text-transform: uppercase;
}


.entry-comments .comments {
	margin-bottom: 2rem;
}

.entry-comments .comment {
	margin-bottom: 1.5rem;
}

.entry-comments .comment .comment-img {
	
}

.entry-comments .comment .comment-img img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}

.entry-comments .comment .comment-meta {
	
}

.entry-comments .comment .comment-name {
	margin-bottom: 0rem;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
}

.entry-comments .comment .comment-date {
	margin-bottom: 0.5rem;
	display: inline-block;
	color: #8e8e8e;
	font-size: 0.8em;
}

.entry-comments .comment .comment-edit {
	margin-bottom: 0.5rem;
	display: inline-block;
	color: #8e8e8e;
	font-size: 0.8em;
}

.entry-comments .comment .comment-content {
	margin-top: 1rem;
}


.entry-comments .form-control {
	border-radius: 0;
	font-size: 0.8rem;
}

.entry-comments .comment-reply-link {
	display: none;
}


.reply-box .reply-btn {
	display: none;
}
.reply-box .reply-btn.collapsed {
	display: initial;
}





/**
 * Sidebars
*/

.page-sidebar {
	
}

.sidebar-widgets {
	padding: 0;
	list-style: none;
}


.sidebar-widgets .widget {
	margin-bottom: 30px;
}

.sidebar-widgets .widget ul {
	list-style-type: disc;
	padding-left: 1rem;
}


.sidebar-widgets .widget_search .widget-title {
	display: none;
}

.sidebar-widgets .widget_search .screen-reader-text {
	display: block;
	visibility: hidden;
	height: 0;
}

.sidebar-widgets .widget_search label {
	display: block;
	width: 100%;
}

.sidebar-widgets .widget_search .search-field {
	display: block;
	width: 100%;
	padding: 0.1em 0.5em;
	border: 2px solid #4e4f54;
	background: #FFF;
	color: #4e4f54;
}

.sidebar-widgets .widget_search .search-submit {
	display: block;
	width: 100%;
	padding: 0.1em 0.5em;
	border: 2px solid #4e4f54;
	background: #FFF;
	color: #4e4f54;
}





/**
 * Home/front page
 */

.home {
	
}

.home p {
	line-height: 1.2;
	letter-spacing: 0.2px;
}


.home .page-content {
	/*padding-top: 0;*/
    overflow:hidden;
}
.home .archive-list {
	margin-top: 0;
}


.home-section {
	position: relative;
	/*margin-bottom: 15px;*/
	background: #FFF;
}
.home-section:last-of-type {
	margin-bottom: 0;
}

.home-section-header {
	padding: 2rem;
	background: #EEE;
	color: #4e4f54;
	text-align: center;
}

.home-section-header h2 {
	margin-bottom: 0;
	font-size: 1.75rem;
	text-transform: uppercase;
}

    .home-section-header h2, .description-title {
        font-family: 'Merriweather',Helvetica,Arial,sans-serif !important;
        display: inline-block;
        position: relative;
        padding-left: 1.2em;
        font-size: 32px;
    }
        .home-section-header h2::before, .description-title::before {
            content: ' ';
            position: absolute;
            top: 0.15em;
            left: 0;
            height: 0.85em;
            width: 0.85em;
            background: url('http://centerforacademicfreedom.org/wp-content/uploads/2019/03/cropped-ADF_CAF_REV_2-300x300.png');
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
        }

.home-section-description {
	padding: 3rem;
	background: #79a8c7;
	color: #FFF;
}
 .description-title {
	margin-bottom: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
	text-transform: uppercase;
}
.home-section-description a:not(.btn),
.home-section-description a:not(.btn):focus,
.home-section-description a:not(.btn):hover,
.home-section-description a:not(.btn):active,
.home-section-description a:not(.btn):visited {
	color: #FFF;
	text-decoration: underline;
}

.home-section-description .btn {
	margin-top: 1.5rem;
	text-decoration: none;
}



.home-slider {
	
}

.home-slider .carousel {
	width: 100%;
}

.home-slider .carousel .carousel-indicators li {
	width: 15px;
	max-width: 15px;
	height: 15px;
	margin-left: 5px;
	margin-right: 5px;
	background:#BBB;
	border: 3px solid #BBB;
	border-radius: 50%;
}

.home-slider .carousel .carousel-indicators .active {
	background-color: #FFF;
	border-color: #FFF;
}


.home-slider .carousel-inner .article-link.carousel-item {
	width: 100%;
	/*padding-bottom: 47.62%;*/
	padding-bottom: 35%;
	background: #FFF;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	color: #FFF;
	text-decoration: none;
}

.home-slider .carousel .carousel-caption {
	display: flex !important;
	align-items: flex-start;
    top: 0;
	right: 0;
	bottom: 0;
    left: 0;
	height: 100%;
	padding: 2rem 4rem;
	background: #79a8c7;
	background: rgba(121, 168, 199, 0.8);
	text-align: left;
}

.home-slider .carousel .carousel-caption::before {
	content: ' ';
	position: absolute;
	/*
	top: -10%;
	left: 62%;
	width: 50%;
	height: 110%;
	transform: rotate(10deg);
	z-index: 6;
	background: rgba(121,168,199,0.9);
	*/
	
	top: 0;
	left: 100%;
	width: 0;
	height: 0;
	/*transform: translateY(-50%);*/
	z-index: 5;
	border-style: solid;
	border-width: 575px 100px 0 0;
	border-color: rgba(121,168,199,0.8) transparent transparent transparent;
}

.home-slider .carousel .carousel-caption::after {
	content: ' ';
	position: absolute;
	top: -20%;
	left: -20%;
	width: 130%;
	height: 150%;
	transform: rotate(10deg);
	z-index: 5;
	background: rgba(121,168,199,0.5);
}

.home-slider .carousel-caption .article-snippet {
	z-index: 10;
}

.home-slider .carousel-caption .article-title {
	margin-bottom: 2rem;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 1.2;
}

.home-slider .carousel-caption .article-excerpt {
	margin-bottom: 2rem;
	font-size: 1.1rem;
	line-height: 1.1;
	color: #253671;
}

.home-slider .carousel-caption .article-cta {
	text-align: left;
}

.home-slider .carousel-caption .article-cta .btn {
	text-transform: uppercase;
}

.home-slider .slide-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}



.home-media {
	
}

.home-media .home-section-header {
	z-index: 1;
	background: #79a8c7;
	color: #FFF;
}

.home-media .media-grid {
	z-index: 1;
}

.home-media .media-grid img {
	width: 100%;
}

.media-grid-featured {
	padding-bottom: 0;
}

.media-grid-featured,
.media-grid-featured:focus,
.media-grid-featured:hover,
.media-grid-featured:active,
.media-grid-featured:visited {
	text-decoration: none;
}

.media-grid-featured-thumbnail {
	background: #FFF;
    background-size: cover;
    background-position: center center;
	background-repeat: no-repeat;
}

/*
.home-media .media-grid-featured-thumbnail::after {
	content: ' ';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url('../img/playicon-white.png') no-repeat;
	background-size: 15%;
	background-position: center center;
}
*/

.media-grid-featured-thumbnail img {
	
}

.media-grid-featured-text {
	padding: 2rem;
	background: #EEE;
	color: #4e4f54;
}

.media-grid-featured-text h3 {
	margin-bottom: 1.6rem;
	line-height: 1.2;
	font-weight: bold;
	text-transform: uppercase;
}

.media-grid-featured-text .btn {
	margin-top: 1.6rem;
}

.media-grid-secondary {
	
}

.home-media .media-grid-secondary a {
	position: relative;
	/*margin-bottom: -1px;*/
	/*padding-right: 3px;
    padding-bottom: 5px;
	padding-left: 3px;*/
	padding-left: 0;
	padding-right: 0;
}
.home-media .media-grid-secondary a::before {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 0;
}

.home-media .media-grid-secondary a.format-video::after {
	content: ' ';
	position: absolute;
	bottom: 1.9rem;
	right: 1.9rem;
	width: 3rem;
	height: 3rem;
	background: url('../img/playicon-white.png') no-repeat;
	background-size: contain;
	background-position: center center;
}

.home-media .media-grid-secondary a.format-standard {
	
}

.home-media .media-grid-secondary .media-title {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	margin-bottom: -0.3em;
	padding: 8%;
	color: #FFF;
	font-size: 1.2rem;
	font-weight: 900;
	text-align: left;
	text-transform: uppercase;
}

.home-media .media-grid-more {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	z-index: 0;
	color: #FFF;
	/*font-size: 1.3em;*/
	text-transform: uppercase;
	text-decoration: none;
}

.home-media .media-grid-more::after {
	content: "";
	position: absolute;
	display: block;
	width: 110%;
	height: 110%;
	top: -5%;
	left: -5%;
	z-index: -1;

	background-image: url('../img/High-Court.jpg');
	background-size: cover;
	background-position: center center;

	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
}

.home-media .media-grid-more .btn {
	z-index: 10;
	margin-bottom: 0;
}



.home-about {
	
}

.home-about::after {
	background: url('../img/160330_SupremeCourt.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	content: ' ';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.2;
	z-index: 0;
}

.home-about .home-section-description,
.home-about .home-section-content-left {
	z-index: 1;
}
.stats-section{
    margin-bottom:200px;
    text-align:center;
}
.stats-section .caf-stats {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
    padding: 15px;
}

    .stats-section .caf-stats img {
        height: 115px;
        width: auto;
        margin-bottom: 1rem;
    }

    .stats-section .caf-stats span {
        display: block;
        color: #fe0000;
        font-size: 5rem;
        font-weight: 900;
        line-height: 1;
    }



.home-cases {
	
}


.home .factstripes .factstripe .ftsp-text {
	background: #EEE;
	color: #253671;
}
.home .factstripes .factstripe .ftsp-facts {
	background: #EEE;
	color: #4e4f54;
}

.home .factstripes .factstripe:nth-child(2n) .ftsp-text {
	background: #FFF;
}
.home .factstripes .factstripe:nth-child(2n) .ftsp-facts {
	background: #FFF;
}

.home .factstripe .ftsp-text-rightarrow::before {
	border-left-color: #DDD;
}
.home .factstripe .ftsp-text-rightarrow::after {
	background: #DDD;
}
.home .factstripe .ftsp-text-leftarrow::before {
	border-right-color: #DDD;
}
.home .factstripe .ftsp-text-leftarrow::after {
	background: #DDD;
}





/** 
 * Pages
 */

body.page:not(.home) .entry-content,
body.page:not(.home) .entry-footer {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}





/** 
 * Cases - archive
 */

.post-type-archive-caf_case {
	
}

.archive-cases-search {
	
}

.archive-cases-map-container {
	box-sizing: border-box;
	position: relative;
	margin-top: 5rem;
	margin-bottom: -5rem;
	padding: 0;
	background: #DDD;
}

.archive-cases-map-wrapper {
	overflow: auto;
	padding: 2rem;
	border: 1px solid #DDD;
}

.archive-cases-map {
	position: relative;
	max-width: none;
}

.archive-cases-map #cases-map {
	display: block;
	width: 100%;
	height: 100%;
}

.archive-cases-map #cases-map path,
.archive-cases-map #cases-map circle {
	stroke: #DDD !important;
	stroke-width:1px;
	stroke-linejoin: round;
	fill: #FFF !important;
}

/*
.archive-cases-map #cases-map path.state-fill,
.archive-cases-map #cases-map circle.state-fill {
	fill: #79a8c7 !important;
}

.archive-cases-map #cases-map path.state-highlight,
.archive-cases-map #cases-map circle.state-highlight {
	fill: #D3242A !important;
}
*/

/*
.archive-cases-map #cases-map path:hover,
.archive-cases-map #cases-map circle:hover {
	stroke:#DDD !important;
	stroke-width:2px;
	stroke-linejoin: round;
	fill: #79a8c7 !important;
	cursor: pointer;
}
*/

.archive-cases-map .case-map-points {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.archive-cases-map .case-map-point {
	position: absolute;
	top: 0%;
	left: 0%;
	transform: translate(-50%,-100%);
	width: 3px;
	height: 10px;
	background: #4e4f54;
	z-index: 0;
}

.archive-cases-map .case-map-point:hover {
	z-index: 1;
}

.archive-cases-map .case-map-point::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-38%,-90%);
	border: 5px solid #D3242A;
	border-radius: 50%;
}

.archive-cases-map .case-map-point:hover::before {
	z-index: 1;
}

.archive-cases-map .case-map-point .case-map-point-hover {
	display: none;
	position: absolute;
	top: 0;
	left: 85%;
	transform: translate(0,-115%);
	padding: 1rem;
	width: auto;
	min-width: 8rem;
	max-width: 12rem;
	text-align: center;
	background: #79a8c7;
	color: #FFF;
	z-index: 0;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: bold;
	text-transform: uppercase;
}

.archive-cases-map .case-map-point:hover .case-map-point-hover {
	display: block;
}

.archive-cases-map .case-map-point .case-map-point-hover::before {
	content: '';
	position: absolute;
	top: 95%;
	left: 10%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 1em 1em 0 0;
	border-color: #79a8c7 transparent transparent transparent;
}

.archive-cases-map .case-map-point .case-map-point-hover::after {

	content: '';
	position: absolute;
	top: 100%;
	left: 0%;
	width: 1em;
	height: 1.5em;
	background: transparent;
}

.archive-cases-map-container .case-map-zoomers {
	position: absolute;
	top: 0;
	left: 0;
	background: #FFF;
}

.archive-cases-map-container .case-map-zoomers span {
	display: block;
	padding: 5px;
	color: #4e4f54;
	border: 1px solid #4e4f54;
	cursor: pointer;
}

.archive-cases-map-container .case-map-zoomers span:last-child {
	border-top: none;
}


.archive-cases-list {
	
}

.archive-cases-list .factstripe {
	margin-bottom: 5rem;
}

.case-title-party {
	display: block;
	/*text-transform: uppercase;*/
}
.case-title-sep {
	display: block;
	margin-bottom: 0.2em;
	font-style: italic;
	color: #D3242A;
	font-family: "Garamond Cursive", Garamond, Verand, serif;
	font-weight: 900;
}





/** 
 * Cases - single
 */

.single-case-header {
	margin-top: -15px;
	background: #79a8c7;
	/*margin-bottom: 2rem;*/
}

.single-case-thumb {
	padding-left: 0;
	padding-right: 0;
}

.single-case-meta {
	display: flex;
	/*text-align: center;*/
}

.single-case-title {
	width: 100%;
	margin-top: 1rem;
	margin-bottom: 1rem;
	color: #FFF;
	/*text-transform: uppercase;*/
}

.single-case-content {
	
}

.single-case-summary {
	padding: 15px 15px 0;
	color: #253671;
}

.single-case-summary img {
	max-width: 100%;
	height: auto;
}

.single-case-summary .single-case-summary-title {
	margin-bottom: 15px;
	text-transform: uppercase;
}

.single-case-sidebar {
	padding: 15px;
	background: #f2f2f2;
	color: #79a8c7;
}

.single-case-sidebar hr {
	border-top: 2px solid #79a8c7;
}

.single-case-sidebar h6,
.single-case-sidebar .h6 {
	margin-bottom: 1rem;
	font-weight: bold;
}

.single-case-scoreboard {
	color: #253671;
}

.single-case-media {
	
}

.single-case-media-articles {
	
}

.single-case-media-article {
	padding-bottom: 0.8rem;
}

.single-case-media-article:last-of-type {
	padding-bottom: 0;
}

.single-case-media-article-title {
	font-size: 0.9rem;
}

.single-case-media-article-date {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
}

.single-case-share {
	
}

.single-case-social-shares {
	
}

.single-case-social-share {
	display: inline-block;
	padding: 0 0.25rem;
	color: #79a8c7;
	text-decoration: none;
	text-align: center;
}

.single-case-social-share:first-of-type {
	padding-left: 0;
}

.single-case-social-share:hover,
.single-case-social-share:active {
	color: #253671;
}

.single-case-social-share .fa {
	padding: 0.3rem;
	border: 2px solid #79a8c7;
	border-radius: 50%;
	width: 27px;
	height: 27px;
}

.single-case-social-share:hover .fa,
.single-case-social-share:active .fa {
	border-color: #253671;
}



.single .type-caf_case .entry-content,
.single .type-caf_case .entry-footer {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}





/**
 * News - Archive
*/

.archive-list .type-caf_news .entry-media {
	/*margin-bottom: -0.1px;*/
	/*margin-left: -0.1px;*/
	background: #fff;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.type-caf_news .entry-media img {
	
}


.type-caf_news.format-video .entry-media {
	position: relative;
}

.type-caf_news.format-video .entry-media::after {
	content: ' ';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url('../img/playicon-white.png') no-repeat;
	background-size: 15%;
	background-position: center center;
}

.single .type-caf_news.format-video .entry-media::after {
	content: none;
}

.single .type-caf_news .entry-footer {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}





/**
 * Events - Archive
*/

.single .type-caf_event .entry-content,
.single .type-caf_event .entry-footer {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}





/**
 * Shortcodes
*/

.shortcode- {
	
}





/** 
 * Media Queries
 */

/* Extra large devices (large desktops) */
/* No media query since the extra-large breakpoint has no upper bound on its width */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199px) {
	
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991px) {
	.archive-pagination a {
		width: 100%;
	}
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
	/* .navbar-nav .dropdown-menu {
		display: block;
	} */
	
	.navbar-collapse .navbar-nav {
		padding-left: 12px;
		padding-right: 12px;
	}

	.page-content {
		padding-top: 15px;
	}
	
	.footer-newsletter span {
		margin-bottom: 1rem;
	}
	
	.modbar-title {
		margin-bottom: 1rem;
		text-align: center;
	}
	
	.single .single-entry,
	.page .single-entry {
		margin-top: 2rem;
	}
	
	.archive-filterbar {
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
	.archive-list {
		margin-top: 1rem;
	}
	
	.author-bio .author-photo {
		margin-bottom: 1.5rem;
	}
	
	.home-slider,
	.archive-featured,
	.archive-cases-map {
		display: none;
	}
	
	.factstripe .ftsp-image {
		display: none;
	}
	
	.media-grid-featured-thumbnail {
		background-image: none !important;
	}
	
	.home-media .media-grid-more {
		min-height: 56vw;
	}
	
	.home-about .caf-stats {
		margin-top: 15px;
		margin-bottom: 15px;
	}

	.archive-cases-map-container {
		display: none;
	}
	
	.archive-list .type-caf_news .entry-media {
		background-image: none !important;
	}
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
	
}





/* Extra small devices (portrait phones, less than 576px) */
/* No media query since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px){
	
	body {
		/*padding-top: 32px;*/ /* For site notification bar */
	}
	
	
	
	.site-footer .footer-upper .footer-menu .menu-items {
		text-align: left;
	}
	
	.site-notify {
		/*display: block;*/
	}
	
	.home-slider .carousel .carousel-caption {
		align-items: center;
		width: 40%;
		padding-right: 0.5rem;
	}
	
	.home-media {
		padding-top: 45px;
		padding-bottom: 45px;
	}
	
	.media-grid-featured-thumbnail img {
		display: none;
	}
	
	.archive-modbar, .archive-list .hentry {
		margin-bottom: 5em;
	}
	
	.archive-featured .carousel .carousel-caption {
		align-items: center;
		width: 40%;
		padding-right: 0.5rem;
	}
	
	.archive-list .entry-wrapper {
		margin-left: 2em;
		margin-right: 2em;
	}
	.archive-list .hentry:nth-child(2n+1) .entry-wrapper {
		margin-left: 0;
	}
	.archive-list .hentry:nth-child(2n) .entry-wrapper {
		margin-right: 0;
	}
	.post-type-archive-caf_news .archive-list .hentry .entry-wrapper {
		margin-left: 0;
		margin-right: 0;
	}
	
	.archive-list .type-caf_news .entry-media img {
		display: none;
	}
	
	.entry-comments .comment .comment-meta {
		padding-left: 0;
	}
	
	
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	
	.site-header .navbar.fixed-top {
		height: 95px;
	}
	
	/*.site-header .navbar.fixed-top,*/
	.admin-bar .site-header .navbar.fixed-top {
		top: 32px;
	}
	.site-header .navbar .navbar-brand {
		height: 100%;
		width: auto;
		margin-left: 0;
		margin-right: 0;
		padding: 1rem;
		flex-basis: auto;
	}
	.site-header .navbar .navbar-brand img {
		height: 100%;
		width: auto;
	}
	.site-header .navbar .navbar-nav {
		width: 100%;
		display: block;
		text-align: right;
	}

	.site-header .navbar .navbar-nav > li.nav-item {
		display: inline-block;
	}

        .site-header .navbar .navbar-nav .nav-link {
            padding-left: 0.75rem;
            padding-right: 0.75rem;
            color: #222222;
            font-weight: 500;
            font-size: 0.70rem;
        }

	.site-header .navbar .navbar-nav .dropdown-menu .nav-link {
		font-size: 0.8em;
		color: #4e4f54;
	}

	.site-header .navbar .navbar-nav .text-caf-red .nav-link {
		color: #D3242A;
	}

	.site-header .navbar .navbar-nav .text-caf-blue .nav-link {
		color: #253671;
	}

	.site-header .navbar .navbar-nav .text-caf-gray .nav-link,
	.site-header .navbar .navbar-nav .text-caf-grey .nav-link {
		color: #4e4f54;
	}
	
	.navbar-dark .navbar-nav .active>.nav-link:after,
	.navbar-dark .navbar-nav .nav-link.active:after,
	.navbar-dark .navbar-nav .nav-link.show:after,
	.navbar-dark .navbar-nav .show>.nav-link:after {
		content: '';
		position: absolute;
		bottom: -8px;
		left: 0;
		width: 100%;
		height: 3px;
		background: #4e4f54;

	}

	.site-header .navbar .navbar-nav .dropdown-menu {
		margin-top: 0;
	}

	.site-header .navbar .navbar-nav .dropdown-menu .nav-link {
		font-size: 0.8em;
		color: #4e4f54;
	}
	.site-header .header-social {
		display: block;
	}
	
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	.site-header .navbar .navbar-nav .nav-link {
		padding-left: 1rem;
		padding-right: 1rem;
		font-size: 1.0rem;
	}
	
}





/** print styles **/
@media print {
	
}