/* GENERAL */
/* Register custom font */
/* 100 – Thin */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

/* 200 – ExtraLight */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-ExtraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* 300 – Light */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* 400 – Regular */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* 500 – Medium */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* 600 – SemiBold */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* 700 – Bold */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* 800 – ExtraBold */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* 900 – Black */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* register colors */
:root {
    --purple: #51062D;
    --pale-purple: #9E7D94;
    --blue: #336C85;
    --blue-link: #80a3b3;
    --pale-blue: #8EB1C1;
    --dark-blue: #004766;
    --transparent-blue: RGB(128, 163, 179, 0.5);
    --trauma-blue: #80A3B3;
    --yellow: #FFBA00;
    --dark-yellow: #DABC7A;
    --transparent-yellow: RGB(255, 234, 179, 0.6);
    --education-yellow: #FFEAB3;
    --pink: #B1497F;
    --transparent-pink: RGB(151, 106, 129, 0.6);
    --skills-pink: #976A81;
    --pale-gray: rgb(209, 209, 209, 1);
    --pale-yellow: #fff7df;
}

body {
    margin: 0;
    overflow-x: hidden !important;
    overflow-y: scroll;
    font-family: "Poppins", sans-serif;
    width: 100% !important;
}

html {
    overflow-x: hidden !important;
}

.row {
    max-width: 1920px;
}

a {
    color: var(--blue-link);
}

a:hover {
    color: var(--pink);
    text-decoration: none;
}

/* Adjust site menu when admin bar is active */
body:has(#wpadminbar) #quadmenu.quadmenu-default_theme.quadmenu-sticky-top {
    top: 32px;
}

/* MENU */
nav {
    padding-left: 15px;
    padding-right: 15px;
}

.donate-menu-responsive {
    display: none !important;
}

.quadmenu-container {
    display: flex;
}

.quadmenu-default_theme {
    display: flex;
}

button {
    border: none;
    width: fit-content !important;
    background: transparent;
}

.menu-donate-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.general-btn {
    width: 150px !important;
    height: 33px;
    border-style: solid;
    border-width: 1px;
    color: white !important;
    background-color: var(--purple) !important;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    display: flex;
    transition: 400ms !important;
}

.general-btn span {
    text-transform: uppercase;
    font-size: .9rem;
}

.general-btn:hover {
    background-color: white !important;
    color: var(--purple) !important;
}

.donation-menu-btn {
    margin-left: 30px !important;
    padding-top: 1px !important;
}

/* POP UP */
.us-flag::before,
.uk-flag::before,
.us-flag,
.uk-flag {
    height: 70px;
    width: 250px;
}

