/* Theme styles */
/* ===== CSS RESET & VARIABLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --c-white: #ffffff;
    --clr-white: #ffffff;
    --primary-royal: #07134d;
    --primary-royal-light: #09185d;
    --primary-teal: #65e0aa;
    --tertiary-spring-green: #adfaad;
    --tertiary-sea-light: #eefcf6;
    --tertiary-sea-dark: #def9ed;
    --tertiary-mint: #abf5df;
    --tertiary-sky-blue: #a6e6ff;
    --tertiary-peach: #ffc9b1;
    --red: #d73209;
    --clr-text: #333333;
    --manrope: "Manrope", sans-serif;
    --merriweather: "Merriweather", serif;
    --radius-ex-sm: 4px;
    --max-w: 1360px;
    --gap-2xs: 4px;
    --gap-xs: 8px;
    --gap-sm: 12px;
    --gap-md: 16px;
    --gap-lg: 24px;
    --gap-xl: 32px;
    --gap-2xl: 48px;
    --gap-3xl: 64px;
    --gap-4xl: 96px;
    --gap-5xl: 120px;
}
p {
    margin-bottom: 15px;
}

p:last-child {
    margin: 0;
}
.pt-0 {
    padding-top: 0 !important;
}
.pt-10 {
    padding-top: 10px !important;
}
.pt-40 {
    padding-top: 40px !important;
}
.pb-40 {
    padding-bottom: 60px !important;
}
.pb-0{
	padding-bottom:0px !important;
}
.d-flex {
    display: flex;
}

.gap-xs {
    gap: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--manrope);
    font-size: 16px;
    color: var(--primary-royal);
    background: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1 {
    font-family: var(--merriweather);
    font-size: 70px;
    font-weight: 400;
    line-height: 80px;
}

h2 {
    font-family: var(--merriweather);
    font-size: 48px;
    line-height: 125%;
    font-weight: 400;
}

h3 {
    font-size: 34px;
    line-height: 130%;
    font-weight: 400;
    font-family: var(--merriweather);
}

h4 {
    font-size: 28px;
    line-height: 130%;
    font-weight: 400;
    font-family: var(--merriweather);
}

h5 {
    font-size: 21px;
    line-height: 130%;
    font-weight: 400;
    font-family: var(--merriweather);
}

/* ===== SKIP LINK (WCAG 2.4.1) ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--clr-purple);
    color: var(--clr-white);
    padding: 12px 24px;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 var(--radius-sm) 0;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ===== FOCUS STYLES (WCAG 2.4.7) ===== */
/*:focus-visible {
    outline: 3px solid var(--clr-yellow);
    outline-offset: 3px;
}*/
/* ===== FOCUS STYLES (WCAG 2.4.7) ===== */
:focus-visible {
    outline: 3px solid #000;
    outline-offset: 3px;
}

/* ===== UTILITIES ===== */
section {
    padding: 100px 0px;
}

.container {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 0px;
    width: 100%;
    padding: 0 30px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: var(--radius-ex-sm);
    font-family: var(--manrope);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
    line-height: 1;
}

.large-btn {
    padding: 18px 28px;
    line-height: 28px;
}

/*.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }*/
.button_group {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--primary-royal);
    border-color: var(--primary-teal);
    min-height: 50px;
}

.btn-primary.white {
    background: var(--clr-white);
    color: var(--blue);
    border-color: var(--clr-white);
    min-height: 50px;
}

.btn-primary.white:hover {
    background: var(--blue);
    color: var(--clr-white);
    border-color: var(--blue);
}

.btn-primary:hover {
    background: var(--tertiary-spring-green);
    border-color: var(--tertiary-spring-green);
}

.btn-secondary {
    background: transparent;
    color: var(--clr-white);
    border-color: var(--clr-white);
    min-height: 50px;
}

.btn-secondary.aqua {
    border-color: var(--clr-white);
    color: var(--clr-white);
}

.btn-secondary.aqua:hover {
    border-color: var(--clr-white);
    color: var(--primary-royal);
    background: var(--clr-white);
}

.btn-secondary.blue {
    border-color: var(--primary-royal);
    color: var(--primary-royal);
}

.btn-secondary.blue:hover {
    background: var(--primary-royal);
    border-color: var(--primary-royal);
    color: var(--clr-white);
}

.btn-tertiary {
    background: var(--primary-royal);
    color: var(--clr-white);
    border-color: var(--primary-royal);
    min-height: 50px;
}

.btn-tertiary:hover {
    background: var(--clr-white);
    color: var(--primary-royal);
    border-color: var(--clr-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}


.btn-purple {
    background: var(--clr-purple);
    color: var(--clr-white);
    border-color: var(--clr-purple);
    min-height: 50px;
}

.btn-purple:hover {
    background: var(--clr-purple-dark);
}

.btn-outline-purple {
    background: transparent;
    color: var(--clr-purple);
    border-color: var(--clr-purple);
    min-height: 50px;
}

.btn-outline-purple:hover {
    background: var(--clr-purple);
    color: var(--clr-white);
}

.btn-teal {
    background: var(--clr-teal);
    color: var(--clr-white);
    border-color: var(--clr-teal);
}

.btn-teal:hover {
    background: var(--clr-teal-dark);
}

.btn.btn-secondary.border_black {
    border-color: var(--primary-royal);
    color: var(--primary-royal);
}

.btn.btn-secondary.border_black:hover {
    background: var(--tertiary-spring-green);
    border-color: var(--tertiary-spring-green);
}

/* ===== HEADER CSS Start ===== */
.site-header {
    background: var(--primary-royal);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    border: 1px solid #ffffff14;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0px;
    gap: 16px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    max-width: 260px;
    width: 100%;
    height: 48px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: var(--clr-white);
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition:
        color 0.15s,
        background 0.15s;
    white-space: nowrap;
    font-family: var(--manrope);

}



.main-nav a svg {
    position: relative;
    top: -2px;
}

.mega-menu {
    position: fixed;
    left: 0;
    top: 90px;
    background: #fff;
    width: 98%;
   
    display: none;
    border-radius: 12px;
    padding: 50px 0px;
    margin: 0 auto;
    left: 0;
    right: 0;
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.4);
}
@media (min-width:992px){
	
.mega-menu {
    max-height: calc(100vh - 142px);
    overflow: auto;
}	
.menu-li:hover .mega-menu,
.menu-li:focus .mega-menu,
.menu-li:active .mega-menu,
.menu-li:focus-within .mega-menu,
.menu-li:target .mega-menu {
    display: block;
}
.main-nav a:hover {
    color: #65E0AA;
}
.mega-menu-ul li a:hover img {
    left: 8px;
}	
	
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0px 0;
    gap: 40px;
}

.mega-menu-grid .latest_news_img_wrap {
    height: 290px;
}

.mega-menu h2 {
    font-size: 28px;
    margin: 0 0 30px;
    font-weight: 400;
}

.mega-menu-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0px;
    gap: 10px;
}

.mega-menu-grid-inner .story_link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    color: #07134D;
    font-family: var(--merriweather);
    font-weight: 400;
    font-size: 17px;
}

.megamenu-left h2 {
    margin: 25px 0 34px;
}

.latest_news_item.mega-grid-link {
    gap: 15px;
}

.mega-menu-ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.main-nav .link-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
    background: #EEFCF6;
    border-radius: 12px;
    border: 1px solid #EEFCF6;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    line-height: 32px;
    color: #07134D !important;
    font-family: var(--merriweather);
    transition: 0.3s;
}

.main-nav .link-wrap:hover {
    background-color: #d7f5e5;
}

.mega-menu-ul li a img {
    position: relative;
    left: 0;
    transition: 0.3s;
}



.menu-li {
    height: 89px;
    display: flex;
    align-items: center;
}

.mega-menu-grid.news-mega-menu {
    display: block;
}

.mega-menu-grid.news-mega-menu .mega-menu-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

@media only screen and (min-width: 768px) {
    .mega-menu-grid.news-mega-menu .mega-menu-grid-inner:has(.mega-grid-link:nth-child(4):last-child) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mega-menu-grid.news-mega-menu .latest_news_img_wrap {
    height: 400px;
}

.mega-menu-grid.news-mega-menu .latest_news_img_wrap img {
    object-fit: contain;
    transform: scale(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-text);
    padding: 8px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    line-height: 1;
}

.nav-search-btn:hover {
    color: var(--clr-purple);
    background: rgba(123, 63, 160, 0.07);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: transform 0.2s;
}

form.search_filter_2.active .search_input-wrap {
    display: block;
    right:0px;
    bottom: -130px;
    width: 540px;
}
.search_filter_2{
	position:relative;
}
.search_input-wrap{
	position:relative;
}
.search_input-wrap input {
    width: 100%;
}
.header_search-btn {
    position: absolute;
    right: 3px;
    top: 4px;
}

.header-search-icon {
    background: unset;
    border: 0;
    padding: 0;
    cursor: pointer;
}
/* ===== HERO ===== */
.hero {
    background: var(--primary-royal);
    padding: 0px 0 80px;
    position: relative;
    overflow: hidden;
    height: 85vh;
    display: flex;
    align-items: center;
}

.hero_bg_image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.hero_bg_image img {
    width: 100%;
}

/*.hero::before {
     content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 160px;
    background: url(../images/hero-vec.png);
    background-repeat: no-repeat;
    background-size: cover;
     
    }*/
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    color: var(--clr-white);
    margin-bottom: 20px;
}

.hero__desc {
    font-size: 21px;
    font-weight: 400;
    color: var(--clr-white);
    margin-bottom: 28px;
    max-width: 625px;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero__stat strong {
    display: block;
    font-family: var(--ff-display);
    font-size: 1.6rem;
    color: var(--clr-white);
}

.hero__stat span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero__mascot-wrap {
    position: relative;
    width: 625px;
    height: 600px;
}

.scroll-indicator{
  margin-top:0px;
  display:inline-flex;
  align-items:center;
  justify-content:right;
  animation:bounce 2s infinite;


}

@keyframes bounce{

  0%,100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(10px);
  }

}

/* Ditto mascot SVG placeholder */
.mascot-svg {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
}

/* ===== CHOOSE YOUR NEXT STEP ===== */

.choose_step_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    border-radius: 12px;
    overflow: hidden;
}

.choose_step_item {
    height: 490px;
    padding: 40px 30px 50px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.choose_step_item_icon {
    position: relative;
}

.choose_step_title {
    text-align: center;
    padding-bottom: 3rem;
}

.find_help {
    background: var(--tertiary-sea-light);
}

.find_help:hover {
    background: var(--tertiary-sea-dark);
}

.make_donation {
    background: var(--primary-royal);
}

.make_donation:hover {
    background: var(--primary-royal-light);
}

.choose_step_item_icon {
    position: relative;
    z-index: 1;
}

.choose_step_item_icon:before {
    content: "";
    position: absolute;
    left: -6px;
    bottom: -7px;
    width: 40px;
    height: 40px;
    z-index: -1;
    border-radius: 100%;
    transition: all 0.4s ease;
}

.choose_step_item:hover .choose_step_item_icon::before {
    transform: scale(1.7);
}

.find_help .choose_step_item_icon::before {
    background: #cff6e4;
}

.make_donation .choose_step_item_icon::before {
    background: #061040;
}

.step_item_img {
    position: absolute;
    right: 0;
    top: 0;
}

.step_item_content p {
    font-size: 16px;
    line-height: 160%;
    font-weight: 300;
}

.find_help .step_item_content {
    color: var(--primary-royal);
}

.make_donation .step_item_content {
    color: var(--clr-white);
}

.step_item_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-bottom: 24px;
}

