
.footer_super_class {
  
  
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 0;
  
  /* Remove margin-top */
  
}

.footer_common_container {

  width: 90%;
  margin: 0 auto;
  
}
.footer {
  background: var(--color-purple);
  line-height: 1.5;
}

.footer .footer-contact i {
  width: 18px;
  text-align: center;
  opacity: .9;
}

.footer .social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  text-decoration:none; 
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}

.footer .social-icon i {
    
    color:var(--color-orange)!important;
}

.footer .social-icon:hover {

  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
}



@media (max-width: 767.98px) {
  .footer .footer-contact li { margin-bottom: .2rem; }
  .footer .social-icon { width: 34px; height: 34px; text-decoration:none; }
}

  