#social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 22px;
  background: #F7F6F5;
}

#social .row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#social .logo {
  width: 112px;
  height: 70px;
  object-fit: contain;
}

#social .social_text {
  text-align: left;
  word-wrap: break-word;
  margin-right: 20px;
  width: 256px;
  margin-right: 35px;
  margin-left: 35px;
  font-size: 14px;
}

#social .block_social {
  display: flex;
  flex-direction: row;
  margin-right: 50px;
}

#social .block_social > a {
  margin-right: 16px;
}

#social .block_social > a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  #social {
    flex-direction: column;
    padding: 0 44px;
  }

  #social .row {
    width: 100%;
  }

  #social .social_text {
    width: 100%;
  }
  #social .social_text {
   margin-left: 24px;
  }

  #social .block_social {
    margin-right: 72px;
  }

  #social .block_social > a {
    margin-right: 10px;
  }

  #social .row:last-of-type {
    margin-top: 38px;
    margin-bottom: 4px;
    justify-content: center;
  }
}