.choose_step_link {
    position: absolute;
    bottom: -20px;
    right: 0;
    transition: transform 0.4s ease;
}

.choose_step_item:hover .choose_step_link {
    transform: translateX(10px);
}

/* ===== BACKING YOUNG PEOPLE ===== */

.backing_people_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.backing_people_image {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}


.backing_people_image img {
    height: auto;
    width: 100%;
    object-fit: cover;
    max-height: 100%;
	min-height:636px;
}
.backing_people_image.default_1x1 {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.backing_people_image.default_1x1 img {
    width: 100%;
    height: 100%;
	min-height:unset !important;
    object-fit: cover;
    display: block;
}


.since_wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 177.35px;
    height: 159.28px;
    background: url(../images/img_eu8992.svg);
    display: flex;
    align-items: center;
    font-family: var(--merriweather);
    color: var(--primary-royal);
    font-size: 24px;
    line-height: 125%;
    font-weight: 400;
}

.since_wrap span {
    max-width: 60px;
    padding-left: 27px;
}

.backing_people_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.backing_people_content h2 {
    color: var(--primary-royal);
}

.backing_people_content p, 
.backing_people_content ul, .backing_people_content ol{
    color: var(--primary-royal);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}
.backing_people_content ul, .backing_people_content ol{
	padding:0px 15px;
}

/* ===== YOUNG PEOPLE STORIES ===== */
.people_stories {
    background: var(--red);
    position: relative;
    margin-bottom: 166px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.people_stories_bg_wrap {
    position: absolute;
    bottom: -166px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.people_stories_bg_wrap img {
    width: 100%;
}

.people_stories_title h2 {
    color: var(--clr-white);
}

.people_stories_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.people_stories_title::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -100px;
    background: url(../images/isolation_line.svg);
    width: 612.34px;
    height: 58.14px;
    z-index: 0;
}

.story_item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    padding-top: 5rem;
	padding-bottom:70px;
}

.story_content h3 {
    color: var(--clr-white);
}

.story_content h3 span {
    display: block;
}

.story_content p {
    color: var(--clr-white);
    font-size: 22px;
    font-weight: 300;
    line-height: 170%;
}

.story_content {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.story_image_wrap img{
 width:625px;	
}
section.video-sec {
    padding: 0;
}
.story_link {
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--clr-white);
    text-decoration: none;
    position: relative;
    width: fit-content;
}

.story_link_text {
    position: relative;
}

.story_link_text::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 100%;
    height: 3px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.story_link:hover .story_link_text::before {
    transform: scaleX(1);
        background: #000;
}

.story_link svg {
    width: 21px;
    height: 21px;
    transition: transform 0.4s ease;
}

.story_link:hover svg {
    transform: translateX(5px);
}

.stories_bottom {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.stories_bottom .swiper-pagination {
    display: inline-flex;
}

.stories_bottom .swiper-pagination {
    width: 50% !important;
    position: static;
    text-align: left;
}

.stories_navigation {
    display: inline-flex;
    gap: 20px;
    width: 50%;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
}

.swiper_slider_control {
    position: static !important;
    width: 50px !important;
    height: 50px !important;
    background: var(--primary-royal);
    border-radius: 50%;
    color: var(--clr-white) !important;
    padding: 0 12px;
}

.swiper_slider_control:hover {
    background: var(--clr-white);
    color: var(--primary-royal) !important;
}

.swiper_slider_control::after {
    display: none;
}

.swiper_slider_control.swiper-button-next {
    transform: rotate(180deg);
}

.stories_bottom .swiper-pagination .swiper-pagination-bullet {
    width: 36px;
    height: 6px;
    border-radius: 40px;
    background: #220702f7;
}

.stories_bottom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
    width: 72px;
}

/* ===== PROGRAM ===== */
.program {
    margin-top: -230px;
    padding-top: 580px;
    position: relative;
    z-index: 0;
}

