/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Vars
# Colors
# Typography & Resets
# Utility Classes
# Lazy Load
# Header
# Navigation
# Button Styling
# General Styles
# General Sections
# Footer
# Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Vars
--------------------------------------------------------------*/
:root {
    --color-white: #fff;
    --color-black: #000;
    --color-snow: #F5FAFF;
    --color-navy: #014464;
    --color-pink: #F28A8B;
    --color-pewter: #83ADB9;
    --color-grape: #AC93B1;
    --color-crimson: #AA2831;
    --color-buttercup: #E09829;
    --color-sapphire: #375172;
    --color-grey: #505D68;
    --font-size-primary-heading: min(calc(2.5rem + 2vw), 3.3rem); /* 54px */
    --font-size-secondary-heading: min(calc(1.85rem + 1.6vw), 3rem); /* 48px */
    --font-size-back-forth-heading: min(calc(1.5rem + 1vw), 2.5rem); /* 40px */
    --font-size-heading-three: min(calc(1rem + 1vw), 2rem);
    --font-size-tertiary-heading: min(calc(1.3rem + 1vw), 2.3rem); /* 35px */
    --font-size-quartary-heading: min(calc(1.2rem + 0.5vw), 1.4rem); /* 23px*/
    --font-size-quinary-heading: min(calc(1rem + 0.2vw), 1.2rem);
    --font-size-body: 1rem; /* 16px */
    --font-size-button: 1.13rem;  /* 18px */
    --font-size-subhead: 1.3rem; /* 20px */ 
    --font-family-headline: 'Poppins', sans-serif;
    --font-family-text: 'Poppins', sans-serif;
    --font-family-content: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/
/* White */
.cl-white,
.cl-white-h:hover,
.cl-white-h:focus{
    color: var(--color-white) !important;
}
.border-white{
    border: 1px solid var(--color-white);
}
.bg-white,
.bg-white-h:hover,
.bg-white-h:focus{
  background-color: var(--color-white);
}
/* Black */
.cl-black,
.cl-black-h:hover,
.cl-black-h:focus{
    color: var(--color-black) !important;
}
.border-black{
    border: 1px solid var(--color-black);
}
.bg-black{
  background-color: var(--color-black);
}

/* Grey */
.cl-grey,
.cl-grey-h:hover,
.cl-grey-h:focus{
    color: var(--color-grey); 
}
.border-grey{
    border: 1px solid var(--color-grey);
}
.bg-grey{
  background-color: var(--color-grey);
}

/* Crimson */
.cl-crimson,
.cl-crimson-h:hover,
.cl-crimson-h:focus{
    color: var(--color-crimson) !important;
}
.border-crimson{
    border: 1px solid var(--color-crimson);
}
.bg-crimson,
.bg-crimson-h:hover,
.bg-crimson-h:focus{
  background-color: var(--color-crimson);
}

/* Grape */
.cl-grape,
.cl-grape-h:hover,
.cl-grape-h:focus{
    color: var(--color-grape) !important;
}
.border-grape{
    border: 1px solid var(--color-grape);
}
.bg-grape,
.bg-grape-h:hover,
.bg-grape-h:focus{
  background-color: var(--color-grape);
}

/* Pewter */
.cl-pewter,
.cl-pewter-h:hover,
.cl-pewter-h:focus{
    color: var(--color-pewter) !important;
}
.border-pewter{
    border: 1px solid var(--color-pewter);
}
.bg-pewter,
.bg-pewter-h:hover,
.bg-pewter-h:focus{
  background-color: var(--color-pewter);
}

/* Snow */
.cl-snow,
.cl-snow-h:hover,
.cl-snow-h:focus{
    color: var(--color-snow) !important;
}
.border-snow{
    border: 1px solid var(--color-snow);
}
.bg-snow,
.bg-snow-h:hover,
.bg-snow-h:focus{
  background-color: var(--color-snow);
}

/* Navy */
.cl-navy,
.cl-navy-h:hover,
.cl-navy-h:focus{
    color: var(--color-navy) !important;
}
.border-navy{
    border: 1px solid var(--color-navy);
}
.bg-navy,
.bg-navy-h:hover,
.bg-navy-h:focus{
  background-color: var(--color-navy);
}

/* Pink */
.cl-pink,
.cl-pink-h:hover,
.cl-pink-h:focus{
    color: var(--color-pink) !important;
}
.border-pink{
    border: 1px solid var(--color-pink);
}
.bg-pink,
.bg-pink-h:hover,
.bg-pink-h:focus{
  background-color: var(--color-pink);
}

/* Buttercup */
.cl-buttercup,
.cl-buttercup-h:hover,
.cl-buttercup-h:focus{
    color: var(--color-buttercup) !important;
}
.border-buttercup{
    border: 1px solid var(--color-buttercup);
}
.bg-buttercup,
.bg-buttercup-h:hover,
.bg-buttercup-h:focus{
  background-color: var(--color-buttercup);
}
/*--------------------------------------------------------------
# Typography & Resets
--------------------------------------------------------------*/
body,
html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family-text);
    overflow-x: hidden;
    overflow-wrap: normal;	
    color: var(--color-navy);
    font-size: var(--font-size-body);
    background-color: var(--color-snow);
    margin-bottom: 0 !important;  
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1em !important;
}

h1 {
    font-size: var(--font-size-primary-heading);
    font-family: var(--font-family-headline);
    font-style: normal;
    font-weight: 600;
    line-height: 82px;
    text-transform: capitalize;
}

h2 {
    font-size: var(--font-size-secondary-heading);
    font-family: var(--font-family-headline);
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
}

h2.back-forth-title{
  font-size: var(--font-size-back-forth-heading);
}

.page-main-hero h2{
font-size: var(--font-size-back-forth-heading);
font-weight: 700;
text-transform: capitalize;
}

h3 {
    font-size: var(--font-size-heading-three);
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--font-family-headline); 
}

h4 {
    font-size: var(--font-size-quartary-heading);
}

h5,
h6 {
    font-size: var(--font-size-quinary-heading);
    font-family: var(--font-family-headline);
    margin: unset; 
}


span.subheading{
font-family: var(--font-family-headline);
font-size: var(--font-size-subhead); 
font-style: normal;
font-weight: 600;
line-height: 1.1em; 
text-transform: capitalize;
}

span.icon-columns-title{
  color: var(--color-black);
  font-family: var(--font-family-headline);
  font-size: var(--font-size-button);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

a,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
    transition: 0.3s ease all;
}

a:visited, a, a:hover {
    color: unset;
}

p{
  font-family: var(--font-family-content);
  font-size: var(--font-size-body);
  font-style: normal;
  font-weight: 500;
  line-height: 1.8em; 
}

section{   
    padding: 6em 0;
    position: relative;
    width: 100%; 
}

