/* Start: Add a floating Instagram button to the page */
.custom-insta-float {
  position: fixed;
  right: 32px;
  bottom: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f58634;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
  z-index: 5;
}

@media (max-width: 768px) {
  .custom-insta-float {
    right: 16px;
    bottom: 92px;
    width: 48px;
    height: 48px;
  }
}

.custom-insta-float svg {
  width: 28px;
  height: 28px;
  display: block;
}
/* End: Add a floating Instagram button to the page */