.program_bg_wrap {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.program_bg_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg_overlay {
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.program_content h2 {
    color: var(--clr-white);
}

.program_content p {
    color: var(--clr-white);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.program_content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.program_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 250px;
    align-items: center;
}

.program_btn {
    max-width: 260px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 11px;
}


.program_link {
    background: var(--primary-teal);
    color: var(--primary-royal);
    text-decoration: none;
    padding: 17.5px 24px 17.5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    min-height: 59px;
    border-radius: 4px;
}

.program_link:hover {
    background: var(--tertiary-spring-green);
}

.program_link.apply_btn {
    background: var(--primary-royal);
    color: var(--clr-white);
}

.program_link.apply_btn:hover {
    background: var(--clr-white);
    color: var(--primary-royal);
}

.program_link:hover svg {
    transform: translateX(10px);
}

.program_link svg {
    width: 29px;
    height: 29px;
    transition: transform 0.4s ease;
}

.program_btn_wrap {
    display: flex;
    justify-content: flex-end;
}

/* ===== treatment ===== */
.treatment:not(._featured-program-sec) {
    padding-bottom: 0;
}

.treatment_wrap {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.treatment_title h2 {
    color: var(--primary-royal);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.treatment_item {
    padding: 80px 43px 41px 43px;
    display: grid;
    gap: 50px;
    /*position: sticky;*/
    top: 11rem;
    border-radius: 12px;
    overflow: hidden;
}

.treatment_item.network {
    background-color: var(--tertiary-mint);
    background-image: url(../images/network_bg.svg);
    background-repeat: no-repeat;
    background-position: right;
    grid-template-columns: 1.5fr 1fr;
}

.treatment_image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.treatment_image img{
	
}
.treatment_image img {
    height: 486px;
    width: 100%;
    max-width: 456px;
    object-fit: cover;
	webkit-mask-image: url(../images/network.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url(../images/network.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position-x: center;
    -webkit-mask-position-y: center;
    mask-size: 100% 100%;
}
.treatment_content_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.treatment_content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.treatment_content h3 {
    color: var(--primary-royal);
}

.treatment_content p, .treatment_content ul li{
    color: var(--primary-royal);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}
.treatment_content ul{
	padding:5px 15px;
} 
.treatment_content .story_link {
    color: var(--primary-royal);
}

.treatment_content .story_link span {
    border: 0px;
}

.treatment_item.advocacy {
    background-color: var(--tertiary-sky-blue);
    background-image: url(../images/advocacy_bg.svg);
    background-repeat: no-repeat;
    grid-template-columns: 1fr 1.5fr;
    background-position: -5% 0px;
}

.treatment_block {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* ===== VIDEO ===== */
.video_wrapper {
    padding-bottom: 0px;
}
.video_wrap img{
	height:auto !important;
	width:100% !important;
}
.video_wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    overflow: hidden;
    padding-top: 4rem;
    background: #fff;
    min-height: 776px;
}

.play_btn {
    background: var(--primary-teal);
    width: 80px;
    height: 80px;
    border-radius: 100%;
    outline: none;
    border: 0px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
}
.play_btn img{
	width:auto !important;
}
/* ===== CHANGES FUTURES ===== */
.changes_futures {
    padding-bottom: 30px;
}

.changes_futures_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.changes_futures_content h2 {
    color: var(--primary-royal);
}

.changes_futures_content p {
    color: var(--primary-royal);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.changes_futures_content {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding-right: 50px;
}

.changes_futures_item {
  padding: 21px 30px 23px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 27px;
    min-height: 223px;
}

.changes_futures_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.changes_content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.changes_content h5 {
    color: var(--primary-royal);
}

.changes_content p {
    color: var(--primary-royal);
    font-size: 15px;
    font-weight: 300;
    line-height: 160%;
}

.changes_futures_block {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.changes_futures_item.ongoing_care {
    background: #adfaadb2;
}

.changes_futures_item.safer_futures {
    background: #ffc9b1b2;
}

.changes_futures_item.stronger_pathways {
    background: #abf5dfb2;
}

/* ===== LATEST NEWS ===== */
.latest_news {
    background: var(--tertiary-sea-light);
    position: relative;
    padding-top: 15vw;
}

.latest_news_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.latest_news_bg img {
    width: 100%;
}

.latest_news_wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.latest_news_title h2 {
    color: var(--primary-royal);
    text-align: center;
}

.latest_news_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 58px;
}

.latest_news_item {
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-decoration: none;
}

.latest_news_img_wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 340px;
}

.latest_news_tag {
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 6px 12px;
    background: var(--primary-teal);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.date {
    color: var(--primary-royal);
    font-size: 16px;
    font-weight: 300;
    line-height: 160%;
}

.news_title {
    color: var(--primary-royal);
    font-family: var(--merriweather);
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
}

.latest_news_content .story_link {
    color: var(--primary-royal);
    margin-top: 6px;
}

.latest_news_content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.latest_news_item:hover .news_title {
    color: var(--primary-teal);
}

.latest_news_item:hover .story_link_text::before {
    transform: scaleX(1);
    background: var(--primary-teal);
}

.latest_news_item:hover .story_link svg {
    transform: translateX(5px);
}

.latest_news_img_wrap img {
    width: 100%;
    display: block;
    transform: scale(1.1);
    transition: transform 0.6s ease;
    height: 100%;
    object-fit: cover;
}

.latest_news_item:hover .latest_news_img_wrap img {
    transform: scale(1);
}

/* ===== JOIN OUR COMMUNITY ===== */
.join_community {
    background: var(--tertiary-sea-light);
}

.join_community_wrap {
    background-color: var(--primary-teal);
    padding: 97px 64px;
    border-radius: 12px;
    background-image: url(../images/join-our-community.svg);
    background-position: 0 0px;
    overflow: hidden;
    background-repeat: no-repeat;
    min-height: 322px;
}

.join_community_content h3 {
    margin-bottom: 30px;
}
.newsletter_form {
    display: flex;
    align-items: center;
    gap: 17px;
    flex-wrap: wrap;
}

.join_community_form form{
	    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    gap: 12px;
}
.join_community_form form .gform_body.gform-body{
	width:100%;
}

.form_field {
    flex: 1;
    min-width: 280px;
}

.form_field input, .join_community_form .ginput_container input{
    width: 100%;
    height: 56px !important;
    padding: 0 24px;
    border: none;
    border-radius: 4px;
    background: var(--clr-white) !important;
    font-size: 15px;
    color: var(--primary-royal);
    outline: none;
    box-sizing: border-box;
	border:0px !important;
}
 .gform_button{
	 display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: var(--radius-ex-sm);
    font-family: var(--manrope);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    line-height: 1;
	    background: var(--primary-royal);
    color: var(--clr-white);
    border-color: var(--primary-royal);
    min-height: 50px;
}
.join_community_form .gform_button:hover {
    background: var(--clr-white);
    color: var(--primary-royal);
    border-color: var(--clr-white);
}

.join_community_wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}
/***Modal css***/

 /* Modal wrapper (hidden by default) */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  overflow-y: auto; /* <== scrolls if modal taller than viewport */
  z-index: 1050;
}

/* Active state */
.modal.show {
  display: block;
}

/* Backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.modal.show .modal-backdrop {
  opacity: 1;
  z-index: 1040;
}

/* Centered dialog */
.modal-dialog {
 background: #fff;
    border-radius: 0;
    max-width: 600px;
    width: 100%;
    margin: 5rem auto;
    padding: 40px;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s 
ease;
    z-index: 1051;
    
}
.modal-dialog .form-inner{
 max-width: 100%;
}
.modal-dialog .form-group.custom-checkbox{
 margin-top: 40px;
}
.address-fields-wrap {
    margin-bottom: 30px;
}
/* Animate in */
.modal.show .modal-dialog {
  transform: translateY(0);
}

/* Close button */
.close-modal {
    position: fixed;
    top: 30px;
    right: 40px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    z-index: 9999999;
}
/* Disable body scroll */
body.modal-open {
  overflow: hidden;
}
.custom-video-modal .modal-dialog {
    max-width: 1366px;
    padding: 0;
    line-height: 0;
}
.custom-video-modal .modal-dialog  iframe{
	width:100%;
	height:700px;
	object-fit:cover;
}
.page-id-258 .join_community{
	background:#fff;
}


.share-modal .modal-dialog {
    max-width: 375px;
    background-color: #F7F7F7;
    padding: 40px;
}

.modal-dialog .form-inner {
    max-width: 100%;
}
.share-modal-items ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.share-modal .modal-dialog h2 {
    text-align: center;
    font-size: 22px;
    line-height: 24px;
    color: var(--primary);
}

.share-modal-items li a {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 400;
    color:#07134D;
	text-decoration:none;
}

.share-modal-items li a span {
    width: 60px;
    height: 60px;
    background: #65E0AA;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
	text-decoration:none;
}

.share-modal-items li a span svg path {
    fill: #07134D;
}
.ginput_container--name{
gap:20px;	
}
.ginput_container--name p{
	width:100%;
	display:flex;
	align-items:center;
}
.ginput_container--name {
    gap: 20px;
    display: flex !important;
    flex-flow: unset !important;
    flex-wrap: nowrap !important;
    flex-direction: unset !important;
}
.gform_wrapper.gravity-theme .gfield input, .gform_wrapper.gravity-theme .gfield select, .textarea{
    max-width: 100%;
    width: 100%;
    height: 60px;
    padding: 10px 21px !important;
    border: none;
    border-radius: 4px;
    background: #fff;
    font-size: 15px;
    color: var(--primary-royal);
    outline: none;
    box-sizing: border-box;
	border:1px solid #A4A7AE;
}
.gfield_radio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 10px 0;
    gap: 10px;
}
.ginput_container br {
    display: none;
}
.gform_heading {
    text-align: center;
}
.gform_heading {
    margin-bottom: 40px;
}
.gfield_radio .gchoice {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 9px;
}
.gfield_radio .gchoice input {
    width: 30px !important;
    height: 30px !important;
}
.gform-footer.gform_footer.top_label br {
    display: none;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-royal);
}

.footer_top {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer_middle {
    padding: 90px 0;
    border-top: 1px solid #ffffff1a;
    border-bottom: 1px solid #ffffff1a;
}

.footer_bottom {
    padding: 38px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer_socal_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.socal_link {
    width: 42px;
    height: 42px;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    text-decoration: none;
}

.footer_logo_wrap {
    display: flex;
    align-items: center;
    gap: 54px;
}

.footer_button_group {
    display: flex;
    gap: 25px;
}

.footer_middle {
    padding: 90px 0;
    border-top: 1px solid #ffffff1a;
    border-bottom: 1px solid #ffffff1a;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer_nav_title {
    font-family: var(--merriweather);
    color: var(--clr-white);
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
}

.footer_nav_item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer_nav_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_nav_wrap a, .footer_nav_wrap .footer-address  {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 150%;
    color: var(--clr-white);
    padding-left: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_nav_wrap a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 100%;
}

.footer_contact_address a,  .footer_contact_address .footer-address{
    padding: 0;
    align-items: start;
}
.footer_contact_address a img , .footer-address img{
    position: relative;
    top: 6px;
}
.footer_contact_address a::before {
    display: none;
}

.footer_bottom p, .footer_bottom a {
    color: var(--clr-white);
    font-size: 15px;
    font-weight: 500;
    line-height: 160%;
	text-decoration:none;
}

.footer_copyright_logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer_copyright_logo span {
    height: 88px;
}

.footer_copyright_logo span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== Triple Care Farm ===== */
.inner-hero {
    background: var(--primary-royal);
    padding: 0px 0 80px;
    position: relative;
    overflow: hidden;
    height: 55vh;
    display: flex;
    align-items: center;
}

.inner-hero h1 {
    color: var(--clr-white);
    margin-bottom: 20px;
    text-align: center;
}

.breadcrumb {
    color: var(--clr-white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.breadcrumb a {
    text-decoration: none;
}

.card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.image_col {
    width: 100%;
    height: 625px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.image_col h2 {
    color: var(--primary-royal);
}

.image_col p {
    color: var(--primary-royal);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.content_col {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* ===== FEATURE CHECKLIST ===== */

.feature_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
	padding:0px !important;
}
ul.feature_list.feature-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.feature_list_item {
    display: flex;
       align-items: self-start;
    gap: 16px;
}

.feature_check {
    width: 23px;
    height: 23px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature_text {
    font-family: var(--merriweather);
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-royal);
    line-height: 140%;
}

/* ===== THREE STAGES SECTION ===== */
.three_stages {
    background: var(--red);
    padding: 80px 0 0rem 0;
    position: relative;
}

.bg_image img {
    width: 100%;
}

.three_stages_header {
    display: flex;
/*     grid-template-columns: 1fr 1fr; */
    gap:5px;
    align-items: flex-start;
	flex-direction:column;
    margin-bottom: 60px;
}

.three_stages_header h2 {
    color: var(--clr-white);
}

.three_stages_header p {
    color: var(--clr-white);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
    padding-top: 10px;
}

.three_stages_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.stage_card {
       background: #CE2807;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.stage_card_img {
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: 12px;
}

.stage_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stage_card:hover .stage_card_img img {
    /*transform: scale(1.05);*/
}

.stage_card_content {
    padding: 40px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.stage_card_content h4 {
    color: var(--clr-white);
    font-family: var(--merriweather);
}

.stage_card_content p {
    color: var(--clr-white);
    font-size: 15px;
    font-weight: 300;
    line-height: 170%;
    flex: 1;
}

.stage_link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--clr-white);
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}
.step_item_img svg {
    width: 266px;
    height: 290px;
}
.masked-image{
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .4s ease;
}

.choose_step_item:hover .masked-image{
  transform: scale(.95);
}
.stage_link_text {
    position: relative;
}

.stage_link_text::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stage_link:hover .stage_link_text::before {
    transform: scaleX(1);
}

.stage_link_icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.stage_link:hover .stage_link_icon {
    transform: translateX(4px);
}

.stages_bg_image {
    position: absolute;
    bottom: -140px;
    left: 0;
    right: 0;
    z-index: 999;
}

.stages_bg_image img {
    width: 100%;
}

.three_stages_wave {
    margin-top: 80px;
    line-height: 0;
}

.three_stages_wave svg {
    width: 100%;
    display: block;
}

/* ===== Support that meets young people SECTION ===== */

.support_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.support_content h2 {
    color: var(--primary-royal);
}

.support_content p {
    color: var(--primary-royal);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.support_content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.support_item_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-grid-list-block {
    display: flex;
    flex-direction: column;
}
.support_item {
    display: flex;
    gap: 20px;
}

.support_item_icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
}

.support_item_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support_item_content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.support_item_content p,
.clear_pathway_content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

/* Clear Pathway */

.clear_pathway {
    background: var(--tertiary-sea-light);
    padding-bottom: 48px;
}

.clear_pathway_image_wrap {
    height: 454px;
    overflow: hidden;
    border-radius: 12px;
}
.clear_pathway_image_wrap img{
	height:100%;
	object-fit:cover;
}
.clear_pathway_wrap {
    display: flex;
    flex-direction: column;
    gap: 78px;
}

.clear_pathway_grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
}

.step {
    padding: 10px 14px;
    background: var(--tertiary-mint);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
}

.clear_pathway_content {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #cff6e4;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Ready to take */
.ready_to_take_grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.ready_to_take_block {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.ready_to_take_image_wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.ready_to_take_image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ready_to_take_overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
}

.ready_to_take_content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.ready_to_take_content h3 {
    color: var(--clr-white);
}

.ready_to_take_content p {
    color: var(--clr-white);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
    max-width: 660px;
}

.ready_to_take_content .button_group {
    display: flex;
    align-items: center;
    gap: 32px;
}

.recovery_wrap {
    background: var(--tertiary-sea-light) url(../images/back-bg.svg);
    border-radius: 12px;
    padding: 50px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 120px;
    background-repeat: no-repeat;
    background-position: bottom left;
}

.recovery_img_wrap {
    display: flex;
    gap: 12px;
    max-width: 257px;
    width: 100%;
}

.recovery_img_wrap img {
    width: 100%;
}

.recovery_des p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.recovery_des .story_link {
    color: var(--primary-royal);
}

.recovery_des {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.people_stories.triple-care-farm {
    padding-bottom: 200px;
    margin: 0;
}

.triple-care-farm .stories_bottom {
    flex-direction: row-reverse;
    gap: 100px;
}

.triple-care-farm .stories_navigation {
    padding-left: 0;
}

.triple-care-farm .people_stories_title::before {
    display: none;
}

.triple-care-farm .people_stories_title {
    margin-bottom: 3rem;
}
.triple-care-farm .people_stories_bg_wrap{
	display:none;
}
.triple-care-farm .story_content{
	order:2;
}
.triple_join_community {
    margin-top: -100px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.people_stories .story_shape img{
	object-fit: cover;
    -webkit-mask-image: url(../images/story.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url(../images/story.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position-x: center;
    -webkit-mask-position-y: center;
    mask-size: 100% 100%;
    height: 660px;
    width: 520px;
    display: table;
    margin: auto;
}
/* OUR TEAM */
.our_team_wrapper {
    padding-bottom: 3rem;
}

.our_team_wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.our_team_title {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.our_team_join {
    padding-top: 260px;
    position: relative;
}

.our_team_join_bg_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.our_team_join_bg_image img {
    width: 100%;
}

.our_team_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 60px;
}
.our_team_image img {
    height: 369px;
    object-fit: cover;
    -webkit-mask-image: url(../images/team_1.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url(../images/team_1.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}
.our_team {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-decoration: none;
}


.designation {
    padding: 7px 12px;
    background: var(--tertiary-mint);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
}
.our_team_content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.our_team_content h4 {
    font-size: 24px;
    margin-top: 14px;
}

.our_team_content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.our_team_content .story_link {
    color: var(--primary-royal);
}

.team-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: var(--gap-md);
}

.team-popup.active {
    display: flex;
}

.team-popup_custom  .modal-dialog{
    background: var(--clr-white);
    width: 100%;
    max-width: 1024px;
    border-radius: 12px;
    padding: var(--gap-2xl);
    position: relative;
}

.popup-close {
    position: absolute;
    top: var(--gap-md);
    right: var(--gap-md);
    border: none;
    background: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary-royal);
    line-height: 1;
}

.popup-close:hover {
    color: var(--red);
}

.popup-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: var(--gap-2xl);
    align-items: center;
}

.popup-image {
    width: 100%;
}

.popup-designation {
    display: inline-block;
    margin-bottom: var(--gap-xs);
    padding: 10px 12px;
    background: var(--tertiary-mint);
    border-radius: var(--radius-ex-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-royal);
}

.popup-name {
    margin: 0 0 var(--gap-xl);
    font-family: var(--merriweather);
    font-size: 34px;
    font-weight: 400;
    color: var(--primary-royal);
    line-height: 130%;
}

.popup-description {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
    color: var(--primary-royal);
}

.team_socal_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.popup-image-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

.team_socal_link {
    width: 42px;
    height: 42px;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

/* Trustee & governance */
.changes_futures.trustee_governance {
    padding-bottom: 120px;
}
.trustee_governance .changes_futures_item {
    background: var(--tertiary-sea-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;	
}
.trustee_governance .changes_futures_icon img{
	width:56px;
	height:56px;
}
.trustee_governance_item {
    background: var(--tertiary-sea-light);
    text-align: center;
}

.trustee_governance_item .changes_futures_icon {
    background: var(--primary-teal);
    width: 56px;
    height: 56px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.trustee_governance_item .changes_content p {
    font-family: var(--merriweather);
    font-size: 18px;
    font-weight: 400;
    line-height: 190%;
}

/* Our Board */
.our_team_wrapper.our_board_wrapper {
    padding-top: 0;
}

.our_board_wrapper .our_team_wrap {
    padding-top: 100px;
    border-top: 1px solid #07134d1a;
}

/* Supporting recovery beyond treatment */
.supporting_image_wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--gap-sm);
}

.supporting_image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Young people stories */
.red_block {
    padding-bottom: 0;
    background: var(--red);
    position: relative;
    z-index: 11;
}

.red_block_title {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.red_block_title h2 {
    color: var(--clr-white);
}

.red_block_title p {
    color: var(--clr-white);
    font-size: 16px;
    line-height: 170%;
    font-weight: 300;
}

.red_block_wrap {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xl);
}

.stories_item {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xl);
}

.stories_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 60px;
}

.stories_item_content h4 {
    font-size: 24px;
    color: var(--clr-white);
}
.button_group.all_stories  .btn-tertiary:hover {
        border-color: var(--primary-royal);
}
.stories_item_img_wrap img {
    height: 507px;
    object-fit: cover;
	    -webkit-mask-image: url(../images/story.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url(../images/story.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position-x: center;
    -webkit-mask-position-y: center;
    mask-size: 100% 100%;
}
.stories_item_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.stories_item_content p {
    color: var(--clr-white);
    font-size: 16px;
    line-height: 170%;
    font-weight: 300;
}

.all_stories {
    text-align: center;
    justify-content: center;
}

/* Young people stories Detail */
.young_people_detail_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-lg);
	position:relative;
}

.young_people_detail_title .share_icon {
    position: absolute;
    right: 0;
	top:-30px;
}

.share_icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-teal);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.young_people_detail p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
    margin-top: 20px;
}

.young_people_detail h4 {
    margin-top: 30px;
}

.blockquote {
    background: var(--tertiary-sea-light);
    border-left: 7px solid var(--tertiary-mint);
    padding: 50px 60px;
    margin: 30px 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 170%;
}

.detail_red_block_title {
    display: block;
    text-align: center;
}

.young_people_detail_wrap {
    display: grid;
    grid-template-columns: 1.9fr 1fr;
    gap: 80px;
}

.young_people_image {
    padding: 40px;
    background: url(../images/bg_color_image.svg);
    background-size: cover;
    background-position: center;
    height: 549.08px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 438.51px;
    margin: 0 auto;
}

.team-sec-hide-bottom-shape + .bg-image {
    display: none;
}

.young_people_image img {
    height: 393.91px;
    width: 304.57px;
    object-fit: cover;
}

.young_people_info {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.young_people_info_detail {
    background: var(--primary-royal);
    padding: 30px;
    border-radius: 12px;
}

.young_people_info_detail ul li {
    color: var(--clr-white);
    font-size: 15px;
    font-weight: 300;
    line-height: 170%;
    list-style: none;
    padding-left: 160px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.young_people_info_detail ul li span {
    font-family: var(--merriweather);
    font-size: 18px;
    line-height: 170%;
    font-weight: 400;
    position: absolute;
    left: 0;
}

.young_people_info_detail ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.thought_wrap {
    margin-top: 32px;
    background: var(--primary-royal);
    padding: 30px;
    border-radius: 12px;
}

.thought_wrap {
    margin-top: 32px;
    background: var(--primary-royal);
    padding: 50px 60px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: var(--gap-lg);
}

.quotation_icon {
    min-width: 75px;
}



.thought_content span {
    color: var(--clr-white);
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
}

.thought_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}

.thought_content p {
    font-family: var(--merriweather);
    color: var(--clr-white);
    font-size: 24px !important;
    font-weight: 400 !important;
    line-height: 140% !important;
    margin: 0;
}

/**********slider***********/
.recovery_story {
    padding: 0;
    background: var(--primary-royal);
}

.story-slider {
    padding: 50px 48px;
    position: relative;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 200px;
    min-height: 207px;
    align-items: center;
}

.story_prev,
.story_next {
    position: absolute;
    background: transparent;
    border: 0;
    cursor: pointer;
    top: 38%;
}

.slide.active {
    display: block;
}

.slide span {
    display: block;
    margin-top: 5px;
    font-size: 15px;
    font-weight: 300;
    line-height: 160%;
    color: var(--primary-teal);
}

.slide {
    display: none;
    width: 50%;
}

.slide h3 {
    font-family: var(--merriweather);
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
}

.slide:nth-child(odd) {
    text-align: left;
}

.slide:nth-child(even) {
    text-align: right;
	display:flex;
	justify-content:end;
}

.story_prev {
    left: 0px;
}

.story_next {
    right: 0px;
}
.single-story .bg_image {
    background: #eefcf7;
}
/* ===== Our Impact Cta */
.bg_image {
    width: 100%;
    position: relative;
    z-index: 11;
}

.impact_cta {
    background: url(../images/impact_cta_img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -10%;
    padding-top: 640px;
    position: relative;
}

.impact_cta::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
    opacity: 0.3;
}

.impact_cta_wrap {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: var(--gap-xl);
    position: relative;
    z-index: 1;
}

.impact_cta_wrap .button_group {
    min-width: 290px;
    text-align: right;
    justify-content: end;
}

.impact_cta_wrap h3 {
    color: var(--clr-white);
}

/* Community stories */
.community_stories_title {
    max-width: 660px;
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

.community_stories_title p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.community_stories_wrap {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xl);
}

.community_stories_block {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xl);
}

.community_stories_item {
    display: flex;
    align-items: center;
    gap: var(--gap-2xl);
}

.community_stories_content {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.community_stories_image {
    width: 60%;
    overflow: hidden;
    border-radius: var(--gap-sm);
}

.community_stories_content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.community_stories_content .story_link {
    color: var(--primary-royal);
}

.reverse {
    flex-direction: row-reverse;
}

/* ===== Reports and publications ===== */
.reports_publications {
    background: var(--tertiary-sea-light);
}

.reports_publications_title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
    max-width: 560px;
    margin: 0 auto;
}

.reports_publications_wrap {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xl);
}

.reports_publications_title p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.reports_publications_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
}

.reports_publications_item {
    padding: 40px 30px 55px 30px;
    border-radius: var(--gap-sm);
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.annual_reports {
    background-color: rgba(255, 201, 177, 0.7);
    background-image: url(../images/annual-reports-bg.svg);
    background-position: top right;
    background-repeat: no-repeat;
}

.publications {
    background-color: rgba(166, 230, 255, 0.7);
    background-image: url(../images/publications-bg.svg);
    background-position: bottom left;
    background-repeat: no-repeat;
}

.reports_publications_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    position: relative;
}

.reports_publications_link_wrap {
    position: absolute;
    right: 0;
    bottom: -15px;
}

.reports_publications_content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
    max-width: 400px;
}

/* Young people stories page */
.young_people_reports {
    margin-top: -10%;
    padding-top: 250px;
}

/* Legacy Safety */
.legacy_safety_wrap {
    display: grid;
    grid-template-columns: 1.9fr 1fr;
    gap: 50px;
    align-items: center;
}

.legacy_safety_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
}

.legacy_safety_content h2 {
    color: var(--primary-royal);
}

.legacy_safety_content p {
    color: var(--primary-royal);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.legacy_safety_image {
    overflow: hidden;
    border-radius: var(--gap-sm);
}

/* ===== Who we are VIDEO ===== */
.who_we_are_video {
    padding: 0;
}

/* ===== How the foundation began ===== */
.foundation_began {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 0;
    align-items: center;
    padding-bottom: 0;
}

.foundation_began_image {
    width: 100%;
    height: 100%;
}

.foundation_began_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foundation_began_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    background: var(--red);
    padding: 160px 70px;
}

.foundation_began_since {
    font-size: 21px;
    font-weight: 400;
    line-height: 140%;
    color: var(--clr-white);
}

.foundation_began_content h2 {
    color: var(--clr-white);
    margin-top: 8px;
}

.foundation_began_content p {
    color: var(--clr-white);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.foundation_began_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
}

/* What we stand for */
.stand_wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.stand_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.stand_title h2 {
    color: var(--primary-royal);
}

.stand_item {
    background: var(--tertiary-sea-light);
    padding: 35px 30px;
    border-radius: var(--gap-sm);
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xl);
}

.stand_item_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

.stand_item_icon {
    position: relative;
    z-index: 1;
}

.stand_icon_bg {
    background: #cff6e4;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    position: absolute;
    bottom: -8px;
    left: -4px;
    z-index: -1;
}

.stand_item_content h4 {
    color: var(--primary-royal);
}

.stand_item_content p {
    color: var(--primary-royal);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.stand_item.values_item {
    background: var(--primary-royal);
    position: relative;
}

.values_image_wrap {
    position: absolute;
    left: 0;
    bottom: 0;
}

.values_item_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
}

.values_item_content h4 {
    color: var(--clr-white);
}

.values_item_content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 140px;
    margin-top: 28px;
}

.values_item_content ul li {
    color: var(--clr-white);
    font-size: 16px;
    font-weight: 400;
    line-height: 196%;
    position: relative;
    list-style: none;
    padding-left: 15px;
    display: flex;
    align-items: center;
}

.values_item_content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    background: var(--red);
    width: 4px;
    height: 4px;
    border-radius: 100%;
}

/* Purpose */
.purpose_image {
    width: 100%;
    height: 100%;
}

.purpose_image img {
    position: static;
}

.purpose_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.purpose_list_item {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    font-family: var(--merriweather);
    color: var(--primary-royal);
}

.purpose_list_item img {
    width: 23px;
    min-width: 23px;
    height: 23px;
}

/* Our Patron */

.our_patron_wrap {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xl);
}

