@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

/* font-family: "Manrope", sans-serif; */
/* font-family: "Inter", sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* primary color #261fb3 */

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
}

#maincontainer {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
}

a,
p,
span,
small {
    font-family: "Inter", sans-serif;
    color: #222;
}

a {
    text-decoration: none;
    color: #222;
}

::-webkit-scrollbar {
    display: none;
}

#MainContainer {
    width: 100%;
    height: 100%;
}


/* hero section */
#survivorHero {
    width: 100%;
    height: auto;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#sur-HeroContainer {
    width: 100%;
    max-width: 1400px;
    height: auto;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(./survivor\ hero\ bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 25px;
}

#sur-HeroContent {
    width: auto;
    max-width: 800px;
    height: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background-color: #ffffff60;
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

#sur-HeroContent h4,
#Sur-Donate-Left h4,
.surv-up h4 , .WatchPodcast-Container h4{
    font-size: 1rem;
    text-decoration: underline;
    color: #2e23df;
    margin-bottom: 2px;
}

#sur-HeroContent h1,
#Sur-Donate-Left h1,
.surv-up h1, .WatchPodcast-Container h1 {
    font-size: 3rem;
    line-height: 3.5rem;
    margin-bottom: 10px;
    color: #111;
    max-width: 800px;
}

#sur-HeroContent p,
.surv-up p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 25px;
}

#sur-HeroContent a,
#Sur-Donate-Right a {
    padding: 10px 20px;
    background: linear-gradient(125deg, #1e37af, #25228d);
    color: #fff;
    border-radius: 15px;
    font-weight: 600;
}

/* hero section */


/* stories */
#SurVivorStories {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#SurvivorStoriesContainer {
    width: 100%;
    max-width: 1400px;
    height: auto;
    min-height: 550px;
    min-height: auto;
    margin-bottom: 50px;
    margin-top: 30px;
    /* background-color: #111; */
}

#Sur-Donate-CTA {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

#Sur-Donate-Left,
#Sur-Donate-Right {
    width: 50%;
    /* background-color: #888; */
}

#Sur-Donate-Right {
    display: flex;
    align-items: end;
    justify-content: end;
}

/* 
.StoryContainer-1{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
}

.Sur-StoryCard{
    flex: auto;
    width: 30%;
    height: auto;
    border: 1px solid #25228d50;
    padding: 20px;
    border-radius: 25px;
    transition: all .3s ease-in-out;
}

.Sur-StoryCard:hover{
    background-color: #f9f9f9;
    box-shadow: 0 0 30px #25228d20;
}

.Sur-StoryCard p{
    text-align: justify;
    margin-bottom: 15px;
    color: #333;
}

.Sur-StoryCard h5{
    color: #222;
    font-size: 1.2rem;
    text-transform: capitalize;
}

.Sur-StoryCard h6 {
    color: #25228d;
    font-size: 16px;
}

.StorySlider-track{
    width: 100%;
    max-width: 1400px;
    height: auto;
    overflow-y: scroll;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 30px;
}


.StorySlider-track::before{
    position: absolute;
    content: " ";
    left: 60px;
    width: 150px;
    height: 480px;
    background: linear-gradient(90deg, #fff, #ffffff00);
} */

.StoryContainer-1,
.StoryContainer-2 {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
    overflow: hidden;
    position: relative;
}

.StorySlider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.StorySlider-track {
    display: flex;
    gap: 30px;
    /* animation: scrollSlider 60s linear infinite; */
    /* width: max-content; */
    display: flex;
    align-items: start;
    justify-content: start;
}

.StorySlider-track2 {
    display: flex;
    gap: 30px;
    animation: scrollSlider2 60s linear infinite;
    width: max-content;
}