.us-flag,
.uk-flag {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flags a {
    text-decoration: none;
    color: var(--purple);
}

.us-flag,
.uk-flag {
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    transition: background-color 400ms;
    background-blend-mode: overlay;
}

.us-flag,
.uk-flag {
    background-color: rgba(255, 255, 255, 0.7);
}

.us-flag {
    background-image: url('../images/usa-flag.gif');
}

.uk-flag {
    background-image: url('../images/uk-flag.gif');
}

.us-flag:hover,
.uk-flag:hover {
    background-color: rgba(255, 255, 255, 0);
}

.us-flag:hover .donation-country,
.uk-flag:hover .donation-country {
    opacity: 0;
}

.donation-country {
    font-weight: 600;
    transition: 400ms;
    color: var(--purple);
    z-index: 10;
}

.donation-popup h3 {
    color: var(--purple);
    margin-bottom: 50px;
}

.flags {
    display: flex;
    justify-content: space-around;
}

.flags p {
    display: none;
}

.donation-link a {
    text-decoration: none;
    color: var(--blue-link);
}

.donation-link a:hover {
    color: var(--purple);
}

/* HOME PAGE */
.home-banner {
    height: 100vh;
    background-image: url('../images/site-banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-banner-txt {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 300px;
    opacity: 0;
    transition: padding-top 1.5s ease, opacity 1.5s ease;
}

.home-banner-txt-visible {
    padding-top: 0;
    opacity: 1;
}

.home-banner-txt h1 {
    width: 600px;
    color: white;
    font-size: 4rem;
    margin-right: 80px;
    font-weight: 500;
    line-height: 80px;
    text-shadow: 3px 3px 6px rgb(48, 48, 48);
}

.home-introduction-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 50px 0;
}

.home-introduction-txt {
    position: relative;
    z-index: 1;
    color: var(--purple);
    font-size: 1.3rem;
    width: 50vw;
    margin: auto;
}

.home-introduction-left,
.home-introduction-right,
.footer-left,
.footer-right {
    width: 50vw;
    opacity: 0.6;
    background-size: contain;
    background-repeat: no-repeat;
}

.home-introduction-left,
.footer-left {
    background-image: url(../images/text-back-left.png);
}

.home-introduction-right,
.footer-right {
    background-image: url(../images/text-back-right.png);
    background-position: right center;
}

.home-introduction-back {
    display: flex;
    position: absolute;
    height: 40vh;
}

.animated-numbers {
    height: fit-content;
    background-color: var(--yellow);
}

.icon-num-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.animated-numbers img {
    width: 70px;
}

.number-and-plus {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    padding-top: 20px;
}

.numbers-sub-txt {
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

.countup-animator {
    margin-right: -5px;
}

.program-home-section {
    margin-bottom: 100px;
}

.main-row {
    max-width: 1400px;
    margin: auto;
}

#programs-section {
    scroll-margin-top: 60px;
}

.section-title {
    text-align: center;
    /* text-transform: uppercase; */
    font-weight: 500;
    padding: 60px 0;
    color: var(--purple);
}

.program-home-card,
.program-home-card-overlay {
    max-width: 500px;
    width: 100%;
    aspect-ratio: 1/1;
    margin: auto;
    border-radius: 25px;
    border-width: 10px;
    border-style: solid;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    position: relative;
}

.trauma-card,
.program-trauma {
    border-color: var(--trauma-blue);
    border-style: solid;
}

.program-trauma-hover {
    background-color: var(--trauma-blue);
}

.program-trauma-hover .program-hover-txt {
    color: white;
}

.education-card,
.program-education {
    border-color: var(--education-yellow);
    border-style: solid;
}

.program-education-hover {
    background-color: var(--education-yellow);
}

.skills-card,
.program-life {
    border-color: var(--skills-pink);
    border-style: solid;

}

.program-skills-hover {
    background-color: var(--skills-pink);
}

.program-skills-hover .program-hover-txt {
    color: white;
}

.trauma-card-overlay,
.education-card-overlay,
.skills-card-overlay {
    background-color: var(--transparent-blue);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 800ms;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    border: none;
}

.education-card-overlay {
    background-color: rgb(255, 186, 0, 0.5);
}

.skills-card-overlay {
    background-color: rgb(177, 73, 127, 0.5);
}

.card-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 250px;
    justify-content: space-around;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.trauma-card-overlay img,
.education-card-overlay img,
.skills-card-overlay img {
    width: 50px;
    animation: pulse 1700ms infinite ease-in-out;
}

.card-overlay-text {
    width: 70%;
}

.trauma-card:hover .trauma-card-overlay {
    opacity: 1;
}

.education-card:hover .education-card-overlay {
    opacity: 1;
}

.skills-card:hover .skills-card-overlay {
    opacity: 1;
}

.program-home-card h2 {
    font-weight: 300;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
    color: white;
}

.program-home-section a {
    text-decoration: none;
}

.testimonial-section {
    background-color: var(--pale-blue);
    padding-bottom: 50px;
}

.testimonial-section .section-title {
    color: white;
}

.testimony-row {
    margin-top: 50px;
}

.testimony-card {
    background-color: white;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--purple);
    padding: 30px;
    height: 500px;
    margin: auto;
    position: relative;
}

.testimony-card:hover .testimony-img {
    margin-top: -150px;
}

.testimony-card:hover .testimony-sub {
    opacity: 0;
}

.testimony-card:hover .testimony-text {
    opacity: 1;
}

.testimony-card:hover .testimony-img img {
    filter: saturate(1);
}

.testimony-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 50%;
    transition: 1000ms;
}

.testimony-sub {
    font-size: 1.1rem;
    font-weight: 300;
}

.testimony-img {
    height: 50%;
    display: flex;
    align-items: center;
    transition: 1000ms;
}

.testimony-img img {
    border-radius: 100%;
    width: 150px;
    aspect-ratio: 1/1;
    filter: saturate(0);
    transition: 1000ms;
}

.testimony-text {
    opacity: 0;
    transition: 1000ms;
    position: absolute;
    bottom: 0;
    padding: 0 30px 50px;
}

/* FOOTER */
/* footer {
    margin-top: 50px;
} */

.no-margin-footer {
    margin-top: 0;
}