.auto{
  margin: auto; 
}

.column{ 
  flex-direction: column;
}

.main-headline{
    background-color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    display: block;
    margin: 0 auto;
    max-width: 80%;
}
.main-subheadline{
    margin-top: 54px;
}
/*--------------------------------------------------------------
# Stops Some Of Looms Issues on Certain Browsers
--------------------------------------------------------------*/
section#shadow-host-companion {
    padding: 0;
    margin: 0;
}

/*--------------------------------------------------------------
# Button Styling
--------------------------------------------------------------*/
.button {
  display: inline-block;
  text-decoration: none;  
  padding: 10px 30px;
  font-size: var(--font-size-button);
  font-family: var(--font-family-text);
  text-shadow: none;
  box-shadow: none;
  transition: 0.3s ease all;   
  -o-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all; 
  position: relative;
  cursor: pointer;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  border-radius: 50px;
}

.button:hover{
  letter-spacing: 1.8px; 
}
.d-block{
  display: block;
}
.col-footer .button{
  max-width: 212px;
}
.popmake .button-wrapper{
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}
.event-feed-for-eventbrite-app .eventbrite-feed .eventbrite-item-details, .event-feed-for-eventbrite-app .eventbrite-feed .eventbrite-item-checkout{
  display: inline-block !important;
  text-decoration: none !important;
  padding: 10px 30px !important;
  font-size: var(--font-size-button) !important;
  font-family: var(--font-family-text) !important;
  transition: 0.3s ease all !important; 
  -webkit-transition: 0.3s ease all !important;
  position: relative !important;
  cursor: pointer !important;
  text-align: center !important;
  font-style: normal !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
}

.event-feed-for-eventbrite-app .eventbrite-feed-list .eventbrite-item-datetime{
  color: var(--color-pink) !important; 
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-center{
    text-align: center;
  }
.text-left{
  text-align: left;
}
  .relative{
      position: relative;
  }
  .over-hide{
    overflow: hidden;
  }
  .h-100{
      height: 100%;
  }
  
  .w-100{
      width: 100%;
  }
  .gap-05{
    gap: 0.5em;
  }
  .gap-1{
      gap: 1em;
    }
    .gap-2{
      gap: 2em;
    }
    .gap-3{
      gap: 3em;
    }
    .p-0{
      padding: 0 !important;
    }
    .ps-0{
      padding-left: 0 !important;
    }
    .pe-0{
      padding-right: 0 !important;
    }
    .pe-1{
      padding-right: 1em !important;
    }
    .p-t0{
      padding-top: 0 !important;
    }
    .p-t05{
      padding-top: 0.5em;
    }
    .p-t1{
      padding-top: 1em !important;
    }
    .p-t2{
      padding-top: 2em !important;
    }
    .p-t3{
      padding-top: 3em !important;
    }
    .p-t4{
      padding-top: 4em !important;
    }
    .p-b0{
      padding-bottom: 0 !important;
    }
    .p-b1{
      padding-bottom: 1em;
    }
    .p-b2{
      padding-bottom: 2em;
    }
    .p-b3{
      padding-bottom: 3em;
    }
    .p-b4{
      padding-bottom: 4em;
    }
    .p-b5{
      padding-bottom: 5em;
    }
    .p-y6{
      padding: 6em 0;
    }
    .m-0{
      margin: 0 !important;
    }
    .ms-0{
      margin-left: 0 !important;
    }
    .me-0 {
      margin-right: 0 !important;
    }
    .mb-0 {
      margin-bottom: 0 !important;
    }
    .mb-10px{
      margin-bottom: 10px;
    }
    .mt-02 {
      margin-top: 0.2em !important;
    }
    .mb-02 {
      margin-bottom: 0.2em !important;
    }
    .m-b1{
      margin-bottom: 1em !important;
    }
    .m-b2{
      margin-bottom: 2em;
    }
    .m-b3{
      margin-bottom: 3em;
    }
    .m-b4{
        margin-bottom: 4em;
      }
    .mt-0 {
      margin-top: 0 !important;
    }
    .m-t05{
      margin-top: 0.5em;
    }
    .m-t1{
      margin-top: 1em;
    }
    .m-t2{
      margin-top: 2em;
    }
    .m-t3{
      margin-top: 3em;
    } 
    .m-t4{
        margin-top: 4em;
      } 
  .hide{
      visibility: hidden;
      width: 0;
      height: 0;
    }
    .text-left{
      text-align: left;
    }
    .flex{
      display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
      display: -ms-flexbox;      /* TWEENER - IE 10 */
      display: -webkit-flex;     /* NEW - Chrome */
      display: flex;  /* NEW, Spec - Opera 12.1, Firefox 20+ */
    }
    .flex-row { 
      -webkit-box-orient: horizontal;
      -moz-box-orient: horizontal;
      -webkit-box-direction: normal;
      -moz-box-direction: normal;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
    }
    .flex-column{
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -moz-box-orient: vertical;
      -moz-box-direction: normal;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
    }
    .justify-center{
      -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    }
    .align-items-center{
      -webkit-box-align: center;
      -moz-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
    
    .text-uppercase{
      text-transform: uppercase;
    }
   
    .fit-cover-center{
      object-fit: cover;
      object-position: center;
    }
    .fit-cover-top{
      object-fit: cover;
      object-position: top;
    }
    .img-fluid {
      height: auto;
      max-width: 100%;
    }
    .overlay{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;   
      z-index: 2;
    }
  .overlay-featured{ 
    width: auto;
    height: auto; 
    margin-top: -13em;
    float: right;
    margin-right: 112px;
  }

/*--------------------------------------------------------------
# Lazy Load
--------------------------------------------------------------*/
img[data-lazy-src] {
    opacity: 0;
}

img.lazyloaded {
    transition: opacity .5s linear 0.2s;
    -o-transition: opacity .5s linear 0.2s;
    -ms-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    -webkit-transition: opacity .5s linear 0.2s; 
    opacity: 1;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
#top-banner{
  background-color: #F28A8B; 
  color: white; 
  padding: 10px; 
  text-align: center;
}

.top-banner-text{
    color: var(--color-white); 
    font-family: var(--font-family-content);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20.8px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin: 0;
}

.top-banner-text a:hover{
  color: var(--color-sapphire); 
}
#site-header {
    transition: top 0.5s ease-in-out;
    background-color: var(--color-white);
    height: 118px;
}
#top-header{
    background-color: var(--color-pewter);
    text-align: center;
}
#top-header p{
    color: var(--color-white);
    font-family: var(--font-family-content);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20.8px; 
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin: 0;
    padding: 10px;
}
#top-header p a{
    color: var(--color-white);
}
#top-header p a:hover,
#top-header p a:focus{
    text-decoration: underline;
    color: var(--color-white);
}

