@font-face{
    font-family: 'Gotham-Bold';
    src: url('../fonts/Gotham-Bold.eot');
    src: local('☺'), url('../fonts/Gotham-Bold.woff') format('woff'),
                     url('../fonts/Gotham-Bold.ttf') format('truetype'),
                     url('../fonts/Gotham-Bold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'Gotham-Book';
    src: url('../fonts/Gotham-Book.eot');
    src: local('☺'), url('../fonts/Gotham-Book.woff') format('woff'),
                     url('../fonts/Gotham-Book.ttf') format('truetype'),
                     url('../fonts/Gotham-Book.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'Gotham-BookItalic';
    src: url('../fonts/Gotham-BookItalic.eot');
    src: local('☺'), url('../fonts/Gotham-BookItalic.woff') format('woff'),
                     url('../fonts/Gotham-BookItalic.ttf') format('truetype'),
                     url('../fonts/Gotham-BookItalic.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'Gotham-Medium';
    src: url('../fonts/Gotham-Medium.eot');
    src: local('☺'), url('../fonts/Gotham-Medium.woff') format('woff'),
                     url('../fonts/Gotham-Medium.ttf') format('truetype'),
                     url('../fonts/Gotham-Medium.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* Master layout */
/************************************************************
Global styles */

/* Partial CSS Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html, body {
    height: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}
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, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, select, input, option {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
    display: block;
}
audio, canvas, video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

:focus {
    outline: none;
}

table {
    border: 0 none;
    border-collapse: collapse;
    border-spacing: 0;
    max-width: 100%;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
}
td {
    vertical-align: top;
}
/* End Reset */

body {
    line-height: 1.5;
    font: 14px 'Gotham-Book';
    color: #242021;
}

::-moz-selection,
::selection,
mark {
	color: #fff;
	background-color: #004b85;
}
mark {
	padding: 1px;
}

button {
	border: none;
	color: inherit;
	background-color: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

/* Links */
a,
input[type="submit"] {
    display: inline-block;
    color: inherit;
    outline: none;
	transition: all 0.3s ease 0s;
}
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    outline: none;
}
a[href^="tel:"] {
    color: inherit;
}

/* generic links */
.col-left a:not([class]),
.col-right a:not([class]) {
	color: #004b85;
	font-family: 'Gotham-Medium', sans-serif;
}
.col-left a:not([class]):hover,
.col-right a:not([class]):hover {
	color: inherit;
}

/* generic bulleted lists */
.col-left ul:not([class]):not([style*="list-style"]),
.col-right ul:not([class]):not([style*="list-style"]),
.col-left ol:not([class]):not([style*="list-style"]),
.col-right ol:not([class]):not([style*="list-style"]) {
	margin: 20px auto;
}
.col-left ul:not([class]):not([style*="list-style"]) > li,
.col-right ul:not([class]):not([style*="list-style"]) > li,
.col-left ol:not([class]):not([style*="list-style"]) > li,
.col-right ol:not([class]):not([style*="list-style"]) > li {
	position: relative;
	padding-left: 20px;
}
.col-left ul:not([class]):not([style*="list-style"]) > li:before,
.col-right ul:not([class]):not([style*="list-style"]) > li:before {
	content: "";
	display: inline-block;
	height: 8px;
	width: 8px;
	border-radius: 25% / 25%;
	background-color: #f26b2a;
	position: absolute;
	top: 4px;
	left: 0;
}
.col-left ul:not([class]):not([style*="list-style"]) > li + li,
.col-right ul:not([class]):not([style*="list-style"]) > li + li,
.col-left ol:not([class]):not([style*="list-style"]) > li + li,
.col-right ol:not([class]):not([style*="list-style"]) > li + li {
	margin-top: 12px;
}

/* generic numbered lists */
.col-left ol:not([class]):not([style*="list-style"]),
.col-right ol:not([class]):not([style*="list-style"]) {
	list-style: none;
	line-height: 24px;
	counter-reset: orderList;
}
.col-left ol:not([class]):not([style*="list-style"]) > li,
.col-right ol:not([class]):not([style*="list-style"]) > li {
	padding-left: 16px;
}

.col-left ol:not([class]):not([style*="list-style"]) > li:before,
.col-right ol:not([class]):not([style*="list-style"]) > li:before {
	counter-increment: orderList;
	content: counter(orderList);
	position: absolute;
	left: 0;
	top: -1px;
	font-size: 16px;
	color: #bbb;
}

a img {
    border: none;
	transition: all 0.5s ease 0s;
}
img {
    max-width: 100%;
    height: auto;
}

hr {
	margin: 30px auto;
}

/* Form elements */
label i {
    margin-left: 2px;
    vertical-align: text-bottom !important;
}
input[type]:-webkit-autofill,
input[type]:-webkit-autofill:hover,
input[type]:-webkit-autofill:focus,
input[type]:-webkit-autofill:active { /* Fix input background with autocomplete */
    transition: background-color 5000s ease-in-out 0s;
}
input[type="search"] {
    -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}
input[type="checkbox"]:not(checked) {
    position: absolute;
    visibility: hidden;
}
input[type="checkbox"]:not(checked) + label:before {
    content: "";
    position: relative;
    top: -1px;
    vertical-align: middle;
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 8px;
    border: 1px solid #0b1016;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: #fff;
}
input[type="checkbox"]:checked + label:before {
    content: "\f00c";
    font: 9px 'Font Awesome\ 5 Pro';
    font-weight: bold;
    color: #0d8642;
}
input[type="submit"] {
    cursor: pointer;
}
input[type="submit"]::-moz-focus-inner { /* Fix extra button padding in Firefox */
    padding: 0;
    border: none;
    line-height: 1;
}
textarea {
    resize: none;
}

/* Default Placeholder styles */
::-webkit-input-placeholder{
/* WebKit browsers */
    color: #242021;
}
:-moz-placeholder{
/* Mozilla Firefox 4 to 18 */
    color: #242021;
    opacity: 1;
}
::-moz-placeholder{
/* Mozilla Firefox 19+ */
    color: #242021;
    opacity: 1;
}
:-ms-input-placeholder{
/* Internet Explorer 10+ */
    color: #242021;
    opacity: 1;
}
/* Headings */
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    line-height: normal;
}
h1 {
    font: 34px 'Gotham-Bold', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
}
h2{
    font: 28px/1.3 'Gotham-Bold', sans-serif;
    text-transform: uppercase;
}
h3 {
    font: 24px/34px 'Gotham-Medium', sans-serif;
    text-transform: uppercase;
}
h4,
.small-title {
    font: 18px/1.4 'Gotham-Bold', sans-serif;
}
h3 span:not([class]),h5 {
    display: block;
    font: 16px/24px 'Gotham-Bold', sans-serif;
    color: #ffc10e;
}
.sub-ql h3 span:not([class]) {
	font-size: 20px;
}
.large-text{
    font: 64px/64px 'Gotham-Bold', sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.large-title {
	font-size: 38px;
	line-height: 1.2;
	font-family: 'Gotham-Bold', sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.medium-title{
    font: 28px/34px 'Gotham-Medium', sans-serif;
    margin-bottom: 15px;
}
.medium-title-home {
    font: 37px/40px 'Gotham-Medium', sans-serif;
    margin-bottom: 45px;
    color: #004b85;
}
.small-title {
	color: #004b85;
	text-transform: capitalize;
}
/* Block-level */
address {
    font-style: inherit;
}
p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
}
p a { 
    
}


ul {
    list-style-type: none;
}
strong {
    font-weight: normal;
    font-family: 'Gotham-Bold';
}
sup {
    font-size: 11px;
}

/************************************************************
Generic Site Styles */
.flexbox {
    display: flex; 
    flex-wrap: wrap;
}
.flexbox.nowrap {
	flex-wrap: nowrap;
}
.flexbox.column {
	flex-direction: column;
}
.flexbox.al-center {
	align-items: center;
}
.flexbox.jst-center {
	justify-content: center;	
}
.flexbox.jst-ar {
	justify-content: space-around;
}
.flexbox.jst-btw {
	justify-content: space-between;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
    float: none !important;
}
.table.page,
.container {
    max-width: 1120px;
    margin: 0 auto;
}
.container {
    padding: 0 15px;
}
main .table.page,
.table.auto-height {
    height: auto;
}

.table.auto-width {
    width: auto;
}
.table.auto-all {
    height: auto;
    width: auto;
}
.row {
    display: table-row;
}
.cell {
    display: table-cell;
    vertical-align: top;
    height: 100%;
    float: none !important;
}

.padding {
    padding: 0px 15px;
}
.padding-left {
    padding-left: 15px;
}
.padding-right {
    padding-right: 15px;
}
.middle {
    vertical-align: middle;
}
.bottom {
    vertical-align: bottom;
}
.table-header-group {
    display: table-header-group;
}
.table-footer-group {
    display: table-footer-group;
}

/* Text alignment */
.align-left,
.left {
    text-align: left !important;
}
.align-center,
.center {
    text-align: center !important;
}
.align-right,
.right {
    text-align: right !important;
}

/* Container class to make iFrames responsive */
.frame-contain {
    position: relative;
    max-width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 */
                            /* 75% = 4:3 */
}
.frame-contain iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/************************************************************
Miscellaneous */
.clearfix:after {
    content: '.';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.pull-left {
    float: left;
}
.pull-right {
    float: right;
}
.relative {
    position: relative;
}
.full-size {
    width: 100%;
    height: 100%;
}

.on-top {
    position: relative;
    z-index: 1;
}

.hide {
    display: none !important;
}

.mob-only {
	display: none;
}

.no-scroll {
    overflow: hidden;
}
.nav-btn span, .nav-close-btn span,
i, [class*="fa-"], a:not([class*="fa-"]):before,
.top-nav li a:after, .sub-ctrl, .slick-arrow,
.btn, [class^=ico], [class^=ico]:before, [class^=ico]:after,
.stories-slider .slick-slide img,
.stories-wrapper h2, .stories-wrapper strong,
.stories-slider h3, .stories-slider h3:before,
.img-box:after,
.toggle-head{
	transition: all 0.3s ease 0s;
}
#menu,
.search-box,
.text-overlay,
.mission-inner > div{
	transition: all 0.5s ease 0s;
}
.move-down,
.stories-slider .slick-slide img,
.stories-slider .btn,
.stories-slider h3:before {
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

.search-box,
.show-search .top-menu,
.show-search .top-btn-menu,
.top-nav li a:after,
.text-overlay,
.soc-box:hover > [class^=fa]{
    opacity: 0;
    visibility: hidden;
}
.show-search .search-box,
.top-nav li a:hover:after,
.top-nav li.active a:after,
.ql-box:hover .text-overlay,
.stories-slider .slick-center h3,
.stories-slider .slick-center .person-box:hover .btn,
.soc-box:hover .text-overlay{
    opacity: 1;
    visibility: visible;
}
.banner .large-text:after,
.cta-box .cta-box-inner p:first-child:after,
/* .mission-wrapper .text-overlay h3:after, */
.sub-banner .large-title:after,
.main-content h1:after,
.difference-wrapper h2:before,
.short-divider {
    content: "";
    display: block;
    width: 86px;
    height: 2px;
    background: #ffc10e;
    margin-top: 20px;
}
.short-divider {
	border: none;
	margin: 30px 0;
}
.img-box {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.img-box:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
    background: rgba(28, 28, 28, 0.5);
}
.img-box .relative {
    z-index: 1;
}
.btn,
.button {
    display: inline-block;
    vertical-align: top;
    font: 16px 'Gotham-Medium';
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
    background: #004b85;
    text-align: center;
    min-width: 190px;
    padding: 16px 15px 15px;
    border-radius: 5px 5px 5px 5px;
}
.btn[class="btn"],
.button[class="button"] {
	    border: 2px solid #004b85;
}
.btn[class="btn"]:hover,
.button[class="button"]:hover {
	background-color: transparent;
	color: #242021;
}
.btn i {
    margin-left: 5px;
    color: #fff;
}
.btn-light {
    border: 2px solid #fff;
    background: none;
    padding: 15px 15px 12px;
}
.btn-light:hover {
    background: #ffc10e;
    border-color: #ffc10e;
}
.btn-light-blue {
    border: 2px solid #004b85;
    color: #004b85;
    background: none;
    padding: 15px 15px 12px;
}
.btn-light-blue:hover{
    background: #004b85;
    color: #fff;
}
.btn-blue {
    background: #004b85;
}
.btn-blue:hover {
    background: #013054;
}
.btn-blue:hover i {
    color: #f26b2a;
}
.btn-yellow {
    background: #ffc10e;
}
.btn-yellow:hover {
    background: #e9ad01;
}
.btn-yellow:hover i {
    color: #013054;
}
.btn-orange {
    background: #f26b2a;
}
.btn-orange:hover {
    background: #d2591e;
}
.btn-orange:hover i {
    color: #e9ad01;
}
.more-link,
.more-link-lg{
    text-transform: uppercase;
    font: 14px/24px 'Gotham-Bold';
    cursor: pointer;
}
.more-link:after,
.more-link-lg:after {
    content: "\f061";
    display: inline-block;
    margin-left: 8px;
    font: 14px/24px Font Awesome\ 5 Pro;
    font-weight: bold;
    transition: margin-left 0.25s ease 0s;
}
.more-link:hover:after,
.more-link-lg:hover:after {
	margin-left: 15px;
}

.more-link-lg{
    font: 16px 'Gotham-Book';
}
.more-link-lg:after{
    font-size: 16px;
}
.more-link-lg:hover{
    color: #004b85;
}
/* Icons */
[class^=ico] {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.ico-envelope:before,
.ico-envelope:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 59px;
}
.ico-envelope:hover{
    background-color: #fff;
}
.ico-envelope:before{
    background-image: url(../images/icons/envelope.png);
}
.ico-envelope:after{
    background-image: url(../images/icons/envelope-hvr.png);
    opacity: 0;
    visibility: hidden;
}
.ico-envelope:hover:before {
    opacity: 0;
    visibility: hidden;
}
.ico-envelope:hover:after{
    opacity: 1;
    visibility: visible;
}
i{
    font-style: normal;
}
.fa-donate:before{
    content: "\f4b9";
}
.fa-comment-alt-exclamation:before{
    content: "\f4a5";
}
.fa-car-side:before{
    content: "\f5e4";
}
.fa-books:before{
    content: "\f5db";
}
.fa-box-heart:before{
    content: "\f49d";
}
.fa-box-heart:before{
    content: "\f49d";
}
.fa-church:before{
    content: "\f51d";
}
.ico-cross{
    width: 61px;
    height: 66px;
    background: url(../images/icons/cross.png);
}
.social i{
    font-size: 24px;
}
.social a:hover i{
    color: #ffc10e;
}
.social a{
    margin-right: 16px;
}
.social a:last-child{
    margin-right: 0;
}
.text-overlay{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 2;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgba(28, 28, 28, 0.75);
}
.bg-yellow{
    background-image: url(../images/layout/bg-yellow.jpg);
}
.bg-blue{
    background-image: url(../images/layout/bg-blue.jpg);
}
.bg-orange{
    background-image: url(../images/layout/bg-orange.jpg);
}
/************************************************************
Slick Slider main styles */
.slick-initialized .slick-slide {
    z-index: 7 !important;
}
.slick-initialized .slick-slide.slick-active {
    z-index: 8 !important;
}
.slick-vertical .slick-slide {
    position: relative;
    border: none;
}
.slick-slide img {
    margin: 0 auto 25px;
}
.slider-control {
    position: absolute;
    bottom: 50%;
    left: 50%;
    max-width: 1140px;
    width: 100%;
    margin-left: -570px;
    text-align: center;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    z-index: 8;
}
.slick-arrow {
    width: auto;
    height: auto;
    color: rgba(255, 255, 255, 0.5);
    z-index: 9;
}
.slick-arrow:hover {
    color: #fff;
}
.slick-arrow:after {
    font:34px/1 Font Awesome\ 5 Pro;
    font-weight: 400;
}
.slick-arrow.slick-prev {
    left: 0;
}
.slick-arrow.slick-prev:after {
    content: "\f053";
}
.slick-arrow.slick-next {
    right: 0;
}
.slick-arrow.slick-next:after {
    content: "\f054";
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.slick-dots {
    bottom: 30px;
    height: 6px;
    line-height: 0;
    z-index: 9;
}
.slick-dots li {
    width: 6px;
    height: 6px;
    margin: 0 3px;
}
.slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
}
.slick-dots li.slick-active button {
    background-color: #fff;
}
.slick-dots li button:before {
    content: none;
}
.slick-dots li button{
    background: rgba(255, 255, 255, 0.5);
}

/* ------------ Pages.css -------------- */

/*=== HEADER ===*/
#header{
    height: 126px;
}
.header-wrapper{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-box-shadow: 0 2px 10px -3px rgba(16,26,48,0.2);
    -moz-box-shadow: 0 2px 10px -3px rgba(16,26,48,0.2);
    box-shadow: 0 2px 10px -3px rgba(16,26,48,0.2);
    z-index: 120;
}
.top-bar{
    background-color: #f4f4f4;
    position: relative;
    height: 45px;
}
.top-bar .container,
.header-wrapper .container{
    max-width: 1200px;
}
.top-bar .flexbox{
    flex-wrap: nowrap;
    justify-content: space-between;
}
.top-bar .flexbox > div:nth-child(1){
    width: 240px;
    background: #fff;
}
.top-bar .flexbox > div:nth-child(1),
.top-bar .flexbox > div:nth-child(2){
    height: 100%;
}
.top-bar .flexbox > div:last-child{
    align-self: center;
}
.top-btn-menu{
    flex-wrap: nowrap;
}
.top-btn-menu .btn{
    padding: 18px 15px 17px;
    border-radius: 0 0 5px 5px;
    margin: 0 5px;
}
.btn-blue{
    background: #004b85;
}
.btn-blue:hover{
    background: #013054;
}
.btn-blue:hover i{
    color: #f26b2a;
}
.btn-ltblue {
	background-color: #4078a4;
}
.btn-ltblue:hover {
	background-color: #004b85;
}
.btn-ltblue:hover i {
	color: #ffc10e;
}
.btn-yellow{
    background: #ffc10e;
}
.btn-yellow:hover{
    background: #e9ad01;
}
.btn-yellow:hover i{
    color: #013054;
}
.btn-orange{
    background: #f26b2a;
}
.btn-orange:hover{
    background: #d2591e;
}
.btn-orange:hover i{
    color: #e9ad01;
}
.top-menu li{
    display: inline-block;
    vertical-align: middle;
    margin-right: 26px;
    line-height: 22px;
}
.top-menu li:last-child{
    margin-right: 15px;
}
/* Search Box */
.top-bar .search-btn{
    font-size: 18px;
    max-width: 18px;
    margin: 0 20px 0 5px;
}
.top-bar .search-btn i{
    display: inline-block;
    width: 18px;
    transition: none;
    -webkit-transition: color 0.3s ease 0s;
    -moz-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}
.top-bar .search-btn:hover i{
    color: #e9ad01;
}
.top-bar .search-btn.close i{
    font-size: 28px;
    font-style: normal;
}
.search-box{
    position: absolute;
    left: 280px;
    top: 0;
    right: 82px;
    bottom: 0;
    z-index: 1;
    background: #f4f4f4;
    padding: 10px 15px 10px 35px;
}
.search-box .fa-search{
    font-size: 18px;
    vertical-align: middle;
    color: #e9ad01;
}
.search-form input[type=text]{
    vertical-align: middle;
    background: none;
    width: calc(100% - 25px);
    font: 14px 'Gotham-Book';
    padding: 5px 20px 5px 15px;
}
.header-menu{
    background: #ffffff;
    height: 81px;
}
.header-menu > .flexbox{
    justify-content: space-between;
    padding-right: 0;
}
.header-menu > .flexbox .flexbox{
    align-items: center;
}
.logo-wrapper{
    width: 240px;
/*     box-shadow: 0 30px 10px -9px rgba(16,26,48,0.2); */
}
.logo{
/*     width: 190px; */
	max-width: 100%;
    background: #ffffff;
    position: absolute;
    top: -45px;
}
.logo,
.logo img{
    display: block;
}
.top-nav{
    padding: 35px 0 0 5px;
    height: 100%;
}
.top-nav ul,
.top-nav li,
.top-nav a {
    height: 100%;
}
.top-nav li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 25px;
    position: relative;
}
.top-nav li a {
    display: block;
    font: 16px 'Gotham-Medium';
    text-transform: uppercase;
    color: #f26b2a;
}
.top-nav li.active a,
.top-nav li a:hover {
    color: #004b85;
}
.top-nav li a:after {
    content: "";
    height: 5px;
    width: 100%;
    background: #004b85;
    position: absolute;
    bottom: 0;
    left: 0;
}
.alert-wrapper {
    position: fixed;
    top: 175px;
    right: 0;
    padding: 30px;
    max-width: 400px;
    color: #fff;
    background-color: #f26b2a;
    border-bottom-left-radius: 6px;
    -webkit-transform: translate3d(100%,0,0);
    -ms-transform: translateX(100%);
    -ms-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
    z-index: 10;
    transition: all 0.2s linear 0s;
}
.alert-wrapper.show {
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translateX(0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.alert-wrapper .alert-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 65px;
    background: #f26b2a;
    color: #fff;
    border-radius: 5px 0 0 5px;
    padding-top: 5px;
    position: absolute;
    top: 0;
    right: 100%;
}
.alert-wrapper .alert-btn:hover{
    background: #d2591e;
}
.alert-wrapper .alert-btn i {
    font-size: 28px;
}
/*=== MAIN NAVIGATION ===*/
.nav-btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 82px;
    height: 100%;
    text-transform: uppercase;
	background-color: #004b85;
/*     background: url(../images/layout/bg-menu.jpg) repeat; */
}
.nav-btn:hover > *,
.nav-close-btn:hover > *{
    color: #ffc10e;
}
.nav-btn i,
.nav-close-btn i{
    font-size: 28px;
    display: block;
    margin-bottom: 5px;
}
.nav-btn span,
.nav-close-btn span,
.move-down{
    display: block;
    font: 11px 'Gotham-Book';
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-close-btn{
    text-align: center;
    position: absolute;
    top: 32px;
    right: 22px;
    background-color: transparent;
}
#menu{
    position: fixed;
    top: 0;
    right: -310px;
    bottom: 0;
    z-index: 130;
    color: #ffffff;
    min-height: 150px;
    width: 310px;
    overflow: hidden;
    min-width: 0;
}
.open-menu #menu{
    right: 0;
}
.main-nav {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    background: #004b85;
}
.main-nav nav {
/*     min-width: 310px; */
    padding: 90px 0 45px;
}
.main-nav .nav-btm-cotnent{
    padding: 25px 15px 0;
    text-align: center;
}
.main-nav .nav-btm-cotnent > a {
	max-width: 150px;
	margin-bottom: 30px;
}
.pih-logo {
	font-family: Helvetica;
	font-size: 18px;
	line-height: 1.15;
}
.main-nav .nav-menu > li{
    position: relative;
    padding: 0 0 0 40px;
}
.main-nav .nav-menu > li > a {
	display: block;
    font: 18px 'Gotham-Medium';
    text-transform: uppercase;
    padding: 11px 0;
    position: relative;
    margin-right: 70px;
}
.main-nav .nav-menu > li > a:hover,
.main-nav .nav-menu > li.active > a,
.sub-menu li a:hover,
.sub-menu li.active a{
    color: #ffc10e;
}
.main-nav .sub-menu{
    display: none;
    margin-left: -40px;
}
.main-nav .sub-menu li{
    margin: 0 0 1px;
}
.main-nav .sub-menu a{
    display: block;
    background: #4078a4;
    padding: 6px 15px 6px 40px;
}
.main-nav .sub-ctrl {
	-webkit-justify-content: center;
	justify-content: center;
	width: 40px;
    font: 34px Font Awesome\ 5 Pro;
    font-weight: 300;
    position: absolute;
    right: 22px;
    top: 4px;
    z-index: 1;
    text-align: center;
    cursor: pointer;
}
.main-nav .nav-menu > li.active .sub-ctrl{
    color: #ffc10e;
}
.main-nav .sub-ctrl.show{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 30px;
}
.main-nav .sub-ctrl:before{
    content: '\f105';
}
.main-nav .btn{
    margin-bottom: 34px;
}
/*=== TOP BANNER ===*/
.banner{
    position: relative;
    min-height: 500px;
}
.banner .top-slider {
    height: 100%;
}
.banner .single-banner {
    height: 100%;
    background-position: top center;
    background-attachment: fixed;
}
.banner .single-banner:after{
    background: rgba(28, 28, 28, 0.2);
}
.banner .container{
    height: 100%;
    z-index: 2;
}
.banner .flexbox {
    height: 100%;
    align-items: center;
}
.banner .slick-list,
.banner .slick-track{
    height: 100%;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
}
.banner .slick-dots{
    bottom: 80px;
}
.banner .banner-text{
    color: #fff;
    max-width: 625px;
    padding: 0 0 0 35px;
}
.banner-content,
.banner-content p{
    margin: 0 0 20px;
    font-size: 16px;
}
.banner .large-text{
    margin-bottom: 25px;
}
.banner .slick-arrow.slick-prev{
    left: calc(50% - 580px);
}
.banner .slick-arrow.slick-next{
    right: calc(50% - 580px);
}
.no-sub-banner {
	display: none;
}
.move-down {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 8;
}
.move-down:after {
    content: "\f107";
    display: block;
    font: 42px/18px Font Awesome\ 5 Pro;
    font-weight: 300;
    color: #fff;
    margin-top: 5px;
}
/*=== QUICK LINKS ===*/
.quick-links-wrapper{
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    padding: 55px 0 130px;
}
.quick-links-wrapper .container > .flexbox{
    height: 466px;
    justify-content: space-between;
}
.quick-links-wrapper .medium-title{
    color: #004b85;
    margin-bottom: 45px;
}
.ql-col{
    width: 31.7%;
}
.ql-box{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 15px;
}

.sub-ql {
	margin: 0 auto 45px;
}

.sub-ql .flexbox {
	justify-content: center;
}

.sub-ql .ql-box {
	display: inline-flex;
	margin: 10px 1%;
	flex-basis: 31%;
	min-height: 281px;
}

.sub-ql .ql-box .text-overlay p {
	font-size: 14px;
	line-height: 1.3;
	margin-bottom: 15px;
}

.ql-box .text-overlay h3 {
	line-height: 1.2;
}

.ql-col:first-child,
.ql-col:nth-child(3){
    align-content: space-between;
}
.ql-col:first-child .ql-box,
.ql-col:nth-child(3) .ql-box{
    height: 221px;
}
.ql-box > h3{
    color: #fff;
    position: relative;
    z-index: 1;
}
.ql-box .text-overlay{
    color: #fff;
    padding: 30px;
}
.ql-box .text-overlay:after{
    content: "";
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    position: absolute;
    top: 15px;
    left: 15px;
    border: 1px solid #fff;
    pointer-events: none;
}
.ql-box .text-overlay h3{
    width: 100%;
    margin-bottom: 15px;
}
.ql-box .text-overlay p{
    font-size: 16px;
    margin-bottom: 25px;
    width: 100%;
}
.ql-box .text-overlay .btn:hover{
    background: #fff;
    border-color: #fff;
    color: #004b85;
}
/*=== CALLOUT BANNER ===*/
.bar-callout{
    height: 415px;
    overflow: hidden;
}
.cta-box{
    width: 50%;
}
.cta-box:last-child {
    background: url(../images/layout/bg-orange.jpg) no-repeat;
    background-size: cover;
    color: #fff;
}
.cta-box .img-box:after {
    content: none;
}
.cta-info-circle {
    font: 18px/24px 'Gotham-Medium';
    color: #004b85;
    width: 272px;
    height: 272px;
    border: 10px solid #014a84;
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    padding: 85px 45px 15px 70px;
    position: absolute;
    top: -40px;
    left: -55px;
}
.cta-info-circle span {
    display: block;
    font: 28px/34px 'Gotham-Bold';
    color: #ffc10e;
}
.cta-box .cta-box-inner {
    width: 580px;
    padding: 20px 15px 20px 65px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}
.cta-box .cta-box-inner p {
    width: 100%;
    margin-bottom: 20px;
}
.cta-box .cta-box-inner p:first-child {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 30px;
}
.cta-box .btn:first-of-type {
    margin-right: 15px;
}
.cta-box .btn:first-of-type:hover {
    background: #004b85;
    border-color: #004b85;
}

.sidebar-cta-banner:not(:first-child) {
	margin-top: 30px;
}

.side-callouts > div {
	margin-bottom: 40px;
}

/*=== MISSION PROGRAMS ===*/
.mission-wrapper{
    padding-top: 60px;
}
.mission-wrapper h2{
    font-size: 64px;
    margin-bottom: 34px;
    color: #004b85;
}
.mission-wrapper h3{
    font-family: 'Gotham-Bold';
}
.mission-wrapper .flexbox{
    flex-wrap: nowrap;
    align-items: flex-start;
    min-height: 342px;
}
.mission-inner{
    overflow: hidden;
}
.mission-inner > div {
    display: flex;
    flex-wrap: nowrap;
    width: 66%;
    position: relative;
}
.mission-inner > div:first-child{
    left: -100%;
}
.mission-inner > div:last-child {
	width: 33%;
/*     margin-top: 57px; */
    right: -50%;
}
.mission-wrapper .ql-box {
    width: 50%;
    height: 285px;
    text-align: center;
    color: #fff;
}
.mission-inner > div:first-child .ql-box:last-child {
	margin-top: 57px;
}
.mission-inner > div:last-child .ql-box {
	width: 100%;
}
.mission-wrapper .img-box:after{
    background: rgba(161, 161, 161, 0.25);
}
.mission-wrapper .text-overlay{
    padding: 30px 15px;
}
/*
.mission-wrapper .text-overlay:after {
    content: none;
}
.mission-wrapper .text-overlay h3:after{
    margin: 15px auto 5px;
}
*/
.mission-wrapper .text-overlay p{
    font-size: 16px;
/*     margin-bottom: 5px; */
    padding: 0 15px;
}
.mission-wrapper .text-overlay span{
    text-transform: uppercase;
    font: 14px/24px 'Gotham-Bold';
} 
.mission-wrapper .more-link-lg{
    position: relative;
    top: 18px;
    z-index: 1;
}
/*=== STORIES OF HOPE ===*/
.stories-wrapper{
    position: relative;
    padding-top: 85px;
    text-align: center;
    background: url(../images/layout/bg-letters.jpg) no-repeat top center;
    background-size: cover;
}
.stories-wrapper:after{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 42px;
    background-color: #f4f4f4;
}
.stories-wrapper .container{
    position: relative;
    z-index: 1;
}
.stories-wrapper .container > a:hover h2{
    color: #004b85;
}
.stories-wrapper  p{
    font-size: 16px;
}
.stories-wrapper .container:hover strong{
    color: inherit;
}
.stories-wrapper h2{
    margin-bottom: 10px;
    color: #ffc10e;
}
.stories-wrapper strong{
    color: #004b85;
}
.stories-wrapper .more-link-wrap{
    position: relative;
    margin-top: -36px;
    z-index: 1;
}
.stories-wrapper .more-link-wrap a{
    padding-left: 20px;
    line-height: 39px;
    background-color: #f4f4f4;
}
.stories-slider .slick-arrow{
    color: rgba(35, 31, 32, 0.5);
}
.stories-slider .slick-arrow:hover{
    color: #231f20;
}
.slick-arrow .slick-arrow:after{
    font-size: 64px;
}
.stories-slider .slick-slide img {
    position: absolute;
    bottom: -85px;
    left: 50%;
    max-height: 100%;
    margin: 0;
    filter: grayscale(100%);
    transition: all 0.3s ease 0s;
}
.stories-slider .slick-current img {
	filter: grayscale(0%);
}
.stories-slider .person-box{
    position: relative;
    height: 362px;
    overflow: hidden;
}
.stories-slider .person-box img + img{
    opacity: 0;
    visibility: hidden;
}
.stories-slider .slick-center .person-box img{
    display: inline-block;
    bottom: 0;
    opacity: 1;
    visibility: visible;
}
.stories-slider h3{
    position: relative;
    margin-top: 5px;
    font-family: 'Gotham-Bold';
    color: #004b85;
    opacity: 0;
    visibility: hidden;
}
.stories-slider h3:before {
    content: "";
    position: absolute;
    top: -29px;
    left: 50%;
    width: 74px;
    height: 24px;
    background: url(../images/layout/triangle.png) no-repeat;
}
.stories-slider .btn{
    position: absolute;
    bottom: 52px;
    left: 50%;
    background: #ffc10e;
    border-color: #ffc10e;
    opacity: 0;
    visibility: hidden;
}

/*=== SIGNUP ===*/
.signup-wrapper{
    color: #fff;
    background-attachment: fixed;
}
.signup-wrapper:after{
    background: rgba(255, 193, 14, 0.5);
}
.signup-wrapper .container{
    max-width: 970px;
}
.signup-wrapper .flexbox{
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    height: 452px;
    padding: 45px 0;
}
.signup-wrapper .large-text{
    margin-bottom: 12px;
    font-size: 58px;
}
.signup-wrapper .ico-envelope{
    width: 148px;
    height: 148px;
    border: 3px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.signup-wrapper .ico-envelope:before,
.signup-wrapper .ico-envelope:after{
    margin: -29px 0 0 -29px;
}
.signup-wrapper:hover .ico-envelope{
    background-color: #fff;
}
.signup-wrapper:hover .ico-envelope:before {
    opacity: 0;
    visibility: hidden;
}
.signup-wrapper:hover .ico-envelope:after{
    opacity: 1;
    visibility: visible;
}
.signup-wrapper p{
    margin-bottom: 0;
}
.signup-wrapper .btn{
    min-width: 180px;
}
/*=== SOCIAL SECTION ===*/
.social-wrapper{
    padding: 85px 0 115px;
}
.social-wrapper .container{
    padding: 0 45px;
}
.soc-top{
    justify-content: center;
    align-items: center;
    color: #014a84;
    margin-bottom: 10px;
}
.soc-top .medium-title{
    margin-bottom: 0;
}
.soc-top .social{
    border-left: 3px solid #014a84;
    padding-left: 22px;
    margin-left: 22px;
}
.social-wrapper .more-link-wrap{
    margin-bottom: 40px;
}
.social-inner{
    height: 382px;
    flex-wrap: nowrap;
}
.social-inner .soc-col{
    width: 100%;
}
.social-inner .soc-col:first-child,
.social-inner .soc-col:last-child{
    width: 233px;
    flex-shrink: 0;
}
.social-inner .soc-col:nth-child(2){
    margin: 0 10px;
}
.soc-box{
    height: 255px;
    position: relative;
    color: #fff;
}
.soc-box.soc-large-box{
    height: 100%;
}
.soc-box + .soc-box{
    margin-top: 8px;
}
.soc-short{
    min-height: 119px;
    height: auto;
    /*height: 119px;*/
    background: #013054;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.social-inner .soc-col:last-child .soc-short{
    background: #004b85;
}
.soc-box .img-box{
    width: 100%;
    height: 100%;
}
.soc-box .img-box:after{
    content: none;
}
.soc-box > [class^=fa]{
    font-size: 20px;
    position: absolute;
    left: 20px;
    bottom: 12px;
}
.soc-box .date{
    font-size: 12px;
    margin-bottom: 0;
    width: 100%;
}
.soc-box.soc-large-box h4{
    font-size: 24px;
}
.soc-box .text-overlay{
    padding: 15px;
    text-align: center;
}
.soc-box.soc-large-box .text-overlay,
.soc-box.soc-short .text-overlay{
    background-color: rgba(28, 28, 28, 0.5);
}
.text-overlay-short{
    position: absolute;
    width: 100%;
    bottom: 0;
    min-height: 115px;
    padding: 15px 28px 15px 28px;
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(0,0,0,0.28) 23%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.9) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(0,0,0,0.28) 23%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.9) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(0,0,0,0.28) 23%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#e6000000',GradientType=0 );
}
.soc-box .text-overlay [class^=fa]{
    display: block;
    font-size: 34px;
    margin-bottom: 15px;
} 
.soc-box .text-overlay p{
    margin-bottom: 10px;
}
/*=== FOOTER ===*/
.footer-wrapper{
    background: #013054;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
}
.footer-wrapper .more{
    text-transform: uppercase;
}
.footer-wrapper .more:after{
    content: "\f105";
    font: 11px/1 Font Awesome\ 5 Pro;
    margin-left: 5px;
}
.footer-top{
    background: #004b85;
    padding: 30px 70px 35px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-top: -48px;
    z-index: 10;
}
.footer-top .medium-title{
    margin-bottom: 35px;
}
.logo-row{
    -webkit-justify-content: space-between;
    justify-content: space-between;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.logo-row:last-child {
	max-width: 720px;
    margin: 10px auto 0;
    width: 100%;
}
.footer-main{
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 40px 15px 30px;
}
.footer-main a:hover{
    color: #ffc10e;
}
.footer-main li,
.footer-main p:not(.medium-title){
    line-height: 20px;
}
.footer-menu{
    padding-top: 15px;
}
.footer-menu li{
    display: inline-block;
    vertical-align: top;
    margin-right: 22px;
}
.footer-menu li:last-child{
    margin-right: 0;
}
.footer-menu a{
    font-family: 'Gotham-Bold';
    text-transform: uppercase;
}
.footer-menu:last-child{
    margin-right: 0;
}
.footer-info{
    max-width: 440px;
    width: 100%;
}
.footer-info ul{
    border-bottom: 1px solid #004b85;
    padding-bottom: 20px;
    margin: 0 20px 25px 0;
}
.footer-bottom{
    padding: 12px 0 20px;
    border-top: 1px solid #004b85;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom span{
    vertical-align: middle;
}
.footer-bottom:after{
    width: calc(50% - 182px);
}
.jbsystems{
    display: inline-block;
    vertical-align: middle;
    background: url(/images/icons/logo-jb-systems.png) no-repeat;
	background-position: right center;
    width: auto;
	min-height: 33px;
    padding-right: 100px;
    padding-top: 5px;
    margin-left: 12px;
}
/*=== INNER PAGES ===*/

/* SUB BANNER */
.sub-banner{
    height: 345px;
    position: relative;
}
.sub-banner .img-box{
    justify-content: center;
    align-items: center;
}
.sub-banner .img-box:after{
    background: rgba(28, 28, 28, 0.15);
}
.sub-banner .flexbox{
    justify-content: flex-end;
    align-items: flex-end;
}
.sub-banner .banner-text{
    color: #fff;
    position: relative;
    z-index: 2;
    padding: 20px 0 45px;
}
.sub-banner .large-title{
    text-transform: none;
}

.sub-banner .banner-content p{
    margin-bottom: 0;
}
.sub-banner .banner-content span{
    display: block;
    margin-top: 20px;
}
.sub-banner .img-box:after,
.sub-banner-short .img-box:after{
    opacity: 1;
    visibility: visible;
}
.sub-banner-short{
    height: 85px;
}
/* BREADCRUMBS */
.breadcrumbs-wrapper{
    background: #f4f4f4;
    padding: 9px 0;
}
.breadcrumbs li{
    display: inline-block;
    line-height: 22px;
    vertical-align: middle;
    font-size: 14px;
    text-transform: capitalize;
    color: #282828;
}
.breadcrumbs li:after{
    content: "\f111";
    font: 6px Font Awesome\ 5 Pro;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px 0 4px;
}
.breadcrumbs li:last-child:after{
    content: none;
}
.breadcrumbs li:last-child{
    font-family: 'Gotham-Bold';
    color: #004b85;
}
/*=== MAIN CONTENT ===*/
.main-content{
    padding: 45px 0 50px;
}
.main-content:last-child {
	padding-bottom: 90px;
}
.main-content h1{
    color: #004b85;
}
.main-content h1:after{
    margin-top: 15px;
}
.main-content .col-left {
	max-width:647px;
}
.main-content .col-right .inner-box{
    max-width: 865px;
}
.main-content .sidebar{
    width: 365px;
    padding-left: 65px;
}

.sidebar small {
	font-size: 10px;
	line-height: 14px;
	font-style: italic
}
/*.sidebar > *:not(:last-child){
    margin-bottom: 20px;
    
}*/
.sidebar .sidebar-menu{
    margin-bottom: 60px;
}
.sidebar-menu h3 {
/*     text-transform: none; */
    text-transform: capitalize;
}

.sidebar-menu a {
    color: inherit !important;
}
.sidebar-menu li{
    border-bottom: 1px solid #ebebeb;
    padding: 2px 0;
}
.sidebar-menu li:last-child{
    border-bottom: none;
}
.sidebar-menu li a { 
    display: block;
    font-size: 16px;
    padding: 11px 15px 11px 0;
}
.sidebar-menu li a:hover{ 
    background: #f4f4f4;
    padding-left: 17px;
}
.sidebar-menu li.active a {
    font-family: 'Gotham-Bold';
}
.sidebar-cta-banner h3{
    font-size: 28px;
    color: #004b85;
    margin-bottom: 10px;
}
.sidebar-cta-banner p{
    margin-bottom: 0;
}
.sidebar-cta-banner .more-link{
    color: #004b85;
}
.sidebar h3{
    font-size: 28px;
    color: #004b85;
    margin-bottom: 10px;
}

/* Toggle Styles */
.toggle-list{
    margin-top: 30px;
}
.toggle-box{
    margin-bottom: 23px;
}
.toggle-box:last-child{
    margin-bottom: 0;
}
.toggle-box .toggle-head {
    font: 28px/34px 'Gotham-Bold';
    background: #f4f4f4;
    position: relative;
    padding: 12px 80px 12px 15px;
    cursor: pointer;
}
.toggle-box .toggle-head:after {
    content: '';
    font: 42px/42px 'Gotham-Medium';
    position: absolute;
    right: 40px;
/*     top: 7px; */
    top: 50%;
    margin-top: -21px;
}
.toggle-box .toggle-head:after{
    content: '+';
}
.toggle-box.toggle-open .toggle-head:after{
    content: '\02013';
/*     top: 4px; */
    right: 44px;
}
.toggle-box.toggle-open {
    padding: 0 0 8px;
}
.toggle-box.toggle-open .toggle-head {
    background: #004b85;
    color: #fff;
}
.toggle-box.toggle-open .toggle-head span {
    max-width: 500px;
}
.toggle-box.toggle-open:first-child .toggle-head{
    box-shadow: none;
}
.toggle-box .toggle-content {
    display: none;
    position: relative;
    padding: 10px 0 40px;
}
.toggle-box .toggle-content p{
    margin-bottom: 20px;
}
.toggle-box .toggle-content p:last-child{
    margin-bottom: 0;
}

.make-a-donation .toggle-content ul {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
}

/*=== DIFFERENCE SECTION ===*/

.difference-wrapper {
    padding: 50px 0 35px;
}
.difference-wrapper h2 {
    color: #004b85;
    margin-bottom: 15px;
}
.difference-wrapper h2:before {
    margin: 0 auto 35px;
}
.difference-wrapper .inner-box {
    max-width: 670px;
    margin: 0 auto 55px;
}
.difference-wrapper .info-box {
    width: 33.33%;
    padding: 0 35px;
    margin-bottom: 60px;
    text-align: center;
}
.difference-wrapper i,
.difference-wrapper img {
    font-size: 48px;
    margin-bottom: 10px;
}
.difference-wrapper h3 {
    white-space: nowrap;
    margin-bottom: 10px;
}
.difference-wrapper .ico-cross {
    margin-top: -18px;
}

.info-box a:hover h3 {
	color: #f26b2a;
}

.pagination {
	margin: 30px auto;
}

.pagination li {
	display: inline-block;
	margin-right: 2px;
}
.pagination li > * {
	display: block;
    width: 32px;
	height: 32px;
	border: 1px solid #BBB;
    border-radius: 2px;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    color: #717171;
    background-color: #FFF;
    box-shadow: 0px 1px 3px 0px #bbb;
}
.pagination li > a {
	color: #717171 !important;
	font-family: 'Gotham-Book' !important;
}
.pagination li + li {
	margin-left: 4px;
}
.pagination .text {
	border: none;
	font-size: 16px;
	background-color: transparent;
    box-shadow: none;
}
.pagination .prev a,
.pagination .next a {
	font-size: 18px;
	line-height: 30px;
}

.pagination .current,
.pagination a:hover {
	border-color: #f26b2a;
	color: #FFF !important;
	background-color: #f26b2a !important; 
}

/* generic columns */

.flexbox.columns {
/* 	flex-wrap: nowrap; */
}
.flexbox.columns > * {
	flex-grow: 1;
	min-width: 300px;
}

/* -------- Search Results --------- */

.search-results header h3 {
	font-size: 18px;
}

.search-results ol {
	list-style: none;
	counter-reset: resultNum;
}

.search-results ol:not([class]) li {
	position: relative;
	padding-left: 30px;
	counter-increment: resultNum;
}
.search-results ol:not([class]) li:before {
	content: counter(resultNum);
	display: inline-block;
	vertical-align: middle;
	font-size: 24px;
	line-height: 1;
	color: #bbb;
	top: 0;
/*
	position: absolute;
	top: 0;
	right: 100%;
	margin-right: 13px;
*/
}
.search-results ol:not([class]) li + li:before {
	top: 24px;
}

.search-results ol:not([class]) li + li {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 2px solid #ccc;
}

.search-results ol:not([class]) li small {
	display: block;
	margin: 4px auto 8px;
	font-size: 15px;
	color: #909090;
}

/* ---------- FAQs Page ----------- */

.faq-question,
.faq-answer {
	position: relative;
	padding-left: 60px;
}

.faq-section .faq-answer {
	position: relative;
	line-height: 1.5;
	padding: 12px 15px 12px 75px;
}

.faq-answer:before,
.faq-question:before {
	font-size: 24px;
	font-family: 'Gotham-Medium';
	display: inline-block;
	position: absolute;
	top: 0;
	left: 15px;
}
.faq-question:before {
	content: "Q:";	
}
.faq-answer:before {
	content: "A:";
	line-height: 1;
	top: 12px;
	left: 30px;
	
}

h2 + .faq-section {
	margin-top: 10px;
}

/* ---------- Testimonials Page ----------- */

.testimonials-section {
	margin: 50px auto;
}

.testimonial-box h3 {
	margin-bottom: 20px;
}

.testimonial-box .toggle-content {
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 20px;
	line-height: 1.8;
}


.testimonial-box .flexbox > figure {
	width: 250px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.testimonial-box .flexbox > div {
	width: calc(100% - 270px);
}
.testimonial-box .flexbox > div:only-child {
	width: 100%;
}
.testimonial-box h5 {
	margin-bottom: 10px;
}

/* ---- Employment/Volunteer Opportunities & Forms ---- */

.bar-bg {
	position: relative;
	padding-right: 120px;
	padding-left: 120px;
}
.bar-bg:before,
.bar-bg:after {
	content: "";
	height: 100%;
	width: 100px;
	background-color: #eee;
	position: absolute;
	top: 0;
}
.bar-bg:before {
	left: 0;
}
.bar-bg:after {
	right: 0;
}

/* ---- Staff Page ---- */
.staff-section {
	margin: 15px 0;
/* 	max-width: 900px; */
	border: 2px solid #ededed;
}
.staff-item {
	padding: 15px 15px 0;
}
.staff-item .photo-box {
	display: inline-block;
	width: 220px;
	flex-basis: 220px;
	padding-right: 30px;
	flex-shrink: 0;
}
.staff-item .photo-box img {
	border: 5px solid #eee;
}
.staff-item .content-box {
/* 	padding-top: 15px; */
}
.staff-item .small-title {
	margin-bottom: 25px;
}
.staff-item + .staff-item {
	margin-top: 25px;
	border-top: 2px solid #ededed;
}

.volunteer-opps h3,
.internship-opps h3,
.employment-opps h3 {
	color: #004b85;
}
.volunteer-opps hr,
.internship-opps hr,
.employment-opps hr {
	margin: 30px auto;
}

.opportunities-page .list-item {
	padding: 15px 0;
	border-top: 2px solid #ccc;
}
.opportunities-page .list-item:first-child {
	border-top: none;
}

.opportunities-page .list-item  .more-link {
	display: inline-block;
	margin-top: 15px;
}

.opportunities-page .col-left > h2 {
/* 	margin: 45px auto; */
}
.opportunities-page #content + .container {
	padding-bottom: 60px;
}

.list-info {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
.list-info span {
	display: inline-block;
	-webkit-flex-basis: 200px;
	flex-basis: 200px;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
}
.list-info span:first-child {
	font-size: 24px;
	color: #4078a4;
	-webkit-flex-basis: 480px;
	flex-basis: 480px;
	text-align: left;
}
.list-info span + span {
	margin-left: 30px;
}
.list-content {
	padding: 15px 0;
}

.filter-section {
	padding: 20px;
/* 	margin-bottom: 15px; */
	color: #fff;
	background-color: #004b85;
	font-size: 18px;
}
.filter-section h3 {
	text-transform: none;
	margin-bottom: 15px;
}
.filter-section label {
	display: inline-block;
	margin-left: 30px;
	font-size: 20px;
	font-weight: bold;
}
.filter-section h3 + label {
	margin-left: 0;
}
.filter-select {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin-left: 6px;
	background-color: #fff;
	border: 2px solid #282828;
	cursor: pointer;
	z-index: 0;
}
.filter-select:after {
	content: "";
	border-top: 12px solid #282828;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
/*
	width: 50px;
	height: 100%;
*/
	position: absolute;
	right: 20px;
	top: 14px;
	z-index: -1;
}
.filter-select select {
	padding: 8px 50px 8px 15px;
	min-width: 180px;
	text-align: center;
	
	border-radius: 0;
	background-color: transparent;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}

.job-section:empty:after {
	content: "No results were found.";
	display: block;
	margin: 25px auto 15px;
	font-size: 28px;
	text-align: center;
}

.loading-icon {
	position: relative;
}
@-webkit-keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.loading-icon:after {
	content: "\f3f4";
	font-family: 'Font Awesome 5 Pro';
	display: inline-block;
	vertical-align: middle;
	margin-left: 15px;
	color: #004b85;
	
	-webkit-animation: rotation 1.1s infinite;
	animation: rotation 1.1s infinite;
}

.filter-section.loading-icon:after {
	color: #fff;
	font-size: 22px;
}

.list-content {
	display: none;
}

.volunteer-opps h2 .btn {
	margin-top: -10px;
}

/* new staff page */

.staff-container {
	display: flex;
	flex-wrap: wrap;
    margin: 40px auto
}
.staff-container > div {
	text-align: center;
	margin-bottom: 50px;
	width: 33.33%;
}
.staff-container > div figure {
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	text-align: center;
	position: relative;
	margin: 0 auto 20px;
	height: 300px;
	width: 100%;
	max-width: 232px;
	border: 4px solid #999;
}
.staff-container > div figure.modal:before,
.staff-container > div figure.modal:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease 0s;
}
.staff-container > div figure.modal:after {
	content: attr(data-name);
	color: #fff;
	height: 50px;
	margin: auto;
	font-size: 26px;
	line-height: 50px;
}
.staff-container > div figure.modal:before {
	content: '';
	background-color: rgba(0, 75, 133, 0.8);
}
.staff-container > div figure.modal:hover:before,
.staff-container > div figure.modal:hover:after {
	opacity: 1;
	visibility: visible;
}
.staff-container .name-heading,
.staff-bio .name-heading {
	font: 22px/1.3 'Gotham-Bold', sans-serif;
	text-transform: uppercase;
}
.staff-container .sub-heading,
.staff-bio .sub-heading {
	color: #004b85;
	text-transform: capitalize;
	font: 16px/1.22 'Gotham-Bold', sans-serif;
	margin-bottom: 15px;
}
.staff-container > div > a,
.staff-bio > div > a {
	display: block;
	padding-bottom: 3px;
}
.staff-container > div > a + div {
	margin-top: 15px;
}

.staff-bio {
	background-color: #fff;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	padding: 25px;
}
.staff-bio > div {
    flex-basis: 400px;
    flex-grow: 1;
}
.staff-bio .staff-modal-image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 4px solid #999;
    position: relative;
    margin-right: 40px;
    height: 300px;
    max-width: 232px;
    width: 100%;
    z-index: 2;
}
.staff-bio .staff-modal-about {
	padding-top: 15px;
	line-height: 24px;
}

/* reconciliation page(s) */

.reconciliation-form.jb-form .note {
	font-size: 100%;
}

.reconciliation-form.jb-form .form-indent,
.reconciliation-form.jb-form p {
	margin-left: 16em;
	margin-bottom: 2em;
}

.reconciliation-form.jb-form textarea {
	height: 5em;
}

.reconciliation-form.jb-form label:first-child {
	width: 15em;
	margin-left: -16em;
}

.reconciliation-form .agreement {
	margin-right: auto;
	margin-left: auto;
	max-width: 980px;
	text-align: left;
}

.reconciliation-form .agreement label:first-child {
/* 	display: block; */
	float: none;
	width: 100%;
	margin-left: 0;
	margin-bottom: 10px;
	text-align: left;
}

.reconciliation-form .agreement input[type="checkbox"] {
	display: inline-block;
	position: relative;
	visibility: visible;
}

/* */
.listing.table {
/* 	border: 2px solid #efefef; */
}

/*---- Home Page Sponsors Section ----*/
.partners-wrapper {
	text-align: center;
	margin-bottom: 75px;
}
.partners-wrapper .medium-title {
	color: #014a84;
}
.partners-wrapper .slick-slide {
	display: flex;
	justify-content: center;
	flex-direction: column;
    margin: 0 7px;
    height: 140px;
    transform: scale(0.85);
}
.partners-wrapper .slick-slide > img {
	margin-bottom: 0;
	max-width: none;
	max-height: 100%;
}
.partners-wrapper .sponsor-cat-title,
.partners-wrapper .slick-slide > span {
	font: 28px/1.3 'Gotham-Bold', sans-serif;
	padding: 0 10px;
	max-width: 300px;
	position: relative;
}
.partners-wrapper .slick-slide > span {
	font-size: 24px;
}
.partners-wrapper .sponsor-cat-title:before,
.partners-wrapper .sponsor-cat-title:after {
	content: '';
	background-color: #004b85;
	position: absolute;
	height: 100%;
	width: 3px;
}
.partners-wrapper .sponsor-cat-title:before {
	left: -5px;
}
.partners-wrapper .sponsor-cat-title:after {
	right: -5px;
}

/* Videos Section */
.video-container .tab-btn {
	margin: 0;
}
.video-container .tab-content {
	margin-top: 10px;
}

.video-container .video-file {
	background-attachment: scroll;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 25px;
	height: 360px;
	max-width: 480px;
	width: 100%;
}
.video-container .video-file a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.video-container .video-file a:before {
	content: '\f144';
	color: rgba(255, 255, 255, 0.5);
	font-family: 'Font Awesome 5 Pro';
	font-size: 100px;
	height: 100px;
	width: 100px;
	margin: auto;
	position: absolute;
	top: -50px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	transition: all 0.3s ease 0s;
}
.video-container .video-file a:hover:before {
	color: #fff;
}
.video-container > .quick-links-wrapper {
	margin: 15px auto 75px;
}