.about-block {
  position: relative;
  margin: 50px 0;
}
.about-block .title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 25px;
}
.about-block .image {
  position: absolute;
  left: 0;
  width: 45%;
  height: 500px;
  object-fit: cover;
}
.about-block .wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-block .wrapper .empty {
  width: 50%;
  min-height: 500px;
}
.about-block .wrapper .info {
  width: 48%;
}
.about-block .wrapper .info .text {
  margin-bottom: 30px;
}
.about-block .text {
  font-size: 16px;
}
.about-block .wrapper .info .text strong {
  font-weight: 700;
}
.about-block .wrapper .info .text p {
  font-weight: 300;
  line-height: 170% !important;
}
.about-block .wrapper .info .advantages .advantage {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.about-block .wrapper .info .advantages .advantage .icon {
  width: 20%;
  min-width: 20%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-align: center;
  align-items: center;
  justify-content: center;
}
.about-block .wrapper .info .advantages .advantage .text {
  padding-left: 20px;
}
.about-block .wrapper .info .advantages .advantage .text strong {
  font-weight: bold;
}
.about-block .advantages-title {
  margin: 50px 0 20px;
}
.about-block .advantages {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 30px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .about-block .image {
    height: 300px;
    width: 100%;
    position: relative;
  }
  .about-block .wrapper .empty {
    display: none;
  }
  .about-block .wrapper .info {
    width: 100%;
  }
  .about-block .wrapper .dop-advantages .advantage {
    width: 100%;
  }
  .about-block .advantages {
    grid-template-columns: repeat(2,1fr);
  }
}
@media screen and (max-width: 768px) {
  .about-block .image {
    height: auto;
    width: 100%;
    position: relative;
  }
  .about-block .wrapper .empty {
    display: none;
  }
  .about-block .wrapper .info {
    width: 100%;
  }
  .about-block .wrapper .dop-advantages .advantage {
    width: 100%;
  }
  .about-block .advantages {
    grid-template-columns: 1fr;
  }
}
