/* Landscape phones and down */
/* Landscape phone to portrait tablet */
/* Portrait tablet to landscape and desktop */
/* Large desktop */
footer {
  grid-area: footer;
  justify-items: center;
  align-content: center;
  margin: 0;
  background: var(--gray);
}
footer .block {
  display: flex;
  flex-direction: row;
}
footer .block a {
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  text-align: center;
  line-height: 2.5rem;
  font-size: 3px;
  margin: 1rem 1rem;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
  z-index: 1;
}
footer .block a .icon {
  position: relative;
  color: #262626;
  transition: 0.5s;
  z-index: 3;
}
footer .block a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}
footer .block a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}
footer .block a:hover:before {
  top: 0;
}
footer .block .social-container:nth-child(1) a:before {
  background: #3b5999;
}
footer .block .social-container:nth-child(2) a:before {
  background: #55acee;
}
footer .block .social-container:nth-child(3) a:before {
  background: #111;
}
footer .block i {
  color: var(--blue);
  font-size: 2rem;
  margin: 0;
  transition: 0.5s;
  z-index: 3;
}
footer p {
  font-size: 1.6rem;
  font-style: italic;
}
@media (max-width: 767px) {
  footer p {
    font-size: 1rem;
  }
}

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