.investor-container *{
    box-sizing: border-box;
}
.investor-container {
    display: flex;
    flex-direction: column;
    font-family: inherit, sans-serif;
}

.investor-row {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.investor-card {
    width: 48%;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
}

.investor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 8px;
}

.investor-role {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.investor-info {
    color: #6b6b6b;
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 500;
}

.investor-sum {
    font-size: 24px;
    font-weight: 700;
    margin: 5px 0;
    color: #2175ff;
}

.investor-quote {
    width: 100%;
    background: #f4f7ff;

}

.investor-text {
    color: #6b6b6b;
    margin-top: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
}

@media screen and (max-width: 480px) {
    .investor-row {
        flex-direction: column;
    }

    .investor-card {
        width: 100%;
        margin: 0;
    }
}
