.social-block {
  padding: 46px 0;
  background-color: #adc0a4
}
.social-block__container {
  display: flex;
  align-items: center;
  justify-content: space-between
}
.social-block__title {
  padding-right: 20px;
  font-family: Muller,sans-serif;
  font-weight: 700;
  font-size: 75px;
  line-height: 100%;
  color: #fff
}
.social-block__list {
  display: flex;
  gap: 24px
}
.social-block__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: #00963a
}
@media (max-width:1550px) {
  .social-block__title {
    font-size: 55px
  }
}
@media (max-width:1200px) {
  .social-block__title {
    font-size: 45px
  }
  .social-block__item {
    width: 58px;
    height: 58px
  }
  .social-block__item svg {
    width: 32px;
    height: 32px
  }
}
@media (max-width:767px) {
  .social-block {
    padding: 20px 0 30px
  }
  .social-block__container {
    flex-direction: column
  }
  .social-block__title {
    margin-bottom: 20px;
    padding-right: 0;
    font-size: 28px;
    text-align: center
  }
  .social-block__list {
    gap: 20px
  }
}