.formats__container {
  padding: 100px 60px;
}

.formats__title {
  display: flex;
  align-items: end;
}

.formats__title h2 {
  margin: 0;
}

.format__block {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 80px;
}

.format__block-item {
  display: flex;
  align-items: center;
  width: 40%;
  margin: 0 40px 80px 0;
}

.format__block-item--img {
  width: 200px;
  height: 200px;
  margin-right: 30px;
}

.format__block-item--img img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

.format__block-item--title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.format__block-item--text {
  font-size: 18px;
  line-height: 21px;
  color: #808080;
}

@media (max-width:1200px) {
  .format__block-item--img {
    width: 130px;
    height: 130px;
  }

  .format__block-item--img img {
    width: 130px;
    height: 130px;
  }

  .format__block-item--title {
    font-size: 18px;
  }

  .format__block-item--text {
    font-size: 14px;
  }

  .format__block-item {
    width: 45%;
    margin: 0 30px 60px 0;
  }
}

@media (max-width:996px) {
  .format__block {
    flex-direction: column;
    align-items: center;
  }

  .format__block-item {
    width: 60%;
    margin: 0 0 60px 0;
  }
}

@media (max-width:668px) {
  .formats__container {
    padding: 60px 20px;
  }

  .formats__title h2 {
    width: 100%;
    text-align: center;
  }

  .format__block-item {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .format__block-item--img,
  .format__block-item--img img {
    width: 80px;
    height: 80px;
  }

  .format__block-item--title {
    font-size: 16px;
  }

  .format__block-item--text {
    font-size: 12px;
  }
}