/* =======================================================
   DUB FACTORY STUDIOS
   FOOTER
======================================================= */

#fh5co-footer {
  background: var(--dfs-black);
  padding: 54px 0 34px;
  clear: both;
  border-top: 4px solid var(--dfs-orange);
}

#fh5co-footer ul,
#fh5co-footer li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dfs-footer-tagline,
.tdf-footer-tagline {
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 22px;
}

.fh5co-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 14px;

  width: 100%;
  margin: 0 auto 24px;
  padding: 0;
}

.fh5co-social-icons li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fh5co-social-icons li a {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--dfs-white);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  border-radius: 50%;

  padding: 0;
}

.fh5co-social-icons li a:hover {
  color: var(--dfs-yellow);
  transform: translateY(-2px);
  border-color: rgba(255,212,71,0.45);
}

.fh5co-social-icons li a i {
  font-size: 18px;
}

.dfs-footer-links,
.tdf-footer-links {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dfs-footer-links a,
.tdf-footer-links a {
  color: rgba(255,255,255,0.65);
  margin: 0 9px;
}

.dfs-footer-links a:hover,
.tdf-footer-links a:hover {
  color: var(--dfs-white);
}

.dfs-footer-links span,
.tdf-footer-links span {
  color: rgba(255,255,255,0.25);
}

.dfs-footer-copy,
.tdf-footer-copy {
  color: rgba(255,255,255,0.44);
  margin: 0;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  #fh5co-footer {
    padding: 48px 20px 32px;
  }

  .fh5co-social-icons {
    flex-wrap: wrap;
  }

  .dfs-footer-links a,
  .tdf-footer-links a {
    display: inline-block;
    margin: 6px 8px;
  }

  .dfs-footer-links span,
  .tdf-footer-links span {
    display: none;
  }
}