/*font-family: 'Manrope', sans-serif;
font-family: 'Overpass', sans-serif;*/


html {
	scroll-behavior: smooth;
}
body {
	position:relative;
  font-family: 'Manrope', sans-serif;
}
h1, h2, h3, h4, h5 {
  color:#5C0D89;
}
a {
	cursor:pointer !important;
}

a.escape {
    position: fixed;
    right: 0;
    bottom: 10%;
    z-index: 9;
    background: #fbb614;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-items: center;
    align-content: center;
    text-decoration: none !important;
}

a.escape img {
    max-width: 50px;
}

.ovly {
    position:fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:rgba(0,0,0,0.5);
    z-index:9;
    display:none;
}
.ovly.is-active {
  display: block;
}
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 12px 8px 8px 8px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
    border: 3px solid transparent;
    float: right;
    margin: 30px 5% auto auto;
    display: flex;
}
span.hamburger-text.solid {
    color: #5c068c;
}
.hamburger-text {
    color: #FFFFFF;
    font-family: Overpass;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.19px;
    line-height: 28px;
    margin: 0px 5px 0px 10px;
    display: inline-block;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}
.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s linear .13s;
}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    position: absolute;
    width: 40px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #fff;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger--spring .hamburger-inner:before {
    top: 10px;
    transition: top .1s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19);
}
.hamburger-inner:before {
    top: -10px;
}
.hamburger-inner:after, .hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger--spring .hamburger-inner:after {
    top: 20px;
    transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19);
}
.hamburger-inner:after {
    bottom: -10px;
}
.hamburger--spring.is-active .hamburger-inner {
    transition-delay: .22s;
    background-color: transparent!important;
}
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
    background-color: #fff;
}
.hamburger--spring.is-active .hamburger-inner:before {
    top: 0;
    transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;
    transform: translate3d(0,10px,0) rotate(45deg);
}
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
    background-color: #fff;
}
.hamburger--spring.is-active .hamburger-inner:after {
    top: 0;
    transition: top .2s cubic-bezier(.33333,0,.66667,.33333),transform .13s cubic-bezier(.215,.61,.355,1) .22s;
    transform: translate3d(0,10px,0) rotate(-45deg);
}
.solid .hamburger-inner, .solid .hamburger-inner:after, .solid .hamburger-inner:before {
    background-color: #5c0d89;
}
.solid.hamburger.is-active .hamburger-inner, .solid.hamburger.is-active .hamburger-inner:after, .solid.hamburger.is-active .hamburger-inner:before {
    background-color: #5c068c;
}
.hamburger.is-active {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    margin: 0;
}

/*Site Buttons*/
.site-button {
    background: #1D9AA8;
    color: #fff;
    padding: 16px 22px 12px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Overpass', sans-serif;
    line-height: 1;
    letter-spacing: 0.16px;
    font-size: 15px;
    text-align: center;
    position: relative;
    transition: 0.25s ease all !important;
    overflow: hidden;
    z-index: 9;
    box-shadow: none !important;
    border:2px solid #1D9AA8;
}
.site-button:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -50%;
    background: #fff;
    border-radius: 200%;
    width: 200%;
    height: 0;
    transition: 0.25s ease all !important;
    z-index: -1;
}

.site-button:hover:after, .site-button:focus:after {
    height: 200%;
    bottom: -50%;
}

.site-button:hover, .site-button:focus {
    color: #1d9aa8 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}
.site-button-white {
    background: #fff;
    color: #1D9AA8;
    padding: 18px 24px 14px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Overpass', sans-serif;
    line-height: 1;
    letter-spacing: 0.16px;
    font-size: 15px;
    text-align: center;
    position: relative;
    transition: 0.25s ease all !important;
    overflow: hidden;
    z-index: 9;
    box-shadow: none !important;
    border:1px solid #fff;
}
.site-button-white:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background: #1D9AA8;
    border-radius: 200%;
    width: 100%;
    height: 0;
    transition: 0.25s ease all !important;
    z-index: -1;
}

