.footer-clean {
  padding: 50px 0;
  /* background-color: #00bef2; */
  color: #7f7f7f;
  text-align: center;
}

.footer-clean h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 1.5rem;
}

.footer-clean ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 0;
  color: #7f7f7f;
}

.footer-clean ul li span {
  color: #7f7f7f;
}

.footer-clean ul a {
  color: inherit;
  text-decoration: none;

  /* opacity:0.8; */
}

.footer-clean ul li a .line {
  border-bottom: 2px solid white;
  height: 20px;
  background-color: #fdf3f5;

}



/* text pops up when icon is in hover state */

.footerSocial_icons:hover span {
  /* bottom:50px; */
  visibility: visible;
  opacity: 1;
  left: 60px;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #0087ca;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #00bef2;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

@media (max-width:767px) {
  .footer-clean .item {
    text-align: center;
    padding-bottom: 20px;

  }
}

@media (max-width: 768px) {
  .footer-clean .item.social {
    text-align: center;
  }
}

.footer-clean .copyright {
  /* margin-top:14px; */
  margin: 10px 0px;
  padding: 10px 0px;
  font-size: 1.2rem;
  /* background-color: #7f7f7f; */
  color: #00bef2;
  background-color: #fff;
  bottom: -10px;
  position: fixed;
  box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.25);
  /* opacity:0.6; */
}

@media (max-width: 1050px) {
  .footer-clean .copyright {
    bottom: 0px;
  }

}