#call_button {
  width: auto;
  height: auto;
  background-color: #3d7898;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 9997;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 15px 25px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin: 30px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  transition: transform 0.5s;
}

#call_button i {
  margin-right: 8px;
  margin: 0px 10px 0px 0px;
  padding: 0px;
  font-size: 18px;
}

#call_button:hover {
  transform: scale(1.1);
}

@media (max-width: 1320px) {
  #call_button {
    width: 100%;
    border-radius: 0px;
    margin: 0px;
    padding: 20px 25px;
    font-weight: 400;
    font-size: 16px;
  }

  #call_button i {
    padding: 0px;
    font-size: 16px;
  }

  #call_button:hover {
    transform: none;
  }
}
