.socialFixed{
  position: fixed;
  bottom: 90px;
  right: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 63.375px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 11px 7px; 
  z-index: 9;
}
#whatsAppBtn {
  display: flex;
  justify-content: center;
  width: 32px;
  height: 32px;
  text-align: center;
  z-index: 1000;
  transition: all 0.5s ease 0s;
  border-radius: 100%;
}
a#whatsAppBtn:hover {
    cursor: pointer;
    box-shadow: 1px 8px 8px 0 rgba(42, 42, 42, 0.26);
}
#whatsAppBtn img {
    max-width: 100%;
}

#contactBtn {
  display: flex;
  justify-content: center;
  width: 32px;
  height: 32px;
  text-align: center;
  z-index: 1000;
  transition: all 0.5s ease 0s;
  border-radius: 100%;
  margin-bottom: 10px;
}
a#contactBtn:hover {
    cursor: pointer;
    box-shadow: 1px 8px 8px 0 rgba(42, 42, 42, 0.26);
}
#contactBtn img {
    max-width: 100%;
}

#scroll_button {
    display: inline-block;
    background-color: white;
    width: 48px;
    height: 48px;
    text-align: center;
    box-shadow: 1px 4px 8px 0 rgba(42, 42, 42, 0.26);
    font-size: 12px;
    border-radius: 100%;
    position: fixed;
    bottom: 160px;
    right: 30px;
    transition: background-color .3s, 
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: all 0.5s ease 0s;
  }
  #scroll_button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 48px;
    color: black;
  }
  #scroll_button:hover {
    cursor: pointer;
      bottom: 165px;
    box-shadow: 1px 8px 8px 0 rgba(42, 42, 42, 0.26);  
  }
  #scroll_button:active {
    background-color: grey;
  }
  #scroll_button.show {
    opacity: 1;
    visibility: visible;
  }