/* cmsms stylesheet: site modified: Monday, May 18, 2020 2:05:22 PM */
@import url('https://fonts.googleapis.com/css?family=Merriweather|Roboto|Roboto+Condensed:700');

/* Site-wide styling */
 /* Gold */
 /* Blue */
 /* White */
 /* Dark Blue */
 /* Black */
 /* Light Grey */




* { margin: 0; padding: 0; }

img { border: 0; max-width: 100%; height: auto; }

div {
    position: relative;
}

html {
    position: relative;
    height: 100%;
    font-size: 16px;
    line-height: 1.5;
}

body {
    color: rgb(0, 66, 101);
    font-family: 'Roboto', sans-serif;
    height: 100%;
    min-width: 320px;
}

a {
    color: rgb(3, 87, 130);
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul, ol {
    list-style-position: outside;
    margin-left: 1em;
    /*margin-bottom: 1em;*/
}

p{ margin-bottom: 1em; }

h1 {
    color: rgb(0, 66, 101);
    font-size: 1.5rem;
    font-family: 'Merriweather', serif;
    font-weight: normal;
    /* margin-bottom: 1em; */
}

h2 {
    font-size: 1em;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgb(0, 66, 101);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.375;
    /* padding-top: 2em; */
    margin: 0 1em 0 0;
}
h3 {
    font-size: 0.875rem;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgb(202, 182, 75);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.375;
}
h4 {
    font-family: 'Roboto Condensed', sans-serif;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
}

select {
    background: none;
    border-width: 2px;
    border-style: solid;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    padding: .25em;
}

.page {
    box-sizing: border-box;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 2em;
}

.spacer {
    padding-bottom: 2rem;
    padding-top: 2rem;
}

a.button,
input.button {
    background: none;
    border-width: 2px;
    border-style: solid;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    font-size: 0.875rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 1em;
    text-align: center;
    width: 8.2rem;
}

.light {
    border-color: rgb(202, 182, 75);
    color: rgb(202, 182, 75);
}

.dark {
    border-color: rgb(3, 87, 130);
    color: rgb(3, 87, 130);
}

a.button.dark:hover {
    background: rgb(3, 87, 130);
    color: rgb(255, 255, 255);
    text-decoration: none;
}

a.button.light:hover,
input.button.light:hover {
    background: rgb(202, 182, 75);
    color: rgb(255, 255, 255);
    text-decoration: none;
}


/*Header*/
#logo img {
    position: absolute;
    top: 1em;
    z-index: 9;
}
.topbar {
    background-color: rgb(3, 87, 130);
    min-height: 50px;
    text-align: right;
}
#specialnav ul, #menu ul {
    list-style: none;
}
#specialnav li, #menu li {
    display: inline-block;
    position: relative;
}
#specialnav li a {
    border-right: solid 1px rgb(202, 182, 75);
    font-size: 0.875em;
    font-family: 'Merriweather', serif;
    color: rgb(202, 182, 75);
    line-height: 3.5;
    padding: 0 1em;
}
#specialnav li:last-child a {
    border: none;
}
#specialnav li a:hover {
    color: rgb(255, 255, 255);
}
.slicknav_nav {
    display: none;
}
#menu {
    background-color: rgb(255, 255, 255);
    text-align: right;
}
nav#mainnav {
    line-height: 5em;
}
#mainnav a,
#mainnav .sectionheader {
    font-family: 'Roboto Condensed', sans-serif;
    color: rgb(0, 66, 101);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 3.125;
    padding-left: 2em;
    white-space: nowrap;
}
#mainnav a:hover {
    color: rgb(202, 182, 75);
}
#mainnav li ul {
    background: rgb(3, 87, 130);
    min-width: 100%;
    padding: 1em;
    position: absolute;
    left: 0;
    line-height: 1.8;
    text-align: left;
    top: 4.1em;
    transition-delay: 0.2s;
    transition-duration: 0s;
    visibility: hidden;
    z-index: 1000;
}
#mainnav li:last-child ul {
    left: unset;
    right: 0;
}
#menu li:hover > ul {
    transition-delay: 0s;
    transition-duration: 0s;
    visibility: visible;
}
#menu li ul li {
    display: block;
}
#mainnav li ul li a {
    color: rgb(255, 255, 255);
    padding: 0;
}

