.contact-us {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
}

.contact-us button {
  cursor: pointer;
  height: max-content;
  background: #ffffff18;
  border-radius: 100%;
  padding: 1rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: ease 0.2s;
}

.contact-us button i {
  font-size: 2.5rem;
}

.contact-us button p {
  display: none;
}
.contact-us button:hover {
  border-radius: 25px;
  width: max-content;
}

.contact-us button:hover i {
  margin: 1rem;
}

.contact-us button:hover p {
  display: inline;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
}
