/*
 =========================================================
 * Filo's dark theme - Footer
 =========================================================
 * Page: https://filo.gg
 * Copyright 2023 iLxlo_ (https://github.com/ilxlodev)
 * Designed by CSDIT Coded by iLxlo_
 =========================================================
 * Not allowed to copy substantial portions of the software without prior authorization.
 */
 
.before-footer {
  z-index: 1;
  display: flex;
  position: relative;
}

footer {
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  margin-top: -5px;
  padding: 80px 50px;
  position: relative;
  align-items: center;
  align-content: center;
  flex-direction: column;
  justify-content: center;
  background: var(--filogg-color-darkcyan);
}

footer .logo {
  width: 250px;
}

footer .social {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  align-items: center;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
}

footer .social i {
  font-size: 35px;
  margin-left: 10px;
  margin-right: 10px;
  transition: var(--filogg-hover-text-transition);
}

footer .social i:hover {
  color: var(--filogg-color-primary);
}

footer .bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  max-width: 1400px;
  align-items: flex-start;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
}

footer .bottom .links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

footer .bottom div {
  margin: 0 50px;
}

footer .bottom h4 {
  font-size: 25px !important;
  margin-bottom: 20px !important;
  color: var(--filogg-color-text);
}

footer .bottom .links a {
  margin-top: 8px;
  font-size: 22.5px;
  margin-bottom: 8px;
}

footer .bottom .description {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer .bottom .description p {
  font-size: 20px;
}

.after-footer {
  z-index: 1;
  display: flex;
  margin-top: -5px;
  padding: 25px 50px;
  position: relative;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: var(--filogg-color-darkcyan);
}

.after-footer p {
  font-size: 16px;
  text-align: center;
}

.after-footer .dmca {
  width: 125px;
}

/*
 =========================================================
 * Media queries
 =========================================================
 * Responsive is the future \ ✪ ω ✪ /
 */

@media (max-width: 1366px) { /* Laptop resolution */

  footer .logo {
    width: 225px;
  }

  footer .social i {
    font-size: 30px;
  }

  footer .bottom h4 {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }

  footer .bottom .links a {
    font-size: 18px;
  }

  footer .bottom div {
    margin: 12.5px 25px;
  }

  footer .bottom .description {
    max-width: 300px;
  }

  footer .bottom .description p {
    font-size: 18px;
  }

}

@media (max-width: 1024px) { /* Tablet resolution */

  footer .logo {
    width: 200px;
  }

  footer .social i {
    font-size: 25px;
  }

  footer .bottom h4 {
    font-size: 18px !important;
  }

  footer .bottom .links a {
    font-size: 16px;
  }

  footer .bottom div {
    margin: 12.5px 20px;
  }

  footer .bottom .description p {
    font-size: 16px;
  }

  .after-footer p {
    font-size: 14px;
  }

}

@media (max-width: 881px) { /* Mobile horizontal resolution */

  footer {
    padding: 80px 100px;
  }

  footer .logo {
    width: 175px;
  }

  footer .social {
    margin-top: 15px;
  }

  footer .social i {
    font-size: 20px;
  }

  footer .bottom .description {
    max-width: 100%;
  }

}

@media (max-width: 768px) { /* Mobile vertical resolution */

  footer {
    padding: 40px 0 0;
  }

  footer .logo {
    width: 150px;
  }

  footer .bottom {
    justify-content: center;
  }

  footer .bottom h4 {
    font-size: 14px !important;
  }

  footer .bottom .links a {
    font-size: 14px;
  }

  footer .bottom div {
    margin: 12.5px 10px;
  }

  footer .bottom .links {
    width: auto;
  }

  footer .bottom .description {
    max-width: 85%;
  }

  footer .bottom .description p {
    font-size: 14px;
  }

  .after-footer {
    padding: 25px 0;
  }

  .after-footer p {
    font-size: 12px;
  }

}