.site-button-white:hover:after, .site-button-white:focus:after {
    height: 200%;
    bottom: -50%;
}

.site-button-white:hover, .site-button-white:focus {
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

/*Site Header*/
.site-header {
  position: relative;
}
.header-msg {
    background: #5C068C;
    color: #fff;
    text-align: center;
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    padding: 13px 0 11px 0;
    position: relative;
}
.header-msg p {
    margin:0;
}
a.header-donate-btn {
    color: #FFFFFF;
    font-family: Overpass;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.16px;
    text-align: center;
    background: #1D9AA8;
    height: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-items: center;
    align-content: center;
    flex-wrap: wrap;
    text-decoration: none !important;
    line-height: 1;
}
a.header-recite-btn{
    color: #FFFFFF;
    font-family: Overpass;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.16px;
    text-align: center;
    background: #fbb614;
    height: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-items: center;
    align-content: center;
    flex-wrap: wrap;
    text-decoration: none !important;
    line-height: 1;
}

.header-msg .header-donate-btn {
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: 2px 2px 6px 1px rgba(0,0,0,0.5);
    z-index: 9;
}
.header-msg .header-recite-btn {
    position: absolute;
    top: 0;
    /*right: 0;*/
    box-shadow: 2px 2px 6px 1px rgba(0,0,0,0.5);
    z-index: 9;
}

a.header-donate-btn img {
    width: 22px;
    margin-left: 5px;
}
.global-header.solid-white {
    position: relative;
    background: #1d9aa8;
}

.global-header {
    position: absolute;
    z-index: 8;
    width:100%;
}

a.header-logo img {
    max-width: 300px;
    margin: 8px auto auto 8%;
}

.hero-slide {
    height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.slick-arrow {
    display: none !important;
}
.hs-cont-wrap {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-items: center;
    align-content: stretch;
}

.hcw-wrap {
    margin: auto auto 5% auto;
    width:100%;
    position: relative;
    z-index: 9;
}

.hs-cont-wrap h1 {
    color: #FFFFFF;
    font-family: Manrope;
    font-size: 102px;
    font-weight: 800;
    letter-spacing: -1.85px;
}
.hero-slide-btn-wrap {
    display: block;
    width: 100%;
    text-align: center;
}
.dmvh {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #FFFFFF;
    font-family: Overpass;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0.27px;
    text-align: center;
    width: 100%;
}
.dmvh i {
    transform: rotate(90deg);
}
#home-hero {
    position: relative;
}

.dmvh a {
    color: #fff !important;
}
.hero-slide:after {
    content: '';
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000000 100%);
    width: 100%;
    height: 35%;
    position: absolute;
    bottom: 0;
    left: 0;
}

/*Secondary Solid Header*/
.s-bg-solid {
    background: #1d9aa8;
    text-align: center;
    padding: 4% 0 2%;
}

.s-bg-solid h1 {
    color: #fff;
    font-family: Manrope;
    font-size: 80px;
    font-weight: 600;
    letter-spacing: -1.45px;
}
/*Secondary Featured Image Header*/
.s-bg-img {
    background-size: cover !important;
    padding: 28% 0 0 0;
}
h1.hero-title.sbi {
    color: #1D1D1D;
    font-family: Manrope;
    font-size: 80px;
    font-weight: 600;
    letter-spacing: -1.45px;
    text-align: center;
    padding: 3% 0;
}

/*Home Survivors Section*/
#survivors {
    background-size: cover !important;
    background-position: top center;
    background-repeat: no-repeat !important;
    padding: 10% 0 5% 0;
}
#survivors .col-md-5 {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
#survivors img {
  width: 100%;
}

/*Home Support Section*/
#support {
    background: #5C068C;
    color: #fff;
    padding: 5% 0 0 0;
    text-align: center;
}

