@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
footer {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
@media only screen and (max-width: 540px) {
  footer {
    margin-bottom: 64px;
  }
}
footer .footer-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
footer .footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
footer .footer-content {
  padding: 60px 0 40px;
  position: relative;
  z-index: 1;
}
footer .footer-content .footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
@media (max-width: 991px) {
  footer .footer-content .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  footer .footer-content .footer-grid {
    gap: 40px;
  }
}
footer .footer-content .logo-section .social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
footer .footer-content .logo-section .social a {
  padding: 10px;
  border: 1px solid var(--white);
  border-radius: 50%;
}
footer .footer-content .logo-section .social a svg {
  width: 20px;
  height: 20px;
  display: block;
}
footer .footer-content .logo-section .social a svg path {
  fill: var(--white);
}
footer .footer-content .logo-section .social a:hover {
  background: var(--primary);
  border: 1px solid var(--primary);
}
footer .footer-content .logo-section .social a:hover svg path {
  fill: var(--black);
}
footer .footer-content .logo-section .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer .footer-content .logo-section .logo img {
  height: 85px;
  width: auto;
}
footer .footer-content .logo-section .logo p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 265px;
  margin: 0;
}
footer .footer-content .links-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  footer .footer-content .links-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  footer .footer-content .links-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
footer .footer-content .links-section .links-group h6 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #ffffff;
}
footer .footer-content .links-section .links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-content .links-section .links-group ul li {
  margin-bottom: 10px;
  transition: all 0.3s ease-in;
}
footer .footer-content .links-section .links-group ul li:hover {
  transform: translateX(2px);
}
footer .footer-content .links-section .links-group ul li:last-child {
  margin-bottom: 0;
}
footer .footer-content .links-section .links-group ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
footer .footer-content .links-section .links-group ul li a:hover {
  color: #ff8a3e;
  opacity: 1;
}
footer .footer-content .links-section .links-group .subscribe-form p {
  font-size: 16px;
  color: rgb(255, 255, 255);
  margin-bottom: 15px;
  line-height: 1.5;
  font-weight: 500;
}
footer .footer-content .links-section .links-group .subscribe-form .subscribe-input {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-content .links-section .links-group .subscribe-form .subscribe-input input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 4px;
  width: 100%;
  transition: all 0.3s ease;
}
footer .footer-content .links-section .links-group .subscribe-form .subscribe-input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}
footer .footer-content .links-section .links-group .subscribe-form .subscribe-input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}
footer .footer-content .links-section .links-group .subscribe-form .subscribe-input input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}
footer .footer-content .links-section .links-group .subscribe-form .form .form-group {
  margin-bottom: 30px;
}
footer .footer-content .links-section .links-group .subscribe-form .form .form-group input {
  font-family: "Inter", sans-serif;
  color: var(--white);
}
footer .footer-content .links-section .links-group .subscribe-form .form .form-group label {
  color: var(--white);
  font-family: "Inter", sans-serif;
  opacity: 0.7;
}
footer .footer-content .links-section .links-group .subscribe-form .form .form-group::before {
  background: var(--gray);
}
@media only screen and (max-width: 540px) {
  footer .footer-content .links-section .links-group .subscribe-form .form .btn-fill {
    width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  footer .footer-content .links-section .links-group .subscribe-form .form .btn-fill span {
    margin: 0 auto;
  }
}
footer .footer-bottom {
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
footer .footer-bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
footer .footer-bottom .footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 768px) {
  footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 540px) {
  footer .footer-bottom .footer-bottom-content {
    gap: 5px;
  }
}
footer .footer-bottom .footer-bottom-content p {
  font-size: 12px;
  color: rgb(255, 255, 255);
  margin: 0;
  font-weight: 300;
}
footer .footer-bottom .footer-bottom-content .credits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
footer .footer-bottom .footer-bottom-content .credits p {
  font-size: 12px;
  color: rgb(255, 255, 255);
  font-weight: 300;
}
footer .footer-bottom .footer-bottom-content .credits .prettify-logo {
  height: 20px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
footer .footer-bottom .footer-bottom-content .credits .prettify-logo:hover {
  opacity: 1;
}/*# sourceMappingURL=footer.css.map */