/*----------------------- footer */

.pro-footer {
  background-color: var(--footer);
  color: #d2d2d2;
  padding: 50px 0 20px;
  font-family: "Roboto", sans-serif;
}

.pro-footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;

  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-section {
  flex: 1;
}

.footer-logo {
  height: 100px;
  margin-bottom: 15px;
}

.footer-slogan {
  color: #aaa;
  font-size: 0.95rem;
  margin: 0;
  max-width: 260px;
}

.footer-section h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 12px;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin: 6px 0;
}

.footer-section a {
  color: #bfbfbf;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  color: #7a7a7a;
  font-size: 0.85rem;
}

/*media_800*/
@media (max-width: 800px) {
  .pro-footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-slogan {
    margin: 0 auto;
  }
}