/*Slide Up Animation Effect*/
@keyframes fadeInUp {
    from {
        transform: translate3d(0,1em,0);
        opacity: 0;
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}
/* Firefox < 16 */
@-moz-keyframes fadeInUp {
    from {
        transform: translate3d(0,1em,0);
        opacity: 0;
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,1em,0);
        opacity: 0;
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

/*Main Image*/
.wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.wrapper.home{
    min-height: 550px;
}
.wrapper.inside{
    min-height: 400px;
}
.wrapper img {
    animation: fadeInUp 0.3s;

    position: absolute;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}
.overlay {
    background-color: rgba(0, 0, 0, 0.251);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 69;
}
#photo_credit {
    font-size: 0.75rem;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgb(235, 235, 235);
    font-weight: bold;
    line-height: 1.167;
    text-align: left;
    position: absolute;
    bottom: 1em;
    left: 2%;
    max-width: 8em;
    z-index: 99;
}
.photo_text {
    animation: fadeInUp 0.5s;

    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 75;
}
.photo_text h1 {
    animation: fadeInUp 0.5s;

    font-size: 1.75rem;
    font-family: 'Merriweather', serif;
    color: rgb(255, 255, 255);
    font-weight: normal;
    margin-top: 0;
    text-transform: none;
    z-index: 74;
}
.photo_text span {
    font-size: 0.875rem;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgb(202, 182, 75);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.375;
}
.photo_text a.button {
    background: rgb(202, 182, 75);
    color: rgb(255, 255, 255);
}
.photo_text a.button:hover {
    color: rgb(3, 87, 130);
}
.inside .photo_text {
    top: 40%;
}

.home_boxes {
    background: rgb(255, 255, 255);
    box-sizing: border-box;
    font-size: 0; /*fix white space between blocks */
    padding: 20px 20px 0 0;
    position: relative;
    top: -3rem;
    z-index: 99;
}
.home_boxes a:hover h2 {
    color: rgb(202, 182, 75);
}
.content_block {
    animation: fadeInUp 1s;

    box-sizing: border-box;
    display: inline-block;
    font-size: 1rem;
    margin-bottom: 2rem;
    padding-left: 20px;
    position: relative;
    vertical-align: top;
    width: 25%;
}
.content_block h2 {
    height: 5em;
}
.content_block img {
    width: 100%;
    height: auto;
}
.goldbar {
    background: rgb(202, 182, 75);
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 0;
}

#mission {
    background-color: rgb(235, 235, 235);
    line-height: 1.5em;
    margin-top: 1rem;
    padding: 2rem;
    text-align: center;
}
#mission .page {
    max-width: 50em;
}

/*below fold image blocks*/
div#below_fold {
    padding: 2rem 0;
    font-size: 0; /*hack to fix side by side spacing */
}

.small_block,
.large_block {
    padding: 2rem 20px;
}

.small_block p {
    font-size: .9em;
}

.left_block,
.right_block,
.small_block {
    width: 50%;
    display: inline-block;
    margin: 0;
    vertical-align: text-top;
    font-size: 1rem;
    box-sizing: border-box;
}

.left_block img {
    width: 100%;
}

.right_block {
    position: absolute;
    top: 0;
    padding-left: 20px;
    padding-bottom: 2rem;
    padding-top: 2rem;
    height: 100%;
    width: 49%;
}

.right_block a.button {
    position: absolute;
    bottom: 4em;
}


/*Footer*/
footer {
    position: relative;
}

#donate {
    background-color: rgb(3, 87, 130);
    padding: 2rem;
    text-align: center;
}

#donate h1 {
    color: rgb(255, 255, 255);
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    font-weight: normal;
    margin-top: 0;
    text-transform: none;
}

#donate form {
    display: inline-block;
}

#donate a.button,
#donate input.button {
    margin: 1em;
    text-transform: none;
}

#info {
    background-color: rgb(17, 17, 17);
    font-size: 0.75rem;
    font-family: 'Roboto', sans-serif;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    line-height: 1.143;
    min-height: 18em;
    padding: 2rem;
}

#partners {
    display: inline-block;
    font-size: 0.625rem;
    font-family: 'Roboto', sans-serif;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    line-height: 1.6;
    vertical-align: top;
    width: 76%;
}
#partners .cols {
    column-count: 3;
    margin-top: 1rem;
}
.item {
    margin-right: 1em;
}
#partners a {
    color: rgb(255, 255, 255);
    font-weight: normal;
}
#partners a.button {
    color: rgb(202, 182, 75);
    text-transform: uppercase;
}
#partners a:hover {
    color: rgb(202, 182, 75);
}
#partners a.button:hover {
    color: rgb(255, 255, 255);
}
#partners a h3 {
    color: rgb(202, 182, 75);
    font-weight: bold;
}

#location {
    color: rgb(202, 182, 75);
    display: inline-block;
    width: 23%;
}

#location a {
    color: rgb(255, 255, 255);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    display: block;
    margin: 1em 0;
}
#location a#phone {
    color: rgb(202, 182, 75);
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
}
#location a i.fa {
    color: rgb(202, 182, 75);
}
#location a:hover {
    color: rgb(202, 182, 75);
}
#location a#phone:hover {
    color: rgb(255, 255, 255);
}
#location a i.fa:hover {
    color: rgb(255, 255, 255);
}

/*Listing Template*/
.listing.left,
.news.left {
    display: inline-block;
    margin-bottom: 2em;
    margin-right: 2%;
    padding-bottom: 1em;
    width: 23%;
}
.listing.left {
    border-bottom: solid 5px rgb(202, 182, 75);
    min-height: 200px;
    position: relative;
}
.listing.right,
.news.right {
    width: 73%;
    display: inline-block;
    /*    vertical-align: top;
        margin-top: 2em;*/
}
span.jobtitle {
    padding-right: 2em;
}
a.email {
    color: rgb(202, 182, 75);
    font-size: 2em;
    position: absolute;
    bottom: 1rem;
    right: 0;
}