@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollSlider2 {
    0% {
        transform: translateX(-50%);
    }

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

.Sur-StoryCard {
    flex: 0 0 auto;
    width: 350px;
    border: 1px solid #25228d50;
    padding: 20px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

.Sur-StoryCard:hover {
    background-color: #f9f9f9;
    box-shadow: 0 0 30px #25228d20;
}

.Sur-StoryCard p {
    text-align: justify;
    margin-bottom: 15px;
    color: #333;
}

.Sur-StoryCard h5 {
    color: #222;
    font-size: 1.2rem;
    text-transform: capitalize;
}

.Sur-StoryCard h6 {
    color: #25228d;
    font-size: 16px;
}

.StorySlider-track:hover,
.StorySlider-track2:hover {
    animation-play-state: paused;
}


/* DISSOLVING EFFECT LEFT/RIGHT */
.StorySlider-wrapper::before,
.StorySlider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* 
.StorySlider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.StorySlider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
} */

.surv-card {
    display: none;
}

/* stories */


.surv-Testi {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.survTesti-Container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.surv-up p {
    text-align: center;
    max-width: 900px;
}

.surv-up {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.surv-down,
.testi-videoCards {
    width: 100%;
    height: auto;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 20px;
}

.testi-Card{
    width: 30%;
    height: auto;
    min-height: auto !important;
    max-height: auto;
    overflow: hidden;
    margin-top: 30px !important;
}

.testi-Card video {
    width: auto;
    height: 650px;
    border-radius: 15px;
}


.watch-testi {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .WatchPodcast-Container {
        width: 100%;
        height: auto;
        margin: 50px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        .video-thumbnail {
            position: relative;
            width: 100%;
            max-width: 1300px;
            margin: 20px auto;
            cursor: pointer;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        /* .video-thumbnail:hover {
    transform: scale(1.02);
} */

        .video-thumbnail img {
            width: 100%;
            display: block;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            padding: 25px;
            animation: pulse 1.5s infinite;
            transition: background 0.3s ease;
        }

        .play-button:hover {
            background: rgba(255, 255, 255, 1);
        }

        /* .play-icon {
            width: 0;
            height: 0;
            border-left: 20px solid #e53935;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
        } */

        i{
            font-size: 2.5rem;
            font-weight: 600;
            color: #e53935;
        }

    }

}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* responsive mode */
@media only screen and (max-width:768px) {
    body {
        width: 100%;
        height: 100%;
        /* padding: 10px; */
    }

    #survivorHero {
        width: 100%;
        height: auto;
        min-height: 300px;
        max-height: auto;
        padding: 10px;
    }

    #sur-HeroContainer {
        width: 100%;
        height: 100%;
        min-height: 450px;
        max-height: auto;
        padding: 8px;
    }

    #sur-HeroContent {
        padding: 10px;
        width: 100%;
        height: 450px;
    }

    #sur-HeroContent h1, .WatchPodcast-Container h1 {
        font-size: 2rem !important;
        line-height: 2.5rem !important;
    }

    #SurVivorStories {
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: auto;
        padding: 10px;
    }

    #Sur-Donate-CTA {
        width: 100%;
        height: auto;
        flex-wrap: wrap;
    }

    #Sur-Donate-Left {
        width: 100%;
        height: auto;
        padding: 0;
    }

    #Sur-Donate-Left h1 {
        font-size: 2rem;
        line-height: 2.5rem;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    #Sur-Donate-Right {
        align-items: start;
        justify-content: start;
        width: 100%;
        margin-top: 8px;
    }

    .StorySlider-track,
    .StorySlider-track2 {
        gap: 15px 15px;
    }

    /* .StorySlider-wrapper::before {
        left: 0;
        background: linear-gradient(to right, white 0%, transparent 50%);
    }

    .StorySlider-wrapper::after {
        right: 0;
        background: linear-gradient(to left, white 0%, transparent 50%);
    } */

    .StorySlider-track {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .surv-card {
        display: none;
    }

    #Sur-Donate-Left h4,
    #Sur-Donate-Left h1 {
        text-align: center;
    }

    #Sur-Donate-Right {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #Sur-Donate-Right a {
        width: 80%;
        text-align: center;
    }

    .surv-Testi {
        width: 100%;
        height: auto;
    }

    .survTesti-Container {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .surv-up h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .testi-videoCards {
        width: 100%;
        flex-wrap: wrap;
    }

    .testi-Card{
        width: 100%;
        height: auto;
        max-width: 100%;
        min-width: 100%;
        padding: 0;
    }

    .testi-Card video {
        width: 100%;
        max-width: 95% !important;
        height: auto;
        /* height: 650px !important; */
        /* min-height: 650px; */
        max-height: auto;
    }

    .watch-testi{
        padding: 10px;

        .WatchPodcast-Container{
            padding: 0;
            margin: 20px 0;
        }
    }
}

/* responsive mode */