@import url('https://fonts.googleapis.com/css?family=Roboto|Montserrat:300,400,500,600,700');

body {
    color: #262626;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

img {
    vertical-align: baseline;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.text-underline {
    text-decoration: underline;
}

.text-bold {
    font-weight: bold;
}

.alert-primary {
    padding-left: 60px;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
    color: #262626;
}

a:visited {
    color: #757686;
}

a:hover, a:focus, a:active {
    color: #262626;
}

a:focus {
    outline: thin dotted;
}

a:hover, a:active {
    outline: 0;
    list-style: none;
}

/*--------------------------------------------------------------
# Site Header
--------------------------------------------------------------*/
/*
# Header Bar
--------------------------------*/
.top-header-bar {
    background: #F7941D;
    color: #fff;
}

/*
# Header Bar Email
--------------------------------*/
.header-bar-email {
    padding: 10px 0;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
}

.header-bar-email a {
    text-transform: lowercase;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/*
# Header Bar Phone
--------------------------------*/
.header-bar-phone {
    margin-left: 48px;
    padding: 10px 0;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
}

.header-bar-phone a {
    margin: 0;
    text-transform: lowercase;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/*
# Header Bar Donate Button
--------------------------------*/
.donate-btn a {
    display: inline-block;
    padding: 20px 40px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-decoration: navajowhite;
    background: #595959;
}

/*
# Site Branding
--------------------------------*/
.site-branding {
    width: calc(100% - 24px);
    padding: 10px 0;
}

.site-branding a {
    /*margin-top: 6px;*/
}

@media screen and (min-width: 992px){
    .site-branding {
        width: auto;
    }
}

.swc-logo-text a {
    padding-left: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    color: #008dcf;
}
.swc-logo-text a:hover {
    text-decoration: none;
}

@media screen and (max-width: 500px){
    .swc-logo-text a {
        font-size: 25px;
    }
}

@media screen and (max-width: 425px){
    .swc-logo-text a {
        font-size: 20px;
    }
}

/*
  Hamburger Menu
----------------------------------------*/
.hamburger-menu {
    position: relative;
    width: 24px;
    height: 22px;
    margin: 0 auto;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #262626;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 2px;
}

.hamburger-menu span:nth-child(2),
.hamburger-menu span:nth-child(3) {
    top: 10px;
}

.hamburger-menu span:nth-child(4) {
    top: 18px;
}

.hamburger-menu.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
}

.hamburger-menu.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger-menu.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

/*
# General
--------------------------------*/
.single-page .page-header {
    position: relative;
    z-index: 99;
    padding-top: 28px;
    padding-bottom: 0;
    background-size: cover !important;
    background: url(images/general/ocean-bg.jpg) no-repeat center;
}

.single-page .page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.2);
}

.single-page .page-header h1 {
    position: relative;
    padding-bottom: 24px;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px #595959;
}

/*
# Main Menu
--------------------------------*/
.site-navigation ul {
    position: fixed;
    top: 0;
    left: -320px;
    z-index: 9999;
    width: 320px;
    max-width: calc(100% - 120px);
    height: 100%;
    padding: 30px 15px;
    margin: 0;
    background: #fff;
    list-style: none;
    overflow-x: scroll;
    transition: all 0.35s;
}

.site-navigation.show ul {
    left: 0;
}

.site-navigation ul li {
    margin: 0 16px;
}
.site-navigation ul li a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #262626;
    text-decoration: none;
    transition: color .35s;
}

@media screen and (min-width: 992px) {
    .site-navigation ul {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 0;
        overflow: auto;
        background: transparent;
    }

    .site-navigation ul li a {
        padding: 49px 0 30px;
    }
}

@media screen and (max-width: 1200px) {
    .site-navigation ul li {
        margin: 0 10px;
    }

    .site-navigation ul li a {
        /*padding: 49px 0 30px;*/
    }
}

.site-navigation ul li a {
    border-bottom: 3px solid #ffffff;
}

.site-navigation ul li a:hover,
.site-navigation ul li.current-menu-item a {
    border-bottom: 3px solid #F7941D;
    color: #F7941D;
}

/*
# Menu Shopping Cart
--------------------------------*/
.header-bar-cart {
    margin-left: 40px;
}

.header-bar-cart a {
    width: 48px;
    height: 100%;
}

.header-bar-cart a {
    color: #fff;
    text-decoration: none;
}
/*--------------------------------------------------------------
# Hero Image Section
--------------------------------------------------------------*/
.page-hero {
    position: relative;
    z-index: 99;
    padding-top: 50px;
    padding-bottom: 50px;
    background-size: cover !important;
    background: url(images/home/hero.jpg) no-repeat center;
    color: #ffffff;
}

