.advantages{
  position: relative;
  min-height: 100vh;
  padding: 144px 0;
  background-color: #f4f5f4;
}
.advantages__container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.advantages__left-block{
  display: flex;
  width: 50%;
  margin-right: 50%;
  flex-direction: column;
}
.advantages__right-block{
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  bottom: 0;
  right: 0;
  min-height: 100%;
  width: 50%;
  overflow: hidden;
}

.advantages__svg{
  width: 56px;
  height: 57px;
  fill:#0099ff;
  margin-right: 24px;
}
.advantages__text{
  font-size: 20px;
  color: #666;
  line-height: 170%;
  margin-top: 16px;
}
.advantages__title{
  font-size: 34px;
  line-height: 170%;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.advantages__h2{
  font-size: 40px;
  line-height: 56px;
  font-weight: 500;
  text-align:left;
}
.advantages__item{
  margin-top: 40px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width:1000px){
  .advantages__left-block{
    width: 100%;
    margin-right: 0px;
  }
  .advantages{
    padding: 64px 0px;
  }
  .advantages__right-block{
    display: none;
  }
  .advantages__h2{
    font-size: 32px;
    margin-bottom: 48px;
    line-height: 1.4;
  }
  .advantages__title{
    font-size: 22px;
  }
  .advantages__text{
    font-size: 18px;
  }
}