.buttons {
  display: flex;
  z-index: 10;
  right: 1rem;
  bottom: 1rem;
  position: fixed;
  flex-direction: column;
  gap: 16px;
}

.telephone-1 {
  display: flex;
  width: 60px;
  height: 60px;
  background-color: rgb(69, 96, 185);
  border-radius: 9999%;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.61);
  transition: opacity 0.3s ease-in-out;
}

.telephone-1:hover {
  opacity: 0.7;
}

.telephone-1 img {
  width: 35px;
  height: 35px;
}

.whatsapp-1 {
  display: flex;
  width: 60px;
  height: 60px;
  background-color: rgb(22, 219, 65);
  border-radius: 9999%;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.61);
  transition: opacity 0.3s ease-in-out;
}

.whatsapp-1:hover {
  opacity: 0.7;
}

.whatsapp-1 img {
  width: 35px;
  height: 35px;
}

@media (min-width: 768px) {
  .telephone-1 {
    width: 75px;
    height: 75px;
  }

  .whatsapp-1 {
    width: 75px;
    height: 75px;
  }
}
