@charset "UTF-8";
/* CSS Document */
.iconox4 {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: top;
    width: 50vw;
    margin: auto;
    margin-bottom: 15px; 
}
.itemx4 {
    color: white;
    text-align: center;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    margin: 0 10px 0 10px;
    width: 25%;
}
.itemx2 {
    color: white;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin: 0 10px 0 10px;
    width: 35%;
}


@media (max-width: 959px) and (min-width: 720px) {
    .iconox4 {
        width: 70vw;
        margin: auto;        
    }
    .itemx4 {
        width: 25%;
    }

}

@media (max-width: 719px) and (min-width: 540px) {
    .iconox4 {
        width: 90vw;
        margin: auto;        
    }
    .itemx4 {
        width:35%;
    }
}

@media (max-width: 539px) {
    .iconox4 {
        width: 90vw;
        margin: auto; 
        flex-flow: row wrap;       
    }
    .itemx4 {
        width:50%;
        margin: 20px 0 ;
    }

}