/*---------------------------------
    Footer CSS 
-----------------------------------*/
.footer-area {
  padding-bottom: 34px;
}

.footer-area.style-one {
  border-radius: 40px;
  margin-bottom: 14px;
  margin-left: 10px;
  margin-right: 10px;
}

.footer-area .footer-large-text {
  background-color: #190E12;
  display: flex;
  justify-content: space-between;
  color: #402E34;
  font-size: 15.8vw;
  line-height: 0.85;
  padding: 37px 15px;
  margin-bottom: 34px;
}

.footer-area .footer-large-text span {
  display: inline-block;
}

.footer-widget .footer-widget-title {
  padding-bottom: 14px;
  margin-bottom: 13px;
}

.footer-widget .footer-widget-title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 65%;
  height: 1px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.footer-widget .footer-menu.style-one li {
  margin-bottom: 10px;
}

.footer-widget .footer-menu.style-one li:last-child {
  margin-bottom: 0;
}

.footer-widget .footer-menu.style-one li a {
  position: relative;
  color: var(--altoColor);
}

.footer-widget .footer-menu.style-one li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  visibility: hidden;
  opacity: 0;
  background-color: var(--primaryColor);
  transition: var(--transition);
}

.footer-widget .footer-menu.style-one li a:hover {
  color: var(--primaryColor);
}

.footer-widget .footer-menu.style-one li a:hover:after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.footer-widget .contact-info-list li {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-widget .contact-info-list li:last-child {
  margin-bottom: 0;
}

.footer-widget .contact-info-list li a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-widget .contact-info-list li a:hover {
  color: var(--primaryColor);
}

/* Company Logos CSS */
.company-logos {
  max-width: 200px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 20px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-logos:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.company-logos .company-logo {
  width: auto;
  height: 60px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1) opacity(0.85);
}

.company-logos .company-logo:hover {
  filter: brightness(0) invert(1) opacity(1);
  transform: scale(1.08);
}

/* Mobile Responsive for Company Logos */
@media only screen and (max-width: 767px) {
  .company-logos {
    max-width: 100%;
    padding: 12px 10px;
    margin-top: 15px;
    justify-content: center;
  }

  .company-logos .company-logo {
    height: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .company-logos {
    max-width: 180px;
    padding: 15px 12px;
  }

  .company-logos .company-logo {
    height: 45px;
  }
}

@media only screen and (min-width: 1600px) {
  .footer-area.style-one {
    margin-bottom: 18px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer-area.style-one .container-fluid {
    padding-left: 47px;
    padding-right: 47px;
  }

  .footer-area.style-two .container-fluid {
    padding-left: 68px;
    padding-right: 68px;
  }
}

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