.bk-contacts {
  background-color: #fffdf2;
  border: 1px solid #fdd71c;
  box-sizing: border-box;
  border-radius: 5px;
  margin: 10px 22px;
  padding: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
.bk-contacts__bk {
  width: 150px;
  display: flex;
  flex: none;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bk-contacts__bk::after {
  font-family: "Sportbet";
  content: "\e927";
  font-size: 100px;
  height: 100px;
  position: relative;
  top: 0;
  display: flex;
  line-height: normal;
  color: #fdd71c;
  left: 0;
  align-items: center;
}
.bk-contacts__bk img {
  border-radius: 5px;
  margin: 10px 0;
}
.bk-contacts__items {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 170px;
}
.bk-contacts__item {
  position: relative;
  width: 48%;
  line-height: normal;
  margin: 5px 0;
}
.bk-contacts__label {
  font-size: 14px;
  font-weight: bold;
}
.bk-contacts__value {
  word-break: break-word;
  font-size: 13px;
}

@media screen and (max-width: 1024px) {
  .bk-contacts__bk img {
    margin: 15px 0;
  }
  .bk-contacts__items {
    flex-direction: row;
    height: auto;
    padding: 0 15px;
  }
  .bk-contacts__item {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .bk-contacts__bk {
    width: 100px;
  }
}
