#achievements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.achievement_item {
  width: 33%;
  position: relative;
}
.icon-top-left {
  position: absolute;
  top: 0;
  left: 0;
}

.achievement_item.bgBlue {
  background: #007ac3;
}
.achievement_item.bgDarkGreen {
  background: #009881;
}
.achievement_item.bgLightGreen {
  background: #85bc20;
}

.achievement_item_data {
  color: white;
  padding-left: 30%;
  padding-bottom: 15px;
  padding-right: 15px;
}
.achievement_item_data p {
  margin: 0;
}
.achievement_item_data .percent {
  font-size: 3em;
}
.achievement_item_data .text {
  font-size: 1.6em;
}


@media all and (max-width: 1200px) {
  .icon-top-left img {
    width: 80%;
    height: auto;
  }
}
@media all and (max-width: 992px) {
  img.sustainability {
    display: block;
    margin: auto;
  }
}
@media all and (max-width: 950px) {
  .icon-top-left img {
    width: 65%;
  }
}
@media all and (max-width: 900px) {
  .achievement_item_data .text {
    font-size: 1.2em;
  }
}
@media all and (max-width: 700px) {
  #achievements {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .achievement_item {
    width: 100%;
    margin-bottom: 4px;
  }
  .achievement_item_data {
    padding-left: 15%;
  }
}
@media all and (max-width: 550px) {
  .achievement_item_data {
    padding-left: 20%;
  }
}
@media all and (max-width: 400px) {
  .achievement_item_data {
    padding-left: 27%;
  }
}


.wrapper-logos > div {
  /* margin-bottom: 45px; */
}
.wrapper-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
justify-content: space-between;          
}
.wrapper-logos .margin-both-sides {
  margin: 0 20px;
}

@media all and (max-width: 900px) {
  .wrapper-logos .margin-both-sides {
    margin: 0 10px;
  }
}
@media all and (max-width: 768px) {
  .wrapper-logos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .wrapper-logos .margin-both-sides {
    margin: 20px;
  }
  .wrapper-logos > div {
   height: 100%;
  }
  
}