.soil-investors {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 10% 0;
    color: #fff;
    overflow: hidden;
}

.soil-investors-overlay {
    position: absolute;
    inset: 0;
    opacity: .75
}

.soil-investors-inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px
}

.soil-investors-graphic {
    flex: 0 0 48%;
    height: 520px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.soil-investors-box {
    flex: 1;
    background: linear-gradient(180deg, rgba(3, 12, 11, 0.6), rgba(2, 8, 7, 0.55));
    border-radius: 18px;
    padding: 48px;
    border: 1px solid rgba(0, 229, 163, 0.06);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
    position: relative
}

.soil-investors-kicker {
    font-family: "Aldrich", Sans-serif;
    font-size: 14px;
    color: #00E5A3;
    letter-spacing: .4em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.soil-investors-heading {
    font-family: "Aldrich", Sans-serif;
    font-size: 50px;
    line-height: 1.02;
    margin: 0 0 18px;
    text-transform: uppercase
}

.soil-investors-heading .highlight {
    display: block;
    font-size: 50px
}

.soil-investors-divider {
    height: 4px;
    width: 80%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 163, 0.5), transparent);
    margin: 8px 0 22px;
    border-radius: 2px
}

.soil-investors-body {
   font-family: "Aldrich", Sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0;
    text-align: justify;
}

/* box rim glow */
.soil-investors-box:after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 14px;
    box-shadow: 0 0 40px rgba(0, 229, 163, 0.05) inset;
    pointer-events: none
}

/* animations 
.soil-anim-fade {
    opacity: 0;
    transform: translateY(6px)
}*/

.soil-anim-fade.soil-animated {
    animation: invFade .8s forwards
}

@keyframes invFade {
    to {
        opacity: 1;
        transform: none
    }
}

.soil-anim-slide {
    opacity: 0;
    transform: translateY(18px)
}

.soil-anim-slide.soil-animated {
    animation: invSlide .9s forwards
}

@keyframes invSlide {
    to {
        opacity: 1;
        transform: none
    }
}

@media (max-width:900px) {
    .soil-investors-inner {
        flex-direction: column
    }

    .soil-investors-graphic {
        width: 90%;
        height: 320px
    }

    .soil-investors-box {
        width: 100%;
        padding: 28px;
        margin-top: 20px
    }
}