#support h2, #support h3 {
    color: #fff !important;
}
.support-pod {
    max-width: 350px;
    margin: auto;
    padding: 60px 50px 30px;
}

.support-pod h3 {
    font-size: 22px;
    font-weight: 500;
}

#support > img {
    width: 100%;
    padding-top: 5%;
}

/*Home Blog Section*/
.home-post-pod {
    width: 33%;
    display: inline-block;
    color:#fff;
    margin: 2px auto 0 auto;
    position: relative;
}

#blogpods .home-post-pod {
    margin:2px 0 0 0;
}

.hpp-img {
    width: 100%;
    height: 350px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.hpp-wrap {
    display: flex;
}

.home-post-pod h3 {
    color: #fff !important;
    font-size: 16px !important;
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    padding-top: 42px;
    padding-bottom: 12px;
    position: relative;
}

.hpp-wrap .home-post-pod:first-of-type {
    background: #E6A711;
}
.hpp-wrap .home-post-pod:nth-of-type(2) {
    background: #60A602;
}
.hpp-wrap .home-post-pod:nth-of-type(3) {
    background: #5C068C;
}

.home-post-pod h3:after {
    content: '';
    height: 2px;
    width: 100%;
    background: #fff;
    bottom: 0;
    left: 0;
    position: absolute;
}

.hpp-cont-wrap {
    padding: 0 40px 80px 40px;
}
a.hpp-readmore {
    color: #fff !important;
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    position: absolute;
    bottom: 20px;
    left: 40px;
}

#blogpods {
    padding: 5% 0 0 0;
    background: #F7F7F7;
}

#blogpods h2 {
    text-align: center;
}

#blogpods > .container > p {
    max-width: 710px;
    margin: auto;
    padding-bottom: 20px;
    text-align:center;
}
.hpp-btn-wrap {
    text-align: center;
    padding-top: 40px;
}

/*Home Instagram Section*/
#home-insta {
    background: #5c068c;
    position: relative;
}
#home-insta a {
    color: #fff !important;
}
section#home-insta:after {
    content: '';
    background: #f7f7f7;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15%;
}
.hi-wrap {
    background-repeat: no-repeat;
    background-size: contain !important;
    background-position: top left;
    text-align: center;
    padding: 15% 0 5% 0;
    color: #fff;
    position: relative;
    z-index: 2;
}
section#home-insta h2 {
    color: #fff;
}

/*Secondary Page Template*/
.single-post:not(.has-sidebar) #primary, .page.page-one-column:not(.mnadv-front-page) #primary, .archive.page-one-column:not(.has-sidebar) .page-header, .archive.page-one-column:not(.has-sidebar) #primary, .wrap {
  max-width: none !important;
  padding-left:none !important;
  padding-right:none !important;
}