.our_patron {
    background-color: var(--primary-teal);
    padding: 40px;
    border-radius: var(--radius-ex-sm);
    overflow: hidden;
    background-image: url(../images/our_patron_bg_img.svg);
    background-repeat: no-repeat;
    background-position: center right;
    display: grid;
    grid-template-columns: 1.9fr 1fr;
    gap: 60px;
    align-items: center;
}

.our_patron_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

.our_patron_content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.our_patron_content .story_link {
    color: var(--primary-royal);
}


.our_patron_image img {
    width: 400px;
    height: 407px;
    object-fit: cover;
    webkit-mask-image: url(../images/network.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url(../images/network.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position-x: center;
    -webkit-mask-position-y: center;
    mask-size: 100% 100%;
}
/* Legacy */
.legacy_wrapper {
    background: var(--tertiary-sea-light);
}

.legacy_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.legacy_title {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.legacy_wrap {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xl);
}

.legacy_item {
    width: 100%;
    height: 406px;
    overflow: hidden;
    position: relative;
    border-radius: var(--gap-sm);
}

.legacy_overlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: #000;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.legacy_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legacy_item_content {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: var(--gap-lg);
    gap: var(--gap-xs);
    z-index: 11;
}

.legacy_tag {
    background: var(--primary-teal);
    padding: 4px 12px;
    border-radius: var(--radius-ex-sm);
    font-size: 17px;
    font-weight: 400;
    line-height: 140%;
}

.legacy_item_content h3 {
    color: var(--clr-white);
}

/* Story Written */
.story_written_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-2xl);
    align-items: center;
}

