* {
    --dark-red: #B92328;
    --red: #F73895;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    padding: 0;
    scroll-behavior: smooth;
}

h1,
h2,
h3 button {
    font-family: 'Parkinsans';
}

a {
    text-decoration: none;
}

/* CONTENT */

.fixed-max-width-content {
    width: 100%;
    max-width: 1700px;
    display: flex;
    flex-direction: column;
    justify-self: center;
    margin: 0 auto;
}

/* DONATE BANNER */

.donate-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 124px;
    height: 110px;
    width: 100%;
    background: rgba(185, 35, 40, 0.1);

}

.donate-banner .donate-button-container {
    display: flex;
    justify-items: end;
}

.donate-banner .donate-button-container button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    cursor: pointer;
    padding: 12px 32px;
    gap: 42px;
    margin: 0 auto;
    width: 162px;
    height: 46px;

    background: var(--dark-red);
    border: 3px solid var(--dark-red);
    border-radius: 100px;

    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
}

.donate-banner .donate-button-container button span {
    width: 98px;
    height: 22px;
}

/* NAVIGATION */

.navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 124px;
    height: 98px;
}

.navigation .logo-navigation {
    cursor: pointer;
    text-decoration: none;
}

.navigation .logo {
    margin: 0 auto;
    width: 151px;
    height: 50px;
}

.navigation .nav-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;

    padding: 0px;
    gap: 24px;
}

.navigation .nav-buttons a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    border: none;
    background: none;
    cursor: pointer;
}

.navigation .nav-buttons button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 24px;
    gap: 42px;
    width: 95px;
    height: 38px;
    background: rgba(255, 255, 255, 0.72);
    border: 3px solid var(--dark-red);
    border-radius: 100px;
    cursor: pointer;
}

.navigation .hamburger-container {
    display: none;
}

.navigation .hamburger-container #menu-toggle:checked~.content {
    display: none;
}

@media screen and (max-width:1024px) {
    .navigation {
        padding: 0 62px;
    }
}

@media screen and (max-width:768px) {
    .navigation .hamburger-container #menu-toggle:checked~body {
        overflow: hidden;
        height: 100vh;
        position: fixed;
        width: 100%;
    }

    .donate-banner {
        background-color: #eacdcd;
    }

    .navigation .nav-buttons {
        display: none;
    }

    .navigation .hamburger-container {
        display: block;
        position: relative;
        height: 60px;
    }

    .navigation .hamburger-container #menu-toggle {
        width: 32px;
        height: 32px;
        opacity: 0;
        z-index: 5;
        cursor: pointer;
    }

    .navigation .hamburger-container .hamburger-icon {
        display: block;
        position: absolute;
        width: 32px;
        height: 32px;
        top: 14px;
        z-index: 4;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .navigation .hamburger-container .close-icon {
        opacity: 0;
        pointer-events: none;
    }

    .navigation .hamburger-container #menu-toggle:checked~label .open-icon {
        opacity: 0;
        pointer-events: none;
    }

    .navigation .hamburger-container #menu-toggle:checked~label .close-icon {
        opacity: 1;
        pointer-events: auto;
    }

    .navigation .hamburger-container .menu-items {
        display: flex;
        flex-direction: column;
        text-align: center;
        position: fixed;
        top: 226px;
        left: 0;
        padding-left: 50px;
        width: 100%;
        height: 100vh;
        transform: translateX(-150%);
        transition: transform 0.1s ease-in-out;
        background-color: #efdfe0;
        gap: 24px;
        align-items: flex-start;
        z-index: 9999;
    }

    .navigation .hamburger-container .menu-items li button {
        margin-top: 28px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 24px;
        gap: 42px;

        width: 95px;
        height: 38px;

        background: #ffffffb8;
        border: 3px solid var(--dark-red);
        border-radius: 100px;
    }

    .navigation .hamburger-container .menu-items li {
        list-style: none;
        width: 60px;
        height: 30px;
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
    }

    .navigation .hamburger-container .menu-items li a {
        text-decoration: none;
        color: #000000;
    }

    .navigation .hamburger-container #menu-toggle:checked~.menu-items {
        transform: translateX(0);
    }
}

@media screen and (max-width:700px) {
    .donate-banner {
        align-items: center;
        padding: 32px 32px 24px;
        gap: 24px;
        height: 128px;
        background-color: #eacdcd;
    }
}

