body{
    background-color: #FBF9F0;
}

.homepage-banner-section{
    background-color: #FBF9F0;
}

.homepage-slider{
    position : relative;
    height: 700px;
    overflow: hidden;
    clip-path: ellipse(125% 90% at 50% 10%);
    /* clip-path: ellipse(125% 90% at 50% 20%); */
    
}

.swiper-pagination{
    position: absolute;
    left: 50% !important;
    transform: translateX(-50%);
    bottom: 30px !important;
    z-index: 20;
}

.slide-image img{
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.homepage-slider .swiper-button-next,.homepage-slider .swiper-button-prev{
    display: none;
}

.slide-content{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 57px;
    text-align: center;
    display: block;
    width: 90vw;
    letter-spacing: 0.2px;
    font-weight: 300;
    /* max-width: 940px; */
}

.banner-text-desktop{
    width: fit-content;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 150px;
}

.banner-text{
    background-color: rgba(105, 43, 57, 1);
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 300;
    line-height: 65px;
    letter-spacing: 1px;
}

.banner-text span{
    position: relative;
}

.banner-text:first-child{
    padding: 10px 20px 10px 20px;
}
.banner-text:last-child{
    padding: 10px 30px 10px 30px;
    margin-top: -20px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #FFFFFF !important;
    opacity: 1;
}

.swiper-pagination-bullet{
    background: #FFFFFF !important;
    opacity: 0.5;
    margin: 0 10px !important;
}

.homepage-help-section{
    padding-top: 130px;
    background-color: #FBF9F0;
    position: relative;
    margin-bottom: 200px;
}

.homepage-help-section-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
    padding-bottom: 100px;
}

.homepage-help-section-header h1{
    color: #646D3B;
    font-size: 57px;
    max-width: 555px;
    color: #646D3B;
    font-family: Nunito;
    font-style: normal;
    font-weight: 300;
    line-height: 65px;
    letter-spacing: 0.2px;
}

.homepage-help-section-header p{
    color: #2B221A;
    font-size: 30px;
    max-width: 580px;
    font-weight: 300;
    line-height: 39px;
    letter-spacing: 0.5px;
}

.help-cards-container{
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.help-cards-container.mobile{
    display: none;
}

.help-card{
    position: relative;
    display: inline-block;
    border-radius: 10px;
    perspective: 1000px; /* added for 3D flip */
    width: 100%;
    height: 450px; /* optional, match your image height */
}

.help-card img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    backface-visibility: hidden; /* added for flip effect */
    position: absolute;
    top: 0;
    left: 0;
}

.help-card-title{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 20px 50px;
    color: white;
    background-color: #646C2E;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 28px;
    backface-visibility: hidden; /* added */
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.5px;
}

.help-card-overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #46492A;
    text-align: center;
    display: grid;
    place-items: center;
    border-radius: 10px;
    padding: 0 20px;
    
    /* flip card back side */
    transform: rotateY(180deg);
    backface-visibility: hidden;
    transition: transform 0.8s;

    
}

.help-card-overlay-title{
    color: #DDA544;
    font-size: 28px;
    margin-bottom: 25px;
    padding: 0 30px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.5px;
}

.help-card-text{
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 300;
    padding: 0 25px;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.help-card-overlay a{
    color: #F0E9C9;
    font-size: 11px;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 3px;
    transition: all 0.2s ease-in-out;
}

.help-card-overlay a:hover{
  color:rgb(255, 253, 242);
}

/* wrapper inside help-card for flip effect */
.help-card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    position: relative;
}

/* flip on hover */
.help-cards-container.desktop .help-card:hover .help-card-inner {
    transform: rotateY(180deg);
}

/* front and back faces inside .help-card-inner */
.help-card > img,
.help-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.our-community-container{
    position: relative;
    /* height: 600px; */
    display: grid;
    place-items: center;
    text-align: center;
    padding-bottom: 300px;
    padding-top: 100px;
}

.community-image{
    position: absolute;
    width: 600px;
    bottom: -310px;
    left: -90px;
    z-index: 1;
}

.community-text{
    color: #692B39;
    font-size: 35px;
    max-width: 830px;
    font-weight: 300;
    line-height: 43px;
    letter-spacing: 0.5px;
}