.subscription-section {
    background-color: #FCCC54;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}

.subscription-wrapp {
    width: 70%;
    margin: auto;
}

.envelop-icon img {
    width: 150px;
    margin-top: -50px;
}

.envelop-image {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.envelop-image img {
    width: 80px;
}

.footer-content a {
    text-decoration: none;
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center !important;
}

.footer-txt {
    font-weight: 600;
    color: var(--purple);
    font-size: 1.5rem;
    justify-content: center;
    align-items: flex-end !important;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-news-title {
    font-size: 1rem;
}

.footer-news-sub {
    font-weight: normal;
    margin-bottom: 0;
    font-size: 1rem;
}

.subscribe-btn {
    background-color: white;
    padding: 20px;
    width: 200px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    border-color: var(--purple);
}

.subscribe-btn:hover {
    background-color: var(--purple);
}

.footer-left,
.footer-right {
    height: 300px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-link {
    margin-bottom: 10px;
    transition: 400ms;
}

.footer-link a {
    color: white;
    text-decoration: none;
    transition: 400ms;
}

.footer-link:hover a {
    color: white;
}

.footer-link:hover {
    transform: scale(1.1);
}

.footer-elements {
    background-color: var(--purple);
    padding: 30px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 20px;
}

.seal-transparency img {
    width: 130px;
}

.seal-transparency {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-mid-row {
    height: 100%;
    width: 65%;
    margin: auto;
}

.social-media-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-media-icons div {
    margin-left: 10px;
}

.facebook-icon,
.insta-icon,
.linkedin-icon,
.youtube-icon {
    width: 18px;
    height: 18px;
    margin: 8px;
    transition: 400ms;
    background-size: cover;
    border-radius: 4px;
}

.facebook-icon {
    background-image: url(../images/footer-icons/facebook.png);
}

.insta-icon {
    background-image: url(../images/footer-icons/instagram.png);
}

.linkedin-icon {
    background-image: url(../images/footer-icons/linkedin.png);
}

.youtube-icon {
    background-image: url(../images/footer-icons/youtube.png);
}

.facebook-icon:hover {
    background-image: url(../images/footer-icons/facebook-white.png);
    scale: 1.1;
}

.insta-icon:hover {
    background-image: url(../images/footer-icons/instagram-white.png);
    scale: 1.1;
}

.linkedin-icon:hover {
    background-image: url(../images/footer-icons/linkedin-white.png);
    scale: 1.1;
}

.youtube-icon:hover {
    background-image: url(../images/footer-icons/youtube-white.png);
    scale: 1.1;
}

.footer-ending {
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.footer-ending-txt {
    text-align: center;
    color: white;
}

/* GENERAL TEMPLATE */
.page-banner {
    width: 100vw;
    height: 36vw;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 50px;
    background-size: cover;
    position: relative;
    z-index: 100;
}

.title-of-page {
    color: white;
    font-weight: 500;
    width: 1000px;
    text-align: center;
    font-size: 3rem;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
}

.reveal-text,
.reveal-text:after {
    animation-delay: 0.5s;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal-text {
    display: block;
    animation-name: reveal-text;
    width: fit-content;
    /* margin: auto; */
}

.reveal-text:after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--purple);
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
    animation-name: revealer-text;
}

@keyframes reveal-text {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}


@keyframes revealer-text {

    0%,
    50% {
        transform-origin: 0 50%;
    }

    60%,
    100% {
        transform-origin: 100% 50%;
    }

    50% {
        transform: scaleX(1);
    }

    60% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}

/* DISCOVER TEMPLATE */
.discover-all {
    max-width: 80vw;
    margin: auto;
    margin-top: 50px;
}

.discover-title {
    color: var(--purple);
    /* text-transform: uppercase; */
}

.discover-txt-left {
    padding-left: 15px;
}

.discover-txt-right {
    padding-right: 15px;
}

.discover-image {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}

.discover-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 25px;
}

.discover-row {
    border-style: solid;
    border-radius: 30px;
    padding: 20px;
    border-color: var(--purple);
    margin-bottom: 50px;
    border-width: 2px;
}

/* PROGRAMS PAGES */
.program-row {
    max-width: 1500px;
    margin: auto;
    margin-bottom: 50px;
}

.trauma-video {
    width: 50vw;
    margin: auto;
    margin-bottom: 50px;
}

.program-page-title {
    margin: auto;
    width: fit-content;
    margin-bottom: 70px;
    color: var(--purple);
}

.program-name h2 {
    /* text-transform: uppercase; */
    color: var(--purple);
    width: fit-content;
    margin: 50px auto;
    text-align: center;
}

.program-card-img img {
    max-width: 700px;
    width: 100%;
    border-radius: 10px;
}

.program-card {
    color: var(--purple);
    width: 700px;
    height: 500px;
    margin: auto;
    border-radius: 20px;
    border-width: 2px;
    display: flex;
    flex-direction: column;
    padding: 15px;
    position: relative;
}

.program-card-hover {
    padding: 40px;
    position: absolute;
    top: -2px;
    left: -2px;
    transition: 400ms;
    opacity: 0;
}

.program-card:hover .program-card-hover {
    opacity: 1;
}

.program-card-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    margin: auto;
    text-align: center;
    width: 100%;
}

.program-subtitle {
    margin-top: 20px;
    width: 82%;
}

.two-line-title {
    width: 70%;
}

.tight-two-line-title {
    width: 60%;
}

.program-subtitle-narrow {
    width: 60%;
}

.program-hover-btn {
    width: 40%;
    margin: 0 auto;
    border-style: none;
}

.program-hover-txt {
    font-size: 0.9rem;
    color: var(--purple)
}

.program-hover-txt-mobile {
    display: none;
}

.program-hover-testimony-btn {
    display: flex;
    flex-grow: 1;
    align-items: center;
    margin-top: 30px;
}

.program-hover-testimony {
    background-color: white;
    font-weight: 200;
    border-radius: 10px;
    color: var(--purple);
    padding: 20px;
}

.program-hover-testimony-img {
    text-align: center;
    position: relative;
    margin-top: -45px;
}

.program-hover-testimony-img img {
    width: 70px;
    border-radius: 50%;
}

.program-hover-testimony-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.quotation-icon img {
    width: 20px;
}

.program-introduction-wrapper {
    padding-top: 50px;
}

.program-btn {
    width: fit-content !important;
    padding: 20px;
    margin: auto;
    margin-top: 50px;
}

/* VOLUNTEER TEMPLATE */

.join-btn {
    width: 260px !important;
    height: 45px;
    margin: auto;
    margin-bottom: 60px;
    margin-top: 30px;
}

.join-btn a {
    color: white;
    text-decoration: none;
    transition: 800ms;
    width: inherit;
    text-align: center;
}

.join-btn:hover a {
    color: var(--purple);
}

.volunteer-intro {
    background-color: white;
    display: block;
    margin-bottom: 50px;
}

.volunteer-intro .program-name h2 {
    margin: 50px auto;
}

.vol-sub-intro {
    color: var(--purple);
    border: solid;
    border-radius: 35px;
    padding: 45px;
    border-width: 2px;
    max-width: 600px;
    margin: auto;
    min-height: 460px;
}

.vol-sub-intro h3 {
    text-align: center;
    margin-bottom: 30px;
}

.volunteer-back {
    height: 550px;
}

.parallax-image {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-section {
    height: 500px;
    width: 100vw;
    background: transparent;
}

.vol-section-name h2 {
    color: var(--purple);
    margin: 0;
}

.vol-sticky-img img {
    border-radius: 30px;
}

.vol-sticky-txt {
    color: var(--purple);
}

.vol-sticky-1,
.vol-sticky-2,
.vol-sticky-3 {
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    padding: 60px 0;
}

.vol-sticky-1 {
    background-color: var(--pale-purple);
}

.vol-sticky-2 {
    background-color: var(--dark-yellow);
}

.vol-sticky-3 {
    background-color: var(--pale-blue);
}

.vol-roles-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.vol-btn {
    position: absolute;
    left: 31%;
    top: 55%;
    opacity: 0;
    background-color: white;
    transition: 400ms;
}

.vol-roles-main .vol-roles-img:hover+a .vol-btn,
.vol-roles-main:hover .vol-btn {
    opacity: 1;
}

.vol-roles-main .vol-roles-img img {
    transition: 400ms;
    border-radius: 20px;
    width: 100%;
}

.vol-roles-main:hover img {
    opacity: 0.5;
}

.vol-roles-main:hover+.vol-roles-txt {
    margin-top: 20px;
}

.vol-roles-txt {
    margin: auto;
    max-width: 390px;
    text-align: center;
    margin-top: -46px;
    color: var(--purple);
    transition: margin-top 400ms ease;
}

.roles-section {
    position: sticky;
    background-color: white;
}

.roles-section .program-name h2 {
    margin-bottom: 90px;
    font-weight: bold;
}

.vol-roles-title h5 {
    font-weight: bold;
}

.vol-roles-title {
    width: 80%;
    text-align: center;
    margin: auto;
    margin-bottom: 9px;
    min-height: 56px;
    color: var(--purple);
}

.vol-card {
    width: fit-content;
    margin: auto;
    min-height: 470px;
}

.vol-faq {
    max-width: 1500px;
    margin: auto !important;
    padding: 30px;
}

.vc_tta-title-text {
    font-size: 1.2rem;
    font-weight: 400;
}

.vol-faq-item .vc_tta-panel-body {
    background-color: white !important;
}

.vol-faq-title h2 {
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
    background-color: white;
    width: 100%;
    text-align: center;
}

/* COLLABORATION PAGES */
.collaboration-intro {
    margin-top: 50px;
    margin-bottom: 50px;
}

.collaborator-section {
    margin-top: 50px;
}

.collaborator-wrapper {
    position: relative;
    overflow: hidden;
    width: 90vw;
    height: 290px;
    border: solid;
    border-width: 2px;
    border-color: var(--purple);
    margin: auto;
    margin-bottom: 50px;
    border-radius: 30px;
}

.collaborator,
.collaborator-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.collaborator {
    z-index: 1;
}

.collaborator-hover {
    transform: translateY(100%);
    transition: 1000ms ease-in-out;
    z-index: 2;
    background-color: var(--pale-gray);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--purple);
}

.collaborator-wrapper:hover .collaborator-hover {
    transform: translateY(0);
}

.collaborator-large-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.collaborator-large-logo img {
    max-height: 200px;
}

.collaborator-small-logo img {
    width: 200px;
}

.collaborator-small-logo {
    display: flex;
    height: 100%;
    width: 20%;
    justify-content: center;
    align-items: center;
}

.collaborator-informations {
    padding: 20px 20px 20px 0;
    width: 80%;
}

.collaborator-informations a {
    text-decoration: none;
    display: block;
    width: fit-content;
}

.collaborate-btn {
    border-style: none;
}

/* CONTACT OMID PAGE */
.contact-wrapper {
    margin-top: 80px;
    margin-bottom: 80px;
}

.contact-bandeau {
    width: 100%;
    background-color: white;
    color: var(--purple);
    padding: 10px;
    text-align: center;
    border-style: solid;
    border-color: var(--purple);
    border-width: 1px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.uk-bandeau {
    margin-top: 50px;
}

.contact-column-gutter {
    --bs-gutter-x: 7rem;
}

.contact-form-title {
    color: var(--purple);
    /* text-transform: uppercase; */
}

.contact-form-des {
    margin-bottom: 30px;
}

.omid-contact-form form input,
.omid-contact-form form textarea,
.newsletter-form input {
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    border-color: var(--pale-gray);
}

.wpcf7 label,
.wpcf7 form p label span input,
.wpcf7 form p label span textarea {
    width: 100% !important;
}

.contact-btn p,
.contact-btn button input {
    width: 100%;
}

.contact-btn button {
    width: 100% !important;
}

.contact-btn {
    width: 100%;
    margin-left: 6px;
}

.contact-btn .wpcf7-spinner {
    display: none;
}

.contact-btn input {
    padding: 5px;
    background-color: var(--purple);
    border-color: var(--purple) !important;
    color: white !important;
    transition: 400ms;
}

.contact-btn input:hover {
    background-color: white;
    color: var(--purple) !important;
}

.country-name p {
    margin-bottom: 0;
}

.country-select,
.country-select input {
    width: 100%;
}

.newsletter-form {
    margin-top: 25px;
}

.newsletter-form .contact-btn {
    margin-top: 40px;
}

.submission-row {
    justify-content: flex-end;
}

.star {
    color: red;
}

/* BLOG PAGE */
.entry-title {
    color: var(--purple);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.4;
    padding: 0 15px;
}

.posts-grid {
    margin-top: 50px;
}

article a {
    text-decoration: none;
}

.post-card {
    border-style: solid;
    border-color: var(--purple);
    border-radius: 14px;
    border-width: 2px;
    margin-bottom: 20px;
    transition: 400ms;
}

.post-card:hover {
    transform: scale(1.01);
    background-color: var(--pale-yellow);
}

.entry-title-wrapper {
    display: flex;
    justify-self: center;
    align-items: center;
    min-height: 235px;
}

.post-card-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: auto;
    margin-bottom: 30px;
}

.read-more-btn {
    margin: auto;
    margin-bottom: 20px;
}

.read-more-btn:hover {
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.page-numbers {
    margin: 0 15px;
    display: flex;
    justify-content: basceline;
    align-items: flex-end;
}

.pagination a {
    text-decoration: none;
    color: var(--blue-link);
}

.pagination-arrow svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    border-radius: 50%;
    border-width: 1px;
    border-style: solid;
    border-color: currentColor;
    margin-top: -2px;
    width: 20px;
    height: 20px;
}

.single-prev svg,
.single-next svg {
    stroke: var(--blue-link) !important;
    border-color: var(--blue-link) !important;
}

/* BLOG POSTS */
.single-post-meta {
    margin-top: 30px;
    margin-bottom: 30px;
}

.single-post-title {
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
}

article p {
    font-weight: 300;
}

article p b {
    font-weight: 500;
}

article h3 {
    font-size: 1.5rem;
}

.single-post-featured {
    text-align: center;
}

.single-post-featured img {
    width: 100%;
    height: 100%;
}

.single-post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.prev-post a,
.next-post a {
    text-decoration: none;
}

.single-prev svg,
.single-next svg {
    stroke: #0d6efd;
    border-color: #0d6efd;
}


/* CAMPAIGN POSTS */
.campaign-wrapper,
.campaign-icons {
    border-style: solid;
    border-color: var(--purple);
    border-width: 2px;
    border-radius: 20px;
    padding: 15px;
}

.campaign-wrapper {
    color: var(--purple);
    margin: 25px 0;

}

.campaign-icons {
    display: flex;
    border-radius: 15px;
    border-width: 1px;
    padding: 10px;
    justify-content: space-around;
}

.raised-icon img,
.target-icon img {
    width: 35px;
}

.campaign-raised,
.campaign-target {
    display: flex;
    justify-content: space-around;
}

.campaign-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    border-radius: 25px;
}

.campaign-txt-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.raised-target-txt {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.campaign-more {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    color: var(--blue-link);
}

.campaign-more:hover {
    color: var(--purple);
}

/* DONATION */
.donate-column {
    max-width: 1200px;
    width: 100%;
    margin: auto !important;
    color: var(--purple);
}

.donation-and-tax a {
    display: flex !important;
    justify-content: center;
}

.donation-and-tax button {
    width: 400px !important;
}

/* VOLUNTEER FORM */
.volunteer-form select {
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    border-color: var(--pale-gray);
    margin-top: 5px;
    padding: 3px;
    min-width: 267px;
    margin-bottom: 10px;
}

.volunteer-form input,
.volunteer-form textarea {
    min-height: 35px;
    margin-top: 6px;
    margin-bottom: 10px;
}

.volunteer-form input[type="checkbox"] {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-color: var(--pale-gray) !important;
}

.vol-select label {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vol-select input {
    margin-right: 6px;
}

/* Page 404 */
.page-404 {
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-404::before {
    content: "";
    position: absolute;
    width: inherit;
    height: inherit;
    background-image: url('https://omidfoundation.kesug.com/wp-content/uploads/2025/11/omid-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.07;
    z-index: -1;
}

/*     ***************  RESPONSIVE  ************     */


/* *************** BREAKPOINT 1450 **************** */
@media (max-width: 1450px) {
    .program-card {
        width: 580px;
    }

    .program-hover-testimony-txt {
        font-size: 0.8rem;
        margin-top: 15px;
    }

    .program-hover-txt {
        font-size: 0.85rem;
    }

    .trauma-introduction {
        width: 80vw;
    }
}

/* *************** BREAKPOINT 1399 **************** */
@media (max-width: 1399px) {
    .vol-sub-intro {
        width: 500px;
    }
}

/* *************** BREAKPOINT 1327 **************** */
@media (max-width: 1327px) {

    .footer-link,
    .footer-ending-txt {
        font-size: .8rem;
    }
}

/* *************** BREAKPOINT 1199 **************** */

@media (max-width: 1199px) {
    .home-banner-txt h1 {
        margin-right: 0;
        font-size: 3.2rem;
        line-height: 58px;
    }

    #education-animation {
        margin-bottom: 40px;
        margin-top: 40px;
    }

    .testimony-text {
        font-size: .9rem;
        padding-bottom: 20px;
    }

    .envelop-image img {
        width: 65px;
    }

    .footer-news-sub {
        font-size: 1rem;
    }

    .footer-content {
        margin-top: 20px;
    }

    .discover-row {
        padding: 10px;
    }

    .discover-image-right {
        flex-direction: column-reverse;
    }

    .discover-image {
        height: 300px;
        margin-bottom: 20px;
    }

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

    .contact-form-title {
        text-align: center;
        margin-top: 20px;
    }

    .program-first-column,
    .program-row {
        margin-bottom: 30px;
    }

    .vol-sub-intro {
        margin-top: 10px;
        margin-bottom: 10px;
        max-width: fit-content;
    }
}

/* *************** BREAKPOINT 1190         (IPAD - HORIZONTAL)       **************** */

@media (max-width: 1190px) {
    .donate-menu-responsive {
        margin: auto !important;
        display: flex !important;
        margin-top: 14px !important;
    }

    .donate-menu-main {
        display: none;
    }

    .collaborator-large-logo img {
        max-width: 80vw;
    }

    .collaborator-small-logo img {
        width: 150px;
    }
}

/* *************** BREAKPOINT 1098 **************** */
@media (max-width:1098px) {
    .footer-elements {
        padding-left: 0;
        padding-right: 0;
    }
}

/* *************** BREAKPOINT 991 **************** */

@media (max-width: 991px) {
    .icon-num-wrapper {
        border-style: solid;
        border-color: white;
    }

    .testimony-card {
        margin: auto;
        margin-top: 10px;
        margin-bottom: 10px;
        width: 60vw;
        height: 350px;
    }

    .testimony-row {
        margin-top: 0;
    }

    .testimony-card:hover .testimony-img {
        margin-top: -40px;
    }

    .campaign-wrapper {
        flex-direction: column-reverse;
    }

    .campaign-wrapper div {
        padding-left: 0;
        padding-right: 0;
    }

    .campaign-title {
        margin-top: 15px;
    }

    .contact-btn button input {
        width: 50%;
    }

    .contact-btn {
        justify-content: center;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-column {
        align-items: flex-start;
    }

    .seal-transparency {
        width: 100%;
        align-items: center;
        margin-bottom: 20px;
    }

    .social-media-icons,
    .footer-mid {
        width: 100%;
        padding: 0 40px;
    }

    .social-media-icons {
        flex-direction: row;
        justify-content: center;
    }

    .social-media-icons div {
        margin-left: 3px;
        margin-right: 3px;
    }

    .footer-ending {
        margin-top: 10px;
    }
    
    .footer-mid-row {
    padding-bottom: 30px;
    padding-top: 10px;
}

/* *************** BREAKPOINT 900            (IPAD - VERTICAL)       **************** */

@media (max-width: 900px) {
    .home-banner-txt h1 {
        width: 50%;
        margin-right: 40px;
    }

    .home-introduction-txt {
        width: 80vw;
        font-size: 1rem;
    }

    .trauma-video {
        width: 90vw;
    }

    .vol-roles-title {
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .collaborator-small-logo {
        width: 30%;
    }

    .collaborator-informations {
        width: 70%;
    }

    .collaborator-wrapper {
        height: 350px;
    }
}

/* *************** BREAKPOINT 767 **************** */

@media (max-width:767px) {
    .title-of-page {
        font-size: 2.5rem;
    }

    .footer-column {
        align-items: center;
    }

    .social-media-icons {
        display: flex;
        justify-content: center;
        margin-left: 0;
    }

    .footer-ending-txt {
        margin-top: 10px;
    }

    .program-card {
        width: auto;
    }

    .vol-sub-intro {
        width: 90vw;
        padding: 20px;
        min-height: unset;
    }
}

/* *************** BREAKPOINT 706 **************** */

@media (max-width:706px) {
    .footer-link {
        text-align: center;
    }
}

/* *************** BREAKPOINT 701 **************** */

@media (max-width:701px) {
    .title-of-page {
        font-size: 2rem;
        padding-left: 10px;
        padding-right: 10px;
    }

    .page-banner {
        padding-bottom: 15px;
    }
}

/* *************** BREAKPOINT 681 **************** */

@media (max-width:681px) {
    .testimony-img img {
        width: 120px;
    }

    .home-banner-txt h1 {
        margin-right: 100px;
        font-size: 2.8rem;
    }

    .testimony-intro h5 {
        margin-bottom: 0;
    }

    .testimony-intro {
        margin-top: -20px;
    }

    .collaborator-informations a {
        margin: auto;
    }
}

/* *************** BREAKPOINT 645 **************** */
@media (max-width:645px) {
    .testimony-text {
        font-size: .8rem;
    }
}

/* *************** BREAKPOINT 658 **************** */

@media (max-width:681px) {
    .collaborator-informations {
        font-size: .9rem;
    }

    .collaborator-hover {
        flex-direction: column;
        padding: 25px;
    }

    .collaborator-informations {
        width: 100%;
    }

    .collaborator-small-logo {
        height: 30%;
    }

    .collaborator-small-logo img {
        width: 80px;
    }

    .collaborate-btn {
        margin: auto;
    }

    .collaborator-informations {
        padding: 0;
    }
}

/* *************** BREAKPOINT 600 **************** */
@media (max-width:600px) {
    .flags {
        flex-direction: column;
        align-items: center;
    }

    .donation-popup h3 {
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .us-flag {
        margin-bottom: 15px;
    }
}

/* *************** BREAKPOINT 583 **************** */
@media (max-width:583px) {
    .program-hover-txt p {
        margin-bottom: 0;
    }

    .program-card-hover {
        padding: 25px;
    }
}

/* *************** BREAKPOINT 575 **************** */
@media (max-width:575px) {
    .social-media-icons {
        margin-top: 20px;
    }
}

/* *************** BREAKPOINT 570 **************** */
@media (max-width:570px) {
    .collaborator-wrapper {
        height: 420px;
    }

    .collaborator-hover {
        transform: translateY(0);
        background-color: white;
    }

    .campaign-icons {
        flex-direction: column;
        border: none;
    }

    .campaign-raised,
    .campaign-target {
        border-style: solid;
        border-color: var(--purple);
        margin-bottom: 10px;
        border-radius: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
        border-width: 1px;
    }

    .campaign-donate .general-btn {
        width: 80%;
        margin: auto;
        margin-top: 20px;
    }
}

/* *************** BREAKPOINT 500 **************** */
@media (max-width:500px) {
    .program-hover-testimony-btn {
        flex-direction: column;
    }

    .program-hover-testimony-section {
        width: auto;
    }

    .program-hover-testimony {
        display: flex;
        align-items: center;
    }

    .program-hover-testimony-img {
        margin-top: 0;
        margin-right: 20px;
    }

    .program-hover-testimony-txt {
        margin-top: 0;
    }

    .program-hover-btn {
        margin-top: 20px;
    }

    .program-hover-testimony-btn {
        justify-content: flex-end;
    }
}

/* *************** BREAKPOINT 450             (IPHONE - VERTICAL)        **************** */

@media (max-width:450px) {
    .quadmenu-navbar-brand img {
        height: 35px !important;
    }

    .home-banner-txt h1 {
        font-size: .9rem;
        line-height: 22px;
        margin-right: 15px;
        display: flex;
        align-items: center;
        height: 150px;
    }

    .home-banner {
        height: auto;
    }

    .title-of-page {
        font-size: 1rem;
    }

    .home-introduction-txt {
        font-size: 1rem;
    }

    .program-home-card {
        background-size: contain;
    }

    .card-overlay-content {
        justify-content: unset;
        margin-top: 30px;
    }

    .testimony-card {
        width: auto;
    }

    .testimony-img img {
        width: 115px;
    }

    .testimony-text {
        font-size: .8rem;
        line-height: 17px;
    }

    .testimony-intro {
        margin-top: -20px;
    }

    .testimony-intro h5 {
        font-size: 1rem;
    }

    .testimony-sub {
        font-size: .9rem;
    }

    .testimony-card:hover .testimony-img {
        margin-top: -55px;
    }

    .discover-row {
        padding: 5px;
    }

    .submission-row {
        justify-content: center;
    }

    /* .submission-row .contact-btn {
        width: 100%;
    } */

    .discover-image {
        height: 170px;
    }

    .program-btn {
        max-width: 350px;
        width: auto;
    }

    .join-btn {
        width: 250px !important;
    }

    .vol-card {
        min-height: 435px;
    }

    .vol-faq-title {
        width: 90vw;
        margin: auto;
    }

    .collaborator-wrapper {
        height: 475px;
    }

    .program-hover-txt-mobile {
        display: block;
        font-size: .85rem;
    }

    .program-hover-txt {
        display: none;
    }
}

/* *************** BREAKPOINT 415 **************** */
@media (max-width:415px) {
nav {
    padding-left: 0;
    padding-right: 0;
}
}

/* *************** BREAKPOINT 410 **************** */
@media (max-width:410px) {
    .program-hover-testimony {
        padding: 10px;
    }

    .program-card {
        height: 380px;
    }

    .vol-btn {
        left: 29%;
    }

    .vc_tta-title-text {
        font-size: 1rem;
    }

    .vc_tta-panel-body {
        font-size: .9rem;
    }

    .vol-roles-main:hover .vol-btn {
        top: 80%;
    }

    .donation-popup h3 {
        font-size: 1rem;
    }

    .donation-link {
        font-size: .9rem;
    }

}

/* *************** BREAKPOINT 385 **************** */
@media (max-width:385px) {
    .donation-menu-btn {
        margin-left: 0 !important;
    }
}

/* *************** BREAKPOINT 355 **************** */
@media (max-width:355px) {
    .donation-menu-btn {
        width: 130px !important;
    }
}

/* *************** BREAKPOINT 335 **************** */
@media (max-width:335px) {
    .quadmenu-default_theme {
        flex-direction: column-reverse;
    }

    .quadmenu-container {
        flex-direction: column;
    }

    .menu-donate-wrapper {
        padding-right: 0;
        margin-top: 15px;
    }
}

/* *************** BREAKPOINT 320 **************** */
@media (max-width:337px) {
    .program-hover-testimony-btn {
        margin-top: 0;
    }
}

/* *************** BREAKPOINT 320 **************** */
@media (max-width:320px) {
    .vol-btn {
        left: 22%;
    }

    .vol-card {
        min-height: 366px;
    }

    .vol-roles-txt {
        margin-top: -70px;
    }

    .collaborator-wrapper {
        height: 510px;
    }

    .collaborator-small-logo {
        height: 20%;
        display: flex;
        align-items: flex-start;
    }

    .collaborator-informations {
        height: 80%;
    }

    .collaborator-informations p,
    .collaborator-informations {
        font-size: .8rem;
    }
}