div#NewsPostDetailContent {
    margin-top: 1em;
}

span#town {
    text-transform: capitalize;
}

/*Responsive*/
@media screen and (max-width: 1000px) {
    h2 {
        padding-top: 1em;
    }
    .large_block p {
        font-size: 0.8em;
    }
    .small_block p {
        display: none;
    }
}

@media screen and (max-width: 768px) {

    html {
        font-size: 15px;
    }

    #specialnav ul, #mainnav ul {
        display: none;
    }

    .slicknav_menu {
        /*display: block;*/
        float: right;
        min-height: 3rem;
        margin: 1em;
        position: relative;
        width: 3.5em;
    }
    span.slicknav_btn.slicknav_open {
        position: absolute;
        width: 100%;
        z-index: 99999;
    }
    .slicknav_icon-bar {
        background-color: rgb(202, 182, 75);
        float: right;
        height: 5px;
        margin: 3px 0;
        width: 100%;
    }
    .slicknav_nav {
        display: block;
        background: rgb(3, 87, 130);
        padding-top: 25%;
        margin: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        min-height: 100%;
        width: 100%;
        z-index: 9999;
    }
    .slicknav_nav ul {
        list-style: none;
    }
    .slicknav_menu li a,
    .slicknav_menu li.sectionheader {
        color: rgb(255, 255, 255);
        font-size: 1.6rem;
        font-weight: bold;
        /*padding-left: 2rem;*/
        line-height: 2;
        text-transform: uppercase;
    }
    .slicknav_menu .topbar ul {
        line-height: 1.5;
        text-align: left;
    }
    .slicknav_menu .topbar li a {
        color: rgb(202, 182, 75);
        font-family: 'Merriweather', serif;
        font-size: 1.2em;
        text-transform: unset;
    }

    /* Rotate first bar */
    .slicknav_open .slicknav_icon-bar:nth-child(1){
        transform: rotate(-45deg) translate(-6px, 5px);
        -webkit-transform: rotate(-45deg) translate(-6px, 5px);
        -moz-transform:    rotate(-45deg) translate(-6px, 5px);
        -ms-transform:     rotate(-45deg) translate(-6px, 5px);
        -o-transform:      rotate(-45deg) translate(-6px, 5px);
        margin: 0;
    }

    /* Fade out the second bar */
    .slicknav_open .slicknav_icon-bar:nth-child(2) {
        opacity: 0;
    }

    /* Rotate last bar */
    .slicknav_open .slicknav_icon-bar:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -5px);
        -webkit-transform: rotate(45deg) translate(-6px, -5px);
        -moz-transform:    rotate(45deg) translate(-6px, -5px);
        -ms-transform:     rotate(45deg) translate(-6px, -5px);
        -o-transform:      rotate(45deg) translate(-6px, -5px);
        margin: 0;
    }

    .content_block {
        font-size: 1.1rem;
        width: 50%;
    }

    .small_block,
    .large_block {
        padding: 20px;
    }
    .left_block,
    .right_block,
    .small_block {
        width: 100%;
        font-size: 0;
    }

    .right_block {
        font-size: 1rem;
        position: relative;
        top: 0;
        padding-left: 0;
        padding-bottom: 0;
        padding-top: 0;
        height: 100%;
        width: 100%;
    }
    .small_block .left_block,
    .small_block .right_block {
        width: 48%;
    }

    .small_block .left_block{
        margin-right: 4%;
    }
    .right_block h2 {
        line-height: 1.25;
        margin: 0;
        /*padding-top: 1.5rem;*/
    }
    .right_block p {
        line-height: 1.25;
    }
    .right_block a.button {
        position: relative;
        bottom: 0;
        margin: 0;
    }
    .large_block p {
        font-size: 1em;
    }
    .small_block p {
        display: block;
        font-size: 1em;
    }

    .listing.right {
        width: 100%;
    }
    .listing.left {
        width: 50%;
    }

}

@media screen and (max-width: 500px) {
    /*
        #menu {
            height: 5rem;
            margin: 0;
        }*/
    .slicknav_menu li a,
    .slicknav_menu li.sectionheader {
        font-size: 1.2rem;
    }

    .home.wrapper {
        min-height: 400px;
    }
    .home .photo_text {
        top: 35%;
    }

    .home_boxes {
        /*padding: 0 20px 0 0;*/
        top: 0;
    }

    #info {
        padding: 20px;
    }
    #info h1 {
        margin: 0;
    }
    #partners .cols {
        column-count: 2;
    }
    #partners {
        width: 100%;
    }
    #location {
        width: 100%;
        margin-top: 2rem;
    }
}

@media screen and (max-width: 400px) {

    html {
        font-size: 14px;
    }

    .content_block {
        font-size: 1rem;
    }
}
