/* Floating Call Icons */
.floating-contact-buttons {
    position: fixed;
    right: 0;
    top: 160px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 12px 9px;
    background-color: rgba(0, 0, 0, 0.5);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
@media screen and (max-width: 767px) {
  .floating-contact-buttons {
    top: 40px;
  }
}
.floating-contact-buttons a {
    display: block;
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}
.floating-contact-buttons a:hover {
    transform: scale(1.12);
}
.floating-contact-buttons img {
    display: block;
    width: 100%;
    height: 100%;
}
/* Floating Call Icons */