.community-link{
    color: white;
    /* padding: 14px 0; */
    border-radius: 50px;
    background-color: #646C2E;
    text-decoration: none;
    display: inline-block;
    margin-top: 50px;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
}

.community-link:hover{
    background-color: transparent;
    color: #646C2E;
    border: 1px solid #646C2E;
}

.our-community-content{
    position: relative;
    z-index: 2;
}

.our-community-bg{
    position: absolute;
    z-index: 1;
    width: 100%;
    /* height: 130%; */
    left: 50%;
    top: 70%;
    transform: translate(-50%,-65%);
}

.homepage-sos-bg{
    position: absolute;
    z-index: 2;
    background-color: #692B39;
    height: 100%;
    /* border-radius: 50%; */
    width: 120%;
    left: 50%;
    transform: translateX(-50%);
    clip-path: ellipse(100% 100% at 50% 100%); /* anchored at bottom */
}



.section-wrapper {
    position: relative;
    width: 100vw;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent 50%, #D6DAC0 50%);
    z-index: 2;
}

.homepage-sos-wrapper{
    /* padding-top: 200px; */
}

.homepage-sos-section{
    width: 250vw; 
    
    left: 50%;
    transform: translateX(-50%);
    
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background-color: #692B39;
    z-index: 3;
    padding-top: 50px;
    padding-bottom: 550px;
    
}

.sos-container{
    justify-content: center; /* center content horizontally */
    background-size: cover;
    background-position: center;
    position: relative;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    margin: 0;
}


.clip-svg {
  position: absolute;
  width: 0;
  height: 0;
}

.sos-container{
    position: relative;
}

.sos-container h2{
    font-size: 57px;
    color: #CDB94B;
    text-align: center;
    /* margin-top: 60px; */
    font-weight: 300;
    letter-spacing: 0.2px;
}

.sos-cards-container{
    display: flex;
    align-items: center;
    margin: 40px 80px;
}

.sos-card{
    width: 380px;
}

.sos-image-container{
    width: 360px;
    height: auto;
    border-radius: 50%;
    height: 360px;
    position: relative;
    margin: auto;
}