/*Secondary Template*/
.s-content {
  padding: 0 15px 5%;
  color:#1c1a1a;
  font-size:17px;
  background-repeat: no-repeat;
  background-size: contain;
}
.s-content h3 {
    font-size: 1.85rem;
}
.s-content .site-button {
    margin-bottom: 20px;
}
.s-content a:not(.site-button):not(.site-button-white) {
    color: #5C0D89;
}
.s-content a:hover {
    color: #5C0D89;
}
.vc_grid-container-wrapper {
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.s-content ul, .is_single ul {
  margin: 30px 0 1.5em 20px;
  padding: 0;
  list-style:none;
}
.s-content ul li, .is_single ul li{
  margin: 15px 0 0 20px;
  position: relative;
  background-repeat: no-repeat !important;
  background-position: left 6px !important;
  padding: 0 0 0 24px;
}

.s-content ul li:before, .is_single ul li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f138";
    margin-left: -35px;
    display: inline-block;
    border-radius: 20px;
    padding: 2px 6px 1px 6px;
    font-size: 16px;
    margin-right: 8px;
    position: absolute;
    color: inherit;
}
.s-content ul ul li:before, .is_single ul ul li:before {
   content: "\f101";
}
.s-content ul.teal li:before, .is_single ul.teal li:before {
    color: #1d9aa8;
}
.s-content ul.purple li:before, .is_single ul.purple li:before {
    color: #5C0D89;
}
.s-content ol li:before, .is_single ol li:before {
    background: #2E2E2E;
    padding: 2px 8px 0px;
    content: '';
    position: absolute;
    left: 17px;
    z-index: -1;
    border-radius: 13px;
    counter-increment: listitem;
    content: counters(listitem, '.') '';
    color: #fff;
}
.s-content ol, .is_single ol {
    position: relative;
  counter-reset:listitem;
  list-style:none;
}
.s-content ol li, .is_single ol li {
  padding-left: 12px;padding-bottom: 15px;
}
.s-content h4{
    padding-top: 0.75em;
}
.no-margin-padding .teal_bg .wpb_content_element{
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.no-margin-padding .teal_bg {
    margin-bottom: 0 !important;
}

/*Accordian*/
.vc_tta-panel-title {
    background: #2e2e2e;
}
.vc_tta-panel-title a {
    color: #fff !important;
}
.vc_tta-panel-body {
    background: #fff !important;
}
i.vc_tta-controls-icon:before, i.vc_tta-controls-icon:after {
    border-color: #fff !important;
}

/*Site Footer*/
.site-footer {
    border-bottom: 8px solid #5C068C;
    padding: 30px 0 0 0;
    color: #1D1D1D;
    border-top: none;
    background:#F7F7F7;
    margin-top: 0;
}

.site-footer > .container > .row {
    text-align: center;
    padding-bottom: 30px;
}

.site-footer h2 {
    font-weight: 700;
    font-size: 22px;
}

.site-footer > .container > .row p {
    margin: 0;
}

.site-footer > .container > .row a {
    color: #126069;
}
.footer-shade-section {
    background-color: #F7F7F7;
    padding: 45px 0 25px 0;
    position: relative;
    overflow: hidden;
}
.footer-shade-section:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.25);
}
.site-footer h3 {
    font-weight: 900;
    font-size: 18px;
}
.pwd {
    text-align: center;
    color: #999999;
    padding-top: 40px;
}
.pwd a {
    color: #999999 !important;
}
.social-media-wrap i {
    color: #5C0D89;
    font-size: 32px;
    margin: 0 8px;
}
select.goog-te-combo {
    width: 100%;
    max-width: 250px;
    background: #1d9aa8;
    color: #fff;
    font-size: 16px;
}

