/*for use desktop screen*/
@media(min-width:768px){
.dis_play{
    display: flex;
  flex-wrap: wrap;
  justify-content: center; /* or space-evenly / space-between */
  
  padding: 20px;
  text-align: center;

}
.highlight-banner-text {
    min-width: 100px;
    max-width: 150px;
    font-weight: 500;
    padding: 10px;
   
}
.headingThird {
    font-size: 14px !important;
}

.highlight-banner-icon {
    margin-right: 10px;
    font-size: 20px;
    margin-left: 20px;
}
.highlight-banner-icon img {
    height: 35px;
}
.store-card{
    width: 20%;
}
}

/*for use mobile screen*/
@media(max-width:768px){
.dis_play{
    display: flex;
  flex-wrap: wrap;
  justify-content: center; /* or space-evenly / space-between */
  
  padding: 0px;
  text-align: center;

}
.highlight-banner-text {
    min-width: 10px;
    max-width: 90px;
    font-weight: 100;
    padding: 8px;
  
   
}
.headingThird {
    font-size: 8px !important;
}

.highlight-banner-icon {
    margin-right: 10px;
    font-size: 10px;
    margin-left: 20px;
}
.highlight-banner-icon img {
    height: 25px;
    
}
}