@media screen and (max-width:500px) {
    .navigation {
        padding: 0 30px;
    }
}


/* LANDING PAGE */

.landing-section .landing-image-vision {
    overflow: hidden;
    height: 572px;
    width: 100%;
}

.landing-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

h2 {
    font-weight: 400;
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    color: #000000;
    margin-top: 7rem;
    margin-bottom: 2rem;
}

h3 {
    width: 346px;
    height: 100px;

    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    color: #000000;
}

@media screen and (max-width: 500px) {
    h3 {
        height: fit-content;
    }
}

.landing-section .vision-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-align: justify;
    margin: 0 6rem;
}

@media screen and (max-width:768px) {
    #menu-toggle:checked~body {
        overflow: hidden;
    }

    .landing-section .landing-image-vision {
        overflow: hidden;
        height: 402px;
        width: 100%;
    }

    .landing-image {
        object-fit: cover;
        object-position: center;
    }

    h2 {
        margin-top: 2rem;
    }

    .landing-section .vision-content {
        margin: 2rem;
    }

}

.past-missions-section {
    padding: 0 124px;
}

.past-missions-section .past-missions-container,
.more-blogs-section .more-blogs-container {
    padding-inline: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-inline: 1rem;
    padding: 0;
    gap: 1rem;
    justify-content: center;
}

.past-missions-section .past-missions-container::-webkit-scrollbar,
.more-blogs-section .more-blogs-container::-webkit-scrollbar {
    display: none;
}

.past-missions-section .past-missions-container .past-mission,
.more-blogs-section .more-blogs-container .blog-to-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    width: 386px;
    height: 488px;
    background: #fc980633;
    border-radius: 8px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.past-missions-section .past-missions-container .past-mission .mission-image,
.more-blogs-section .more-blogs-container .blog-to-open img {
    padding: 10px;
    gap: 10px;
    width: 370px;
    height: 334px;
}

.past-missions-section .past-missions-container .past-mission .mission-image-caption {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 350px;
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: #000000;
}

.image-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:1100px) {

    .past-missions-section .past-missions-container {
        justify-content: unset;
    }
}

@media screen and (max-width:768px) {

    .past-missions-section,
    .more-blogs-section {
        padding: 0 30px;
    }

    .past-missions-section .past-missions-container .past-mission,
    .more-blogs-section .more-blogs-container .blog-to-open {
        width: calc(100vw - 60px);
    }

    .past-missions-section .past-missions-container .past-mission .mission-image,
    .more-blogs-section .more-blogs-container .blog-to-open img {
        height: 312px;
        max-width: 100%;
        object-fit: cover;
    }

    .past-missions-section .past-missions-container .past-mission .mission-image-caption {
        width: 294px;
        justify-self: center;
    }

    h3 {
        width: calc(100vw - 100px);
        justify-self: center;
        text-align: justify;
    }

    .blog-to-open p {
        width: calc(100vw - 100px) !important;
        padding-top: 20px;
    }
}

@media screen and (max-width:425px) {

    .past-missions-section,
    .more-blogs-section {
        padding: 0 30px;
    }

    .past-missions-section .past-missions-container .past-mission .mission-image-caption {
        width: calc(100vw - 100px);
        font-size: 10px;
    }
}

@media screen and (max-width:375px) {

    .more-blogs-section .more-blogs-container .blog-to-open {
        min-height: 400px;
    }
}

@media screen and (max-width:320px) {

    .past-missions-section .past-missions-container .past-mission,
    .more-blogs-section .more-blogs-container .blog-to-open {
        width: 260px;
    }

    .more-blogs-section .more-blogs-container .blog-to-open {
        min-height: 370px;
    }
}

.sponsors-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 52px 0px;
    height: 348px;
    background: #FAFAFA;
    gap: 24px;
    margin-top: 6rem;
}

.sponsors-section .sponsors {
    margin: 0 auto;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 0px 124px;
    gap: 32px;
    height: 110px;
    overflow: hidden;
}

.sponsors-section .sponsors .group1 {
    display: flex;
    gap: 20px;
    padding-right: 20px;
    will-change: transform;
    animation: scrollingLeft 30s linear infinite;
}

.sponsors-section .sponsors .group2 {
    display: flex;
    gap: 20px;
    padding-right: 20px;
    will-change: transform;
    animation: scrollingRight 30s linear infinite;
}