/*Blog*/
.post-pod article {
    width: 100% !important;
    float: none !important;
}
img.single-featured-img {
    width: 100%;
    margin-bottom: 30px;
}
.post-pod h3.entry-title {
    text-align: center;
    margin-top: 30px;
}
.post-pod-link-wrap {
    text-align: center;
    padding-bottom: 30px;
    display: block;
}
.blog-single {
    max-width: 900px;
    overflow: hidden;
    font-size: 17px;
    margin-top: 5%;
}
.meta-info {
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.meta-info p {
    display: inline-block;
    font-weight: 700;
}

.meta-info p:first-of-type {
    margin-right: 15px;
}
nav.navigation.pagination h2 {
    display: none;
}
.post-featured-image {
    width: 100%;
    height: 430px;
    padding-top:15px;
    background-size: cover !important;
}
.blog-landing-row {
    padding:5% 0;
    display: flex;
    flex-wrap: wrap;
}
.post-pod h3 {
    padding:1em 1em 0 1em;
}
.post-pod h3 a {
    color:#5c068c !important;
    text-decoration:none !important;
}
.post-pod-contnet {
    padding:0 2em 2em 2em;
    display:grid;
}
.post-pod {
    box-shadow: 0px 2px 12px rgba(0,0,0,0.5);
    margin-bottom:35px;
}
.single-content {
    padding:5% 0;
}
#comments label {
    display: block;
}
#comments textarea, #comments input:not([type="submit"]) {
    width:100%;
    border-radius:5px;
}
#comments input[type='submit'] {
    border:none;
}
.post-pod .btnDefault {
    margin: 3em auto 1em;
    display: table;
}
.link-more a i {
    padding-left:5px;
}
h2.is_single {
    font-size: 60px !important; 
}
.site-content.is_single {
    padding: 5% 0;
}
#comments {
    max-width: 992px;
    margin: 2% auto 5%;
    padding: 0 15px;
}
.site-content.is_single .wrap {
    margin:0 15px;
}
.container.blog_single_feature img {
    width:100%;
}
.container.blog_single_feature {
    margin-top: -40px;
}
.blog-btn-wrap {
    width: 100%;
    text-align: center;
    margin: 3% 0 0 0;
}
.archive_row {
    margin:10% 0 5% 0;;
}
.auth-wrap {
    background-image: linear-gradient(to right, #0f1c3d , transparent);
    display: inline-block;
    padding: 0.5em 3em 0.5em 1em;
    color: #fff;
    margin-top: 7px;
}
span.auth_name {
    text-transform: uppercase;
    font-weight: 600;
}
img.prod-title-img {
    max-height: 50px;
    display: block;
    margin: auto;
}
nav.navigation.post-navigation {
    display:none;
}
a.more-link {
    display: block;
    margin-top: 30px;
    background: #e44426;
    padding: 15px;
    color: #fff !important;
    font-size: 14px;
    letter-spacing: 0.13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
    transition: .25s all;
    text-transform: uppercase;
    text-align: center;
    border: 2px solid #e44426;
}
a.more-link:hover, a.more-link:focus {
    background:#fff;
    color: #e44426 !important;
    outline:none;
}
p.link-more {
    margin: auto auto 0 auto;
}
.screen-reader-text {
    display:none;
}
.blog-landing-row .home-post-pod:nth-child(3n+1) {
    background: #E6A711;
}

.blog-landing-row .home-post-pod:nth-child(3n) {
    background: #5C068C;
}

.blog-landing-row .home-post-pod:nth-child(3n + 2) {
    background: #60A602;
}
.navigation.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    flex-wrap: wrap;
    width: 100% !important;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    padding-bottom: 0;
}

/*Escape Modal*/
#escape_modal .modal-content {
    background: #5C068C;
    color: #fff;
    text-align: center;
    padding:30px;
}

#escape_modal .modal-content a:not(.site-button) {
    color: #fff !important;
    font-weight: 700;
}

#escape_modal *:not(.site-button) {
    color: #fff;
}

#escape_modal h2 {
    font-family: Manrope;
    font-size: 58px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 30px 0 14px 0;
    background: #fbb614;
}

#escape_modal h3 {  
  font-family: Manrope;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.3px;
}

#escape_modal .close {
    position: absolute;
    right: 15px;
    top: 15px;
}
#escape_modal .site-button {
    width: fit-content !important;
    margin: auto;
    background: #fbb614 !important;
    border-color: #fbb614 !important;
}
#escape_modal .site-button:hover {
    color: #fbb614 !important;
}

/*Staff Section*/
.staff-wrap {
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
}

.staff-pod {
    padding: 15px;
    box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.3);
    margin-bottom: 60px;
}

.sic_def {
    padding: 15px;
}
.staff-img {
    width: 100%;
    height: 360px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-origin: content-box;
}
.staff-wrap .col-lg-4:nth-of-type(3n + 1) .staff-img{
    background-color: #E6A711;
}
.staff-wrap .col-lg-4:nth-of-type(3n + 2) .staff-img {
    background-color: #60A602;
}
.staff-wrap .col-lg-4:nth-of-type(3n + 3) .staff-img {
    background-color: #5C068C;
}

