

/* ================= LEFT SOCIAL BAR ================= */
.left-social-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

/* COMMON BUTTON STYLE */
.social-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

/* COLORS */
.fb { background: #1877f2; }
.insta { background: #e4405f; }
.linkedin { background: #0077b5; }
.youtube { background: #ff0000; }

.call { background: #007bff; }
.whatsapp { background: #25d366; }

/* HOVER EFFECT */
.social-btn:hover {
  width: 55px;
}

/* DIVIDER */
.divider {
  height: 10px;
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

  .left-social-bar {
    top: auto;
    bottom: 20px;
    left: 10px;
    transform: none;
  }

  .social-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .social-btn:hover {
    width: 45px;
  }
}
.rainbow-footer .container {
  padding: 0 !important;
}

.rainbow-footer * {
  box-sizing: border-box;
}