.sponsors-section .sponsors .group1 .card,
.sponsors-section .sponsors .group2 .card {
    width: 100%;
    color: white;
    border-radius: 24px;
    padding: 20px;
    font-size: xx-large;
    justify-content: center;
    align-items: center;
    height: 110px;
}

.sponsors-section .sponsors .group1 .card img,
.sponsors-section .sponsors .group2 .card img {
    height: 110px;
}

.sponsors-section .sponsors>* {
    flex: 0 0 100%;
}

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

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


@keyframes scrollingRight {
    0% {
        transform: translateX(-100%);
    }

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

.new-opportunities-section {
    padding: 124px;
    gap: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    gap: 1rem;
}

.new-opportunities-section::-webkit-scrollbar {
    display: none;
}

.new-opportunities-section .new-opportunity-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px;
    gap: 24px;
    width: 100%;
    background: #0db2a233;
    border-radius: 8px;
}

.new-opportunities-section .new-opportunity-container img {
    width: 300px;
    height: 200px;
}

.new-opportunities-section .new-opportunity-container .new-opportunities-content {
    padding: 0px;
    text-align: justify;
}

.new-opportunities-section .new-opportunity-container .new-opportunities-content .opportunities-content-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 60px;
}

.new-opportunities-section .new-opportunity-container .new-opportunities-content .opportunities-content-header h3 {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #000000;
}

.new-opportunities-section .new-opportunity-container .new-opportunities-content .read-more,
.new-opportunities-section .new-opportunity-container .new-opportunities-content .read-more-mobile {
    padding: 4px 12px;
    width: 135px;
    height: 36px;
    background: #01889E;
    border: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #FAFAFA;
}

.new-opportunities-section .new-opportunity-container .new-opportunities-content .new-opportunities-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.new-opportunities-section .new-opportunity-container .new-opportunities-content .read-more-mobile {
    display: none;
}

@media screen and (max-width:1100px) {
    .new-opportunities-section {
        padding: 70px;

    }
}

@media screen and (max-width:768px) {
    .new-opportunities-section {
        flex-direction: row;
        padding: 30px 30px;
    }

    .new-opportunities-section .new-opportunity-container {
        flex-direction: column;
        width: 348px;
    }

    .new-opportunities-section .new-opportunity-container .new-opportunities-content .read-more {
        display: none;
    }

    .new-opportunities-section .new-opportunity-container .new-opportunities-content .read-more-mobile {
        display: flex;
        justify-self: center;
        margin-top: 2rem;
    }

    .sponsors-section {
        margin-bottom: 52px;
    }
}

@media screen and (max-width:375px) {
    .new-opportunities-section .new-opportunity-container {
        width: 328px;
    }
}

@media screen and (max-width:320px) {
    .new-opportunity-title {
        padding: 0 30px;
    }

    .new-opportunities-section .new-opportunity-container {
        width: 260px;
    }

    .new-opportunities-section .new-opportunity-container img {
        width: 240px;
    }
}

.donate-section {
    min-height: 517px;
    position: relative;
    left: 0;
    width: 100%;
    max-width: 1700px;
}

.donate-section img {
    position: absolute;
    height: 337px;
    width: 1000px;
    top: 52px;
    align-self: center;
}

.donate-section button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 52px;
    gap: 42px;
    justify-content: center;

    position: absolute;
    width: 251px;
    height: 66px;
    left: 70vw;
    top: 221px;

    background: var(--red);
    border: 6px solid var(--red);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    cursor: pointer;
}

.donate-section button span {
    width: 147px;
    height: 34px;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: #FFFFFF;
}

@media screen and (max-width:999px) {
    .donate-section img {
        width: 600px;
    }
}

@media screen and (max-width:768px) {
    .donate-section {
        display: none;
    }
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 52px 124px 124px;
    gap: 180px;
    height: 330px;
    background: #FAFAFA;
}

footer div {
    display: flex;
    flex-direction: column;
    height: 154px;
    justify-content: space-between;
    gap: 24px;
}

footer:first-child {
    gap: 32px;
}

footer div .address {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    gap: 0px;
    color: #000000;
}

footer button {
    background: none;
    border: none;
    text-align: start;
    margin: 0;
    padding: 0;
}

@media screen and (max-width:768px) {
    footer {
        flex-direction: column;
        justify-content: left;
        height: auto;
        padding: 30px;
        gap: 60px;
    }

    footer div img {
        width: 241px;
        height: 80px;
    }
}


