.social {
  color: rgb(217, 217, 217);
  display: flex;
  align-items: center;
  gap: 30px;
}
.social__tel {
  text-wrap: nowrap;
  font-family: "Ermilov";
  font-size: 27px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 10px;
  text-transform: uppercase;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  transition: all 0.3s;
}
.social__tel:hover {
  color: rgb(0, 0, 0);
  background-color: rgb(217, 217, 217);
}
.social__link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 52px;
  min-height: 52px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  transition: all 0.3s;
}
.social__link:hover {
  background-color: rgb(217, 217, 217);
}
.social__link:hover svg {
  fill: rgb(0, 0, 0);
}
.social a {
  cursor: pointer;
}

@media (max-width: 992px) {
  .social {
    scale: 0.8;
  }
}
@media (max-width: 530px) {
  .social {
    scale: 0.7;
  }
  .social__tel {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .social {
    scale: 0.7;
    justify-content: center;
  }
  .social__tel {
    width: 80%;
  }
}