.story_written_image {
    overflow: hidden;
    border-radius: var(--gap-sm);
    width: 100%;
    height: 100%;
}

.story_written_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story_written_image.default_1x1,
.story_written_image.image_auto {
    align-content: center;
}
.story_written_image.default_1x1 img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: var(--gap-sm);
    overflow: hidden;
}

.story_written_image.image_auto img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--gap-sm);
    overflow: hidden;
}

.story_written_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xl);
    /*padding: 80px 0;*/
    padding: 40px 0;
}

.story_written_item {
    position: relative;
    padding-left: 48px;
}

.story_written_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.story_written_list::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 43px;
    width: 1px;
    height: 77%;
    border-left: 2px dashed rgba(0, 0, 0, 0.2);
}
.story_written_item:first-child {
    padding-top: 0;
}

.story_written_item span {
    font-size: 14px;
    font-weight: 400;
}

.story_written_item p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.story_written_item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 38px;
    width: 20px;
    height: 20px;
    background: var(--red);
    border-radius: 100%;
    border: 5px solid var(--clr-white);
}

/* Continuing */
.continuing {
    background: var(--tertiary-sea-light);
}

.continuing_wrap {
    display: grid;
    grid-template-columns: 1fr 1.9fr;
    gap: var(--gap-2xl);
    align-items: center;
}

.continuing_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
}

.continuing_content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.continuing_content_wrap {
    display: grid;
    grid-template-columns: 1.9fr 1fr;
    gap: var(--gap-2xl);
    align-items: end;
}

/* Donation Impact */
.donation_impact_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-3xl);
    align-items: center;
}

.donation_impact_item {
    padding: 270px 30px 40px 30px;
    background-color: var(--primary-royal);
    border-radius: var(--gap-sm);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-height: 450px;
	background-size:cover;
	background-position:center;
}

.donation_overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
}

.donation_impact_item h3 {
    color: var(--clr-white);
}

.donation_impact_item p {
    color: var(--clr-white);
    line-height: 160%;
}

.donation_impact_item.donation {
    background: url(../images/donation.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.donation_impact_item.impact::before, .donation_impact_item.dark_card::before{
    content: "";
    background-image: url(../images/impact_img.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 330px;
    height: 100%;
    background-size: contain;
    z-index: 0;
}

.donation_impact_item .reports_publications_link {
    transition: transform 0.4s ease;
}

.donation_impact_item:hover .reports_publications_link {
    transform: translateX(10px);
}

.join_community.we_are_join {
    background: transparent;
}

/* NEWS PAGE */
.news_wrapper {
    background: transparent;
    padding-top: 80px;
}

.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
	align-items:center;
    padding: 0px;
    gap: var(--gap-sm);
}

.pagination li a {
    display: block;
    text-decoration: none;
    border: 1px solid var(--primary-royal);
    color: var(--primary-royal);
    border-radius: 8px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

.pagination li a:hover {
    background: var(--tertiary-mint);
    border: 1px solid var(--tertiary-mint);
}

.pagination li a.pagination_prev {
    transform: rotate(180deg);
}

.search-pagination.pagination * {
    text-decoration: none;
    border: 1px solid var(--primary-royal);
    color: var(--primary-royal);
    border-radius: 8px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

.search-pagination.pagination *:hover{
	 background: var(--tertiary-mint);
    border: 1px solid var(--tertiary-mint);
}

.search-pagination.pagination span.page-numbers.current {
    opacity: 0.2; 
    pointer-events: none;
}
.search-pagination.pagination span.page-numbers.dots {
    pointer-events: none;
}

.latest_news_filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.filter_dropdown {
    max-width: 220px;
    height: 54px;
    padding: 0 20px;
    border: 1px solid var(--primary-royal);
    border-radius: 4px;
    background: var(--clr-white);
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-royal);
}

.filter_dropdown:focus-visible {
    outline: none;
    outline-offset: 0px;
}

.search_filter {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.search_toggle {
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 4px;
    background: #67e0b5;
    color: #18235f;
    cursor: pointer;
    z-index: 2;
}

.search_toggle svg {
    width: 24px;
    height: 24px;
}

.search_input {
    position: absolute;
    right: 0;
    width: 0;
    height: 54px;
    padding: 0;
    border: 1px solid var(--primary-royal);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-royal);
}

.search_filter.active .search_input {
    width: 300px;
    padding: 0 70px 0 20px;
    opacity: 1;
    visibility: visible;
}

.search_filter .search_input:focus-visible {
    outline: none;
    outline-offset: 0;
}

/* News - Internal */
.breadcrumbs {
    padding: 20px 0 0 0;
}

.breadcrumbs_wrap {
    display: flex;
    gap: 7px;
    font-size: 13px;
    font-weight: 400;
    color: #07134d99;
}

.breadcrumbs_wrap a {
    text-decoration: none;
}

.latest_news_tag.internal_tag {
    position: static;
    display: inline-block;
}

.news_internal_catagery {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--gap-sm);
    margin-bottom: 40px;
}

.news_internal_title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.news_internal_banner_image {
    overflow: hidden;
    border-radius: 12px;
    height: 600px;
    margin-top: 60px;
}

.news_share_icon {
    position: absolute;
    right: 0;
    bottom: 0;
}

.news_internal_banner_content {
    position: relative;
}

.news_bio {
    padding-top: 0;
}

.news_bio_wrap {
    display: grid;
       grid-template-columns: 800px 500px;
    gap: 75px;
}
section.backing_people {
 padding:60px 0px;
}
.news_bio_wrap p {
    font-size: 16px;
    line-height: 170%;
    font-weight: 300;
}

.news_bio_image {
    overflow: hidden;
    border-radius: 12px;
}

.news_bio_wrap ul {
    padding-left: 30px;
    font-size: 16px;
    line-height: 170%;
    font-weight: 300;
}

.news_bio_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.news_bio_grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.news_bio_image_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news_bio_left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trending_articles_item {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 30px;
}

.trending_articles_image {
    height: 134px;
    overflow: hidden;
    border-radius: 12px;
}

.trending_articles_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending_articles_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.trending_articles_list a{
	text-decoration:none;
}

.news_bio_left img {
    width: 100%;
    height: auto;
}
.news_bio_left iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trending_articles_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 44px;
}

.trending_articles {
    position: sticky;
    top: 120px;
}

.trending_articles_content p {
    font-family: var(--merriweather);
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    margin-top: 20px;
}

.share_tags {
    padding-top: 0;
}

.share_tags_wrap {
    padding-top: 70px;
    border-top: 1px solid #07134d1a;
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
}

.tags_wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}

.tags_wrap ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
}

.news_bio_grid img {
    height: 300px;
    object-fit: cover;
}

.tags_wrap ul li a, .tags_wrap ul li span {
    text-decoration: none;
    padding: 10px 12px;
    background: var(--tertiary-sea-light);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
    color: var(--primary-royal);
}

.share_article {
    display: flex;
    align-items: center;
    gap: var(--gap-xl);
}

/* our progress */
.our_progress {
    padding-bottom: 0;
}

.our_progress_wrap {
    padding-bottom: 100px;
    border-bottom: 1px solid #07134d1a;
}

.jour_progress_content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.jour_progress_content p {
    max-width: 660px;
    margin-right: 0 !important;
    margin: 0 auto 0;
    font-size: 16px;
    line-height: 170%;
    font-weight: 300;
}

/* Yearly reports */
.yearly_reports_wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

.yearly_reports_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 80px;
}

.yearly_reports_content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 170%;
}

.yearly_reports_grid {
    background: var(--tertiary-sea-light);
    padding: 40px;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.yearly_reports_image {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.yearly_reports_image img {
    width: 100%;
    height: 100%;
}

.latest_news_tag.yearly_reports_tag {
    left: 20px;
    top: 20px;
    right: auto;
}

.yearly_reports_item {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.yearly_reports_item p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.yearly_reports_item .button_group {
    gap: var(--gap-md);
}

.yearly_pdf_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
   
}


.yearly_pdf_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: var(--radius-ex-sm);
    background: #ffc9b1b2;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    font-weight: 400;
    font-family: var(--merriweather);
    color: #0a134a;
	gap:20px;
}

.yearly_pdf_link:hover svg {
    transform: translateX(10px);
}
.yearly_pdf_link .report_icon{
	width:30px;
	min-width:30px;
}
section.yearly_reports {
    padding: 60px 0;
}
.yearly_pdf_link svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    transition: transform 0.4s ease;
}

