:root {
  --text-primary: #b6b6b6;
  --text-secondary: #ececec;
  --bg-primary: #23232e;
  --bg-secondary: #141418;
  --transition-speed: 0.5s;
}

footer {
  padding: 10vh 0;
  background-image: url("https://static.igem.wiki/teams/4382/wiki/backgrounds/blob-scene-haikei.svg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100vw;
  z-index: 5;
  position: absolute;
}
footer h4 {
  font-size: 2.2rem;
}

.footer-main {
  font-size: 16px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  color: var(--bg-secondary);
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: var(--border-radius);
}

footer a {
  color: var(--link-col);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  background: var(--bg-secondary);
}

footer p {
  text-align: center;
  margin: 0.5rem;
}

.footer-who {
  align-items: center;
  padding: 1rem;
  min-width: 400px;
}

.footer-content {
  margin: 0 0 2rem 0;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.social-link > svg {
  width: 3rem;
  height: 3rem;
  transition: var(--transition-speed);
  /* Glow effect */
}

.social-links > a {
  margin: 0 1rem;
  filter: grayscale(100%) opacity(0.7);
}
.social-links > a:hover {
  filter: grayscale(0%) opacity(1);
  background: transparent;
}

.brands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width: 100vw;
}
.brands .stubburn {
  width: 10rem;
}

@media only screen and (min-width: 1000px) {
  .footer-main {
    padding: 1rem;
    width: 60%;
  }
  .flex-container {
    display: flex;
    justify-content: space-around;
  }
  .brands img {
    height: 10rem;
  }
}
@media (max-width: 999px) {
  .footer-main .footer-links {
    justify-content: space-around;
  }
  .footer-main {
    width: 100%;
    padding: 1rem;
    padding-top: 18px;
  }
  .social-link > svg {
    width: 2rem;
    height: 2rem;
  }
  .flex-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .brands {
    flex-wrap: wrap;
  }
  .brands img {
    height: 8rem;
  }
}
.email {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 20rem;
  /* On hover hide ::before and show ::after */
}
.email::before {
  content: "Email us";
}
.email::after {
  content: "igem@iiserb.ac.in";
  display: none;
}
.email:hover::before {
  display: none;
}
.email:hover::after {
  display: block;
}

a.instagram {
  fill: #e1306c;
}
a.instagram:hover {
  filter: drop-shadow(0 0 0.5rem #ff5252);
}

a.facebook {
  fill: #3b5998;
}
a.facebook:hover {
  filter: drop-shadow(0 0 0.5rem #3b5998);
}

a.twitter {
  fill: #1da1f2;
}
a.twitter:hover {
  filter: drop-shadow(0 0 0.5rem #1da1f2);
}

a.linkedin {
  fill: #0077b5;
}
a.linkedin:hover {
  filter: drop-shadow(0 0 0.5rem #0077b5);
}

a.medium {
  fill: #000000;
}
a.medium:hover {
  filter: drop-shadow(0 0 0.5rem #fcc419);
}

/* While hovering .social-icon, animate glow effect */

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