.staff-name {
    font-size: 22px;
    color: #5c0d89;
    font-weight: 700;
    margin-top: 15px;
}

a.staff-email {
    background: #1d9aa8;
    color: #fff !important;
    padding: 5px 12px;
    display: inline-block;
    margin-top: 15px;
    box-shadow: none !important;
}
a.staff-bio-btn {
    background: #5c068c;
    color: #fff !important;
    padding: 5px 12px;
    display: inline-block;
    margin-top: 15px;
    box-shadow: none !important;
    margin-right: 5px;
}

/*Board of Directors*/
/* .bod-pod {
    background: #e8e7e7;
    padding: 15px;
    margin-bottom: 15px;
} */

.bod-pod {
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #369ca7;
    border-radius: 9px;
    -moz-box-shadow: 0 0 3px #ccc;
    box-shadow: 3px 3px 3px #369ca7;
}

.bod-name {
    font-size: 22px;
    font-weight: 700;
    color: #5c0d89;
}

.bod-info {
    font-style: italic;
}

/*______*/
.entry-content a, .entry-summary a, .widget a, .site-footer .widget-area a, .posts-navigation a, .widget_authors a strong {
    box-shadow: none !important;
}

/*Accordian Option Classes*/
.vc_tta-panel-title {
    background: #5c0d89 !important;
}
.page-id-671 .s-content .btm_line h3 {
    font-size: 1.95rem !important;
    position: relative;
    display: block;
    margin-bottom: 0px;
}

.btm_line h4 {
    background: #dadada;
    margin-bottom: 0;
    line-height: 1;
    padding: 20px;
}

.btm_line ul {
    background: #f3f3f3;
    padding: 5px 15px 15px;
    margin: 0 0 30px 0;
    display: block;
}

.btm_line ul li:before {
    content: '';
}

.btm_line ul li {
    padding: 0;
}

.btm_line ul li a {
    font-weight: 700;
}
.affiliate_custom h3 {
    padding: 15px;
    background: #dadada;
    margin-bottom: 0;
}
.board-members h2 {
    margin-top: 60px;
}

.turquoise-underine h2, .turquoise-underine h3, h2.turquoise-underine, h3.turquoise-underine  {
    position: relative;
    display: inline-block;
} 
.turquoise-underine h2:after, .turquoise-underine h3:after, h2.turquoise-underine:after, h3.turquoise-underine:after {
    content: '';
    background: #1D9AA8;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 120%;
    height: 2px;
    max-width: 85vw;
}
.bold-link {
    font-weight: 700;
    border-bottom: 3px solid;
}

/*Footer Search Bar*/
.footer-search-bar .search-submit svg {
    display: none;
}

.footer-search-bar .search-submit:after {content: 'Search';}

.footer-search-bar .search-submit {
    background: #1d9aa8;
    right: 1px;
    top: 1px;
    height: calc(100% - 2px);
}

.footer-search-bar {
    margin-bottom: 30px;
}

