
/* Funder Carousel */
.logo-splide-slider .splide__slide {
    display: flex;
    justify-content: center;
}

a.logo-link {
    display: inline-flex;
}
#funders .wide-container{
    gap: 2rem; 
    display: flex; 
    flex-direction: column;
}
.logo-splide-slider img.logo-img{
    max-height:64px;
}

.logo-splide-slider img.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-splide-slider .splide__pagination {
    bottom: -2.5em;
}

#services .subtitle-text, #process .subtitle-text, #funders .subtitle-text {
    font-size: calc(3.8vw * var(--scale));
}

/* home page custom load more button */
.load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: calc(4.3vw* var(--scale));
}
.custom-load-more-btn {
    width: max-content;
    cursor: pointer;
}

@media screen and (max-width: 479px) {
    .load-more-wrapper {
        margin-top: 43px;
    }
    .logo-splide-slider {
        margin-top: 30px;
    }

    .logo-splide-slider .splide__arrows.splide__arrows--ltr {
        position: absolute;
        bottom: -100px;
        width: 100%;
        height: 50px;
    }

    .logo-splide-slider .splide__arrow--prev {
        left: 40%;
    }

    .logo-splide-slider .splide__arrow--next {
        right: 40%;
    }

    .logo-splide-slider .splide__pagination {
        bottom: -1.5em;
    }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    .logo-splide-slider .splide__arrows.splide__arrows--ltr {
        position: absolute;
        bottom: -50px;
    }

    .logo-splide-slider {
        margin-top: 50px;
    }

    .logo-splide-slider .splide__arrow--prev {
        left: 35vw;
    }

    .logo-splide-slider .splide__arrow--next {
        right: -55vw;
    }
}

@media screen and (min-width: 480px) and (max-width: 991px) {
    .load-more-wrapper {
        margin-top: 48px;
    }
    .logo-splide-slider  .splide__track {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Styles for large desktop */
@media (min-width: 1439px) {  
    #services .subtitle-text, #process .subtitle-text, #funders .subtitle-text {
        font-size: calc(2.5vw * var(--scale));
    }
}

/* Styles for tablet */
@media (max-width: 991px) {
    #services .subtitle-text, #process .subtitle-text, #funders .subtitle-text {
        font-size: calc(4vw * var(--scale));
    }
}

/* Styles for mobile */
@media (max-width: 479px) {
    #services .subtitle-text, #process .subtitle-text, #funders .subtitle-text {
        font-size: calc(6vw * var(--scale));
    }
}