#funding-trees {
    position: relative;
    overflow: hidden;
}

#funding-trees .kt-row-column-wrap {
    position: relative;
    z-index: 2;
    padding-bottom: 180px !important;
}

.ft-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: #4A7C59;
    z-index: 1;
    pointer-events: none;
}

.ft-forest {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 1rem;
    z-index: 2;
    pointer-events: none;
}

.ft-tree {
    display: block;
    width: auto;
    flex-shrink: 0;
    transform: scaleY(0);
    transform-origin: bottom center;
}

.ft-forest.is-visible .ft-tree {
    animation: ft-grow 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: var(--ft-delay, 0s);
}

@keyframes ft-grow {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
    .ft-forest.is-visible .ft-tree { animation: none; transform: scaleY(1); }
}

@media (max-width: 768px) {
    #funding-trees .kt-row-column-wrap {
        padding-bottom: 110px !important;
    }

    .ft-ground {
        height: 20px;
    }

    .ft-forest {
        bottom: 20px;
    }
}