/* BLOG */

.blog-landing-img-container {
    height: 504px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 52px 124px;
    position:relative;
    overflow: hidden;
}

.blog-landing-img-container img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
      position: absolute;
    top: 0;
    left: 0;
    padding-bottom: 2rem;
}

.more-blogs-section {
    padding: 124px;
}

.blog-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 52px 124px;
    gap: 20px;
    background-color: #fc980612;
    text-align: justify;
}

.blog-section h1 {
    text-align: left;
}

.blog-section h3 {
    margin-top: 32px;
    width: 100%;
    height: auto;
}

.blog-section-date {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 24px;

}

.blog-section-date span {
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
}

h1 {
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    text-align: justify;
}

.blog-section .blog-content {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.blog-images-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.blog-images-container div {
    width: 100%;
}

.blog-images-container div img {
    max-width: 100%;
}

.blog-to-open {
    padding: 8px 8px 12px;
    gap: 24px;
    min-height: 456px;
}

.blog-to-open h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    height: auto;
}

.blog-to-open p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    height: auto;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    width: 346px;
    justify-self: center;
}

@media screen and (max-width:768px) {
    .blog-landing-img-container {
        padding: 0;
    }

    .blog-section,
    .more-blogs-section {
        padding: 52px 32px;
    }

}

/* MISSIONS */

.mission-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 52px 124px;
    gap: 10px;
    background: rgba(13, 178, 162, 0.05);
}

.mission-section .mission-info {
    display: flex;
    flex-direction: column;


    align-items: flex-start;
    padding: 12px;
    gap: 24px;

    width: 230px;
    min-height: 281px;
    height: auto;
    border-right: 1px solid #000000;
}

.mission-section .mission-info p {
    font-weight: 400;
    font-size: 16px;

}

.mission-section .mission-info h3 {
    font-weight: 400;
    font-size: 32px;
    height: auto;
}

.mission-section .mission-story {
    display: flex;
    flex-direction: column;
    text-align: justify;
    padding: 0px 32px;
    gap: 32px;
}

.mission-section .mission-story h3 {
    height: auto;
    font-weight: 400;
    font-size: 36px;
}

.mission-section .mission-story p {
    font-weight: 400;
    font-size: 16px;

}

@media screen and (max-width:768px) {
    .mission-section {
        flex-direction: column;
        padding: 52px 32px;
        gap: 52px;
    }

    .mission-section .mission-info {
        flex-direction: column;
        align-items: flex-start;
        padding: 0px;
        gap: 24px;
        border: none;
    }

    .mission-section .mission-story {
        padding: 0px;
        gap: 24px;
    }
}


/* OUR TEAM */


.our-team-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 52px 124px;
    gap: 32px;
}

.our-team-section h3 {
    font-weight: 400;
    font-size: 36px;
    text-align: center;
    height: auto;
}

.our-team-section p {
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
}

.our-team-section .team-profiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 16px;
}

.our-team-section .team-profiles a {
    color:black;
}

.our-team-section .team-profiles a:focus,
.our-team-section .team-profiles a:focus-visible {
    outline:none !important;
}

.our-team-section .team-profiles .team-member-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    width: 212px;
    height: 300px;
    flex: 1 1 calc(25% - 12px);
    min-width: 274px;
    max-width: calc(25% - 12px);
}

.our-team-section .team-profiles .team-member-profile img {
    width: 193px;
    height: 160px;
    object-fit: scale-down;
}

.our-team-section .team-profiles .team-member-profile .name {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
}

.our-team-section .team-profiles .team-member-profile .title {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    height: 30px;
    margin-bottom:10px;
}

.our-team-section .team-profiles .team-member-profile .company {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
}

@media screen and (max-width:768px) {
    .our-team-section {
        padding: 52px 32px;
        gap: 32px;
    }
}

@media screen and (max-width:425px) {
    .our-team-section .team-profiles {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        width: 100%;
    }

    .our-team-section .team-profiles .team-member-profile {
        width: 100%;
        height: 360px;

    }

    .our-team-section .team-profiles .team-member-profile img {
        width: 328px;
        height: 273px;
    }
}

@media screen and (max-width:325px) {
    .our-team-section .team-profiles .team-member-profile img {
        width: 228px;
        height: 213px;
    }
}