.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero h4,
.page-hero h5 {
    text-shadow: 1px 1px #595959;
}
    

@media screen and (max-width: 1200px){
    .page-hero h1 {
        font-size: 72px;
    }

    .page-hero h4 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 14px;
    }
}

@media screen and (max-width: 992px){
    .page-hero h1 {
        font-size: 48px;
    }

    .page-hero h4 {
        font-size: 22px;
    }

    .page-hero p {
        display: none;
    }

    .page-hero footer{
        margin-top: 12px !important;
    }
}

/*--------------------------------------------------------------
# Elements Page
--------------------------------------------------------------*/
.elements-wrap {
    margin-top: 80px;
}

.elements-page .elements-heading .entry-title {
    font-size: 24px;
    font-weight: 600;
    color: #262626;
}

.elements-page .elements-container {
    margin-top: 54px;
}

.elements-page .btn {
    margin-right: 20px;
}

/*
# Button
----------------------------------*/
.btn {
    padding: 18px 40px;
    border: 2px solid #262626;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #262626;
    outline: none;
}

.btn:focus {
    outline: none;
}

.btn.orange-border {
    border-color: #F7941D;
}

.btn.orange-border:hover,
.btn.gradient-bg {
    border-color: transparent;
    background: -moz-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(247,148,29,1)), color-stop(100%, rgba(247,148,29,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* ie10+ */
    background: linear-gradient(270deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F7941D', endColorstr='#F7941D',GradientType=1 ); /* ie6-9 */
    color: #fff;
}

/*
# Accordion
----------------------------------*/
.accordion-wrap {
    position: relative;
}

.accordion-wrap .entry-content {
    margin: 0;
}

.accordion-wrap .entry-title {
    padding: 12px 38px;
    margin-bottom: 15px;
    border-radius: 30px;
    background: #f3f3f3;
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    cursor: pointer;
}

.accordion-wrap .entry-title.active {
    border: 0;
    background: -moz-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(247,148,29,1)), color-stop(100%, rgba(247,148,29,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* ie10+ */
    background: linear-gradient(270deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F7941D', endColorstr='#F7941D',GradientType=1 ); /* ie6-9 */
    color: #fff;
}

.accordion-wrap .entry-title .arrow-r::before,
.accordion-wrap .entry-title .arrow-d::before {
    content: "+";
    font-size: 24px;
    font-weight: 400;
}

.accordion-wrap .entry-title .arrow-d::before {
    content: "-";
}

/*
# Content
----------------------------------*/
.accordion-wrap .entry-content {
    display: none;
}

.accordion-wrap .entry-content p {
    padding: 18px 38px;
    font-size: 14px;
    line-height: 2;
    color: #717171;
}

/*
# Tabs
----------------------------------*/
ul.tabs-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.tabs-nav .tab-nav {
    padding: 12px 32px;
    margin-right: 6px;
    border-radius: 30px;
    background: #f3f3f3;
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    cursor: pointer;
    transition: all .35s;
}

ul.tabs-nav .tab-nav.active {
    border: 0;
    background: -moz-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(247,148,29,1)), color-stop(100%, rgba(247,148,29,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* ie10+ */
    background: linear-gradient(270deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F7941D', endColorstr='#F7941D',GradientType=1 ); /* ie6-9 */
    color: #fff;
}

.tabs .tab-nav {
    margin-bottom: -1px;
    z-index: 99;
}

.tabs-container {
    padding: 34px;
}

.tab-content {
    display: none;
}

.tab-content p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 2;
    color: #717171;
}

/*
# Circular Progress Bar
----------------------------------*/
.circular-progress-bar {
    margin: 20px 0;
    text-align: center;
}

.circular-progress-bar .circle {
    position: relative;
    width: 156px;
    height: 156px;
    margin: 0 auto;
}

.circular-progress-bar .circle strong {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -24px;
    width: 100%;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    color: #262626;
}

.circular-progress-bar .circle strong i {
    margin-top: 5px;
    font-size: 24px;
    font-style: normal;
}

.circular-progress-bar .entry-title {
    margin-top: 32px;
    font-size: 18px;
    font-weight: 600;
    color: #262626;
}

/*
# Icon Box
----------------------------------*/
.icon-box {
    padding: 40px;
    border-radius: 24px;
    background: #ebebeb;
    text-align: center;
    transition: all .35s;
}

.icon-box:hover,
.icon-box.active {
    border: 0;
    background: -moz-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(247,148,29,1)), color-stop(100%, rgba(247,148,29,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(180deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* ie10+ */
    background: linear-gradient(270deg, rgba(247,148,29,1) 0%, rgba(247,148,29,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F7941D', endColorstr='#F7941D',GradientType=1 ); /* ie6-9 */
    color: #fff;
}

.icon-box figure img:nth-of-type(1) {
    display: block;
}

.icon-box figure img:nth-of-type(2) {
    display: none;
}

.icon-box:hover figure img:nth-of-type(1),
.icon-box.active figure img:nth-of-type(1) {
    display: none;
}

.icon-box:hover figure img:nth-of-type(2),
.icon-box.active figure img:nth-of-type(2) {
    display: block;
}

.icon-box .entry-title {
    margin-top: 28px;
    font-size: 24px;
    font-weight: 600;
    color: #262626;
}

.icon-box:hover .entry-title,
.icon-box.active .entry-title {
    color: #fff;
}

.icon-box .entry-content {
    margin-top: 24px;
}

.icon-box .entry-content p {
    margin: 0;
    font-size: 14px;
    color: #595858;
}

.icon-box:hover .entry-content p,
.icon-box.active .entry-content p {
    color: #fff;
}

/*--------------------------------------------------------------
# Homepage
--------------------------------------------------------------*/
/*
# Icon Boxes
--------------------------------*/
.home-page-icon-boxes {
    padding: 50px 0;
}

/*
# Welcome
--------------------------------*/
.home-page-welcome {
    position: relative;
    padding: 50px 0;
    z-index: 99;
}

.home-page-welcome::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    /*background: rgba(21,21,21,.9);*/
}

.welcome-content .entry-title {
    position: relative;
    padding-bottom: 24px;
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

.welcome-content .entry-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: #F7941D;
}

.welcome-content .entry-content {
    font-size: 14px;
    line-height: 2;
    color: #000;
}

.home-page-welcome img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 992px){
    .home-page-welcome img {
        margin-bottom: 60px;
    }
}

/*
# Upcoming Events
--------------------------------*/
.home-page-events {
    padding: 50px 0;
}

.section-heading .entry-title {
    position: relative;
    padding-bottom: 24px;
    font-size: 36px;
    font-weight: 600;
}

.section-heading  .entry-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: #F7941D;
}

@media screen and (max-width: 992px) {
    .home-page-events .featured-cause .section-heading {
        margin-top: 80px;
    }
}

.event-wrap {
    margin-top: 40px;
}

.event-wrap figure {
    width: 144px;
    height: auto;
}

.event-wrap figure img {
    display: block;
    width: 100%;
}

.event-content-wrap {
    width: calc(100% - 180px);
    margin-top: -10px;
}

.event-content-wrap .entry-title a {
    font-size: 18px;
    font-weight: 600;
    color: #262626;
}

.event-content-wrap .posted-date a,
.event-content-wrap .cats-links a {
    display: block;
    position: relative;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    color: #262626;
}

.event-content-wrap .posted-date a {
    padding-right: 14px;
    margin-right: 14px;
}

.event-content-wrap .posted-date a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #262626;
}

.event-content-wrap .entry-content {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 14px;
    color: #717171;
}

.event-content-wrap .entry-footer a {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #F7941D;
    text-decoration: none;
}

/*
# Featured Cause
--------------------------------*/
.home-page-events {
    padding: 50px 0;
}

.cause-wrap {
    margin-top: 50px;
}

.cause-wrap h3 {
    font-size: 1.5rem;
}

.featured-cause .cause-wrap {
    padding: 40px 24px;
    background: #edf3f5;
}

.featured-cause .featured-cause .cause-wrap figure {
    width: 246px;
    height: auto;
}

.cause-wrap figure img {
    display: block;
    width: 100%;
}

.featured-cause .cause-content-wrap {
    width: calc(100% - 280px);
}

.cause-content-wrap .entry-title a {
    font-size: 18px;
    font-weight: 600;
    color: #262626;
}

.cause-content-wrap .posted-date a,
.cause-content-wrap .cats-links a {
    display: block;
    position: relative;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    color: #262626;
}

.cause-content-wrap .posted-date a {
    padding-right: 14px;
    margin-right: 14px;
}

.cause-content-wrap .posted-date a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #262626;
}

.cause-content-wrap .entry-content {
    margin-bottom: 0;
    font-size: 14px;
    color: #717171;
}

.cause-wrap .fund-raised {
    margin-top: 64px;
}

.fund-raised-details {
    font-size: 14px;
    color: #717171;
}

.fund-raised-total {
    font-weight: bold;
}

/*
# Home Causes
--------------------------------*/
.our-causes {
    position: relative;
    padding: 50px 0;
    z-index: 99;
    background: url(images/home/our-causes-bg.jpg) no-repeat center;
    background-size: cover;
}

.our-causes::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(21,21,21,.9)
}

.our-causes .section-heading .entry-title {
    color: #ffffff;
}

.our-causes .cause-wrap {
    margin-top: 60px;
}

.our-causes .cause-wrap figure {
    position: relative;
}

.our-causes .cause-wrap figure .figure-overlay {
    top: 0;
    left: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgba(255,255,255,.5);
    transition: all .5s;
}

.our-causes .cause-wrap figure:hover .figure-overlay {
    opacity: 1;
    visibility: visible;
}

.our-causes .cause-content-wrap {
    padding: 32px;
    background: #fff;
}

.our-causes .cause-content-wrap .entry-content {
    margin-top: 20px;
}

.our-causes .cause-wrap .fund-raised {
    margin-top: 48px;
}

/*
# Home Milestone
--------------------------------*/
.home-page-limestone {
    padding: 50px 0;
}

.home-page-limestone .section-heading .entry-title {
    padding-bottom: 36px;
    line-height: 1.6;
}

.home-page-limestone .section-heading p {
    font-size: 14px;
    color: #595858;
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.about-page .welcome-wrap {
    padding: 50px 0;
}

.about-page .welcome-content .entry-title {
    color: #262626;
}

@media screen and (max-width: 992px){
    .about-page .welcome-content .entry-title {
        margin-top: 60px;
    }
}

.about-page .welcome-content .entry-content {
    color: #717171;
}

.about-page .welcome-wrap img {
    display: block;
    width: 50%;
}

.about-page .welcome-wrap img.float-left {
    padding: 0 10px 15px 0;
}

.about-page .welcome-wrap img.float-right {
    padding: 0 0 15px 10px;
}

@media screen and (max-width: 991px){ /*676*/
    .about-page .welcome-wrap img,
    .about-page .welcome-wrap img.float-left,
    .about-page .welcome-wrap img.float-right {
        width: 100%;
        padding: 0 0 15px;
    }
}

.about-stats {
    padding: 50px 0;
    background: #262626;
}

.about-stats .circular-progress-bar .circle strong,
.about-stats .circular-progress-bar .entry-title {
    color: #fff;
}

.about-testimonial {
    padding: 0 0 50px;
}

.testimonial-cont {
    margin-top: 50px;
}

.testimonial-cont,
.testimonial-cont p {
    position: relative;
}

.testimonial-cont::before {
    content: '“';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: italic;
    line-height: 1;
    color: #F7941D;
}

.testimonial-cont .entry-content {
    padding-top: 42px;
}

.testimonial-cont p {
    padding-bottom: 32px;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-cont p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: #F7941D;
}

.testimonial-cont .entry-footer img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.testimonial-cont .entry-footer h4 {
    margin-left: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #595858;
}

.testimonial-cont .entry-footer h4 span {
    color: #F7941D;
}

.help-us {
    padding: 14px 0 50px;
    background: #F7941D;
}

.help-us h2 {
    margin-top: 36px;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.help-us .btn {
    margin-top: 36px;
}

.help-us .btn,
.help-us .btn:hover {
    border-color: #fff;
    color: #fff;
    background-color: #595959;
}

/*--------------------------------------------------------------
# Donate Page
--------------------------------------------------------------*/
.donate-page .welcome-content .entry-title {
    color: #262626;
}

@media screen and (max-width: 992px){
    .donate-page .welcome-content .entry-title {
        margin-top: 60px;
    }
}

.donate-page .welcome-content .entry-content,
.donate-page .general-content .entry-content {
    color: #717171;
}

.donate-page .welcome-wrap img {
    display: block;
    width: 100%;
}

.donate-stats {
    padding: 50px 0;
    background: #262626;
}

.donate-stats .circular-progress-bar .circle strong,
.donate-stats .circular-progress-bar .entry-title {
    color: #fff;
}

.donate-testimonial {
    padding: 0 0 50px;
}

.donate-page .home-page-icon-boxes {
    padding: 24px 0;
}

#donate-submit {
    background: none;
    cursor: pointer;
    margin-top: 24px;
}

#donate-submit:hover {
    background: none;
}

/*--------------------------------------------------------------
# Causes
--------------------------------------------------------------*/
.causes-page .featured-cause {
 padding: 50px 0;
}

.causes-page .our-causes {
    position: relative;
    padding:  50px 0 50px;
    background: none;
}

.causes-page .our-causes .cause-wrap {
    margin-top: 36px;
}

.causes-page .our-causes::after {
    display: none;
}

.causes-page .our-causes .cause-content-wrap {
    border: 1px solid #e0e0e0;
    border-top: 0;
}

.causes-page .highlighted-cause {
    padding: 50px 0 50px;
    background: #262626;
}

.causes-page .highlighted-cause .entry-title {
    padding-right: 24px;
    margin-top: 60px;
    line-height: 1.6;
    color: #fff;
}

.causes-page .highlighted-cause .entry-title::before {
    display: none;
}

.causes-page .highlighted-cause .entry-content {
    font-size: 14px;
    line-height: 2;
    color: #edf3f5;
}

.causes-page .highlighted-cause img {
    width: 100%;
    margin-top: 60px;
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
    .cause-wrap figure {
        width: 100%;
    }

    .featured-cause .cause-content-wrap {
        width: 100%;
        margin-top: 40px;
    }
}

@media screen and (max-width: 576px) {
    .cause-wrap figure {
        width: 100%;
    }

    .featured-cause .cause-content-wrap {
        width: 100%;
        margin-top: 40px;
    }
}

/*--------------------------------------------------------------
# Single Cause
--------------------------------------------------------------*/
.single-cause .page-header {
    background: url(images/single-cause-bg.jpg) no-repeat center;
}

.single-cause .highlighted-cause {
    padding: 50px 0 50px;
}

.single-cause .highlighted-cause .entry-title {
    padding-right: 24px;
    margin-top: 60px;
    line-height: 1.6;
}

.single-cause .highlighted-cause .entry-content {
    color: #717171;
}

.single-cause .highlighted-cause img {
    width: 100%;
    margin-top: 60px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/


/*
# Short Content
--------------------------------*/
.short-content-wrap {
    padding-bottom: 50px;
}

.short-content .entry-title {
    font-size: 18px;
    font-weight: 500;
}

.short-content p {
    margin-top: 40px;
    font-size: 14px;
    color: #717171;
}

/*
# Donation Form
--------------------------------*/
.donation-form-wrap {
    padding: 50px 64px;
    margin-bottom: 50px;
    background: #edf3f5;
}

.donation-form-wrap h2 {
    font-size: 30px;
    font-weight: 500;
}

.donation-form-wrap h4 {
    font-size: 16px;
    font-weight: 500;
}

.donation-form .radio-label {
    display : block;
}

.donation-form .radio-label > input[type="radio"] {
    visibility: hidden;
    position: absolute;
}

.donation-form .radio-label > input + .donate-amount {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 40px 30px;
    margin-right: 15px;
    border: 2px solid #e0e0e0;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    background: #fff;
}

.donation-form .radio-label:nth-last-of-type(1) > input + .donate-amount {
    margin-right: 0;
}

.donation-form .radio-label > input:checked + .donate-amount {
    border-color: #F7941D;
}

.donation-form .payment-type input[type="radio"] {
    visibility: hidden;
    position: absolute;
}

.donation-form .payment-type label {
    position: relative;
    margin-right: 40px;
    font-size: 14px;
    line-height: 1;
    color: #6a6a6a;
}

.donation-form .payment-type input[type="radio"] + .payment-type-radio {
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.donation-form .payment-type input[type="radio"] + .payment-type-radio + .centered-dot {
    visibility: hidden;
    display: block;
    position: absolute;
    left: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ff5e06;
}

.donation-form .payment-type input[type="radio"]:checked + .payment-type-radio {
    border-color: #ff5e06;
}


.donation-form .payment-type input[type="radio"]:checked + .payment-type-radio + .centered-dot {
    visibility: visible;
}

.billing-information input {
    width: calc(50% - 14px);
    padding: 12px 30px;
    margin-top: 28px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    line-height: 1;
}

.billing-information input::placeholder {
    color: #717171;
}

@media screen and (max-width: 768px){
    .billing-information input {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-wrap {
    padding: 50px 0;
}

.gallery-wrap .mt-48 {
    margin-top: 45px;
}

.gallery-wrap .mt-72 {
    margin-top: 72px;
}

.gallery-wrap .gallery-item {
    display: none;
    margin-bottom: 30px;
}

.gallery-wrap .gallery-item.visible {
    display: block;
}

.gallery-cont {
    margin-bottom: 20px;
}

.gallery-cont img {
    width: 100%;
}

.gallery-cont .entry-title {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 500;
}

.gallery-cont .entry-title a {
    color: #262626;
}

.gallery-cont h4 {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #F7941D;
}

.gallery-container .elem, .gallery-container .elem * {
    box-sizing: border-box;
    margin: 0 !important;   
}
.gallery-container .elem {
    display: inline-block;
    font-size: 0;
    width: 24%;
    border: 5px solid transparent;
    border-bottom: none;
    background: #fff;
    height: auto;
    background-clip: padding-box;
}
.gallery-container .elem > span {
    display: block;
    cursor: pointer;
    height: 0;
    padding-bottom: 70%;
    background-size: cover; 
    background-position: center center;
}

@media screen and (max-width: 768px){ /*676*/
    .gallery-container .elem {
        width: 32%;
        border: 3px solid transparent;
        border-bottom: none;
    }
}

@media screen and (max-width: 620px){ /*676*/
    .gallery-container .elem {
        width: 48%;
        border: 2px solid transparent;
        border-bottom: none;
    }
}

.lcl_fade_oc.lcl_pre_show #lcl_overlay,
.lcl_fade_oc.lcl_pre_show #lcl_window,
.lcl_fade_oc.lcl_is_closing #lcl_overlay,
.lcl_fade_oc.lcl_is_closing #lcl_window {
    opacity: 0 !important;
}
.lcl_fade_oc.lcl_is_closing #lcl_overlay {
    -webkit-transition-delay: .15s !important; 
    transition-delay: .15s !important;
}



/*--------------------------------------------------------------
# Sponsorship
--------------------------------------------------------------*/

.spnsrship-wrap {
    padding: 50px 0;
}

.spnsrship-container .elem, .spnsrship-container .elem * {
    box-sizing: border-box;
    margin: 0 !important;   
}
.spnsrship-container .elem {
    display: inline-block;
    font-size: 0;
    width: 16%;
    border: 5px solid transparent;
    border-bottom: none;
    background: #fff;
    height: auto;
    background-clip: padding-box;
}
.spnsrship-container .elem > span {
    display: block;
    cursor: pointer;
    height: 0;
    padding-bottom: 150%;
    background-size: cover;
}

.spnsrship #lcl_thumbs_nav {
    height: 165px !important;
}

@media screen and (max-width: 768px){ /*676*/
    .spnsrship-container .elem {
        width: 32%;
        border: 3px solid transparent;
        border-bottom: none;
    }
}

@media screen and (max-width: 620px){ /*676*/
    .spnsrship-container .elem {
        width: 48%;
        border: 2px solid transparent;
        border-bottom: none;
    }
}

h2.spnsrship-form-title {
    margin-top: 30px;
}

.spnsrship-form {
    padding: 35px 20px 55px;
    background: #edf3f5;
}

.spnsrship-form input[type="text"],
.spnsrship-form input[type="email"],
.spnsrship-form textarea {
    width: 100%;
    padding: 12px 24px;
    margin-bottom: 18px;
    border: 1px solid #cccccc;
    font-size: 14px;
    line-height: 1;
}

.spnsrship-form input[type="file"] {
    margin-bottom: 18px;
    font-size: 14px;
}

.spnsrship-form input[type="checkbox"] {
}

.spnsrship-form input[type="text"]:focus,
.spnsrship-form input[type="email"]:focus,
.spnsrship-form textarea:focus {
    outline: none;
}

.spnsrship-form input[type="text"]::placeholder,
.spnsrship-form input[type="email"]::placeholder,
.spnsrship-form textarea::placeholder {
    color: #717171;
}

.spnsrship-form span {
    display: block;
    margin-top: 16px;
    text-align: center;
}

.spnsrship-form span.checkbox-text {
    display: inline;
    margin-top: 0;
    text-align: left;
    margin-bottom: 18px;
}

.spnsrship-form span.child-survey-submit {
    margin-top: 18px;
}

.spnsrship-form input[type="submit"] {
    cursor: pointer;
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news-wrap {
    padding: 50px 0;
}

.news-content {
    padding-bottom: 14px;
    margin-bottom: 30px;
    border-bottom: thin solid #bbb;
    overflow:auto;
}

.news-content:last-child {
    border-bottom: none;
}

.news-content:nth-last-of-type(1) {
    margin-bottom: 0;
}

.news-content img {
    display: block;
    margin: 0;
}

.news-content .entry-header {
    margin-top: 34px;
}

.news-content .entry-header .header-elements,
.news-content .donate-icon  {
    margin-top: 30px;
}

.news-content .entry-title {
    font-size: 24px;
    font-weight: 500;
}

.news-content .entry-title a {
    color: #262626;
}

.news-content .posted-date {
    font-size: 14px;
    font-weight: 500;
    color: #F7941D;
}

.news-content img.float-right {
    float: right;
    padding: 0 0 15px 10px;
}

.news-content img.float-right-tall {
    float: right;
    padding: 0 0 15px 10px;
}

@media screen and (max-width: 620px){ /*676*/
    .news-content img.float-left-tall,
    .news-content img.float-right-tall {
        width: 100%;
        padding: 0 0 15px;
    }
}

@media screen and (max-width: 991px){ /*676*/
    .news-content img.float-left,
    .news-content img.float-right {
        width: 100%;
        padding: 0 0 15px;
    }
}

.post-metas {
    font-size: 12px;
    line-height: 1;
    color: #717171;
}

.post-metas a {
    color: #717171;
}

.post-metas > span {
    display: block;
    padding-right: 10px;
    margin-top: 6px;
    margin-right: 10px;
    border-right: 1px solid #717171;
}

.post-metas > span:nth-last-of-type(1) {
    border: 0;
    padding-right: 0;
    margin-right: 0;
}

.news-content .entry-content {
    margin-top: 32px;
    font-size: 14px;
    color: #717171;
}

.news-content .entry-footer {
    margin-top: 56px;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination {
    margin-top: 92px;
}

.pagination a {
    margin-right: 16px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #262626;
    text-decoration: navajowhite;
}

.pagination a:hover,
.pagination .active a {
    color: #F7941D;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media screen and (max-width: 992px){
    .sidebar {
        margin-top: 50px;
    }
}

.sidebar h2 {
    font-size: 18px;
    font-weight: 600;
}

/*
# Search
--------------------------------*/
.search-widget input[type="search"] {
    width: calc(100% - 76px);
    height: 52px;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    outline: none;
}

.search-widget input[type="search"]::placeholder {
    color: #717171;
}

.search-widget button[type="submit"] {
    width: 75px;
    height: 54px;
    border: 0;
    margin-left: -5px;
    font-size: 14px;
    font-weight: 500;
    background: #F7941D;
    color: #fff;
    cursor: pointer;
    outline: none;
}

/*
# Popular Posts
--------------------------------*/
.popular-posts {
    margin-top: 60px;
}

.popular-posts ul {
    list-style: none;
    margin: 60px 0 0;
}

.popular-posts li {
    margin-bottom: 15px;
}

.popular-posts li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.popular-posts figure,
.popular-posts figure a ,
.popular-posts figure img {
    display: block;
    margin: 0;
}

.popular-posts figure {
    width: 72px;
}

.popular-posts .entry-content {
    width: calc(100% - 100px);
}

.popular-posts h3 {
    font-size: 14px;
    font-weight: 500;
}

.popular-posts h3 a {
    color: #262626;
}

.popular-posts .posted-date {
    font-size: 12px;
    color: #F7941D;
}

/*
# Upcoming Events
--------------------------------*/
.sidebar .upcoming-events {
    margin-top: 60px;
}

.sidebar .upcoming-events ul {
    list-style: none;
    margin: 60px 0 0;
}

.sidebar .upcoming-events li {
    margin-bottom: 32px;
}

.sidebar .upcoming-events li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.sidebar .upcoming-events figure,
.sidebar .upcoming-events figure a ,
.sidebar .upcoming-events figure img {
    display: block;
    margin: 0;
}

.sidebar .upcoming-events figure {
    width: 140px;
    /*margin-right: 24px;*/
}

.sidebar .upcoming-events .entry-content {
    width: calc(100% - 140px);
}

.sidebar .upcoming-events h3 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
}

.sidebar .upcoming-events h3 a {
    color: #262626;
}

.sidebar .upcoming-events .post-metas {
    font-size: 11px;
    line-height: 1;
    color: #262626;
}

.sidebar .upcoming-events .post-metas a {
    color: #262626;
}

.sidebar .upcoming-events .post-metas > span {
    display: block;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #262626;
}

.sidebar .upcoming-events .post-metas > span:nth-last-of-type(1) {
    border: 0;
    padding-right: 0;
    margin-right: 0;
}

.sidebar .upcoming-events p {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 14px;
    color: #717171;
}

/*
# Featured Cause
--------------------------------*/
.sidebar .featured-cause {
    margin-top: 60px;
}

.sidebar .featured-cause .cause-wrap {
    padding: 0;
    background: none;
}

.sidebar .featured-cause .featured-cause .cause-wrap figure {
    width: 100%;
}

.sidebar .cause-wrap figure img {
    display: block;
    width: 100%;
}

.sidebar .featured-cause .cause-content-wrap {
    width: 100%;
    padding: 32px;
    margin-top: 0;
    border: 1px solid #e0e0e0;
    border-top: 0;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page-wrap {
    padding: 0 0 50px;
}

.contact-page-wrap .entry-content {
    margin-top: 50px;
}

.contact-page-wrap .entry-content h2 {
    font-size: 24px;
    font-weight: 500;
}

.contact-page-wrap .entry-content p {
    margin-top: 20px;
    font-size: 14px;
    color: #717171;
}

.contact-page-wrap .entry-content ul.contact-info span {
    color: #262626;
}

.contact-page-wrap .entry-content ul.contact-social {
    padding: 20px 0 0;
    margin: 0;
    list-style: none;
}

.contact-page-wrap .entry-content ul.contact-social li {
    margin-right: 28px;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-page-wrap .entry-content ul.contact-social li a {
    color: #F7941D;
}

.contact-page-wrap .entry-content ul.contact-info {
    margin: 32px 0 0;
}

.contact-page-wrap .entry-content ul.contact-info li {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    font-size: 14px;
    color: #9b9a9a;
}

.contact-page-wrap .entry-content ul.contact-info .fa {
    width: 28px;
    margin-right: 10px;
    font-size: 18px;
    color: #F7941D;
    text-align: center;
}

.contact-form {
    padding: 35px 20px 55px;
    margin-top: 50px;
    background: #edf3f5;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 24px;
    margin-bottom: 18px;
    border: 1px solid #cccccc;
    font-size: 14px;
    line-height: 1;
}

.contact-form input[type="file"] {
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-form input[type="checkbox"] {
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
    color: #717171;
}

.contact-form span {
    display: block;
    margin-top: 16px;
    text-align: center;
}

.contact-form span.checkbox-text {
    display: inline;
    margin-top: 0;
    text-align: left;
    margin-bottom: 18px;
}

.contact-form span.child-survey-submit {
    margin-top: 18px;
}

.contact-form input[type="submit"] {
    cursor: pointer;
}

.contact-page .contact-gmap {
    margin-top: 92px;
}

.contact-page .contact-gmap iframe {
    display: block;
    width: 100%;
    height: 440px;
}

/*--------------------------------------------------------------
# Other Pages
--------------------------------------------------------------*/
.elements-page .page-header {
    background: url(images/elements-bg.jpg) no-repeat center;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-widgets {
    position: relative;
    padding: 56px 0 50px;
    font-weight: 500;
    color: #a1a1a1;
    background: url("images/footer/footer-bg.jpg") no-repeat center;
    background-size: cover;
    z-index: 99;
}

.footer-widgets::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 101%;
    background: rgba(22,22,22,.92);
}

.footer-widgets h2 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
}

.footer-widgets ul {
    padding: 12px 0 0;
    margin: 0;
    list-style: none;
}

.footer-widgets ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-widgets ul li a {
    color: #a2a1a1;
    text-decoration: none;
}

.footer-widgets ul li a:hover {
    color: #F7941D;
}

.foot-about p {
    font-size: 14px;
    line-height: 2;
    color: #717171;
}

.foot-about ul li {
    margin-right: 28px;
}

.foot-about ul li a {
    color: #fff;
}

@media screen and (max-width: 767px){
    .home-page-body .footer-widgets .foot-about {
        display: none;
    }
    .home-page-body .footer-widgets .mt-5 {
        margin-top: 0!important;
    }
}

.foot-latest-news ul li {
    display: block;
    margin-bottom: 36px;
}

.foot-latest-news ul li h3 {
    font-size: 14px;
}

.foot-latest-news ul li .posted-date {
    font-size: 12px;
    color: #F7941D;
}

.foot-contact ul li {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.foot-contact ul li .fa {
    width: 28px;
    margin-right: 10px;
    font-size: 18px;
    text-align: center;
    color: #F7941D;
}

.foot-contact ul li span {
    width: calc(100% - 3px);
}

/*
# Subscribe
--------------------------------*/
.subscribe-form {
    margin-top: 50px;
}

.subscribe-form input[type="email"] {
    width: calc(100% - 90px);
    padding: 12px 16px;
    border: 0;
    font-size: 12px;
    line-height: 1;
    background: #fff;
    color: #131212;
    outline: none;
}

.subscribe-form input[type="email"]::placeholder {
    color: #9b9a9a;
    font-style: italic;
}

.subscribe-form input[type="submit"] {
    width: 88px;
    padding: 12px 0 13px;
    border: 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    background: #F7941D;
    color: #fff;
    cursor: pointer;
    outline: none;
}

/*
# Footer
--------------------------------*/
.footer-bar {
    padding: 15px 0;
    font-size: 14px;
    color: #7b7b7b;
    background: #131212;
    text-align: center;
}

.footer-bar a,
.footer-bar a:visited{
    color: #7b7b7b;
}

.footer-bar a:hover{
    color: #F7941D;
    text-decoration: none;
}

.grecaptcha-badge {
    z-index: 999;
}


/*
# Responsive Embedded YouTube Videos
--------------------------------*/

.youtube-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; }

.youtube-container iframe, .youtube-container object, .youtube-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }