#advantages-block {
  background: white url("./images/bg.png");
  padding: 60px 0px;
}
#advantages-block .container .advantages-content .advantages-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
#advantages-block .container .advantages-content .advantages-wrapper .advantages-item {
  width: 270px;
}
#advantages-block .container .advantages-content .advantages-wrapper .advantages-item .advantage-icon {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#advantages-block .container .advantages-content .advantages-wrapper .advantages-item .advantage-icon img {
  position: relative;
}
#advantages-block .container .advantages-content .advantages-wrapper .advantages-item .advantage-icon::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background: #F07D10;
  border-radius: 2px;
  transform: rotate(-45deg);
}
#advantages-block .container .advantages-content .advantages-wrapper .advantages-item .advantage-item-title {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #3C4043;
  margin-top: 10px;
  margin-bottom: 5px;
}