.main{
    flex-direction: row;
    width: 100%;
    padding: 40px 10%;
    flex-flow: wrap;
    justify-content: start;
}

.cell{
    width: 25%;
    flex-direction: column;
    align-items: center;
    margin-bottom: 65px;
}

.cell img{
    width: 275px;
    height: 380px;
    object-fit: cover;
    border-radius: 3%;
    margin-bottom: 10px;
}

.name{
    font-size: 24px;
    font-weight: 400;
    margin: 6px 0;
}

.desc{
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    padding: 0 10px;
}

.maintext{
    font-size: 48px;
    width: 100%;
    justify-content: center;
    margin-bottom: 65px;
    font-weight: 300;
}

@media only screen and (max-width: 1600px) {

    .main{
        padding: 40px 1%;
    }

}

@media only screen and (max-width: 1400px) {

    .cell{
        width: calc(100%/3);
    }

}

@media only screen and (max-width: 1000px) {

    .cell{
        width: 50%;
    }

    .maintext{
        font-size: 44px;
    }

}

@media only screen and (max-width: 640px) {

    .cell{
        width: 100%;
    }

    .maintext{
        font-size: 36px;
        margin-bottom: 55px;
    }

}