footer {
  border-top: 1px solid var(--layoutBorderGray);
  padding: 30px 0;
  background-color: var(--whiteColor);
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}
footer .footer-section {
  margin: auto;
}
footer .copy-right .social-link-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  column-gap: 10px;
  margin-bottom: 5px;
}
footer .copy-right .social-link-list li {
  display: inline-block;
}
footer .copy-right .social-link-list li a {
  display: inline-block;
}
footer .copy-right .social-link-list li a i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 18px;
  color: var(--primary-Color);
  background-color: rgba(241, 77, 93, 0.0823529412);
  transition: var(--transition);
  display: inline-block;
  border-radius: 50px;
}
footer .copy-right .social-link-list li a:hover i {
  background-color: var(--primary-Color);
  color: var(--whiteColor);
}
footer .copy-right .copy-right-text p {
  color: var(--bodyColor);
  margin-bottom: 0;
}
footer .copy-right .copy-right-text p a {
  color: var(--primary-Color);
  font-weight: 500;
}
footer .copy-right .copy-right-text p a:hover {
  color: var(--secondary-Color);
}
footer .pages-list {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
footer .pages-list li {
  display: inline-block;
}
footer .pages-list li a {
  color: var(--bodyColor);
}
footer .pages-list li a:hover {
  color: var(--primary-Color);
  transition: 0s;
}
footer .payment-methods {
  display: flex;
  justify-content: flex-end;
}
footer .payment-methods .horizontal-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 10px;
}

@media only screen and (max-width: 767px) {
  footer .copy-right {
    margin-bottom: 10px;
  }
  footer .copy-right .social-link-list {
    justify-content: center;
  }
  footer .payment-methods {
    margin-bottom: 10px;
  }
  footer .payment-methods .horizontal-list {
    margin: auto;
  }
  footer .pages-list {
    text-align: center;
    justify-content: space-evenly;
    margin-bottom: 10px;
  }
}