
.bana {
    display: flex;
    width: 100%;
    /*margin:0 auto;*/
    background-color: #f0f0f0;
    
}
.rogo-banner{
	
    display: flex;
    margin-right: 10px;
	flex-wrap:wrap;
    padding: 5px;
    justify-content: space-evenly;
    object-fit: cover;
}

.rogo-banner li {
	list-style: none;
    flex-basis: 260px;
    margin-bottom: 20px;
    padding: 5px;
    background-color: #fff;
    border: 1px solid solid #ccc;
    box-shadow: 1px 1px 2px #297972;
    
}
@media (max-width:768px) {
    
    .rogo-banner {
      display: flex;
      flex-direction: row;
      align-items: center;
      /*padding-left: 150px;*/
      justify-content: center;
    }
    .rogo-banner li {
        list-style: none;
        flex-basis: 260px;
        margin-bottom: 20px;
        
        background-color: #fff;
        border: 1px solid solid #ccc;
        box-shadow: 1px 1px 2px #297972;
    }
}