.donate-link{
  position: relative;
  cursor: pointer;
  text-align: center;
  padding: 5px 20px;
  text-decoration: none;
  font-style: normal;
  font-weight: 600;
  background-color: var(--color-navy);
  border-radius: 50px;
}
.donate-link:hover{
  text-decoration: none !important; 
  letter-spacing: 0.2em;
}
#site-header .row.mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
}

#site-header .col-lg-2 {
    position: relative;
    display: flex;
}

#site-header .page-item-465 {
    border-bottom: 0px;
}
#main-header{
    height: 78px;
}

#site-header .col-lg-5 {
    display: flex;
    align-items: center;
}

#site-header .col-lg-5.left {
    justify-content: flex-end;
}

#site-header .col-lg-5.right {
    justify-content: flex-start;
}

#site-header #main-header .container,
#site-header #main-header .row {
    height: 100%;
    overflow: visible;
}

#logo {
    border-radius: 0% 0% 50% 50%;
    width: 125px;
    height: 125px;
    margin: auto;
    position: absolute;
    z-index: 3;
    background: var(--color-white);
}

#logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 8px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;

}

.sticky #logo {
    height: 76px;
    width: 76px;
}

.sticky #logo img {
    padding: .5em;
}

#site-header ul.menu {
    margin: unset;
    padding: unset;
    list-style: none;
}

#left-nav,
#right-nav {
    height: 100%;
}

#left-nav #primary-menu {
    justify-content: flex-end;
}

#site-header ul.menu {
    display: flex;
    gap: 0.2em;
}

#site-header .menu {
    align-items: center;
    height: 100%;
}
#site-header .menu  .sub-menu {
    display: flex;
    flex-direction: column;
    padding: 2em 1em 1em 1em;
    background: var(--color-white);
    gap: 1em;
    list-style: none;
    margin: 0;
    width: 225px;
    z-index: -1;
    transform: translateX(-100vw);
}

#site-header .menu .sub-menu li {
    margin: unset;
}

#site-header .menu  li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s linear 0s;
}

#site-header .menu  .menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    display: flex;
    z-index: 20;
    transform: unset;
}

#site-header .menu  li {
    margin: 0 10px;
    text-transform: uppercase;
    color: var(--color-sapphire);
    position: relative;
}

#site-header .menu  li a {
    font-family: var(--font-family-text);
    font-size: 18px;
    color: var(--color-sapphire);
    font-style: normal;
    font-weight: 700;
    line-height: 27px; 
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

#site-header .menu li a:hover {
    color: var(--color-buttercup);
}

.menu-item-has-children>a:after,
ul.responsive-menu-items li.menu-item-has-children::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 8px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAICAYAAADN5B7xAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB9SURBVHgBdZBLEYAwDESzxUhlcAQHWKgDpOCgFnDQKzIwAqE7MJR+yKnNvpfJBP00W0XnoYfb1mWXRn0Zw4eIDgoTGLRhE24G3tCKH062pZRgsWSg6pACxACEY3CO7BfwyJWRT0vS085gNlDv+0pSwpWQSzEs4N+i1LoY6wLzkFUyUESrAwAAAABJRU5ErkJggg==");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-left: 5px;
    margin-top: -2px;
    transition: all ease .25s;
}

ul.responsive-menu-items li.menu-item-has-children.open::after{
  top: 12px !important; 
}

ul.responsive-menu-items li{
  width: 100% !important; 
  padding-right: 0;
}

ul.responsive-menu-items li.menu-item-has-children::after {
    border: 0 !important;
    width: 22px;
    height: 15px;
    top: 27px;
    right: 50%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='28' height='17' viewBox='0 0 28 17' fill='none'%3e%3cpath d='M14 17L0 3.21622L3.26667 0L14 10.5676L24.7333 0L28 3.21622L14 17Z' fill='white'/%3e%3c/svg%3e")
}

ul.responsive-menu-items li.menu-item-has-children.open::after {
    transform: rotate(180deg)
}

.menu-item-has-children:hover>a:after {
    transform: rotate(180deg);
}

.responsive-menu-interior {
    background: var(--color-navy);
}

.offcanvas-logo img {
    filter: brightness(0) invert(1);
}


.responsive-menu {
    position: relative;
}

ul#responsive-menu-items,
ul.responsive-menu-items .button a {
    margin: unset;
    padding: unset;
    letter-spacing: 2.4px;
    row-gap: .5em;
}



ul.responsive-menu-items .button {
    padding: 7px 30px;
}

.offcanvas-logo {
    display: inline-block;
    top: 80px;
    left: 3em;
    position: absolute;
    height: 70px;
    width: 70px
}

#menu-button {
    position: relative;
}

ul,
ol {
    margin: 0 0 1.5em 2em;
    padding: 0;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.page-main-hero{
    height: 58em;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
  }
  .page-main-hero:after{
    content: "";
    background-image: url(../img/shape-wave.svg);
    width: 100%;
    height: 14em;
    position: absolute;
    bottom: 0;
    z-index: 6;
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}
  .page-main-hero video,
  .page-internal-hero video,
  .box-media video,
  .back-and-forth-media video,
  .back-and-forth-video video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  .main-shape{
    z-index: 4;
    position: absolute;
    bottom: 0;
    width: 100%;
    width: 100%;
    left: 0;
    right: 0;
  }
  .page-internal-hero{
    height: 36em;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-position: top center;
    background-size: cover; 
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer{
  border-top: 2px solid var(--color-white);
  padding: 52px 0 23px;
}
.site-info{
  margin-top: 50px; 
  border-top: 1px solid #fff; 
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap; 
  align-items: center; 
  justify-content: center;
}
.title-footer{
  font-family: var(--font-family-text);
  color: var(--color-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: normal;
  text-transform: uppercase;  
}
.title-footer.semibold{
  font-weight: 600;
}
.content-footer,
.content-footer *{
  font-family: var(--font-family-text);
  color: var(--color-white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
.content-footer b, .content-footer strong{
  font-weight: 600;
}
.menu-footer a{
  font-family: var(--font-family-text);
  color: var(--color-white);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; 
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.menu-footer li{
  margin-bottom: 10px; 
}
.line-footer{
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  max-width: 125px;
  margin-top: 5px;
}
.footer-nav ul{
  margin-top: 0.7em; 
  margin-right: 0; 
  margin-left: 0; 
  margin-bottom: 0;
}
.menu-footer a:hover,
.menu-footer a:focus, .content-footer a:hover, .content-footer a:focus{
  color: var(--color-buttercup);
}
.subcribe-form .gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 0; 
  grid-row-gap: 0;
  display: flex;
  grid-template-columns: unset; 
}
.subcribe-form .gfield--type-email{
  width: 70%;  
}
.subcribe-form .gfield--type-email input{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: 0 !important;
  background: var(--color-white);
  height: 50px;
  padding: 0 15px !important;
  font-family: var(--font-family-text);
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 20.8px; 
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #999;  
  border: 0 !IMPORTANT;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.subcribe-form .gfield--type-email input:focus,
.subcribe-form .gfield--type-email input:focus-visible{
  border: 0;
  outline: none;
}
.subcribe-form .gfield--type-email input::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
  font-family: var(--font-family-text);
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 20.8px; 
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #999;
}
.subcribe-form .gfield--type-email input.subcribe-form .gfield--type-email input:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
  font-family: var(--font-family-text);
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 20.8px; 
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #999;
	opacity: 1;
}
.subcribe-form .gfield--type-email input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
  font-family: var(--font-family-text);
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 20.8px; 
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #999;
	opacity: 1;
}
.subcribe-form .gfield--type-email input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
  font-family: var(--font-family-text);
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 20.8px; 
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #999;
}
.subcribe-form #field_submit{
  width: 30%;
}
.subcribe-form #field_submit input{
  border-radius: 0px 50px 50px 0px;
  background: var(--color-buttercup);
  border: 0;
  height: 50px;
  font-family: var(--font-family-text);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.8px; 
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-white);
}
.subcribe-form #field_submit input:hover,
.subcribe-form #field_submit input:focus{
  background-color: var(--color-pewter);
}
.subcribe-form .gform_wrapper.gravity-theme .gform_footer, .subcribe-form .gform_wrapper.gravity-theme .gform_page_footer {
  margin: 15px 0 0;
  padding: 0;
}