.yearly_pdf_icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: var(--tertiary-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

/* Make a donation */
.donation_publications {
    padding-top: 0;
}

.donation_publications_wrap {
    padding-top: 100px;
    border-top: 1px solid #07134d1a;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.donation_wrap {
    background-color: var(--primary-royal);
    padding: 50px;
    border-radius: 12px;
    overflow: hidden;
    background-image: url(../images/donations.svg);
    background-repeat: no-repeat;
    background-position: top right;
    padding-top: 280px;
    background-size: 400px;
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

.donation_wrap h3 {
    color: var(--clr-white);
}

.donation_wrap p {
    color: var(--clr-white);
    font-size: 16px;
    font-weight: 300;
    line-height: 160%;
    max-width: 360px;
}

.publications_wrap {
    background-color: var(--tertiary-sky-blue);
    padding: 50px;
    border-radius: 12px;
    background-image: url(../images/publications.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.publications_content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.publications_content .story_link {
    color: var(--primary-royal);
}

.publications_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
}

/* Stories and insights from our work */
.jour_progress_content.insights_work {
    grid-template-columns: 1.2fr 2fr;
}

/* Research reports */
.research_reports {
    padding-bottom: 0;
}

.research_reports_title {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
    max-width: 560px;
}

.research_reports_title p {
    font-size: 18px;
    font-weight: 300;
    line-height: 170%;
}

.research_reports_wrap {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-bottom: 30px;
    border-bottom: 1px solid #07134d1a;
}

.research_reports_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 44px;
    column-gap: 40px;
}

.research_reports_item {
    background: var(--tertiary-sea-light);
    padding: 26px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
}

.research_reports_image {
    background: var(--primary-royal);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    padding-bottom: 95px;
}

.research_reports_image img {
    width: 100%;
}

.research {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
}

.research_logo {
    max-width: 178px;
    width: 100%;
    margin: 0 auto;
}

.research_tag {
    margin-bottom: 20px;
    background: var(--primary-teal);
    display: inline-block;
    padding: 10px 12px;
    border-radius: var(--radius-ex-sm);
    font-family: var(--merriweather);
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    max-width: 220px;
}

.research_reports_content h4 {
    font-size: 24px;
}

.research_reports_content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 170%;
}

.research_reports_content .button_group {
    gap: var(--gap-md);
}

.research_reports_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Impact newsletters */
.impact_newsletters_wrap {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.impact_newsletters_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 44px;
    column-gap: 40px;
}

.impact_newsletters_item {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
}

.impact_newsletters_bg {
    padding: 24px 35px;
    background: var(--primary-royal);
    border-radius: 8px;
}

.impact_newsletters_logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.impact_newsletters_logo img {
    max-width: 159.67px;
}

.impact_newsletters_image {
    position: relative;
}

.impact_newsletters_image img {
    width: 100%;
    height:423px;
  object-fit: cover;
}

.newsletters_tag {
    margin-bottom: 20px;
    background: var(--primary-teal);
    display: inline-block;
    padding: 10px 12px;
    border-radius: var(--radius-ex-sm);
    font-family: var(--merriweather);
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    max-width: 220px;
    position: absolute;
    top: 0;
    left: 0;
}

.summer {
    font-size: 25px;
    color: var(--clr-white);
    margin-top: 12px;
    text-align: center;
}

.impact_newsletters_content span {
    font-size: 16px;
    font-weight: 300;
    line-height: 160%;
    display: block;
}

.impact_newsletters_content h4 {
    font-size: 24px;
}

.impact_newsletters_content .story_link {
    color: var(--primary-royal);
}

.impact_newsletters_content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.publications_wrap.annual_reports_wrap {
    background-color: var(--tertiary-peach);
    background-image: url(../images/annual_reports.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 320px;
}

.publications_filter_wrapper,
.useful_filter_wrapper {
    padding: 0px;
}

.publications_filter,
.useful_filter {
    background: var(--tertiary-sea-light);
    padding: 20px;
    border-radius: var(--radius-ex-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-sm);
}

.publications_filter .button_group,
.useful_filter .button_group {
    gap: 20px;
}

.useful_filter {
    justify-content: center;
}

/* Crisis support */
.crisis_support_wrapper {
    padding-bottom: 0;
}

.crisis_support_wrap {
    background: var(--red);
    padding: 60px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 50px;
    align-items: flex-end;
}

.crisis_support_wrap h2 {
    font-size: 40px;
    color: var(--clr-white);
}

.crisis_support_wrap .button_group {
    justify-content: flex-end;
	flex-wrap:wrap;
}

/* Urgent Support */

.urgent_support_title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}

.urgent_support_title p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

/* Urgent Support */
.urgent_support {
    padding-bottom: 0;
}

.urgent_support_wrap {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xl);
    padding-bottom: 120px;
    border-bottom: 1px solid #07134d1a;
}

.emergency_services {
/*     background-image: url(../images/emergency-services.png); */
    background-repeat: no-repeat;
    background-position: 90% 0px;
    padding: 32px;
    border-radius: 12px;
    background-size: 560px;
    position: relative;
    min-height: 427px;
    overflow: hidden;
}
.emergency_services .img-wrap {
    position: absolute;
    right: 0;
    top: 0;
}
.img-wrap img {
    height: 390px;
    object-fit: cover;
    width: 673px;
    object-fit: cover;
    -webkit-mask-image: url(../images/emergency-services.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url(../images/emergency-services.png);
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position-x: center;
    -webkit-mask-position-y: center;
}


.emergency_content {
    padding-top: 300px;
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    max-width: 580px;
}

.emergency_content p {
    font-size: 22px;
    font-weight: 300;
    line-height: 120%;
}


.emergency_content ul, .emergency_content ol {
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
}

.emergency_content p strong {
    font-weight: 700;
}

.urgent_support_grid_wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.green-bg{
	background-color:#adfaadb2;
}
.peach-bg{
background-color:#ffc9b1b2;	
}
.beige-bg{
	background-color:#e4d7c3b2;
}
.mint-bg{
	background-color:#abf5dfb2;
}
.blue-bg{
	background-color:#a6e6ffb2;
}
.urgent_support_content span, .urgent_support_content a {
    font-weight: 700;
    display: block;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
}
.urgent_support_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}


.urgent_support_item {
    padding: 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    min-height: 350px;
    justify-content: space-between;
}
.urgent_support_content ul {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.full-width-data-sec {
    padding: 60px 0;
}
.urgent_support_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.urgent_support_content p {
    font-size: 15px;
    font-weight: 300;
    line-height: 160%;
}

.urgent_support_content p span {
    font-weight: 700;
    display: block;
}

/* Drug and alcohol support */
.alcohol_support_wrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.alcohol_support_title {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.alcohol_support_item h4 {
    font-size: 26px;
}

.alcohol_support_title p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.alcohol_support_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
}

.alcohol_support_item {
    background: var(--tertiary-sea-light);
    padding: 55px 30px 42px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

.alcohol_support_item .story_link {
    color: var(--primary-royal);
}

/* Facts and Information */
.facts_information {
    background: var(--tertiary-mint);
}

.facts_information_wrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.facts_information_title {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.facts_information_title p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.facts_information_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.facts_information_item {
    background: #9bf2d7;
    padding: 30px 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}

.facts_information_item h4 {
    font-size: 26px;
}

.facts_information_item p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.facts_information_item .story_link {
    color: var(--primary-royal);
}

.useful_resources_pagination li a:hover {
    background: var(--primary-royal);
    color: var(--clr-white);
}

/* Helpful toolkits */
.toolkits {
    padding-bottom: 0px;
}

.toolkits_wrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-bottom: 120px;
    border-bottom: 1px solid #07134d1a;
}

.toolkits_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
}

.toolkits_item {
    background: var(--tertiary-sea-light);
    padding: 55px 30px 42px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}


.toolkits_grid.two_col{
    grid-template-columns: repeat(2,1fr);
}

.toolkits_grid.three_col{
    grid-template-columns: repeat(3,1fr);
}

.toolkits_grid.four_col{
    grid-template-columns: repeat(4,1fr);
}

.toolkits_grid.blue .toolkits_item{
      background: var(--primary-royal);
    color: #fff;
}
.toolkits_grid.blue .toolkits_item .story_link {
    color: #fff;
}
section.useful_filter_wrapper {
    margin-top: 40px;
    position: sticky;
    top: 100px;
	z-index:222;
}
.toolkits_item h4 {
    font-size: 26px;
}
.toolkits, .urgent_support, .facts_information  {
	    scroll-margin-top: 100px;
}

.single-useful-resource {
    padding: 100px 0;
}
.single-useful-resource ul, .single-useful-resource ol{
    padding:15px;
}

.single-useful-resource .resource-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}
.single-useful-resource h1{
	font-size:66px;
}
.single-useful-resource .resource-content h2, .single-useful-resource .resource-content h3{
	font-size:24px;
	margin-bottom:20px;
}
.toolkits_item p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.toolkits_item .story_link {
    color: var(--primary-royal);
}

/* Mental health support */
.health_support {
    padding-bottom: 0;
}

.health_support_wrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-bottom: 120px;
    border-bottom: 1px solid #07134d1a;
}

.health_support_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--gap-xl);
}

.health_support_item {
    background: var(--primary-royal);
    padding: 54px 30px 42px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

.health_support_item h4 {
    font-size: 26px;
    color: var(--clr-white);
}

.health_support_item p {
    color: var(--clr-white);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

/* Helpful apps */
.apps_wrapper {
    padding-bottom: 0;
}

.apps_wrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.apps_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gap-xl);
}

.apps_item {
    background: var(--tertiary-sea-light);
    padding: 54px 30px 42px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}

.apps_item h4 {
    font-size: 26px;
}

.apps_item p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.apps_item .story_link {
    color: var(--primary-royal);
}

/* Need more support */
.support_cta_wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 600px;
}

.support_cta_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    z-index: 1;
}

.support_cta_content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
    z-index: 11;
    max-width: 740px;
}

.support_cta_content h3 {
    color: var(--clr-white);
}

.support_cta_content p {
    color: var(--clr-white);
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

/* Matter */
.matter {
    background: var(--tertiary-sea-light);
}

.matter_wrap {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.matter_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap-xl);
}

.matter_title h2 {
    max-width: 500px;
}

.matter_title p {
    max-width: 580px;
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.matter_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.matter_item {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
}

.matter_item_image {
    overflow: hidden;
    border-radius: 12px;
    height: 357px;
}

.matter_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.matter_item_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.matter_item_content h4 {
    font-size: 26px;
}

.matter_item_content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.monthly_video_wrapper {
    padding: 0px;
}

/* Support that stays with young people */
.support_people_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.support_people_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
}

.support_people_content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.support_people_content ul li {
    list-style: none;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
}

.support_people_content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/check_icon.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--primary-teal);
    border-radius: 100%;
    background-size: 13px;
}

.support_people_content ul {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.support_people_image {
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    height: 100%;
}

.support_people_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bailey’s story */
.bailey_story_wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 50px;
    overflow: hidden;
}

.bailey_story_image {
    margin-top: -60px;
}

.bailey_story_content_wrap {
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xl);
}

.bailey_story_content_wrap p {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.bailey_story_content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xl);
}

.bailey_story_content .thought_wrap {
    margin: 0;
}

.bailey_story_title,
.bailey_story_item {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

.bailey_story_cta {
    margin-top: 70px;
    background: #ce2807;
    padding: 60px;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--gap-xl);
}

.bailey_story_cta h3 {
    max-width: 629px;
    color: var(--clr-white);
}

.what_happens {
    padding-bottom: 0px;
}

/* What Happens Next */

.support_title,
.support_list_wrap {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

/* Frequently asked questions */
.faq_wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.faq_list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.faq_item {
    border: 1px solid var(--primary-teal);
    border-radius: 12px;
    overflow: hidden;
    background: var(--clr-white);
}

.faq_question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left; 
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
}

.faq_icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    transition: 0.3s;
    font-weight: 300;
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq_answer p {
    padding: 0 24px 24px;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 170%;
}

.faq_item.active .faq_answer {
    max-height: 300px;
}

.faq_item.active .faq_icon {
    transform: rotate(45deg);
}

	.backing_people_wrap.image-right .backing_people_image{
		order: 2;
	}
	

.mt-0{
	margin-top:0px !important;
}


.story-slider.story-pagination .story_control_btn {
    position: static;
}

.story-pagination a {
    text-decoration: none;
    display: flex;
    gap: 20px;
}

.story-pagination a img{
	min-width:30px;
}
.contact-us-section .wpb_wrapper h5 {
    margin: 49px 0px 26px;
}	
._image_content_wrapper  h3 {
    margin-bottom: 13px;
    margin-top: 30px;
}

._image_content_wrapper h3:first-child {
    margin-top: 0;
}

.research_reports_content {
    gap: 0;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 56px;
        line-height: 120%;
    }

    .container {
        padding: 0 20px;
    }

