.common-banner {
    background: url('../img/ecosystem/banner.png') no-repeat center;
    background-size: cover;
    background-position: center center;
}

.overview{
    
    max-width: 139.62rem;
    margin: 5rem auto 0;
    display: flex;
    justify-content: space-between;
    > div {
        width: 100%;
        max-width: 45.42rem;
        img {
            width: 6rem;
            height: 6rem;
        }
        .label {
            margin-top: 2rem;
            line-height: 3.7rem;
            font-weight: 500;
            font-size: 2.6rem;
        }

        .text {
            margin-top: 1.8rem;
            line-height: 3rem;
            font-size: 2rem;
            color: #757575;
        }
    }
}

.future{
    margin-top: 8rem;
    padding: 14.4rem 26.2rem;
    max-height: 60rem;
    height: 100%;
    background: url('../img/ecosystem/bg.png') no-repeat;
    background-size: cover;
    background-position: center center;
    > div {
        max-width: 139.6rem;
        margin: 0 auto;
    }
    .text {
        margin-top: 2rem;
        max-width: 77.9rem;
        width: 100%;
        font-size: 2.2rem;
        line-height: 3.2rem;
        color: #FFFFFF;
    }
    .title {
        font-size: 5rem;
        font-weight: 500;
        color: #FFFFFF;
        line-height: 8rem;
    }
}

@media screen and (max-width: 750px){
    .content {
        .future{
            padding: 14.4rem 6rem;
        }
        
    }

}
@media screen and (max-width: 580px){
    .content {
        .overview{
            flex-wrap: wrap;
            justify-content: center;
            > div {
                margin-top: 2rem;
                padding: 0 2rem;
                width: 100%;
            }
        }
        
    }

}