.sos-author-image{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.sos-title{
    text-align: center;
    color: white;
    font-size: 20px;
    margin-top: 30px;
    font-weight: 500;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}

.sos-category{
    color: #CDB94B;
    font-size: 18px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.4px;
}

.sos-overlay{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(100, 108, 46,0.85);
    border-radius: 50%;
    text-align: center;
    display: grid;
    place-items: center;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

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

.sos-overlay.mobile{
    display: none;
}

.sos-content{
    padding: 0 60px;
    transform: translateY(15%);
}

.sos-excerpt p{
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.2px;

    display: -webkit-box;
    -webkit-line-clamp: 4;   /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;

    text-overflow: ellipsis;
}

.sos-read-more{
    color: #C5CCA3;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
}

.sos-read-more:hover{
    color: #dce1c7;
}

.sos-next, .sos-prev{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #DDA544;
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}

.sos-prev svg, .sos-next svg{
    width: 23px;
    height: 19px;
}

.sos-next:hover, .sos-prev:hover{
    background-color: white;
    border: 1px solid white;

}

.sos-next:hover svg path, .sos-prev:hover svg path{
    fill: #DDA544;
}

.sos-next{
    right: 0;
}

.view-all-sos {
    position: relative;
    display: block;
    width: fit-content;
    margin: auto;
    color: #fff;
    border: 1px solid #DDA544;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease;
    border-radius: 50px;
    margin-top: 60px;
    transition: all 0.2s ease-in-out;
}

/* .view-all-sos::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0; 
    height: 100%;
    background-color: #DDA544;
    transition: width 0.4s ease;
    z-index: 0;
}

.view-all-sos:hover::before {
    width: 100%; 
} */

.view-all-sos span {
    position: relative;
    z-index: 1; 
    transition: color 0.4s ease;
}

.view-all-sos:hover {
    /* color: #DDA544;  */
    color: white; 
    background-color: #DDA544;
    /* border: 1px solid white; */
}

.bottom-section-wrapper{
    background-color: #D6DAC0;
    padding-top: 50px;
}

.events-section{
    /* background-color: #D6DAC0; */
    padding-top: 0px;
    
    /* transform: translateY(-50px); */
    padding-bottom: 535px;
    position: relative;
    z-index: 3;
    margin-top: -2px;
}

/* .events-section::before{
    content: "";

    width: 100%;
    height: 100px;
    clip-path: ellipse(60% 70% at 50% 3%);
    background-color: #692B39;
    position: absolute;
    top: 0;
    z-index: 4;
    margin-top: -1px;
} */

.events-section .section-title{
    text-align: center;
    color: #46492A;
    font-size: 57px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

/* event carousel start */

.event-cards-container{
    /* perspective: 500px; */
    padding: 2rem;
}

.event-card{
    position: relative;
    width: 440px;
    height: 430px;
    border-radius: 10px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.event-card-img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}

.event-date-container{
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.event-date-container span{
    line-height: 100%;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.event-date-container .day{
    color: #646C2E;
    font-size: 50px;
    font-weight: 700;
}

.event-content-container{
    position: absolute;
    bottom: 0;
    left : 0;
    padding: 30px 30px;
}

.event-title{
    color: #fff;
    font-weight: 400;
    line-height: 34px;
    font-size: 28px;
    /* padding-right: 130px; */
}

.event-overlay-container{
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 0;
}

.event-card:hover .event-overlay-container{
    max-height: 200px;
    margin-top: 20px;
}

.event-overlay-container p{
    color: white;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 25px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-overlay-container a{
    min-width: 55px;
    height: 55px;
    border-radius: 50%;
    border : 1px solid #DDA544;
    display: grid;
    flex: 1;
    place-items: center;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}

.event-overlay-container svg{
    width: 23px;
    height: 19px;
}

.event-overlay-container a:hover{
    background-color: #DDA544;
}

.event-overlay-container a svg path{
    transition: all 0.2s ease-in-out;
}

.event-overlay-container a:hover svg path{
    color: white;
    fill: white;
}

/* Gradient overlay at the bottom */
.event-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; /* adjust height for gradient coverage */
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1)); /* dark to transparent */
    pointer-events: none; /* so overlay doesn’t block clicks */
    border-radius: 10px;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.event-card:hover::before {
    opacity: 1; /* appear on hover */
}

.view-all-events{
    display: block;
    width: fit-content;
    margin: auto;
    color: #fff;
    background-color: #646C2E;
    border: 1px solid transparent;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 50px;
    margin-top: 30px;
    
}

.view-all-events:hover{
    background-color: transparent;
    color: #646C2E;
    border: 1px solid #646C2E;
}

/* event carousel end */


.banner-text-mobile{
    display: none;
}

.our-community-bg.mobile{
    display: none;
}

.volunteer-section-wrapper::before{
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.volunteer-section-wrapper::after{
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #FBF9F0;
    z-index: -1;
}
[data-depth] {
  will-change: transform;
}
.homepage-slide {
  
  overflow: hidden;
}
.slide-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: transform;
}
.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-content {
  
  z-index: 2;
  will-change: transform;
}

/* .volunteer-content{
    top: -8%;
} */

@media screen and (max-width: 1100px){
    .slide-content{
        font-size: 35px;
    }

    .homepage-slider{
        height: 500px;
        clip-path: ellipse(170% 90% at 50% 10%);
    }

    .homepage-help-section{
        padding-top: 90px;
        margin-bottom: 150px;
    }
    .homepage-help-section-header{
        margin-bottom: 0;
    }

    .homepage-help-section-header h1{
        font-size: 45px;
    }

    .homepage-help-section-header p{
        font-size: 24px;
        max-width: 440px;
    }

    .help-cards-container{
        gap: 10px;
    }

    .help-card-title{
        padding: 15px 20px;
        font-size: 24px;
    }

    

    .help-card-overlay-title{
        font-size: 24px;
        margin-bottom: 20px;
        padding: 0 0px;
    }

    .help-card-text{
        font-size: 18px;
        padding: 0 10px;
    }

    .community-text{
        font-size: 30px;
        max-width: 720px;
    }

    .community-image{
        width: 520px;
        bottom: -280px;
    }

    .our-community-container{
        padding-bottom: 180px;
    }

    .our-community-bg{
        transform: translate(-50%, -70%);
    }

    .homepage-sos-section{
        padding-bottom: 250px;
        width: 300vw;
    }

    .events-section{
        padding-bottom: 220px;
    }

    
}

@media screen and (max-width : 1024px){
    .sos-container h2{
        font-size: 48px;
    }

    .events-section .section-title{
        font-size: 48px;
    }
}


@media screen and (max-width: 850px){
    .help-cards-container-wrapper{
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        padding: 15px 20px;
    }

    .help-cards-container.mobile {
        position: relative;
    }

    .help-cards-container.mobile::after {
        content: "";
        flex: 0 0 4px;
        padding: 1px;
    }

    .help-cards-container-wrapper {
        scrollbar-width: none;      /* Firefox */
        -ms-overflow-style: none;   /* IE/Edge */
    }

    .help-cards-container-wrapper::-webkit-scrollbar {
        display: none;              /* Chrome, Safari */
    }

    .help-cards-container{
        /* flex-direction: column; */
        justify-content: flex-start;
        gap: 10px;
    }

    .help-card{
        height: 400px;
        width: 240px;
        flex-shrink: 0;
    }

    .homepage-help-section-header h1{
        font-size: 38px;
    }

    .homepage-help-section-header p{
        font-size: 22px;
        max-width: 380px;
    }

    .community-text {
        font-size: 25px;
        max-width: 605px;
    }

    .our-community-container{
        padding-bottom: 100px;
    }

    .sos-container h2{
        font-size: 38px;
    }

    .events-section .section-title{
        font-size: 38px;
    }

    .help-cards-container.desktop{
        display: none;
    }

    .help-cards-container.mobile{
        display: flex;
    }

    .help-cards-container.mobile .help-card:last-child{
        margin-right: 15px;
    }

}
@media screen and (max-width: 600px){
    .banner-text-desktop{
        display: none;
    }
    .banner-text-mobile{
        display: block;
        flex-direction: column;
        width: fit-content;
        margin: auto;
        align-items: center;
        height: 148px;
    }
    .banner-text{
        font-size: 30px;
        width: fit-content;
        line-height: 1;
        border-radius: 0;
        display: block;
        margin: auto;
    }

    .banner-text:first-child{
        border-radius: 6px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: -20px;
    }

    .banner-text:first-child span{
        position: relative;
        z-index: 5;
    }

    .banner-text:nth-child(3){
        padding-bottom: 10px;
        padding-top: 10px;
        border-radius: 6px;
        margin-top: -45px;
        margin-bottom: -20px;
    }

    .banner-text:nth-child(3) span{
        position: relative;
        z-index: 5;
    }

    .banner-text:nth-child(5){
        
        padding-top: 10px;
        padding-bottom: 10px;
        border-radius: 6px;
        margin-top: -45px;
        margin-bottom: -20px;
    }

    .banner-text:nth-child(5) span{
        position: relative;
        z-index: 5;
    }

    .banner-text:last-child{
        border-radius: 6px;
        padding-top: 10px;
        margin-top: -45px; 
    }

    .banner-text:last-child span{
        position: relative;
        z-index: 5;
    }

    

    /* .banner-text-break-desktop{
        display: none;
    } */

    .slide-content p{
        line-height: 0.595;
    }

    .homepage-slider{
        height: 450px;
        clip-path: ellipse(250% 90% at 50% 10%);
    }

    .homepage-help-section{
        padding-top: 50px;
        margin-bottom:110px;
    }

    .homepage-help-section-header{
        flex-direction: column;
        align-items: start;
        margin-bottom: 0;
        padding-bottom: 30px;
    }

    .help-cards-container-wrapper{
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        padding: 15px 0;
    }

    .help-cards-container{
        /* flex-direction: column; */
        justify-content: flex-start;
        gap: 10px;
    }

    .help-card{
        height: 240px;
        width: 185px;
        flex-shrink: 0;
    }

    .help-card-title{
        font-size: 16px;
        padding: 15px 30px;
        line-height: 17px;
    }

    .help-card-overlay{
        padding: 0 10px;
    }

    .help-card-overlay a{
        font-size: 10px;
    }

    .help-card-overlay-title{
        font-size: 16px;
        padding: 0 10px;
        margin-bottom: 10px;
        line-height: 17px;
    }



    .help-card-text{
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 17px;
        padding: 0;
    }

    .community-text{
        font-size: 20px;
        max-width: 250px;
        line-height: 25px;
    }

    .community-image{
        width: 210px;
        left: -85px;
        bottom: -150px;
    
    }

    .our-community-container{
        padding-bottom: 60px;
        padding-top: 45px;
    }

    .homepage-sos-section{
        padding-top: 60px;
        /* padding: 70px 0; */
        padding-bottom: 165px;
        width: 435vw;
    }

    .homepage-sos-bg{
        width: 150%;
    }

    .sos-container h2{
        margin-top: 0;
        font-size: 30px;
        line-height: 34px;
        letter-spacing: 0.5px;
    }

    .sos-cards-container{
        margin: 40px 40px;
    }

    .sos-card{
        /* width: 230px; */
    }

    .sos-image-container{
        width: 220px;
        height: 220px;
    }

    .sos-excerpt{
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 4;  /* number of lines to keep */
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 25px 0;
    }

    .sos-excerpt p{
        margin-bottom: 0;
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .sos-read-more{
        color: #C5CCA3;
        text-align: center;
        font-size: 10.5px;
        font-style: normal;
        letter-spacing: 3px;
    }

    .sos-content{
        padding: 0 0;
    }

    .sos-title{
        font-size: 18.5px;
        margin-top: 25px;
        letter-spacing: 0.5px;
    }

    .sos-category{
        font-size: 16.5px;
        letter-spacing: 0.5px;
    }

    .sos-next, .sos-prev{
        top: 35%;
    }

    .view-all-sos{
        margin-top: 30px;
    }

    .events-section{
        padding-top: 0px;
        padding-bottom: 125px;
    }

    .our-community-bg{
        transform: translate(-50%, -65%);
    }

    .events-section .section-title{
        font-size: 30px;
        line-height: 34px; /* 114.286% */
        letter-spacing: 0.5px;
        margin-bottom: 0px;
        max-width: 250px;
        margin: auto;
    }

    .event-cards-container{
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .view-all-events{
        margin-top: 0;
    }

    .event-card{
        width: 300px;
        height: 300px;
    }

    .event-date-container span:not(.day){
        font-size: 14px;
    }

    .event-date-container .day{
        font-size: 30px;
    }

    .event-title{
        font-size: 20px;
        padding-right: 0;
        line-height: 25px;
        letter-spacing: 0.5px;
    }

    .event-card:hover .event-overlay-container{
        margin-top: 10px;
    }

    .event-overlay-container p{
        font-size: 16px;
        line-height: 21px;
        letter-spacing: 0.5px;

        display: -webkit-box;
        -webkit-line-clamp: 2;       
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .event-overlay-container{
        gap: 20px;
        align-items: flex-end;
    }


    .event-card .event-overlay-container{
        margin-top: 10px;
        max-height: 200px;
    }

    .event-card::before {
        opacity: 1; /* appear on hover */
    }

    .event-overlay-container a{
        min-width: 35px;
        height: 35px;
    }

    .event-overlay-container a svg{
        width: 16px;
        height: 16px;
    }

    .event-content-container{
        padding: 25px 30px;
    }

    

    .homepage-help-section-header h1{
        color: #646D3B;
        font-family: Nunito;
        font-size: 30px;
        font-style: normal;
        line-height: 34px; /* 115.239% */
        letter-spacing: 0.5px;
        max-width: 300px;
    }

    .homepage-help-section-header p{
        color: #2B221A;
        font-family: Nunito;
        font-size: 18px;
        font-style: normal;
        line-height: 23px; /* 118.75% */
        letter-spacing: 0.5px;
        max-width: none;
    }

    .our-community-bg.mobile{
        display: block;
    }

    .our-community-bg.desktop{
        display: none;
    }

    .community-link{
        margin-top: 25px;
    }

    .homepage-sos-bg{
        clip-path: ellipse(250% 100% at 50% 100%);
    }

    .events-section::before {
        clip-path: ellipse(125% 70% at 50% -40%);
    }

    .sos-overlay.desktop{
        display: none;
    }

    .sos-overlay.mobile{
        display: flex;
        flex-direction: column;
        position: static;
        opacity: 1;
        background-color: transparent;
    }

    .volunteer-content{
        top : 4%;
    }

    .bottom-section-wrapper{
        padding-top: 40px;
    }

    

}