section {
    padding: 60px 0px;
}

    .header__inner {
        gap: 10px;
    }

    .main-nav a {
        font-size: 14px;
        padding: 8px 8px;
    }

    .nav-actions .btn {
        padding: 12px 18px;
    }

    .nav-actions {
        gap: 10px;
    }

    .site-logo {
        max-width: 170px;
    }

    /* ===== HERO ===== */
    .hero__mascot-wrap {
        width: 400px;
        height: 530px;
    }

    .hero__desc {
        font-size: 18px;
    }

    /* ===== BACKING YOUNG PEOPLE ===== */
    .backing_people_wrap,
    .story_item,
    .program_wrap {
        gap: 48px;
    }
	


    .backing_people_content,
    .story_content,
    .changes_futures_content {
        gap: 30px;
    }

    .backing_people_image img {
        position: static;
        height: 100%;
        object-fit: cover;
    }

    .backing_people_image {
        height: 100%;
    }

    /* ===== YOUNG PEOPLE STORIES ===== */
    .people_stories_title {
        margin-bottom: 3rem;
    }

    .story_content p {
        font-size: 18px;
        line-height: 160%;
    }

    .people_stories {
        margin-bottom: 100px;
    }

    .people_stories_bg_wrap {
        bottom: -100px;
    }

    /* ===== PROGRAM ===== */
    .program {
        margin-top: -100px;
        padding-top: 250px;
    }

    /* ===== TREATMENT ===== */
    .treatment_wrap,
    .treatment_block {
        gap: 60px;
    }

    /* ===== CHANGES FUTURES ===== */
    .changes_futures_content {
        padding-right: 0;
    }

    .changes_futures_grid,
    .changes_futures_block {
        gap: 30px;
    }

    /* ===== LATEST NEWS ===== */
    .latest_news_grid {
        gap: 30px;
    }

    .latest_news_item {
        gap: 24px;
    }

    .latest_news_content {
        gap: 10px;
    }

    /* ===== JOIN OUR COMMUNITY ===== */
    .join_community_wrap {
        padding: 80px 60px;
    }

    .join_community_wrap {
        gap: 30px;
    }

    /* ===== footer ===== */
    .footer_top {
        padding: 48px 0;
    }

    .footer_middle {
        padding: 60px 0;
        gap: 24px;
    }

    .footer_copyright_logo a {
        height: 60px;
    }

    .footer_bottom {
        padding: 30px 0;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        right: 0;
    }

    .main-nav {
        display: none;
    }

.main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-white);
    box-shadow: var(--shadow-md);
    padding: 16px 20px;
    z-index: 200;
    gap: 4px;
    height: 100vh;
}

    .nav-actions {
        display: none;
    }

    .site-logo {
        max-width: 260px;
    }

    .header__inner {
        position: relative;
    }

    .hero__mascot-wrap {
        width: 340px;
    }

    .step_item_img {
        height: 250px;
    }

    .step_item_img img {
        height: 100%;
    }

    .choose_step_item {
        height: 470px;
        padding: 30px 24px 30px 24px;
    }

    .step_item_content {
        gap: 12px;
        padding-bottom: 30px;
    }

    .backing_people_wrap,
    .story_item,
    .program_wrap {
        gap: 30px;
    }

    .backing_people_content {
        gap: 20px;
    }

    .since_wrap {
        font-size: 18px;
    }

    .story_content p {
        font-size: 16px;
    }

    .story_content,
    .program_content,
    .treatment_content {
        gap: 16px;
    }

    .people_stories_title::before {
        left: 0px;
        bottom: -60px;
        width: 422.34px;
        height: 56.14px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .people_stories_bg_wrap {
        bottom: -80px;
    }

    .people_stories {
        margin-bottom: 80px;
    }

    .program {
        margin-top: -80px;
        padding-top: 150px;
    }

    .program_link {
        padding: 15px 20px 15px 20px;
    }

.treatment_item {
    padding: 20px;
    gap: 30px;
}
    .treatment_block {
        gap: 40px;
    }

    .changes_futures_wrap {
        display: flex;
        gap: 30px;
        flex-direction: column;
    }

    .changes_futures_content {
        gap: 20px;
    }

    .news_title {
        font-size: 20px;
    }

    .latest_news_wrap {
        gap: 48px;
    }

    .join_community_wrap {
        padding: 48px 30px;
    }

    .latest_news_grid {
        gap: 24px;
    }

    .footer_top {
        flex-direction: column;
    }

    .footer_middle {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 100%;
        flex-direction: column;
        padding: 80px 0;
    }

    .hero__inner {
        display: flex;
        gap: 30px;
        flex-direction: column;
    }

    .mascot-svg {
        position: static;
        transform: none;
        width: 100%;
    }

    .hero__mascot-wrap {
        width: 100%;
        height: 100%;
    }

    .choose_step_wrap {
        display: flex;
        flex-direction: column;
    }

    .choose_step_item {
        height: 450px;
        padding: 48px 24px 48px 24px;
    }

    .backing_people_wrap {
        display: flex;
        gap: 32px;
        flex-direction: column;
    }

    .people_stories_title {
        display: flex;
        flex-direction: column;
    }

    .story_item {
        display: flex;
        flex-direction: column;
    }

    .people_stories_bg_wrap {
        bottom: -50px;
    }

    .swiper_slider_control {
        width: 40px !important;
        height: 40px !important;
    }

    .stories_navigation {
        gap: 10px;
        padding-left: 0;
    }

    .program_wrap,
    .changes_futures_grid,
    .latest_news_grid,
    .join_community_wrap {
        display: flex;
        flex-direction: column;
    }

    .program_btn {
        max-width: 100%;
    }

    .program_btn_wrap {
        width: 100%;
    }

    .treatment_item {
        display: flex;
        flex-direction: column;
        background-size: cover;
    }

    .latest_news_wrap {
        gap: 32px;
    }

    .latest_news_grid {
        gap: 32px;
    }

    .footer_middle {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer_nav_item {
        gap: 20px;
    }

    .footer_logo_wrap {
        gap: 24px;
    }

    .socal_link {
        width: 32px;
        height: 32px;
    }

    .footer_bottom {
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    section {
        padding: 60px 0px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero__desc {
        font-size: 16px;
        line-height: 160%;
    }

    .step_item_img {
        height: 220px;
    }

    .people_stories_title::before {
        width: 282.34px;
        height: 46.14px;
    }

    .people_stories_bg_wrap {
        bottom: -30px;
    }

    .program {
        padding-top: 80px;
    }

    .treatment_wrap,
    .treatment_block {
        gap: 32px;
    }

    .footer_top {
        padding: 32px 0;
    }

    .footer_logo_wrap {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

    .footer_button_group {
        gap: 12px;
    }

    .footer_middle {
        padding: 48px 0;
    }
}

/******Events page css********/
.events-desc h2 {
    font-size: 34px;
}
.events-desc {
    max-width: 800px;
    margin-bottom: 40px;
}
.latest_events_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 58px;
}
.latest_events_img_wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 522px;
}
.latest_events_img_wrap img {
    width: 100%;
    display: block;
    transform: scale(1.1);
    transition: transform 0.6s ease;
    height: 100%;
    object-fit: cover;
}
.latest_events_item:hover .latest_events_img_wrap img.wp-events-image {
    transform: scale(1);
}
.events-meta {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap:10px;
}
.events-meta img {
    width: auto;
    height: auto;
    transform: none;
    object-fit: contain;
}
.events-meta div {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 600;
}
.events-date {
    padding: 6px 12px;
    background: var(--primary-teal);
	border-radius:4px;
}
.events-time {
    background: var(--primary-royal);
    padding: 6px 12px;
    color: var(--c-white);
	border-radius:4px;
}
.events_title {
    color: var(--primary-royal);
    font-family: var(--merriweather);
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
}
.events-items a {
    text-decoration: none;
}
.latest_events_content {
    margin-top: 20px;
}
.events-location {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 300;
    padding-top: 10px;
}
.events-excerpt-block {
    display: grid;
    align-items: center;
    grid-template-columns: 2fr 1fr;
    justify-content: space-between;
    margin-top: 25px;
}
.events-excerpt-block .button_group {
    display: block;
    text-align: right;
}
.cta-host-events {
    display: flex;
    align-items: stretch;
    background: var(--primary-royal);
    border-radius: 12px;
    overflow: hidden;
    min-height: 380px;
}
.cta-host-events .event-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}
.cta-host-events .event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color:var(--c-white);
}
.cta-host-events .event-content h4 {
    font-size: 34px;
    margin-bottom: 35px;
}
.cta-host-events .btn.btn-primary {
    width: max-content;
}
section.events_wrapper {
    padding-bottom: 0px;
}
.cta-host-events .event-image img {
    object-fit: cover;
    height: 100%;
    object-position: right;
}
@media (max-width:767px)
{
	.latest_events_grid {
    grid-template-columns: 1fr;
}
	.latest_events_img_wrap {
    height: 350px;
}
	.events-meta div {
    font-size: 13px;
}
	.cta-host-events {
    display: block;
}
	.cta-host-events .event-content {
    padding: 30px;
}
}
@media (max-width:980px)
{
	.events-meta div {
    font-size: 14px;
}
	.events-excerpt-block {
    display: block;
}
	.events-excerpt-block .button_group {
    display: block;
    text-align: left;
    margin-top: 25px;
}
}
@media (min-width:1399px)
{
	.cta-host-events .event-content h4 {
    max-width: 530px;
}
}
section.events_internal_banner {
    padding-top: 70px;
}
.events_internal_banner_image {
    overflow: hidden;
    border-radius: 12px;
    height: 600px;
}
.events_bio_wrap {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 80px;
}
.events_bio {
    padding-top: 0px;
}
.events-title-info {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    justify-content: center;
    gap: 20px;
}
.share-ico {
    display: flex !important;
    justify-content: flex-end;
}
.trending_events_articles {
    background: var(--primary-royal);
    padding: 50px 40px;
	border-radius:5px;
	color: var(--c-white);
}
.trending_events_articles .details-title {
    color: var(--c-white);
    font-size: 24px;
    padding-bottom: 10px;
}
.content-desc-area {
    padding-top: 30px;
}
.feature-event-list {
    padding-top:40px;
}
.feature-event-list .feature_list_item {
    align-items: flex-start;
    padding-bottom: 20px;
}
.box-details-ico .ico-bx {
    width:61px;
    height:61px;
    min-width: 48px;
    background: #ffffff12;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-details-ico {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top:18px;
}
.box-details-ico .ico-desc-bx .detail-heding {
    font-family: var(--merriweather);
    font-size: 18px;
    font-weight: 400;
}
.box-details-ico .ico-desc-bx p {
    font-size: 16px;
    font-weight: 300;
}
.feature-event-list span.feature_check {
    margin-top: 5px;
}
.content-desc-area .story_link_text {
    color: var(--primary-royal);
}
.content-desc-area .story_link
{
color:var(--primary-royal);	
}
.content-desc-area .button_group {
    gap: 40px;
    padding-top:40px;
}

/* Gallery */

.eventSwiper{
    width:100%;
}
.eventSwiper .swiper-slide{
    border-radius:12px;
    overflow:hidden;
    height:532px;
}
.eventSwiper img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.gallery-section .swiper-button-next,
.gallery-section .swiper-button-prev{
      width: 50px;
    height: 50px;
    background:var(--primary-royal);
    border-radius:50%;
    color:#fff;
}
.gallery-section .swiper-button-next
{
transform: rotate(180deg);	
}
.gallery-section .swiper-button-next svg, .gallery-section .swiper-button-prev svg {
    width: 23px;
}
.gallery-section .swiper-button-next:after,
.gallery-section .swiper-button-prev:after{
content:none;
}
section.gallery-section {
    padding-top: 0px;
    padding-bottom: 30px;
}
@media (max-width:767px)
{
	.eventSwiper .swiper-slide {
    height: 350px;
}
}
/* Schedule */

