.b-button-blocks {
  display: flex;
  flex-flow: row wrap;
  column-gap: 24px;
  row-gap: 10px;
}
.b-button-blocks__button-logo {
  display: flex;
}
.b-button-blocks__button {
  display: flex;
  max-width: 380px;
  width: 100%;
  font-family: "Open Sans";
  font-size: 12px;
  color: #000;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 100px;
  background: #fff;
  border: 1.5px solid #0DB8F1;
  align-items: center;
  column-gap: 10px;
  transition: background 300ms ease-in-out;
}
@media screen and (min-width: 686px) {
  .b-button-blocks__button {
    padding: 14px 30px;
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  .b-button-blocks__button {
    font-size: 16px;
  }
}
.b-button-blocks__button svg path {
  transition: fill 300ms ease-in-out;
}
.b-button-blocks__button:link, .b-button-blocks__button:hover, .b-button-blocks__button:visited, .b-button-blocks__button:focus {
  text-decoration: none;
  color: #000;
}
.b-button-blocks__button:active, .b-button-blocks__button:hover {
  background-color: #0DB8F1;
}
.b-button-blocks__button--telegram:active svg path, .b-button-blocks__button--telegram:hover svg path {
  fill: #fff;
}
