/* footer css start */
footer {
  color: #fff;
}

footer a {
  color: #fff;
  font-size: 14px;
}

footer a:hover {
  color: #fff;
}

footer .heading {
  font-size: var(--fs-500);
  font-weight: 600;
  color: #fff;
}

.footer-top {
  background: #484848;
  padding: 40px 0;
}

.footer-top .heading {
  margin-bottom: 20px;
  color: #fff;
}

.footer-top ul.columns{
  flex: 1 1 0;
}

.footer-top ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-top ul li a {
  font-weight: 400;
}

.footer-top .social ul {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.footer-top .social img {
  width: 40px;
}

.footer-top .contact-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-top .contact-footer a {
  display: block;
  padding: 10px 20px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  overflow-wrap: anywhere;
}

.footer-top .contact-footer a span {
  margin-right: 6px;
  font-weight: 600;
  font-size: var(--fs-400);
}

.footer-top ul.columns a {
  position: relative;
}

.footer-top ul.columns a:hover {
  text-decoration: none;
}

.footer-top ul.columns a:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #fff;
  bottom: -2px;
  transition: all 0.3s ease-in-out;
}

.footer-top ul.columns a:hover:before {
  width: 100%;
}

.footer-bottom {
  background: #000;
  padding: 40px 0;
}

.footer-bottom a {
  position: relative;
}

.footer-bottom a:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #fff;
  bottom: -2px;
  transition: all 0.3s ease-in-out;
}

.footer-bottom a:hover:before {
  width: 100%;
}

.footer-bottom ul {
  display: flex;
  align-items: center;
  gap: 2px 15px;
  flex-flow: wrap;
}

.footer-bottom .credit {
  text-align: end;
  text-align: center;
}

.footer-bottom .credit img {
  width: 120px;
}

.footer-bottom .credit p {
  color: #fff;
  font-size: var(--fs-500);
  font-weight: 600;
  margin-top: 8px;
}

.footer-bottom .visa {
  text-align: center;
}

.footer-bottom .visa img {
  width: 100%;
}

.footer-bottom .copyright {
  display: flex;
  align-items: center;
  font-size: var(--fs-400);
  gap: 2px 15px;
  margin-top: 20px;
  flex-flow: wrap;
}

.footer-bottom .copyright .dot {
  height: 6px;
  width: 6px;
  background: #a8a8a8;
  border-radius: 100%;
}

.footer-bottom .copyright .h-hr {
  height: 16px;
  width: 1px;
  background: #a8a8a8;
}

.footer-bottom .copyright a {
  text-decoration: none;
}

.footer-bottom .main_address {
  margin-top: 10px;
  display: flex;
  align-items: start;
  flex-direction: column;
}

.footer-bottom .main_address span {
  margin-bottom: 6px;
}

.footer-bottom .main_address a {
  font-weight: 400;
}

.footer-columns-wrap{
  display: flex;
  gap: 14px;
}

@media (max-width: 468px) {
  .footer-columns-wrap{
    flex-direction: column;
  }
}

.wsp-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  cursor: pointer;
}

.wsp-whatsapp svg {
  height: 44px;
  width: 44px;
  min-width: 44px;
}

/* footer css end */