.footer-search-bar label {
    position: absolute;
}
.search-landing .search-form {
    margin: 10% 0 5%;
}
@media screen and (min-width: 48em){
.has-sidebar:not(.error404) #primary {
    float: none !important;
    margin:auto !important;
}
}
@media (min-width:768px) {
    span.mobile-block:before {
      content: '';
      padding-left: 5px;
    }
    .desktop-block-seperator:before {
      content: '|' !important;
      padding: 0 5px;
    }
    .desktop-block-seperator:after {
      content: '|';
      padding: 0 5px;
    }
    .desktop-block-seperator {
      display: inline-block;
     }
    .footer-shade-section .col-md-4:not(:first-of-type) {
      text-align: center;
    }
    .h-content h2 {
      font-size: 55px;
    }
    .hi-mobile {
        display: none;
    }
    .footer-shade-section .row .col-md-4:not(:nth-of-type(3)) {
        border-right: 1px solid #E9E9E9;
    }
    .hamburger:hover, .hamburger:focus {
        background: #5c068c;
        border: 3px solid #fff;
        outline: none;
    }
    .solid.hamburger:hover, .solid.hamburger:focus {
        background: #FFF !important;
        border: 3px solid #5c068c !important;
        outline: none;
    }
}
@media (min-width: 992px) {
    #survivors {
        background-attachment: fixed;
    }
    .header-msg {
        padding: 13px 125px 11px 0;
    }
    .topmenu .header-donate-btn {
        display: none !important;
    }
    .topmenu .header-recite-btn {
        display: none !important;
    }
}
@media (max-width:991px) {
    .blog-landing-row .home-post-pod {
        width: 50%;
    }
    .header-msg .header-donate-btn {
        display: none;
    }
    .header-msg .header-recite-btn {
        display: none;
    }
    .topmenu .header-donate-btn {
        padding: 15px 15px 10px 15px;
        margin-top: 30px;
    }
    .topmenu .header-recite-btn {
        padding: 15px 15px 10px 15px;
        margin-top: 30px;
    }
}
@media (max-width:768px) {
    a.header-logo img {
        max-width: 180px;
        margin: 15px auto auto auto;
    }

    a.header-logo {
        margin: auto;
        text-align: center;
    }

    .global-header {
        text-align: center;
    }

    .s-bg-solid h1 {
        font-size: 40px;
    }
    .hamburger {
        position: absolute;
        right: 0;
        top: 0;
        padding: 10px;
        margin: 0;
    }

    .hamburger-text {
        display: none;
    }

    .header-msg p {
        font-size: 14px;
    }
    .hs-cont-wrap h1 {
        font-size: 44px;
    }
    .blog-landing-row .home-post-pod {
        width: 100%;
    }
    #blogpods .home-post-pod {
        width: 100%;
    }

    #blogpods .hpp-wrap {
        display: block;
    }
    .hi-dektop {
        display: none;
    }
    p.dmvh {
        font-size: 14px;
    }
    #survivors {
        text-align: center;
    }

    #survivors a {
        margin: auto;
    }
    .support-pod img {
        width: 120px;
    }

    .support-pod h3 {
        margin-top: 0;
        padding-top: 5px;
    }

    .support-pod {
        padding: 15px 30px 15px;
    }
    #support, #support > img {
        padding-top: 60px;
    }
    #home-insta h2 {
        width: 50%;
        margin: auto;
    }
    .mobile-block {
        display: block;
    }
    .footer-shade-section {
        text-align: center;
    }

    .footer-shade-section .col-md-4:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background: #E9E9E9;
    }

    .footer-shade-section .col-md-4 {
        position: relative;
        padding: 20px 15px;
    }
    a.escape {
        display: block;
        text-align: center;
        font-size: 14px;
        padding: 10px;
    }

    a.escape img {
        display: block;
        width: 40px;
        margin: auto;
    }
    .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
        height: 2px;
    }
    .solid.hamburger:hover, .solid.hamburger:focus {
        background: #fff;
        padding: 10px;
        outline: none;
    }
    .s-bg-img {
        padding: 0;
        height: 300px;
    }
    .nav-wrap.is-active {
        width: 100% !important;
    }
    h1.hero-title.sbi {
        text-align: left;
        font-size:39px;
        padding: 40px 35px 3% 30px;
    }
    .staff-img {
        height: 250px;
    }
    .staff-pod {
        max-width: 270px;
        margin: auto auto 30px auto;
    }
}


a:not([href]):not([tabindex]):hover,a:not([href]):not([tabindex]):focus{
	color:inherit;
	text-decoration:none;
}

