/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');*/

@media only screen and (max-width: 980px) {
.main-class img{
    width: 100%;
}

.main-class .customer {
    font-family: 'Noto Sans SC', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
}

.main-class .customer h2{
    text-align: center;
    padding: 30px 0;
}

.main-class .customer article {
    text-align: center;
    padding: 0;
}

.main-class .customer article .img-box {
    border-radius: 5%;
    overflow: hidden;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
}

.main-class .customer article p{
    padding: 15px 0;
    font-size: 17px;
    font-weight: 300;
}

.main-class .customer article h3 {
    font-size: -webkit-xxx-large;
}

.main-class .customer article h5{
    font-weight: 300;
}
}

@media only screen and (min-width: 1024px) {

.main-class .customer img{
    width: 220px !important;
}

.main-class .customer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    font-family: 'Noto Sans SC', sans-serif;
}

.main-class .customer h2{
    text-align: center;
    padding: 30px 0;
}

.main-class .customer article {
    text-align: center;
    padding: 0;
}

.main-class .customer article .img-box {
    border-radius: 5%;
    overflow: hidden;
    width: 220px;
    height: 220px;
}

.main-class .customer article p{
    padding: 15px 0;
    font-size: 17px;
    font-weight: 300;
}

}