.event-schedule {
    background: var(--tertiary-mint);
	position: relative;
}
.event-schedule .grid-schedule{
    display:grid;
 grid-template-columns: 1.8fr 3fr;
    gap:60px;
    align-items:start;
}

.schedule-right{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.schedule-card{
    background:#9BF2D7;
    border-radius:16px;
    padding:30px 35px;
    display:flex;
    gap:40px;
    align-items:flex-start;
}
.schedule-card span {
    min-width: 90px;
    font-weight: 400;
    color: var(--primary-royal);
}
.schedule-card .scedule-title{
color: var(--primary-royal);
    margin-bottom:10px;
    font-size:24px;
	font-weight:400;
}

.schedule-card p{
color: var(--primary-royal);
}

@media(max-width:991px){

.event-schedule .container{
grid-template-columns:1fr;
}
.schedule-card{
flex-direction:column;
gap:15px;
}
}
.schedule-left h2 {
    padding-bottom: 30px;
}
.latest_events_ico {
    position: absolute;
    left: 0;
    bottom: -80px;
    width: 100%;
}
.latest_events_ico img{
    width: 100%;
}
.event-video-sec .video_wrap {
    padding-top: 0px;
    border-radius: 8px;
}
section.book-ticket-sec {
    padding-top: 80px;
    padding-bottom: 80px;
}
.book-ticket-grids {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: flex-end;
    gap: 40px;
}
.book-ticket-grids .button_group {
    justify-content: flex-end;
}
.book-ticket-grids .button_group .btn.btn-tertiary:hover {
    background: var(--primary-teal);
    color: var(--primary-royal);
    border-color: var(--primary-teal);
}
.other_events_sec {
    background: var(--tertiary-sea-light);
}
.other_title_center {
    text-align: center;
    padding-bottom: 50px;
}
.donation_impact_wrap.three-grids {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gap-lg);
}

.full-width-data-sec img {
    width: 100%;
    height: auto;
}
.full-width-data-sec .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.full-width-cta-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.full-width-data-info ul, .full-width-data-info ol {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.martine-story-wrap h3 {
    font-size: 20px;
}
.martine-story-wrap .story_written_list::before{
	top: 43px;
    width: 1px;
    height: 86%;
}
a.btn.btn-secondary.border_black.active {
    background: var(--primary-teal);
    color: var(--primary-royal);
    border-color: var(--primary-teal);
}

.search_results_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 58px;
    margin: 40px 0;
}
.search_result_content h3 {
    margin: 19px 0;
    line-height: 100%;
}
.search_result_content h3 a {
    text-decoration: none;
    font-size: 22px;
    line-height: 14px;
}
.search_result_image img, .search_result_image {
    height: 340px;
    object-fit: cover;
    width: 100%;
    border-radius: 20px 20px 0 0;
    margin-bottom: 10px;
    position: relative;
}
article.search_result_item {
    position: relative;
}
.search_results_header h1 {
    font-size: 49px;
    margin: 0;
}
.search_results_header {
    background: var(--tertiary-sea-light);
    padding: 29px 30px 45px;
    border-radius: 20px;
}
.news-listing-pagination .prev {
    transform: rotate(180deg);
}
.contact-us-section {
	    background: #eefcf7;
        margin-top: -1px;
    position: relative;
}
.contact-us-section .support_item_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-us-section .backing_people_wrap{
	    grid-template-columns: 440px 1fr;
    gap: 60px;
	align-items:self-start;
}
.contact-us-section .backing_people_content{
	padding-top:70px;
}
.gform_wrapper.gravity-theme .ginput_container_date input {
    width: 100% !important;
}
.contact-us-section h2 {
    font-size: 40px;
}
.form-code {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
}
.contact-us-section .support_item_content h5 {
    font-size: 18px;
    font-weight: 400;
    color: #07134D;
}
.contact-us-section .support_item_desc {
    font-size: 15px;
    color: #07134D;
}
.contact-us-section .support_item_icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
}
.contact-us-section .support_item{
	gap:12px;
}
.contact-us-section .social-links h3 {
    font-size: 20px;
    margin-bottom: 18px;
}
.social-links {
    margin-top: 10px;
}
.gform_wrapper.gravity-theme .gfield_label, .gform-field-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    padding: 0;
    color: font-family: var(--manrope);
}
.gform_wrapper.gravity-theme .gfield_required{
	display:none !important;
}
.gfield--type-radio {
    margin-top: 10px !important;
}
.gfield_radio label {
    font-weight: 400 !important;
}
.required-form-text {
    font-size: 14px;
    text-align: right;
    margin-bottom: 10px;
}
.logoSlider .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logoSlider .swiper-slide img {
    display: block;
    width: auto;
    max-width: 180px;
    height: 70px;
    object-fit: contain;
}
.logoSlider {
    margin-top: 50px;
}

.logo-slider-pagination{
    position: relative;
    margin-top:50px;
}

.logo-slider-pagination .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#999;
    opacity:1;
}

.logo-slider-pagination .swiper-pagination-bullet-active{
    background:#000;
}
.no_results {
    text-align: center;
    padding: 60px 0;
}
.no_results input {
    background: #f2f2f2;
    border: 0;
    height: 50px;
    padding: 20px;
    min-width: 220px;
    border-radius: 5px;
}
.no_results form {
    margin: 30px 0;
}
@media (max-width:980px)
{
	.donation_impact_wrap.three-grids {
    grid-template-columns: 1fr;
}
	.donation_impact_wrap.three-grids .donation_impact_item {
    min-height: 440px;
}
	.events_bio_wrap {
    grid-template-columns: 1fr;
}
}
@media (max-width:1280px)
{
	.events_internal_banner_image {
    height: auto;
}
	.event-video-sec .video_wrap {
    min-height: auto;
}
}
@media (min-width:768px) and (max-width:980px)
{
    .latest_events_img_wrap {
        height: 450px;
    }
		.eventSwiper .swiper-slide {
    height: 450px;
}
}

._object_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container .media-wrapper {
    position: relative;
    max-width: 100%;
    --aspect-ratio: 56.5%;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}

.video-container .media-wrapper> * {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container .media-wrapper::before {
    display: block;
    padding-top: var(--aspect-ratio);
    content: "";
}

.video-container .media-wrapper iframe {
    max-width: 100%;
    width: 100%;
}

.video-container .media-wrapper .alt-yt-thumbnail {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.video-container .media-wrapper .video-playback-control {
    background: var(--primary-teal);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-image: url(../images/play_btn.svg);
    background-size: 26px 30px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 1;
    -webkit-transition: all .3s;
    transition: all .3s;
            cursor: pointer;
}

.position-relative {
    position: relative;
}
.z-1 {
    z-index: 1;
}
.z-n1 {
    z-index: -1;
}

.bg-img-fill {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.bg-img-fill img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.anchor-overlay {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    position: absolute;
    z-index: 3;
}

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

.mt-80px {
    margin-top: 80px;
}
.mt-50px {
    margin-top: 50px;
}

._pagination {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    justify-content: center;
   gap: 12px;
}
._pagination .page-numbers {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 8px;
    border: 1px solid var(--primary-royal);
    color: var(--primary-royal);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}
._pagination .prev img {
    transform: rotate(180deg);
}
._pagination .page-numbers.dots {
   background-color: transparent;
   width: 20px;
}
._pagination .page-numbers:hover,
._pagination .page-numbers.current {
   background-color: var(--tertiary-mint);
   border-color: var(--tertiary-mint);
}

.gap-0 {
    gap: 0 !important;
}

.filter-group.radio-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 4px;
    overflow: hidden;
}
.radio-buttons input[type="radio"] {
    display: none;
}

.radio-buttons label {
    display: inline-block;
    cursor: pointer;
    background: #CFF6E4CC;
    color: var(--primary-royal);
    border-color: #CFF6E4CC;
    min-height: 50px;
    font-family: var(--manrope);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 28px;
    min-width: 180px;
    text-align: center;
    transition: all .15s;
}
.radio-buttons label:has(input[type="radio"]:checked) {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
}

section.error-404 {
    text-align: center;
    padding: 150px 0;
}

.error-404-content h1 {
    font-size: 100px;
    line-height: 1;
}
.justify-content-center {
    justify-content: center;
}
.mt-30px {
    margin-top: 30px;
}
.mt-10px {
    margin-top: 10px;
}

.context-auto-space .wp-block-heading {
    padding-top: 16px;
}

.context-auto-space p {
    margin-bottom: 16px;
}

.context-auto-space h1 {
    font-size: 40px;
}

.context-auto-space h2 {
    font-size: 32px;
}

.context-auto-space h3 {
    font-size: 28px;
}

.context-auto-space h4 {
    font-size: 24px;
}

.context-auto-space h5 {
    font-size: 18px;
}

.context-auto-space h6 {
    font-size: 16px;
}

.faq-sec {
    position: relative;
    padding: 100px 0;
}

.faq-sec:first-child {
    padding-top: 0;
}

.faq-sec:last-child {
    padding-bottom: 0;
}

.faq-sec:not(:last-child) {
    border-bottom: 1px solid #07134d1a;
}

.bg-sea-light {
    background: var(--tertiary-sea-light);
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
}

.faq-container > [class*=col-lg-4] {
    flex: 0 0 auto;
    width: 30.33%;
    margin-right: auto;
}

.faq-container > [class*=col-lg-8] {
    flex: 0 0 auto;
    width: 66.66%;
}

.toggle-box-wrap {
    padding: 19px 20px;
    border: 1px solid var(--primary-teal);
    border-radius: 8px;
}
.toggle-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-royal);
    cursor: pointer;
}
.toggle-box-data {
    padding: 10px 0;
    font-weight: 300;
    color: var(--primary-royal);
    display: none;
}
.toggle-box-wrap.active .toggle-box-data{
 display: block;
}
.accor-data-hold {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
}

.toggle-menu-icon {
    display: flex;
    align-items: center;
    background: #65E0AA;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.toggle-menu-icon svg{
  width: 15px;
  height: 15px;
}


.program-card-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.toggle-box-wrap .minus-icon{
  display: none;
}
.toggle-box-header.active .plus-icon{
  display: none;
}
.toggle-box-header.active .minus-icon{
  display: block;
}

.heading-1 {
    font-family: var(--merriweather);
    font-size: 48px;
    line-height: 125%;
    font-weight: 400;
}

.max-w-900 {
    max-width: 900px;
}

.max-w-700 {
    max-width: 700px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ms-auto {
    margin-left: auto;
}

.me-auto {
    margin-right: auto;
}

.mt-40px {
    margin-top: 40px;
}

@media only screen and (max-width: 991px) {
    .error-404-content h1 {
    font-size: 80px;
}

  ._pagination .page-numbers {
      width: 46px;
      height: 46px;
      font-size: 16px;
  }
  .video-container .media-wrapper .video-playback-control {
        width: 56px;
        height: 56px;
        background-size: 20px 24px;
    }
}

@media only screen and (max-width: 767px) {
  ._pagination {
      gap: 6px;
  }
  ._pagination .page-numbers {
      width: 32px;
      height: 32px;
      font-size: 14px;
  }
  ._pagination .page-numbers.dots {
      width: 10px;
      font-size: 12px;
  }
  .video-container .media-wrapper .video-playback-control {
        width: 44px;
        height: 44px;
        background-size: 14px 20px;
    }
}

.stand_desc ul {
    padding-left: 30px;
}