nav.main-nav a:focus, nav.main-nav a:focus-within {
	outline:none;
	font-weight:700;
	text-decoration:underline;
}
.skipto {
	position:absolute;
	color:#fff !important;
	text-decoration:important;
	left:-500px;
	top:-500px;
}
.skipto:focus, .skipto:hover {
    color: #fff !important;
    display: block;
    left: 10px;
    top: 0;
    font-weight: 700;
    z-index: 9999;
    background: #e44226;
}
/*main nav*/
nav.main-nav {
	position: absolute;
	right: -20px;
	top: 0;
	z-index: 0;
	height: 100%;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
	-webkit-transform: scale(0.85);
	-ms-transform: scale(0.85);
	transform: scale(0.85);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	width:0;
	background: #5c068c;
	padding: 80px 2em 2em;
}
nav.main-nav li {
	text-align:left;
}
nav.main-nav li a{
	display:none;
	position:relative;
}
nav.main-nav.is-active li a{
	display:inline-block;
}
div.screen nav.main-nav ul {
	padding: 2em 0 0 0;
}
nav ul, nav ol {
	list-style: none;
	padding: 0;
}
div.screen nav.main-nav ul li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
nav.main-nav ul li a {
    position: relative;
}
nav.main-nav ul li a:not(.topmenu-home-link):after, .menu-item-button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
nav.main-nav ul li a:hover, .menu-item-button:hover {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
nav.main-nav ul li a:hover:after, .menu-item-button:hover:after {
    width: 100%;
}
nav.main-nav.is-active {
	display: block;
	z-index: 10;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-opacity: 1;
	-moz-opacity: 1;
	opacity: 1;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	width:100%;
	overflow-y: scroll;
}
nav.main-nav > ul > li li.current-menu-item > a {
	font-weight:900;
    border-bottom: 1px solid #fff;
}
nav.main-nav a.btn_transp {
    font-size: 22px;
    margin: 45px 0;
}
div.screen nav.main-nav ul li a:last-child {
	border: none;
}
nav.main-nav ul li a, .menu-item-button {
	font-size: 30px;
  margin-bottom: 7px;
	color: #fff !important;
	text-align:left;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	position:relative;
	font-weight:400;
	text-decoration:none !important;
}
button.menu-item-button {
    background: none !important;
    padding: 0;
    position: relative;
    padding-right: 50px;
    outline:none;
}
.topmenu > li > a{
	font-weight:700;
}
a.topmenu-home-link img {
    max-width: 70%;
}

a.topmenu-home-link {
    margin-bottom: 30px !important;
    display: block;
}
.nav-wrap {
	overflow: hidden;
	position: fixed;
	z-index:99;
	top: 0;
	right: 0;
	width: 0;
	height: 100vh;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.nav-wrap.is-active {
	width:575px;
    max-width: 100%;
}
.menu-item-has-children {
	position:relative;
	/*display:table;*/
}
nav.main-nav li.menu-item-has-children > a {
    padding-right: 45px;
}
/*nav.main-nav > ul > li:not(:last-of-type) {
    border-bottom: 1px solid #fff;
    display: block;
}*/
.menu-item-has-children i {
	position: absolute;
    top: 6px;
    right: 0;
    font-size: 20px;
    color:#fff ;
    padding: 10px;
    z-index: 99;
}
nav.main-nav > ul > li.current-menu-item a{
	/* background-image: linear-gradient(to right, #1d4029 , #71927c); */
	font-weight:700;
}
nav.main-nav > ul > li.current-menu-item > a {
    padding: 0 15px !important;
}
.sub-menu {
	position:relative;
	display:block;
	margin-left:25px;
}
.sub-menu:not(.active) li {
	height:0;
	opacity:0;
}
.sub-menu li a{
	font-size:22px !important;
}
.sub-menu.is-active li{
	height:auto;
	opacity:1;
	transition: opacity 0.5s linear;
}
span.text {
    font-size: 15px;
    font-weight: 600;
    margin-left: 15px;
}
nav.main-nav li.menu-item-has-children > a:hover .sub-menu {
	display:block !important;
}





















