@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 50px 0;
}
footer .container {
  z-index: 3;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1294117647);
  opacity: 0.9;
  z-index: -1;
}
footer img:not(.madeBy > img) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -3;
  transform: scaleX(-1);
}
footer .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
footer .grid .item h6 {
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
}
footer .grid .item ul li:not(:last-child) {
  margin-bottom: 5px;
}
footer .grid .item ul li a {
  font-size: 14px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease-in-out;
  display: block;
}
footer .grid .item ul li a:hover {
  color: var(--white);
  transform: translateX(3px);
}
footer .grid .item .social {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}
footer .grid .item .social a {
  padding: 10px;
  border: 1px solid var(--primary);
  border-radius: 50%;
}
footer .grid .item .social a svg {
  width: 24px;
  height: 24px;
  display: block;
}
@media only screen and (max-width: 991px) {
  footer .grid .item .social a svg {
    width: 20px;
    height: 20px;
  }
}
footer .grid .item .social a svg path {
  fill: var(--primary);
}
footer .grid .item .social a:hover {
  background: var(--primary);
}
footer .grid .item .social a:hover svg path {
  fill: var(--white);
}
footer .grid .item:last-child {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .grid .item:last-child .btn:not(.btn-group > .btn) {
  width: 100%;
  margin-top: 24px;
}
footer .grid .item:last-child .btn-group {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
footer .grid .item:last-child .btn-group .btn {
  flex: 1;
  text-align: center;
}
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}
footer .footer-bottom .madeBy {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .footer-bottom .madeBy p {
  font-size: 12px;
}
footer .footer-bottom .links {
  display: flex;
  gap: 20px;
}
footer .footer-bottom .links li a {
  color: rgb(102, 102, 102);
  text-transform: capitalize;
  font-size: 12px;
}/*# sourceMappingURL=footer.css.map */