/* [project]/app/components/global/Footer.scss.css [app-client] (css) */
.site-footer {
  color: #333;
  font-size: .9rem;
  line-height: 1.6;
  margin-top: 2rem;
}

.site-footer .footer-main {
  background: linear-gradient(#fff, #f8f9fa);
}

.site-footer .footer-main .container {
  max-width: 1400px;
  margin: 0 auto;
}

@media (width <= 768px) {
  .site-footer .footer-main .container {
    padding: 0 1.5rem;
  }
}

.site-footer .footer-main .footer-top {
  padding-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid #0000000d;
}

@media (width <= 992px) {
  .site-footer .footer-main .footer-top {
    flex-direction: column;
    padding: 3rem 0 2rem;
  }
}

.site-footer .footer-main .footer-top .footer-intro {
  flex: 1;
  min-width: 280px;
}

.site-footer .footer-main .footer-top .footer-intro .footer-logo {
  margin-bottom: 1.5rem;
}

.site-footer .footer-main .footer-top .footer-intro .footer-logo img {
  height: 60px;
}

.site-footer .footer-main .footer-top .footer-intro .company-info {
  color: #555;
  max-width: 480px;
}

.site-footer .footer-main .footer-top .footer-intro .company-info p {
  margin: 0;
  line-height: 1.7;
}

.site-footer .footer-main .footer-top .footer-newsletter {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.site-footer .footer-main .footer-top .footer-newsletter h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .8rem;
  color: #2c3e50;
}

.site-footer .footer-main .footer-top .footer-newsletter p {
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.7;
}

.site-footer .footer-main .footer-top .footer-newsletter .input-group {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: all .3s;
  box-shadow: 0 2px 5px #00000008;
}

.site-footer .footer-main .footer-top .footer-newsletter .input-group:focus-within {
  border-color: #2c3e50;
  box-shadow: 0 4px 10px #00000012;
}

.site-footer .footer-main .footer-top .footer-newsletter .input-group input {
  flex: 1;
  border: none;
  padding: .8rem 1.2rem;
  outline: none;
  font-size: .95rem;
}

.site-footer .footer-main .footer-top .footer-newsletter .input-group button {
  background: #2c3e50;
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .8rem;
  cursor: pointer;
  transition: background .3s;
}

.site-footer .footer-main .footer-top .footer-newsletter .input-group button:hover {
  background: #1a2530;
}

.site-footer .footer-main .footer-middle {
  padding: 3rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (width <= 992px) {
  .site-footer .footer-main .footer-middle {
    flex-direction: column;
  }
}

.site-footer .footer-main .footer-middle .footer-links-section {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (width <= 768px) {
  .site-footer .footer-main .footer-middle .footer-links-section {
    gap: 3rem;
  }
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column {
  flex: 1;
  min-width: 160px;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #2c3e50;
  position: relative;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column h4:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #2c3e50;
  margin-top: .5rem;
  transition: width .3s;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column h4:hover:after {
  width: 45px;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column .loading-categories {
  color: #777;
  font-style: italic;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column ul li {
  margin-bottom: .8rem;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column ul li a {
  color: #555;
  text-decoration: none;
  transition: all .2s;
  position: relative;
  display: inline-block;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column ul li a:hover {
  color: #2c3e50;
  transform: translateX(3px);
}

.site-footer .footer-main .footer-middle .footer-social-payments {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-footer .footer-main .footer-middle .footer-social-payments h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #2c3e50;
}

.site-footer .footer-main .footer-middle .footer-social-payments .social-section .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer .footer-main .footer-middle .footer-social-payments .social-section .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #2c3e50;
  transition: all .3s;
}

.site-footer .footer-main .footer-middle .footer-social-payments .social-section .social-links a:hover {
  background-color: #2c3e50;
  color: #fff;
  transform: translateY(-5px);
}

.site-footer .footer-main .footer-middle .footer-social-payments .social-section .social-links a i {
  font-size: 1.2rem;
}

.site-footer .footer-main .footer-middle .footer-social-payments .payments-section .payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer .footer-main .footer-middle .footer-social-payments .payments-section .payment-icons img {
  height: 30px;
  width: auto;
  filter: grayscale(80%);
  opacity: .7;
  transition: all .3s;
}

.site-footer .footer-main .footer-middle .footer-social-payments .payments-section .payment-icons img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.site-footer .footer-bottom {
  background-color: #2c3e50;
  color: #fff;
  padding: 1.5rem 0;
  font-size: .85rem;
}

.site-footer .footer-bottom .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (width <= 768px) {
  .site-footer .footer-bottom .container {
    padding: 0 1.5rem;
  }
}

.site-footer .footer-bottom .footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (width <= 768px) {
  .site-footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
}

.site-footer .footer-bottom .footer-bottom-content .copyright {
  margin: 0;
  color: #fffc;
}

.site-footer .footer-bottom .footer-bottom-content .footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

@media (width <= 576px) {
  .site-footer .footer-bottom .footer-bottom-content .footer-bottom-links {
    flex-direction: column;
    gap: .8rem;
  }
}

.site-footer .footer-bottom .footer-bottom-content .footer-bottom-links a {
  color: #fffc;
  text-decoration: none;
  transition: all .2s;
}

.site-footer .footer-bottom .footer-bottom-content .footer-bottom-links a:hover {
  color: #fff;
  text-decoration: underline;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer .footer-top, .site-footer .footer-links-column, .site-footer .footer-social-payments > div {
  animation: .5s ease-out forwards fadeInUp;
  opacity: 0;
}

.site-footer .footer-top {
  animation-delay: .1s;
}

.site-footer .footer-links-column:first-child {
  animation-delay: .2s;
}

.site-footer .footer-links-column:nth-child(2) {
  animation-delay: .3s;
}

.site-footer .footer-links-column:nth-child(3) {
  animation-delay: .4s;
}

.site-footer .social-section {
  animation-delay: .5s;
}

.site-footer .payments-section {
  animation-delay: .6s;
}

.site-footer .footer-main {
  font-weight: 400;
}

.site-footer .footer-bottom {
  font-weight: 300;
}

@media (width <= 992px) {
  .site-footer .footer-top .footer-newsletter {
    max-width: 100%;
  }
}

@media (width <= 768px) {
  .site-footer .footer-main .footer-top {
    gap: 1.5rem;
  }

  .site-footer .footer-main .footer-top .footer-intro .footer-logo img {
    height: 50px;
  }

  .site-footer .footer-main .footer-middle {
    padding: 2rem 0;
    gap: 2.5rem;
  }

  .site-footer .footer-main .footer-middle .footer-links-section {
    flex-direction: column;
    gap: 2rem;
  }

  .site-footer .footer-main .footer-middle .footer-links-section .footer-links-column {
    min-width: 100%;
  }
}

/*# sourceMappingURL=app_components_global_Footer_scss_b52d8e.css.map*/