.vision-box{
  background-color: white;
  background-image: url(../images/culture-bg.png);  
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  border-radius: 8px;
  box-shadow: 2px 0px 4px 0px rgba(0, 0, 0, 0.08);  
  padding: 30px 40px 50px;
}
.vision-box ul li{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.vision-box ul li:last-of-type{
  margin-bottom: 0px;
}
.vision-box ul li>div:first-of-type{
  flex-shrink: 0;
  width: 140px;
  background: #024acc;
  border-radius: 8px;

  font-size: 18px;  
  color: #FFFFFF;

  opacity: 0.75;
  
  text-align: center;
  line-height: 40px;

  margin-right: 25px;
}
.vision-box ul li>div:last-child{
  flex-shrink: 1;
  flex-grow: 1;
  color: #333;
  font-size: 16px;
}

@media screen and (max-width: 1080px) {
  .vision-box{
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    background-size: auto 50%;
  }
  .vision-box ul li>div:last-child{
    font-size: 0.3rem;
  }
  .vision-box ul li>div:first-of-type{
    font-size: 0.32rem;
    width: 2rem;
    line-height: 2;
  }
}