.social-links img{
  width: 25px; 
  height: 25px; 
}

.social-links{
    justify-content: start;
    gap: 1em;
    margin-left: -1px;
}


.password-protected-section {
  background-image: url(/wp-content/uploads/2024/01/Media_hero-scaled.jpeg) !important;
  display: flex; 
  justify-content: center;
  align-items: center; 
  width: 100%;
  height: 58em;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-attachment: fixed;
}

.password-protected-section .overlay{
  display: flex; 
  justify-content: center;
  align-items: center; 
  flex-direction: column; 
}

.password-protected-section form{
  margin-top: 20px; 
}

.password-protected-section .subheading{
  font-weight: 400; 
}

.password-protected-section label#text{
  display: none; 
}

.password-protected-section input {
    background: var(--color-white);
    height: 50px;
    padding: 0 15px !important;
    font-family: var(--font-family-text);
    font-size: 14px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 20.8px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #999;
    border: 0 !IMPORTANT;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.button-primary{
  border-radius: 0px 5px 5px 0px;
  background: var(--Navy, #014464);
  padding: 15px 20px; 
  font-family: var(--font-family-text);
  font-size: 14px;
  border: none; 
  font-style: normal;
  font-weight: 600;
  line-height: 20.8px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-white); 
  cursor: pointer; 
}

input:focus-visible{
  outline: none !important; 
}






/*--------------------------------------------------------------
# Who We Are Section
--------------------------------------------------------------*/
div.who-we-are{
  gap: 3em; 
}

.ways-to-give .icon-box p{
  margin: 0 !important; 
}

.icon-box a{
  gap: 1.2em; 
}

.icon-columns.flex{
  flex-wrap: nowrap;
}

.icon-image img{
  height: 105px; 
  width: 100%;
}

.icon-image {
  transition: transform 0.3s ease-in-out; 
}

.icon-image:hover {
  transform: scale(1.1); 
}

.page-template-page-support-groups .icon-image:hover{
  transform: none !important;
}

.who-we-are p{
  padding: 0 20px; 
}

/*--------------------------------------------------------------
# Info Text - Back & Forth Section
--------------------------------------------------------------*/
.back-and-forth-description{
  max-width: 38em; 
  width: 100%;
}

.back-and-forth-image img{
  border-radius: 20px; 
  max-width: 42em; 
  width: 100%; 
  min-height: 31em;
  height: 100%;
  object-fit: cover; 
}

.back-and-forth-image.dbl-cta img{
  max-width: 42em;
  width: 100%;
  max-height: 33em;
  height: 100%;
  object-fit: cover;
  object-position: center -110px; 
}




/*--------------------------------------------------------------
# Featured Post Section
--------------------------------------------------------------*/

.home .section-featured-events, .page-template-page-team .section-cta, .page-template-page-events .section-featured-posts, .page-template-page-media .section-featured-posts, .logo-slider-section, .page-template-page-contact .info-text,  .page-template-page-about .resources-info, .page-template-page-events .section-featured-events, .page-template-page-events .info-text-repeater, .page-template-page-giving .stats-image-section {
  margin-bottom: 12.75em; 
}

.featured-post-card {
  border-radius: 20px;
}


.featured-post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.featured-post-thumbnail{
  position: relative; 
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.featured-post-thumbnail img{
  max-height: 43em; 
  height: 100%; 
  object-fit: cover;
}

.category-label{
  position: absolute; 
  bottom: 10px; 
  left: 30px; 
  color: var(--color-white);  
  padding: 5px 20px; 
  border-radius: 50px;
  font-weight: 600;
}

.category-label a, .category-label a:hover{
  color: unset;
}

.featured-post-thumbnail:hover img {
  transform: scale(1.1);
}

.featured-post-content {
  padding: 10px 30px;
  padding-bottom: 30px;
  background-color: var(--color-navy); 
  border-radius: 0 0 20px 20px;
  position: relative;
  display: flex; 
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  margin-bottom: 30px; 

}

.featured-post-content h3{
font-size: var(--font-size-quartary-heading); 
font-style: normal;
font-weight: 600;
line-height: 1.3em !important; 
margin-bottom: 10px; 
}

.featured-post-content p{
 margin: unset; 
 padding-bottom: 30px; 
}


.featured-post-content h3,
.featured-post-content p {
  color: var(--color-white); 
}

.read-more, .read-more-bio{
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--color-white); 
  font-weight: 600; 
  color: var(--color-navy);
  border-radius: 50px;
  text-decoration: none;
  transition: letter-spacing 0.3s ease;
  cursor: pointer; 
}

.read-more:hover, .read-more-bio:hover {
  letter-spacing: 0.8px; 
}

.featured-post-main-heading{
  padding-bottom: 50px; 
}

.featured-post-cta{
  padding-top: 40px; 
  margin: auto; 
}

.cta-description{
  max-width: 50em; 
  width: 100%; 
}

.page-template-page-team section.section-cta{
  padding-top: 0; 
}

.page-template-page-contact .section-cta{
  padding-bottom: 0;
}



/*--------------------------------------------------------------
# Get Involved
--------------------------------------------------------------*/

.get-involved h3{
  line-height: 0; 
}

.get-involved{
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  z-index: 9999; 

}
.get-involved:after {
    content: "";
    background-image: url(/wp-content/uploads/2024/01/Rectangle-1.svg);
    width: 100%;
    height: 20em;
    position: absolute;
    top: -19.9em; 
    z-index: 6;
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.get-involved .icon-columns {
  gap: 1em; 
}

.get-involved-container{
  gap: 3em; 
}

.get-involved .icon-columns-description{
  max-width: 21em; 
  width: 100%; 
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tab-circle{
display: flex;
width: 50px;
height: 50px;
justify-content: center;
align-items: center;
border-radius: 50%;
cursor: pointer; 
color: var(--color-white); 
margin-bottom: 10px; 
}

.tab-circle.active{
  background-color: var(--color-navy);
}

.tab-circle.active .tab-title{
  color: var(--color-navy); 
}

.tab-circles-row{
  flex-wrap: nowrap; 
  gap: 5em; 
}

.tab-content img{
    max-width: 35em;
    width: 100%; 
    object-fit: cover;
    border-radius: 20px;
}


.tab-content .text-column{
  display: flex; 
  justify-content: center;
  align-items: flex-start; 
  text-align: left; 
}

.tab-description{
    max-width: 33.6em;
    width: 100%;
}

.tab-content h2{
  line-height: unset; 
  margin: 0; 
}

.tab-description ul{
  margin-left: 1.8em; 
}

.tab-description ul li{
  margin-bottom: 0.2em; 
}

.section-tabs .tabs-wrapper{
  padding: 50px 0px; 
  gap: 3em; 
  border-radius: 20px;
}

.section-tabs .tab-description ul{
  padding-top: 20px; 
}

.tabs-numbers-container {
  margin-bottom: 20px; /* Add some space between containers */
  position: relative; /* Set position to relative for pseudo-element */
}

.tabs-numbers-container::after {
  content: "";
  position: absolute;
  bottom: 60px;
  left: 127px;
  width: 250px;
  height: 2px;
  background-color: var(--color-pewter);

}

.tabs-numbers-container:last-child::after {
  display: none; /* Remove line after the last container */
}

span.tab-title.subheading.cl-pewter.active{
  color: var(--color-navy) !important; 
}



/*--------------------------------------------------------------
# Partnership Section
--------------------------------------------------------------*/

.partnership-heading{
  font-size: var(--font-size-subhead);
}

.partnership-image{
  display: flex; 
  justify-content: center; 
  align-items: center; 
}

.section-partnerships .main-row{
  flex-wrap: nowrap;
  display: flex;
  align-items: flex-start; 
  justify-content: center;
}

.member-logos{
  display: flex; 
  justify-content: center;
  align-items: center; 
  flex-wrap: nowrap; 
}



/*--------------------------------------------------------------
# Team Grid
--------------------------------------------------------------*/
.image-grid{
  display: flex;
  justify-content: center;
  align-items: center; 
  flex-wrap: wrap; 
}

.featured-image {
  object-fit: cover; 
  box-sizing: border-box;
  cursor: pointer; 
  position: relative; 
  overflow: hidden; 
  display: inline-block; 
  margin: 10px; 
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.main-featured-img{
  height: 323px; 
}


.main-featured-img img{
  border-radius: 20px;
  width: 331px;
  height: 323px;
  object-fit: cover; 
  object-position: top center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 

}

.image-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-overlay {
    position: absolute;
    border-radius: 20px;
    width: 331px;
    top: 0; 
    bottom: 0; 
    height: 323px;
    background-color: rgba(0, 0, 0, 0.4); 
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 20px; 
    gap: 10px; 
}

.section-board-grid{
  padding-top: 0; 
}

.image-overlay h3,
.image-overlay p,
.image-overlay .read-more {
  margin: 0; 
}

.featured-image:hover .image-overlay {
  opacity: 1;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1178px;
  height: 630px;
  background-color: #fff;
  z-index: 99999999999999999;
  padding: 20px;
  border-radius: 20px;
  overflow-y: auto;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}




button.read-more-bio{
  font-weight: 700; 
  cursor: pointer;
}

.popup-details{
  text-align: left; 
  align-items: flex-start; 
  gap: 1em;
}

.popup-details h3{
  margin: 0; 
  line-height: 0; 
}

.image-overlay .subheading, .popup-details .subheading{
  margin: 0;
  line-height: 28px; 
  font-weight: 600; 
}

.popup-image{
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.popup-image img{
  border-radius: 20px; 
}


/* Style for WebKit browsers (Chrome, Safari) */
.popup::-webkit-scrollbar {
  width: 10px;
}

.popup::-webkit-scrollbar-thumb {
  background-color: var(--color-navy); 
  border-radius: 20px; 
}

.popup::-webkit-scrollbar-track {
  background-color: var(--color-pewter); 
  border-radius: 20px;
}


/*--------------------------------------------------------------
#   CTA Section
--------------------------------------------------------------*/

.section-cta .cta-wrapper{
  padding: 40px 50px;
  justify-content: center;
  align-items: center;
  border-radius: 20px; 
}

.section-cta-text .cta-wrapper{ 
  padding: 40px 50px; 
  border-radius: 20px;
  gap: 20px; 
}

.section-cta-text .text-row{
  display: flex;
  flex-direction: column;
  gap: 10px; 
}

/*--------------------------------------------------------------
#   Brochure Section 
--------------------------------------------------------------*/

.brochure-image img{
  width: 211px;
  height: 370px;
  object-fit: contain; 
}

.brochure-image{
  padding-bottom: 20px; 
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.brochure-image:hover {
  transform: scale(1.1); 
}

.brochure-column span.subheading{
  line-height: 1.1em; 
}

.brochure-row{
  gap: 4em; 
}

.brochures-main-heading{
  padding-bottom: 50px; 
}

.brochure-column{
  max-width: 22em; 
  width: 100%; 
}

/*--------------------------------------------------------------
#   Slider Section
--------------------------------------------------------------*/


.slider-container{
  overflow: hidden; 
  width: 100%; 
  border-radius: 20px;
}
.slider-text{
  justify-content: center;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.slide{
  border-radius: 20px;
  overflow: hidden; 
}

.slider-image{
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: transparent; 
  padding: 0; 
}

.slider-text, .slider-image {
  height:100%;
  overflow:hidden; 
}

.slider-image img{
  height: 100% !important; 
  object-fit: cover; 
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.slick-initialized .slick-slide{
  display: flex; 
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px; 
  height: 30px; 
  cursor: pointer;
}

.page-template-page-resources .slider-prev, .page-template-page-resources .slider-next{
  transform: translateY(125%);
}

.slider-prev {
  left: 50px;
}

.slider-next {
  right: 50px; 
}


/*--------------------------------------------------------------
#   Support Group Page
--------------------------------------------------------------*/

.page-template-page-support-groups .who-we-are p{
  padding: unset; 
}

.list-row{
  display: flex;
  flex-direction: row;
}

.list-col{
  display: flex; 
  flex-direction: column; 
  font-weight: 600; 
}

.location-text, .location-text p {
  font-weight: 600 !important; 
}

.tips-slider-container .icon-description{
  max-width: 21em; 
  width: 100%; 
  margin: 0;
}

.tips-slider-container .icon-image{
  margin-bottom: 10px; 
}

.option-two .text-column{
display: flex; 
justify-content: center;
}

/*--------------------------------------------------------------
#   Accordion Info Text Section
--------------------------------------------------------------*/
.accordion-count{
width: 30px;
height: 30px;
padding: 10px;
border-radius: 50px;
display: flex;
justify-content: center;
align-items: center; 
margin-right: 10px; 
}

.img-accordion-icon {
  margin-left: 10px; 
  transition: transform 0.3s ease; 
}

.img-accordion-icon.rotate {
  transform: rotate(90deg);
}

.accordion-heading-row, .main-accordion-heading-row{
  cursor: pointer; 
}

.accordion-description{
  width: 100%;
  transition: height 0.3s ease; 
}


.accordion-icon{
  display: flex;
  justify-content: flex-end;
}

.accordion-title{
  padding: 0; 
}

.accordion-icon.rotate svg.chevron {
  transform: rotate(180deg) !important; 
}

.accordion-icon svg{
  transition: transform 0.3s ease; 
}

.main-accordion{
  margin: auto; 
  max-width: 935px; 
  width: 100%; 
}

.main-accordion-description{
  max-width: unset; 
  width: 100%; 
}

.main-accordion-description ul{
  padding-top: 30px; 
}

.accordion-item-wrapper {
display: flex;
align-items: flex-start !important; 
width: 100%;
padding: 25px 46px;
align-items: center;
border-radius: 20px;
background: var(--White, #FFF);
cursor: pointer; 
}


.stats-image-section img{
  max-width: 88.75em; 
  width: 100%; 
  object-fit: contain;
  border-radius: 20px;

}


.logo-partner{ 
  max-height: 10em; 
  margin: auto; 
  object-fit: contain; 
}


/*--------------------------------------------------------------
# Slick Slider
--------------------------------------------------------------*/
.logo-glider .slick-arrow{
  cursor: pointer;
}
.logo-glider .slick-prev, .slick-next {
  position: absolute;
  top: 40%; 
  z-index: 999; 
}

.logo-glider .slick-prev {
  left: 0;
}

.logo-glider .slick-next {
  right: 0;
}

.logo-glider.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.logo-glider .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.logo-glider .slick-list:focus {
  outline: none;
}

.logo-glider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.logo-glider .slick-slider .slick-track,
.logo-glider .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.logo-glider .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex !important;
    align-items: center !important;
}

.logo-glider .slick-track:before,
.logo-glider .slick-track:after {
    display: table;
    content: '';
}

.logo-glider .slick-track:after {
    clear: both;
}

.logo-glider .slick-loading .slick-track {
    visibility: hidden;
}

.logo-glider .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.logo-glider [dir='rtl'] .slick-slide {
    float: right;
}

.logo-glider .slick-slide img {
    display: block;
}

.logo-glider .slick-slide.slick-loading img {
    display: none;
}

.logo-glider .slick-slide.dragging img {
    pointer-events: none;
}
.logo-glider.slick-initialized .slick-slide {
    display: block;
}
.logo-glider .slick-loading .slick-slide {
    visibility: hidden;
}
.logo-glider .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.logo-glider .slide {
    transition: filter .4s;
    margin: 0px 40px; 

}

.glider.logo-glider{
    max-width: 85em;
    width: 100%;
    margin: auto;
}


.section-mental-health-slider .slider-text{
padding: 100px; 
}

.section-mental-health-slider .slider-description{
  max-width: 33em; 
width: 100%; 
}

.section-presentation-slider .slider-text{
  padding: 40px; 
}



.progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background: var(--color-white); 
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  margin-left: auto; 
  margin-right: auto;
}
.progress-bar__inner {
  background: var(--color-navy); 
  position: absolute;
  height: 10px;
  top: 0;
  left: 0;
  width: 0;
  transition: width 0.3s ease;
}


.gallery-slider img {
  max-width: 24em;
  width: 100%;
  height: 460px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 20px;
}

.section-gallery-slider .slider-prev, .section-gallery-slider .slider-next {
    position: absolute;
    transform: translateY(281px);
}



.contact-info p{
  margin: unset; 
  line-height: 1.4em; 
}

 .gform_wrapper.gravity-theme #gform_fields_2 input, .gform_wrapper.gravity-theme .gfield textarea {
  border: 1px solid var(--color-grape); 
  border-radius: 5px; 
  padding: 15px 10px;
  font-family: var(--font-family-text); 
  color: #979797; 
}
.gform_wrapper.gravity-theme #gform_fields_2 .gfield textarea{
height: 185px !important;
}
.gform_wrapper.gravity-theme input[type="submit"]#gform_submit_button_2 {
  color: var(--color-white); 
  background-color: var(--color-navy);
  font-family: var(--font-family-headline); 
  font-size: 18px;
  font-style: normal;
  text-transform: none;
  font-weight: 500; 
  border-radius: 50px;
  border: none; 
}



.important-docs-wrapper{
  padding: 40px 40px;
  justify-content: center;
  align-items: flex-start;
  border-radius: 20px;
}

.important-links-list ul{ 
  max-width: 20em; 
  width: 100%; 
  margin: 0 0 1.5em 1.5em; 
}


.important-links-list li{
  text-decoration: underline;
  cursor: pointer; 
}

.education-slider .slider-text{
  display: flex;
  justify-content: flex-start;
  gap: 20px; 
}

.education-slider .slide{
  margin-right: 30px; 
  margin-left: 30px; 
}


#sftExt-frontend-button.rectangle{
  z-index: 9999999999; 
}

.admin-cta{
  padding-top: 40px; 
}


.section-admin-page .page-internal-hero{
  height: 100vh !important; 
}

/* Stlying Saftey Exit BTN*/
#sftExt-frontend-button{
  padding: 10px 30px !important;
  font-size: var(--font-size-button);
  font-family: var(--font-family-text);
  text-shadow: none;
  box-shadow: none;
  transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  cursor: pointer;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  border-radius: 50px;
}

iframe{
  border-radius: 20px; 
}


.page-not-found .button-wrapper{
  padding-top: 40px; 
} 

.page-not-found.page-internal-hero{
  height: 70vh; 
}






/*--------------------------------------------------------------
#   Top Header Hotline Buttons
--------------------------------------------------------------*/
.top-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.top-header-text p {
    margin: 0;
}

.top-header-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.top-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    font-family: var(--font-family-headline);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease all;
    white-space: nowrap;
    line-height: 1;
}

.top-header-btn:hover {
    opacity: 0.85;
    letter-spacing: 1.5px;
}

.top-header-btn svg {
    flex-shrink: 0;
}

/*--------------------------------------------------------------
#   Who We Are - 5 Column Icon Override
--------------------------------------------------------------*/
.who-we-are .icon-columns > .icon-box {
    flex: 0 0 20%;
    max-width: 20%;
}

/*--------------------------------------------------------------
#   Hotline Page Content
--------------------------------------------------------------*/
.section-hotline-content {
    padding: 4em 0;
}

.section-hotline-content .column {
    gap: 0;
}

.hotline-options {
    gap: 0;
    padding-top: 0;
    justify-content: center;
}

.hotline-card {
    padding: 10px;
}

.hotline-card-inner {
    padding: 40px 30px;
    border-radius: 20px;
    gap: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.hotline-card-inner:hover {
    transform: translateY(-5px);
}

.hotline-card-inner h3 {
    margin: 0;
    font-size: var(--font-size-quartary-heading);
}

.hotline-card-inner p {
    margin: 0;
    font-size: var(--font-size-body);
    white-space: nowrap;
}

.hotline-card-inner .button {
    margin-top: 10px;
}

/*--------------------------------------------------------------
#   Homepage Horizontal Featured Post
--------------------------------------------------------------*/
.home .featured-post-card {
    flex-direction: row;
    overflow: hidden;
    border-radius: 20px;
}

.home .featured-post-thumbnail {
    flex: 0 0 50%;
    max-width: 50%;
    border-radius: 20px 0 0 20px;
    box-shadow: none;
}

.home .featured-post-thumbnail img {
    height: 100%;
    object-fit: cover;
}

.home .featured-post-content {
    flex: 0 0 50%;
    max-width: 50%;
    border-radius: 0 20px 20px 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}

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

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { 
  .m-md-t2 {
    margin-top: 2em;
}  
.pe-md-0{
  padding-right: 0 !important;
}
.ps-md-0{
  padding-left: 0 !important;
}

.volunteer-main-heading{
  padding-bottom: 40px;
}

 }
 /* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  .pe-lg-0{
    padding-right: 0 !important;
  }
  .ps-lg-0{
    padding-left: 0 !important;
  }
  .footer-links.container{
    width: 85rem; 
  }
  
}

@media (min-width: 1024px) {

  .get-involved p{
    margin-top: -5px;
  }
   
 }

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { 
  .tab-content img{
    height: 500px; 
  }
  .reverse .text-column{
    padding-left: 60px;
  }
  .presentation-main-heading, .options-main-heading, .main-accordion-heading, .partnership-head, .volunteer-main-heading, .education-main-heading{
    padding-bottom: 40px !important; 
  }
  .contact-info{
    padding-left: 20px; 
  }
  .contact-area-section .text-column {
    margin-top: -15px; 
  }
  .section-location-info .text-column{
    margin-top: 15px;
  }
  .tall-img{
    height: 600px; 
  }
  .event-feed-for-eventbrite-app .eventbrite-feed-list .eventbrite-item{
    flex-direction: row-reverse !important;
  }
  
  .event-feed-for-eventbrite-app .eventbrite-feed-list .eventbrite-item-content{
      width: 50% !important;
      padding-left: 70px !important;
      display: flex;
      flex-direction: column !important;
      justify-content: center !important;
      align-items: flex-start !important;
  }
  .image-grid .featured-image:nth-last-child(-n+2){
    padding-top: 20px; 
  }
  
  .event-feed-for-eventbrite-app .eventbrite-feed-list .eventbrite-item-image{
    width: 50% !important; 
  }
  .gallery-slider .slide {
    margin-right: 30px; 
  }
  
}

@media (min-width: 1300px) { }

@media (min-width: 1420px) { 
    .container{
        width: 1418px;
    }
   
 }
/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {  

}

@media (min-width: 2000px) { 
    .page-main-hero {
        height: 70em;      
    }
    .page-main-hero:after {     
        height: 20em;      
    }

    .get-involved:after{
      height: 20em; 
    }
 }


 @media (min-width: 2800px) { 
    .page-main-hero {
        height: 75em;      
    }
    .page-main-hero:after, .get-involved:after{     
        height: 40em;      
    }

    .get-involved:after{
      top:-39.9em; 
    }
 }

@media (min-width: 3000px) {  
   
}

@media (max-width: 1419px){
   
    #top-header p {      
        font-size: 13px;      
        line-height: 16px;      
        padding: 7px;
    }
    #main-header {
        height: 80px;
    }
    #site-header {  
        height: auto;
    }
    #top-header {     
        height: auto;
    }
	#main-header .container{
		width: 100% !important;
	}
	#site-header .menu li a{
		font-size: 15px !important;
	}
	#site-header .menu li{
		    margin: 0 5px !important;
	}
}


/* X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) { 
    .page-main-hero{
        height: 40em;
    }

}

@media (max-width: 1290px ){
.popup-content-inner{
  flex-direction: column;
  gap: 1em; 
  padding-top: 20px; 
}
.popup{
  width: unset; 
  height: 500px; 
}
	    #site-header .menu li a {
        font-size: 12px !important;
    }
	#site-header .menu li{
		margin: 0 4px !important;
	}
}

/* Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {  
    .main-headline {       
        padding: 10px 15px;       
    }
    .site-footer {
     text-align: center;
      padding: 40px 0 40px;
  }
  .line-footer{
    margin: 0 auto;
  }
  .logo-footer{
    margin-bottom: 30px;
  }
  .subcribe-form #field_submit {
    width: auto;
}
.subcribe-form .gform_wrapper.gravity-theme .gform_fields{
  justify-content: center;
}
.col-footer .button {
   margin: 0 auto;
}
.social-links{
  justify-content: center !important;
}
}

@media (max-width: 1023.98px) {
 #site-header .row.desktop {
        display: none !important;
    }
    #site-header .row.mobile {
        display: flex;
        padding: 0 1rem;
    }
}

/* Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    h1{
        font-size: 40px;
        line-height: 1.5em;
    }
    h2{
        font-size: 30px;
    }
    .main-headline{
        max-width: 100%;
    }
    .col-subscribe{
      padding-top: 30px;
    }
    .featured-posts{
      gap: 2.5em; 
    }
    .info-text div.row{
      flex-direction: column-reverse;
    }
    .event-feed-for-eventbrite-app .eventbrite-feed .eventbrite-item-buttons, .eventbrite-item-location, .eventbrite-item-top-row, .event-feed-for-eventbrite-app .eventbrite-feed-list .eventbrite-item{
      justify-content: center !important;
      align-items: center !important; 
    }

    .page-main-hero, .page-internal-hero{
      background-attachment: unset !important;
    }

 }

/* Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {

  .home .featured-post-card {
    flex-direction: column;
  }
  .home .featured-post-thumbnail,
  .home .featured-post-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .home .featured-post-thumbnail {
    border-radius: 20px 20px 0 0;
  }
  .home .featured-post-content {
    border-radius: 0 0 20px 20px;
  }

  .back-and-forth-image.dbl-cta img{
    height: unset; 
    max-height: unset;
    object-position: center; 
  }

  .contact-area-section .text-column{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }


  .site-footer .row{
    justify-content: center;
  }

  section{
    padding: 3em 0;  
  }
  .tabs-numbers-container::after{
    display: none; 
  }
  .tab-circles-row{
    gap: 5em; 
    flex-direction: row;
  }
  .section-partnerships .row{
    gap: 2em; 
  }
  .resources-info .row{
    flex-direction: column-reverse;
  }

 .slider-image img{
    height: auto !important; 
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .section-presentation-slider .slider-image img, .section-mental-health-slider .slider-image img{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .section-presentation-slider .slider-text, .section-mental-health-slider .slider-text {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .section-mental-health-slider .slider-text{
    padding: 40px; 
  }

  .slick-initialized .slick-slide, .slick-list{
    display: flex; 
    flex-direction: column;
  }

  .slider-text{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 40px 20px;
  }

  .slider-image, .slider-text{
    overflow: unset; 

  }
.slider-prev{
  left: 1px;
}

.section-gallery-slider .slider-next{
  right: 17px; 
}

.slider-next{
  right: 12px;
}
.slider-container, .slide{
  overflow: visible; 
}

.slider-container{
  padding: 10px; 
 }

 .slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-872%);
  width: 10px;
  height: 10px;
  cursor: pointer;
}

.presentation-main-heading, .options-main-heading, .main-accordion-heading, .partnership-head, .volunteer-main-heading, .education-main-heading{
  padding-bottom: 40px !important; 
}
.member-logos, .section-partnerships .main-row{
  flex-direction: column;
}
.hotline-card {
  flex: 0 0 100%;
  max-width: 100%;
}
}

/* X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    #top-header p {
        font-size: 11px;
        line-height: 16px;
        padding: 7px;
        width: 100%;
        white-space: pre-wrap;
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    #top-header{
      height: auto;
      display: flex;
      align-items: center;
    }
    .top-header-inner {
        flex-wrap: wrap;
        gap: 8px;
    }
    .top-header-text {
        flex: 0 0 100%;
    }
    .top-header-actions {
        justify-content: center;
        width: 100%;
        padding-bottom: 5px;
    }
    .top-header-btn {
        font-size: 11px;
        padding: 4px 12px;
    }
    .who-we-are .icon-columns > .icon-box {
        flex: 0 0 50%;
        max-width: 50%;
    }

    h1 {
        font-size: 30px;
        line-height: 1em;
    }
    h2{
        font-size: 25px;
    }
    .main-headline {
        padding: 8px;
    }
    .page-main-hero {
        height: 32em;
    }
    .page-main-hero:after{
        height: 5em;
    }
    ul.responsive-menu-items a{
      font-size: 20px !important;
      line-height: 26px !important;
    }
    ul.responsive-menu-items li.menu-item-has-children::after {      
        top: 12px;       
        width: 19px;
        height: 13px;
    }
    .logo-footer{
      max-width: 100px;
    }
    .button{
      padding: 10px 15px;
    }
    .icon-columns.flex{
      flex-wrap: wrap; 
    }
    .icon-box{
      margin: unset !important; 
      padding: unset !important
    }
    .icon-columns > .icon-box:nth-child(-n+2) a{
      margin-bottom: 30px; 
    }
    .featured-posts{
      gap: 1em; 
    }
    .partnerships-column{
      gap: unset; 
    }
    .button-row{
      justify-content: flex-start; 
    }
    .section-cta .cta-wrapper{
      gap: 1em; 
      padding: 40px 20px; 
    }
    .cta-description{
      max-width: unset; 
    }
    .section-featured-posts, .section-cta{
      margin-bottom: 4em; 
    }
    .info-text .text-column, .resources-info .text-column{
      text-align: center;
    }
    .back-and-forth-image, .tab-content .image-column{
      padding-bottom: 40px; 
    }
    .featured-post-content .read-more, .tab-content .text-column{
      display: flex; 
      justify-content: center;
      align-items: center;
      margin: auto; 
    }
    .featured-post-cta{
      padding-top: 10px; 
    }
    .home .section-featured-events{
      padding-top: 0; 
    }
    .get-involved:after{
      height: 4em; 
      top: -3.9em; 
    }
    .home .section-featured-events, .page-template-page-team .section-cta, .page-template-page-events .section-featured-posts, .page-template-page-media .section-featured-posts, .logo-slider-section, .page-template-page-contact .info-text, .page-template-page-about .resources-info, .page-template-page-events .section-featured-events, .page-template-page-events .info-text-repeater, .page-template-page-giving .stats-image-section {
      margin-bottom: 5.75em;
  }
  .cta-text-column, .cta-cta, .cta-description, .info-text .button-wrapper{
    display: flex; 
    justify-content: center;
    align-items: center; 
    text-align: center; 
  }
  .back-forth-title{
    text-align: center; 
  }
  .accordion-item-wrapper{
    padding: 25px 20px; 
  }
  .page-template-page-contact .back-and-forth-image img{
    object-position: right;
  }
  .page-template-page-events .info-text div.row, .page-template-page-media .info-text div.row, .page-template-page-what-is-sa .info-text div.row, .page-template-page-volunteer .info-text div.row{
    flex-direction: column;
  }

  .page-template-page-events .info-text div.row .text-column, .page-template-page-media .info-text div.row .text-column, .page-template-page-what-is-sa .info-text div.row .text-column, .page-template-page-volunteer .info-text div.row .text-column {
    padding-bottom: 40px; 
  }

  .page-template-page-events .back-and-forth-image, .page-template-page-media .back-and-forth-image, .page-template-page-what-is-sa .back-and-forth-image, .page-template-page-volunteer .back-and-forth-image {
    padding-bottom: 0; 
  }

  .get-involved .icon-columns-description{
    text-align: left; 
  }
 .cta-text-description{
    text-align: left; 
  }
  .entry-text-description{
    text-align: left;
  }
  .popmake .button-wrapper {   
    gap: 9px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.popmake .button-wrapper .button{
  width: 100%;
}
 }

@media (max-width: 480px) { 
  .popup{
    width: 353px; 
  }
}

@media (max-width: 390px) { 
  
}